diff --git a/CMakeLists.txt b/CMakeLists.txt index aff7239d55f5ec1114728908d28a6d2b16fa83c0..b0bba17e2fcfe1beffd7aa179f2e796f3de17ae1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.15) -project(Rec VERSION 36.1 +project(Rec VERSION 36.2 LANGUAGES CXX) # Enable testing with CTest/CDash diff --git a/FT/FTMonitors/CMakeLists.txt b/FT/FTMonitors/CMakeLists.txt index 4ea07d614249913957cd5dd862105a5d88b7bcbe..cebb69cd25bbe295c570bbb9f070b52b0b90023b 100644 --- a/FT/FTMonitors/CMakeLists.txt +++ b/FT/FTMonitors/CMakeLists.txt @@ -30,6 +30,7 @@ gaudi_add_module(FTMonitors SOURCES src/FTClusterMonitor.cpp src/FTLiteClusterMonitor.cpp + src/FTLiteClusterTAEMonitor.cpp src/FTDigitMonitor.cpp src/FillingSchemeProvider.cpp LINK diff --git a/FT/FTMonitors/src/FTLiteClusterMonitor.cpp b/FT/FTMonitors/src/FTLiteClusterMonitor.cpp index 8cf0f8bb733d02f6a3290d0fed29311951a869de..32d8531297b0da3cc1e0cb76166fd86d7259d56f 100644 --- a/FT/FTMonitors/src/FTLiteClusterMonitor.cpp +++ b/FT/FTMonitors/src/FTLiteClusterMonitor.cpp @@ -74,23 +74,6 @@ private: EE, }; - enum struct TaeType { - AllBX, - IndexAllBX, - IsolatedBX, - FakeIsoBX, - LeadingBX, - TailingBX, - OdinIsolatedBX, - OdinFakeIsoBX, - OdinCombinedBX, - OdinIndexIsolatedBX, - OdinIndexFakeIsoBX, - OdinIndexCombinedBX, - }; - - using TaeTypes = std::map<TaeType, int>; - // - - - - - - - - - - - // QuarterSiPMHistograms FIXME: DetectorHistogram? // - - - - - - - - - - - @@ -161,56 +144,6 @@ private: std::map<std::tuple<size_t, size_t, size_t>, Histogram1D> m_TLQ_SiPM; }; - // - - - - - - - - - - - - // TAEHistograms - // - - - - - - - - - - - - - struct TAEHistograms { - - TAEHistograms( FTLiteClusterMonitor* owner ); - static std::string tae_name( const TaeType& type ); - TaeTypes eval_odin( const ODIN& odin, const ColType& colType ) const; - void fill_cluster( const LHCb::Detector::FTChannelID& channel_id, const TaeTypes& taeType ) const; - void fill_event( const int nClusters, const TaeTypes& taeType ) const; - - // Axis - const int m_maxTAE; - const Axis a_tae_corr; - const Axis a_tae_idx; - const Axis a_tae_iso; - const Axis a_tae_fake; - const Axis a_tae_comb; - const Axis a_sipm; - - // TODO: Make this an option? - const std::set<TaeType> m_cluster_hists = {TaeType::AllBX, - TaeType::IndexAllBX, - TaeType::IsolatedBX, - TaeType::FakeIsoBX, - TaeType::LeadingBX, - TaeType::TailingBX, - TaeType::OdinIsolatedBX, - TaeType::OdinFakeIsoBX, - TaeType::OdinIndexIsolatedBX, - TaeType::OdinIndexFakeIsoBX}; - const std::set<TaeType> m_event_hists = { - TaeType::IndexAllBX, TaeType::OdinIsolatedBX, TaeType::OdinFakeIsoBX, TaeType::OdinCombinedBX, - TaeType::OdinIndexIsolatedBX, TaeType::OdinIndexFakeIsoBX, TaeType::OdinIndexCombinedBX}; - - // Histograms - mutable std::map<TaeType, Histogram1D> m_clusters; - mutable std::map<TaeType, Histogram1D> m_clusters_a; - mutable std::map<TaeType, Histogram1D> m_clusters_c; - mutable std::map<TaeType, Histogram2D> m_sipm; - mutable std::map<TaeType, ProfileHistogram> m_sipm_profile; - mutable std::map<TaeType, ProfileHistogram> m_sipm_profile_a; - mutable std::map<TaeType, ProfileHistogram> m_sipm_profile_c; - mutable std::map<TaeType, QuarterSiPMHistograms> m_quarter_sipm_hists; - - // * per event histograms - mutable std::map<TaeType, Histogram2D> m_clustersPerEvent; - }; - // - - - - - - - - - - - - - - // ClustersPerEventHistograms // - - - - - - - - - - - - - - @@ -231,19 +164,12 @@ private: // ------------------------------------------------------------- private: - // TAE global - mutable GA::Counter<> m_nCalls{this, "number of calls"}; - - // FIXME: Options - // Gaudi::Property<bool> m_drawHistsPerQuarter{this, "DrawHistsPerQuarter", true, "Enable histrograms per quarter"}; - Gaudi::Property<bool> m_drawTAE{this, "DrawHistsTAE", true, "Enable TAE histograms"}; - Gaudi::Property<unsigned int> m_maxTAEHalfWindow{this, "TAEHalfWindow", 7, "max TAE half window"}; + mutable GA::Counter<> m_nCalls{this, "number of calls"}; const std::set<ColType> m_colTypeHists = {ColType::BB, ColType::B1, ColType::B2, ColType::EE}; // structs mutable ChannelIdxHistograms m_channel_idx_hists; - std::optional<TAEHistograms> m_tae_hists; mutable ClustersPerEventHistograms m_clusters_per_event_hists; // per collision type @@ -372,257 +298,6 @@ void FTLiteClusterMonitor::QuarterSiPMHistograms::fill( const LHCb::Detector::FT if ( m_plot_slices ) { ++m_clusters_TLY.at( {station, layer_idx, y_up} )[x]; } } -// - - - - - - - - - - - -// TAEHistograms -// - - - - - - - - - - - -FTLiteClusterMonitor::TAEHistograms::TAEHistograms( FTLiteClusterMonitor* owner ) - : m_maxTAE( static_cast<int>( owner->m_maxTAEHalfWindow ) ) - , a_tae_corr( 2 * m_maxTAE + 1, -m_maxTAE - 0.5f, m_maxTAE + 0.5f ) - , a_tae_idx( 15, 0.5, 15.5 ) - , a_tae_iso( 3, -0.5, 2.5, "", {"Before", "Isolated", "After"} ) - , a_tae_fake( 4, -0.5, 3.5, "", {"Before", "Leading", "Trailing", "After"} ) - , a_tae_comb( 3, -0.5, 2.5, "", {"Before", "Collision", "After"} ) - , a_sipm( FTConstants::nSiPMsTotal, -0.5f, FTConstants::nSiPMsTotal - 0.5f ) { - - for ( auto tae_type : m_cluster_hists ) { - - // choose TAE axis based on the type - const Axis& a_tae = ( tae_type == TaeType::IndexAllBX || tae_type == TaeType::OdinIndexIsolatedBX || - tae_type == TaeType::OdinIndexFakeIsoBX || tae_type == TaeType::OdinIndexCombinedBX ) - ? a_tae_idx - : ( tae_type == TaeType::OdinIsolatedBX ) - ? a_tae_iso - : ( tae_type == TaeType::OdinFakeIsoBX ) - ? a_tae_fake - : ( tae_type == TaeType::OdinCombinedBX ) ? a_tae_comb : a_tae_corr; - - // declare histograms - m_clusters.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, fmt::format( "{}/Clusters", tae_name( tae_type ).c_str() ), - "Number of Clusters per TAE;TAE;Clusters", a_tae ) ); - m_clusters_a.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, fmt::format( "{}/ClustersASide", tae_name( tae_type ).c_str() ), - "Number of Clusters per TAE (A Side);TAE;Clusters", a_tae ) ); - m_clusters_c.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, fmt::format( "{}/ClustersCSide", tae_name( tae_type ).c_str() ), - "Number of Clusters per TAE (C Side);TAE;Clusters", a_tae ) ); - m_sipm.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, fmt::format( "{}/SiPM", tae_name( tae_type ).c_str() ), - "TAE per SIPM;Global SiPM index;TAE", a_sipm, a_tae ) ); - m_sipm_profile.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, fmt::format( "{}/SiPMProfile", tae_name( tae_type ).c_str() ), - "mean TAE per SIPM;Global SiPM index;mean TAE", a_sipm ) ); - m_sipm_profile_a.emplace( - std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, fmt::format( "{}/SiPMProfileASide", tae_name( tae_type ).c_str() ), - "mean TAE per SIPM (A Side);Global SiPM index;mean TAE", a_sipm ) ); - m_sipm_profile_c.emplace( - std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, fmt::format( "{}/SiPMProfileCSide", tae_name( tae_type ).c_str() ), - "mean TAE per SIPM (C Side);Global SiPM index;mean TAE", a_sipm ) ); - m_quarter_sipm_hists.emplace( - std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, "", fmt::format( "{}/QuarterVsSiPMProfile", tae_name( tae_type ).c_str() ), - "" ) ); - } - for ( auto tae_type : m_event_hists ) { - - // choose TAE axis based on the type - const Axis& a_tae = ( tae_type == TaeType::IndexAllBX || tae_type == TaeType::OdinIndexIsolatedBX || - tae_type == TaeType::OdinIndexFakeIsoBX || tae_type == TaeType::OdinIndexCombinedBX ) - ? a_tae_idx - : ( tae_type == TaeType::OdinIsolatedBX ) - ? a_tae_iso - : ( tae_type == TaeType::OdinFakeIsoBX ) - ? a_tae_fake - : ( tae_type == TaeType::OdinCombinedBX ) ? a_tae_comb : a_tae_corr; - - // declare histograms - m_clustersPerEvent.emplace( - std::piecewise_construct, std::forward_as_tuple( tae_type ), - std::forward_as_tuple( owner, fmt::format( "{}/ClustersPerEvent", tae_name( tae_type ).c_str() ), - "Clusters/Event per TAE;TAE;Clusters/Event", a_tae, Axis{351, -50.0f, 35050.0f} ) ); - } -} - -std::string FTLiteClusterMonitor::TAEHistograms::tae_name( const TaeType& type ) { - switch ( type ) { - case TaeType::AllBX: { - return "TAE"; - } - case TaeType::IndexAllBX: { - return "idxTAE"; - } - case TaeType::IsolatedBX: { - return "isoTAE"; - } - case TaeType::FakeIsoBX: { - return "fakeTAE"; - } - case TaeType::LeadingBX: { - return "leadTAE"; - } - case TaeType::TailingBX: { - return "tailTAE"; - } - case TaeType::OdinIsolatedBX: { - return "isoOdinTAE"; - } - case TaeType::OdinFakeIsoBX: { - return "fakeOdinTAE"; - } - case TaeType::OdinCombinedBX: { - return "combOdinTAE"; - } - case TaeType::OdinIndexIsolatedBX: { - return "isoOdinIdxTAE"; - } - case TaeType::OdinIndexFakeIsoBX: { - return "fakeOdinIdxTAE"; - } - case TaeType::OdinIndexCombinedBX: { - return "combOdinIdxTAE"; - } - default: { - return "unknown"; - } - } -} - -FTLiteClusterMonitor::TaeTypes FTLiteClusterMonitor::TAEHistograms::eval_odin( const ODIN& odin, - const ColType& colType ) const { - TaeTypes tae_types; - - // FIXME: Sketch of logic - - // Odin event type - // - - - - - - - - - - bool isEmpty = ( colType == ColType::EE ); - bool isPhysics = ( colType == ColType::BB ); - - const auto event_type = odin.eventType(); - bool isIsolatedBX = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_08 ); - bool isLeadingBX = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_09 ); - bool isTrailingBX = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_10 ); - bool isEmptyBeforeIso = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_11 ); - bool isEmptyAfterIso = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_12 ); - bool isEmptyBeforeLead = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_13 ); - bool isEmptyAfterTrail = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_14 ); - - // Odin regions - const bool isIsolatedReg = isEmptyBeforeIso || isIsolatedBX || isEmptyAfterIso; - const bool isLeadingReg = isEmptyBeforeLead || isLeadingBX; - const bool isTrailingReg = isTrailingBX || isEmptyAfterTrail; - const bool isFakeReg = isLeadingReg || isTrailingReg; - const bool isOdinReg = isIsolatedReg || isFakeReg; - const bool isBeforeReg = isEmptyBeforeIso || isEmptyBeforeLead; - const bool isAfterReg = isEmptyAfterIso || isEmptyAfterTrail; - const bool isColReg = isIsolatedBX || isLeadingBX || isTrailingBX; - - // TAE indicies - // - - - - - - - - // FIXME: Comment, add what types and bins are (add "_bin") - const int tae_idx = odin.timeAlignmentEventIndex(); - - // * corrected tae index - const int tae_corr = -tae_idx + m_maxTAE + 1; - - // * odin axis - int tae_odin_iso = isEmptyBeforeIso ? 0 : isIsolatedBX ? 1 : isEmptyAfterIso ? 2 : -1; // FIXME: make consts for bins? - int tae_odin_fake = isEmptyBeforeLead ? 0 : isLeadingBX ? 1 : isTrailingBX ? 2 : isEmptyAfterTrail ? 3 : -1; - int tae_odin_comb = isBeforeReg ? 0 : isColReg ? 1 : isAfterReg ? 2 : -1; - - // determine matching BX types - // all - tae_types[TaeType::AllBX] = tae_corr; - tae_types[TaeType::IndexAllBX] = tae_idx; - - // iso tae - if ( tae_corr == -1 ? isEmptyBeforeIso : tae_corr == 0 ? isIsolatedBX : tae_corr == 1 ? isEmptyAfterIso : isEmpty ) { - tae_types[TaeType::IsolatedBX] = tae_corr; - } - - // fake tae - if ( tae_corr == -1 ? isEmptyBeforeLead - : tae_corr == 0 ? isLeadingBX || isTrailingBX : tae_corr == 1 ? isEmptyAfterTrail : isEmpty ) { - tae_types[TaeType::FakeIsoBX] = tae_corr; - } - - // lead tae - if ( tae_corr == -1 ? isEmptyBeforeLead : tae_corr == 0 ? isLeadingBX : tae_corr > 0 ? isPhysics : isEmpty ) { - tae_types[TaeType::LeadingBX] = tae_corr; - } - - // trail tae - if ( tae_corr < 0 ? isPhysics : tae_corr == 0 ? isTrailingBX : tae_corr == 1 ? isEmptyAfterTrail : isEmpty ) { - tae_types[TaeType::TailingBX] = tae_corr; - } - - // odin iso tae - if ( isIsolatedReg ) { - tae_types[TaeType::OdinIsolatedBX] = tae_odin_iso; - tae_types[TaeType::OdinIndexIsolatedBX] = tae_idx; - } - - // odin fake tae - if ( isFakeReg ) { - tae_types[TaeType::OdinFakeIsoBX] = tae_odin_fake; - tae_types[TaeType::OdinIndexFakeIsoBX] = tae_idx; - } - - // odin fake tae - if ( isOdinReg ) { - tae_types[TaeType::OdinCombinedBX] = tae_odin_comb; - tae_types[TaeType::OdinIndexCombinedBX] = tae_idx; - } - - return tae_types; -} - -void FTLiteClusterMonitor::TAEHistograms::fill_cluster( const LHCb::Detector::FTChannelID& channel_id, - const TaeTypes& taeTypes ) const { - - // channel information - const auto global_sipm_idx = channel_id.globalSipmIdx(); - - // fill histograms - for ( auto [type, tae] : taeTypes ) { - - // Only fill requested histograms - if ( std::find( m_cluster_hists.begin(), m_cluster_hists.end(), type ) == m_cluster_hists.end() ) { continue; } - - ++m_clusters.at( type )[tae]; - ++m_sipm.at( type )[{global_sipm_idx, tae}]; - m_sipm_profile.at( type )[global_sipm_idx] += tae; - m_quarter_sipm_hists.at( type ).fill( channel_id, tae ); - - // histograms per side - if ( channel_id.isRight() ) { - // C Side - ++m_clusters_c.at( type )[tae]; - m_sipm_profile_c.at( type )[global_sipm_idx] += tae; - } else { - // A Side - ++m_clusters_a.at( type )[tae]; - m_sipm_profile_a.at( type )[global_sipm_idx] += tae; - } - } -} - -void FTLiteClusterMonitor::TAEHistograms::fill_event( const int nClusters, const TaeTypes& taeTypes ) const { - - // fill histograms - for ( auto [type, tae] : taeTypes ) { - - // Only fill requested histograms - if ( std::find( m_event_hists.begin(), m_event_hists.end(), type ) == m_event_hists.end() ) { continue; } - - ++m_clustersPerEvent.at( type )[{tae, nClusters}]; - } -} - -// - - - - - - - - - - - - - - // ClustersPerEventHistograms // - - - - - - - - - - - - - - FTLiteClusterMonitor::ClustersPerEventHistograms::ClustersPerEventHistograms( FTLiteClusterMonitor* owner, @@ -674,11 +349,8 @@ FTLiteClusterMonitor::FTLiteClusterMonitor( const std::string& name, ISvcLocator // ------------------------------------------------------------- // Initialize -// - Define needed histograms StatusCode FTLiteClusterMonitor::initialize() { return Consumer::initialize().andThen( [&] { - if ( m_drawTAE ) { m_tae_hists.emplace( this ); } - for ( ColType colType : m_colTypeHists ) { const std::string folder = ( colType == ColType::BB ) @@ -701,7 +373,7 @@ StatusCode FTLiteClusterMonitor::initialize() { // ------------------------------------------------------------- // Executed on each event void FTLiteClusterMonitor::operator()( const FTLiteClusters& clusters, const ODIN& odin ) const { - + const auto n_clusters = clusters.size(); int nClustersASide = 0; int nClustersCSide = 0; @@ -719,9 +391,6 @@ void FTLiteClusterMonitor::operator()( const FTLiteClusters& clusters, const ODI ColType colType = isPhysics ? ColType::BB : isBeam1Gas ? ColType::B1 : isBeam2Gas ? ColType::B2 : ColType::EE; bool fill_colType = std::find( m_colTypeHists.begin(), m_colTypeHists.end(), colType ) != m_colTypeHists.end(); - // * TAE - const TaeTypes taeTypes = m_tae_hists->eval_odin( odin, colType ); - // Fill cluster level histograms for ( const auto& cluster : clusters.range() ) { @@ -744,31 +413,24 @@ void FTLiteClusterMonitor::operator()( const FTLiteClusters& clusters, const ODI m_colType_channel_idx_hists.at( colType ).fill( channel_id ); m_colType_clusters_per_event_hists.at( colType ).update( channel_id ); } - - // TAE - if ( m_tae_hists && odin.isTAE() ) { m_tae_hists->fill_cluster( channel_id, taeTypes ); } } + // Fill event level histograms + ++m_clusters[n_clusters]; - // Fill event level histograms - ++m_clusters[n_clusters]; + // Per Bunch crossing + ++m_events_bxid[bunch_id]; + ++m_clustersPerEvent_bxid[{bunch_id, n_clusters}]; + m_clusters_bxid[bunch_id] += n_clusters; + m_clusters_bxid_a[bunch_id] += nClustersASide; + m_clusters_bxid_c[bunch_id] += nClustersCSide; - // Per Bunch crossing - ++m_events_bxid[bunch_id]; - ++m_clustersPerEvent_bxid[{bunch_id, n_clusters}]; - m_clusters_bxid[bunch_id] += n_clusters; - m_clusters_bxid_a[bunch_id] += nClustersASide; - m_clusters_bxid_c[bunch_id] += nClustersCSide; + m_clusters_per_event_hists.fill(); - m_clusters_per_event_hists.fill(); + // Per collision type + if ( fill_colType ) { + ++m_colType_clusters.at( colType )[n_clusters]; + m_colType_clusters_per_event_hists.at( colType ).fill(); + } - // Per collision type - if ( fill_colType ) { - ++m_colType_clusters.at( colType )[n_clusters]; - m_colType_clusters_per_event_hists.at( colType ).fill(); + ++m_nCalls; } - - // TAE - if ( m_tae_hists && odin.isTAE() ) { m_tae_hists->fill_event( n_clusters, taeTypes ); } - - ++m_nCalls; -} diff --git a/FT/FTMonitors/src/FTLiteClusterTAEMonitor.cpp b/FT/FTMonitors/src/FTLiteClusterTAEMonitor.cpp new file mode 100644 index 0000000000000000000000000000000000000000..07115ad6f9df819a4f19600a918786affd82db43 --- /dev/null +++ b/FT/FTMonitors/src/FTLiteClusterTAEMonitor.cpp @@ -0,0 +1,477 @@ +/*****************************************************************************\ +* (c) Copyright 2020 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. * +\*****************************************************************************/ + +#include "Event/FTLiteCluster.h" +#include "Event/ODIN.h" +#include "GaudiAlg/GaudiHistoAlg.h" +#include "GaudiKernel/PhysicalConstants.h" +#include "GaudiKernel/SystemOfUnits.h" +#include "LHCbAlgs/Consumer.h" +#include "LHCbAlgs/MergingTransformer.h" +#include <GaudiKernel/GaudiException.h> +#include "Detector/FT/FTChannelID.h" +#include "Detector/FT/FTConstants.h" +#include <Gaudi/Accumulators/Histogram.h> + +/** @class FTLiteClusterTAEMonitor FTLiteClusterTAEMonitor.cpp + * + * + * @author Hendrik Jage + * Inspired by FTClusterMonitor from Roel Aaij, + * adapted by Lex Greeven, Johannes Heuel + * @date 2023-06-26 + */ +using FTLiteClusters = LHCb::FTLiteCluster::FTLiteClusters; +using LHCb::Detector::FTLiteCluster::ChannelID; +using ODINVector = Gaudi::Functional::vector_of_const_<LHCb::ODIN const*>; +using InputVector = Gaudi::Functional::vector_of_const_<LHCb::FTLiteCluster const*>; +using BXTypes = LHCb::ODIN::BXTypes; +namespace FTConstants = LHCb::Detector::FT; +namespace GA = Gaudi::Accumulators; + +class FTLiteClusterTAEMonitor final : public LHCb::Algorithm::MergingConsumer<void( const InputVector& ), + Gaudi::Functional::Traits::BaseClass_t<GaudiHistoAlg>> { +public: + FTLiteClusterTAEMonitor( const std::string& name, ISvcLocator* pSvcLocator ) + : LHCb::Algorithm::MergingConsumer<void( ODINVector const&, InputVector const& )>(name, pSvcLocator, {KeyValues{"ODINVector", {}}, KeyValues{"InputVector", {}}} ){}; + + StatusCode initialize() override; + + void operator()( const ODINVector&, const InputVector& ) const override; + + private: + LHCb::TAE::Handler m_taeHandler{this}; + + using Histogram1D = GA::Histogram<1, GA::atomicity::full, float>; + using Histogram2D = GA::Histogram<2, GA::atomicity::full, float>; + using ProfileHistogram = GA::ProfileHistogram<1, GA::atomicity::full, float>; + using ProfileHistogram2D = GA::ProfileHistogram<2, GA::atomicity::full, float>; + using Axis = GA::Axis<float>; + +private: + +enum struct ColType { + BB, + B1, + B2, + EE, + }; + +enum struct TaeType { + AllBX, + IndexAllBX, + IsolatedBX, + FakeIsoBX, + LeadingBX, + TailingBX, + OdinIsolatedBX, + OdinFakeIsoBX, + OdinCombinedBX, + OdinIndexIsolatedBX, + OdinIndexFakeIsoBX, + OdinIndexCombinedBX, + }; + + using TaeTypes = std::map<TaeType, int>; + + // - - - - - - - - - - - + // TAEHistograms + // - - - - - - - - - - - + + struct TAEHistograms { + + TAEHistograms( FTLiteClusterTAEMonitor* owner ); + static std::string tae_name( const TaeType& type ); + TaeTypes eval_odin( const ODIN& odin, const ColType& colType ) const; + void fill_cluster( const LHCb::Detector::FTChannelID& channel_id, const TaeTypes& taeType ) const; + void fill_event( const int nClusters, const TaeTypes& taeType ) const; + + // Axis + const int m_maxTAE; + const Axis a_tae_corr; + const Axis a_tae_idx; + const Axis a_tae_iso; + const Axis a_tae_fake; + const Axis a_tae_comb; + const Axis a_sipm; + + // TODO: Make this an option? + const std::set<TaeType> m_cluster_hists = {TaeType::AllBX, + TaeType::IndexAllBX, + TaeType::IsolatedBX, + TaeType::FakeIsoBX, + TaeType::LeadingBX, + TaeType::TailingBX, + TaeType::OdinIsolatedBX, + TaeType::OdinFakeIsoBX, + TaeType::OdinIndexIsolatedBX, + TaeType::OdinIndexFakeIsoBX}; + const std::set<TaeType> m_event_hists = { + TaeType::IndexAllBX, TaeType::OdinIsolatedBX, TaeType::OdinFakeIsoBX, TaeType::OdinCombinedBX, + TaeType::OdinIndexIsolatedBX, TaeType::OdinIndexFakeIsoBX, TaeType::OdinIndexCombinedBX}; + + // Histograms + mutable std::map<TaeType, Histogram1D> m_clusters; + mutable std::map<TaeType, Histogram1D> m_clusters_a; + mutable std::map<TaeType, Histogram1D> m_clusters_c; + mutable std::map<TaeType, Histogram2D> m_sipm; + mutable std::map<TaeType, ProfileHistogram> m_sipm_profile; + mutable std::map<TaeType, ProfileHistogram> m_sipm_profile_a; + mutable std::map<TaeType, ProfileHistogram> m_sipm_profile_c; + mutable std::map<TaeType, QuarterSiPMHistograms> m_quarter_sipm_hists; + + // * per event histograms + mutable std::map<TaeType, Histogram2D> m_clustersPerEvent; + }; + + // ------------------------------------------------------------- + +private: + // TAE global + mutable GA::Counter<> m_nCalls{this, "number of calls"}; + + // FIXME: Options + // Gaudi::Property<bool> m_drawHistsPerQuarter{this, "DrawHistsPerQuarter", true, "Enable histrograms per quarter"}; + Gaudi::Property<bool> m_drawTAE{this, "DrawHistsTAE", true, "Enable TAE histograms"}; + Gaudi::Property<unsigned int> m_maxTAEHalfWindow{this, "TAEHalfWindow", 7, "max TAE half window"}; + + const std::set<ColType> m_colTypeHists = {ColType::BB, ColType::B1, ColType::B2, ColType::EE}; + + // structs + mutable ChannelIdxHistograms m_channel_idx_hists; + std::optional<TAEHistograms> m_tae_hists; + mutable ClustersPerEventHistograms m_clusters_per_event_hists; +}; + +// - - - - - - - - - - - +// TAEHistograms +// - - - - - - - - - - - +FTLiteClusterTAEMonitor::TAEHistograms::TAEHistograms( FTLiteClusterTAEMonitor* owner ) + : m_maxTAE( static_cast<int>( owner->m_maxTAEHalfWindow ) ) + , a_tae_corr( 2 * m_maxTAE + 1, -m_maxTAE - 0.5f, m_maxTAE + 0.5f ) + , a_tae_idx( 15, 0.5, 15.5 ) + , a_tae_iso( 3, -0.5, 2.5, "", {"Before", "Isolated", "After"} ) + , a_tae_fake( 4, -0.5, 3.5, "", {"Before", "Leading", "Trailing", "After"} ) + , a_tae_comb( 3, -0.5, 2.5, "", {"Before", "Collision", "After"} ) + , a_sipm( FTConstants::nSiPMsTotal, -0.5f, FTConstants::nSiPMsTotal - 0.5f ) { + + for ( auto tae_type : m_cluster_hists ) { + + // choose TAE axis based on the type + const Axis& a_tae = ( tae_type == TaeType::IndexAllBX || tae_type == TaeType::OdinIndexIsolatedBX || + tae_type == TaeType::OdinIndexFakeIsoBX || tae_type == TaeType::OdinIndexCombinedBX ) + ? a_tae_idx + : ( tae_type == TaeType::OdinIsolatedBX ) + ? a_tae_iso + : ( tae_type == TaeType::OdinFakeIsoBX ) + ? a_tae_fake + : ( tae_type == TaeType::OdinCombinedBX ) ? a_tae_comb : a_tae_corr; + + // declare histograms + m_clusters.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, fmt::format( "{}/Clusters", tae_name( tae_type ).c_str() ), + "Number of Clusters per TAE;TAE;Clusters", a_tae ) ); + m_clusters_a.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, fmt::format( "{}/ClustersASide", tae_name( tae_type ).c_str() ), + "Number of Clusters per TAE (A Side);TAE;Clusters", a_tae ) ); + m_clusters_c.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, fmt::format( "{}/ClustersCSide", tae_name( tae_type ).c_str() ), + "Number of Clusters per TAE (C Side);TAE;Clusters", a_tae ) ); + m_sipm.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, fmt::format( "{}/SiPM", tae_name( tae_type ).c_str() ), + "TAE per SIPM;Global SiPM index;TAE", a_sipm, a_tae ) ); + m_sipm_profile.emplace( std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, fmt::format( "{}/SiPMProfile", tae_name( tae_type ).c_str() ), + "mean TAE per SIPM;Global SiPM index;mean TAE", a_sipm ) ); + m_sipm_profile_a.emplace( + std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, fmt::format( "{}/SiPMProfileASide", tae_name( tae_type ).c_str() ), + "mean TAE per SIPM (A Side);Global SiPM index;mean TAE", a_sipm ) ); + m_sipm_profile_c.emplace( + std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, fmt::format( "{}/SiPMProfileCSide", tae_name( tae_type ).c_str() ), + "mean TAE per SIPM (C Side);Global SiPM index;mean TAE", a_sipm ) ); + m_quarter_sipm_hists.emplace( + std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, "", fmt::format( "{}/QuarterVsSiPMProfile", tae_name( tae_type ).c_str() ), + "" ) ); + } + for ( auto tae_type : m_event_hists ) { + + // choose TAE axis based on the type + const Axis& a_tae = ( tae_type == TaeType::IndexAllBX || tae_type == TaeType::OdinIndexIsolatedBX || + tae_type == TaeType::OdinIndexFakeIsoBX || tae_type == TaeType::OdinIndexCombinedBX ) + ? a_tae_idx + : ( tae_type == TaeType::OdinIsolatedBX ) + ? a_tae_iso + : ( tae_type == TaeType::OdinFakeIsoBX ) + ? a_tae_fake + : ( tae_type == TaeType::OdinCombinedBX ) ? a_tae_comb : a_tae_corr; + + // declare histograms + m_clustersPerEvent.emplace( + std::piecewise_construct, std::forward_as_tuple( tae_type ), + std::forward_as_tuple( owner, fmt::format( "{}/ClustersPerEvent", tae_name( tae_type ).c_str() ), + "Clusters/Event per TAE;TAE;Clusters/Event", a_tae, Axis{351, -50.0f, 35050.0f} ) ); + } +} + +std::string FTLiteClusterTAEMonitor::TAEHistograms::tae_name( const TaeType& type ) { + switch ( type ) { + case TaeType::AllBX: { + return "TAE"; + } + case TaeType::IndexAllBX: { + return "idxTAE"; + } + case TaeType::IsolatedBX: { + return "isoTAE"; + } + case TaeType::FakeIsoBX: { + return "fakeTAE"; + } + case TaeType::LeadingBX: { + return "leadTAE"; + } + case TaeType::TailingBX: { + return "tailTAE"; + } + case TaeType::OdinIsolatedBX: { + return "isoOdinTAE"; + } + case TaeType::OdinFakeIsoBX: { + return "fakeOdinTAE"; + } + case TaeType::OdinCombinedBX: { + return "combOdinTAE"; + } + case TaeType::OdinIndexIsolatedBX: { + return "isoOdinIdxTAE"; + } + case TaeType::OdinIndexFakeIsoBX: { + return "fakeOdinIdxTAE"; + } + case TaeType::OdinIndexCombinedBX: { + return "combOdinIdxTAE"; + } + default: { + return "unknown"; + } + } +} + +FTLiteClusterTAEMonitor::TaeTypes FTLiteClusterTAEMonitor::TAEHistograms::eval_odin( const ODIN& odin, + const ColType& colType ) const { + TaeTypes tae_types; + + // FIXME: Sketch of logic + + // Odin event type + // - - - - - - - - + + bool isEmpty = ( colType == ColType::EE ); + bool isPhysics = ( colType == ColType::BB ); + + const auto event_type = odin.eventType(); + bool isIsolatedBX = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_08 ); + bool isLeadingBX = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_09 ); + bool isTrailingBX = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_10 ); + bool isEmptyBeforeIso = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_11 ); + bool isEmptyAfterIso = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_12 ); + bool isEmptyBeforeLead = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_13 ); + bool isEmptyAfterTrail = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::et_bit_14 ); + + // Odin regions + const bool isIsolatedReg = isEmptyBeforeIso || isIsolatedBX || isEmptyAfterIso; + const bool isLeadingReg = isEmptyBeforeLead || isLeadingBX; + const bool isTrailingReg = isTrailingBX || isEmptyAfterTrail; + const bool isFakeReg = isLeadingReg || isTrailingReg; + const bool isOdinReg = isIsolatedReg || isFakeReg; + const bool isBeforeReg = isEmptyBeforeIso || isEmptyBeforeLead; + const bool isAfterReg = isEmptyAfterIso || isEmptyAfterTrail; + const bool isColReg = isIsolatedBX || isLeadingBX || isTrailingBX; + + // TAE indicies + // - - - - - - - + // FIXME: Comment, add what types and bins are (add "_bin") + const int tae_idx = odin.timeAlignmentEventIndex(); + + // * corrected tae index + const int tae_corr = -tae_idx + m_maxTAE + 1; + + // * odin axis + int tae_odin_iso = isEmptyBeforeIso ? 0 : isIsolatedBX ? 1 : isEmptyAfterIso ? 2 : -1; // FIXME: make consts for bins? + int tae_odin_fake = isEmptyBeforeLead ? 0 : isLeadingBX ? 1 : isTrailingBX ? 2 : isEmptyAfterTrail ? 3 : -1; + int tae_odin_comb = isBeforeReg ? 0 : isColReg ? 1 : isAfterReg ? 2 : -1; + + // determine matching BX types + // all + tae_types[TaeType::AllBX] = tae_corr; + tae_types[TaeType::IndexAllBX] = tae_idx; + + // iso tae + if ( tae_corr == -1 ? isEmptyBeforeIso : tae_corr == 0 ? isIsolatedBX : tae_corr == 1 ? isEmptyAfterIso : isEmpty ) { + tae_types[TaeType::IsolatedBX] = tae_corr; + } + + // fake tae + if ( tae_corr == -1 ? isEmptyBeforeLead + : tae_corr == 0 ? isLeadingBX || isTrailingBX : tae_corr == 1 ? isEmptyAfterTrail : isEmpty ) { + tae_types[TaeType::FakeIsoBX] = tae_corr; + } + + // lead tae + if ( tae_corr == -1 ? isEmptyBeforeLead : tae_corr == 0 ? isLeadingBX : tae_corr > 0 ? isPhysics : isEmpty ) { + tae_types[TaeType::LeadingBX] = tae_corr; + } + + // trail tae + if ( tae_corr < 0 ? isPhysics : tae_corr == 0 ? isTrailingBX : tae_corr == 1 ? isEmptyAfterTrail : isEmpty ) { + tae_types[TaeType::TailingBX] = tae_corr; + } + + // odin iso tae + if ( isIsolatedReg ) { + tae_types[TaeType::OdinIsolatedBX] = tae_odin_iso; + tae_types[TaeType::OdinIndexIsolatedBX] = tae_idx; + } + + // odin fake tae + if ( isFakeReg ) { + tae_types[TaeType::OdinFakeIsoBX] = tae_odin_fake; + tae_types[TaeType::OdinIndexFakeIsoBX] = tae_idx; + } + + // odin fake tae + if ( isOdinReg ) { + tae_types[TaeType::OdinCombinedBX] = tae_odin_comb; + tae_types[TaeType::OdinIndexCombinedBX] = tae_idx; + } + + return tae_types; +} + +void FTLiteClusterTAEMonitor::TAEHistograms::fill_cluster( const LHCb::Detector::FTChannelID& channel_id, + const TaeTypes& taeTypes ) const { + + // channel information + const auto global_sipm_idx = channel_id.globalSipmIdx(); + + // fill histograms + for ( auto [type, tae] : taeTypes ) { + + // Only fill requested histograms + if ( std::find( m_cluster_hists.begin(), m_cluster_hists.end(), type ) == m_cluster_hists.end() ) { continue; } + + ++m_clusters.at( type )[tae]; + ++m_sipm.at( type )[{global_sipm_idx, tae}]; + m_sipm_profile.at( type )[global_sipm_idx] += tae; + m_quarter_sipm_hists.at( type ).fill( channel_id, tae ); + + // histograms per side + if ( channel_id.isRight() ) { + // C Side + ++m_clusters_c.at( type )[tae]; + m_sipm_profile_c.at( type )[global_sipm_idx] += tae; + } else { + // A Side + ++m_clusters_a.at( type )[tae]; + m_sipm_profile_a.at( type )[global_sipm_idx] += tae; + } + } +} + +void FTLiteClusterTAEMonitor::TAEHistograms::fill_event( const int nClusters, const TaeTypes& taeTypes ) const { + + // fill histograms + for ( auto [type, tae] : taeTypes ) { + + // Only fill requested histograms + if ( std::find( m_event_hists.begin(), m_event_hists.end(), type ) == m_event_hists.end() ) { continue; } + + ++m_clustersPerEvent.at( type )[{tae, nClusters}]; + } +} + +// ------------------------------------------------------------- +// Initialize +// - Define needed histograms +StatusCode FTLiteClusterTAEMonitor::initialize() { + return Consumer::initialize().andThen( [&] { + if ( m_drawTAE ) { m_tae_hists.emplace( this ); } + + + for ( ColType colType : m_colTypeHists ) { + const std::string folder = + ( colType == ColType::BB ) + ? "BeamBeam/" + : ( colType == ColType::B1 ) ? "BeamGas1/" : ( colType == ColType::B2 ) ? "BeamGas2/" : "EmptyEmpty/"; + m_colType_clusters.emplace( std::piecewise_construct, std::forward_as_tuple( colType ), + std::forward_as_tuple( this, folder + "nClusters", + "Number of clusters;Clusters/event; Events", + Axis{1000, -0.5f, 10000 - 0.5f} ) ); + m_colType_channel_idx_hists.emplace( std::piecewise_construct, std::forward_as_tuple( colType ), + std::forward_as_tuple( this, false, folder ) ); + m_colType_clusters_per_event_hists.emplace( std::piecewise_construct, std::forward_as_tuple( colType ), + std::forward_as_tuple( this, folder ) ); + } + + return StatusCode::SUCCESS; + + } ); +} + +// ------------------------------------------------------------- +// Executed on each event +void FTLiteClusterTAEMonitor::operator()( const ODINVector& odin, const InputVector& input ) const { + auto taeEvents = m_taeHandler.arrangeTAE( odin, input, 3 ); + if ( taeEvents.empty() ) { + return; + } + + for ( const auto& element : taeEvents ) { + int offset = element.first; + LHCb::const ODIN& odin = element.second.first; + LHCb::const FTLiteClusters& input = element.second.second; + + for ( const auto& cluster : input.range() ) { + // Cluster position information + const auto n_clusters = clusters.size(); + int nClustersASide = 0; + int nClustersCSide = 0; + + } + } + // ODIN information + // - - - - - - - - - + const auto bunch_id = odin.bunchId(); + + // * collision type + const auto event_type = odin.eventType(); + + bool isPhysics = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::Physics ); + bool isBeam1Gas = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::Beam1Gas ); + bool isBeam2Gas = event_type & static_cast<std::uint16_t>( LHCb::ODIN::EventTypes::Beam2Gas ); + + ColType colType = isPhysics ? ColType::BB : isBeam1Gas ? ColType::B1 : isBeam2Gas ? ColType::B2 : ColType::EE; + bool fill_colType = std::find( m_colTypeHists.begin(), m_colTypeHists.end(), colType ) != m_colTypeHists.end(); + + + // * TAE + const TaeTypes taeTypes = m_tae_hists->eval_odin( odin, colType ); + + + // TAE + + if ( m_tae_hists && odin.isTAE() ) { m_tae_hists->fill_event( n_clusters, taeTypes ); } + + ++m_nCalls; + } diff --git a/Muon/MuonInterfaces/CMakeLists.txt b/Muon/MuonInterfaces/CMakeLists.txt index 86648d6b7d86b473a9132e3aa9a9330374307ee3..492ead22e078b752b0c5880d022b39630bfb3a6b 100644 --- a/Muon/MuonInterfaces/CMakeLists.txt +++ b/Muon/MuonInterfaces/CMakeLists.txt @@ -15,9 +15,9 @@ Muon/MuonInterfaces gaudi_add_library(MuonInterfacesLib SOURCES - src/Lib/MuonHit.cpp - src/Lib/MuonNeuron.cpp - src/Lib/MuonTrack.cpp + src/Lib/MuonCluster.cpp + src/Lib/Neuron.cpp + src/Lib/NNMuonTrack.cpp LINK PUBLIC Gaudi::GaudiKernel @@ -26,6 +26,7 @@ gaudi_add_library(MuonInterfacesLib LHCb::LHCbMathLib LHCb::MuonDetLib LHCb::TrackEvent + LHCb::MuonDAQLib ROOT::GenVector ROOT::MathCore ) diff --git a/Muon/MuonInterfaces/dict/MuonInterfacesDict.h b/Muon/MuonInterfaces/dict/MuonInterfacesDict.h index a8f297ffb4d9f7711e7aa1a15110014aa139bdea..1aad38b3d570ee3066330b1cb255c157190fae60 100755 --- a/Muon/MuonInterfaces/dict/MuonInterfacesDict.h +++ b/Muon/MuonInterfaces/dict/MuonInterfacesDict.h @@ -11,26 +11,13 @@ #ifndef DICT_MUONINTERFACESDICT_H #define DICT_MUONINTERFACESDICT_H 1 -#include "MuonInterfaces/IMuonClusterRec.h" -#include "MuonInterfaces/IMuonHitDecode.h" -#include "MuonInterfaces/IMuonPadRec.h" -#include "MuonInterfaces/IMuonTrackMomRec.h" -#include "MuonInterfaces/IMuonTrackRec.h" -#include "MuonInterfaces/MuonHit.h" #include "MuonInterfaces/MuonLogHit.h" #include "MuonInterfaces/MuonLogPad.h" -#include "MuonInterfaces/MuonNeuron.h" -#include "MuonInterfaces/MuonTrack.h" +#include "MuonInterfaces/Neuron.h" MuonLogHit l1; MuonLogPad x1; -MuonHit m1; -MuonTrack t1; -MuonNeuron n1( nullptr, nullptr ); std::vector<MuonLogHit*> k1; std::vector<MuonLogPad*> z1; -std::vector<MuonHit*> v1; -std::vector<MuonTrack*> h1; -std::vector<MuonNeuron*> w1; #endif // DICT_MUONINTERFACESDICT_H diff --git a/Muon/MuonInterfaces/dict/MuonInterfacesDict.xml b/Muon/MuonInterfaces/dict/MuonInterfacesDict.xml index 03bb959bca80d89b21612eea8b0b14ec992c3bd9..4dfd7abe109112cf71ae80920a5aa49242fa4a57 100755 --- a/Muon/MuonInterfaces/dict/MuonInterfacesDict.xml +++ b/Muon/MuonInterfaces/dict/MuonInterfacesDict.xml @@ -10,21 +10,10 @@ --> <lcgdict> - <class name = "IMuonHitDecode"/> - <class name = "IMuonPadRec"/> - <class name = "IMuonClusterRec"/> - <class name = "IMuonTrackRec"/> - <class name = "IMuonTrackMomRec"/> <class name="MuonLogHit"/> <class name="MuonLogPad"/> - <class name="MuonHit"/> - <class name="MuonTrack"/> - <class name="MuonNeuron"/> <class name="std::vector<MuonLogHit*>"/> <class name="std::vector<MuonLogPad*>"/> - <class name="std::vector<MuonHit*>"/> - <class name="std::vector<MuonTrack*>"/> - <class name="std::vector<MuonNeuron*>"/> </lcgdict> diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonClusterRec.h b/Muon/MuonInterfaces/include/MuonInterfaces/IMuonClusterRec.h deleted file mode 100644 index d8b32e7b7b061417663020251d23c0092fc362e0..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonClusterRec.h +++ /dev/null @@ -1,34 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#pragma once - -#include "MuonDet/DeMuonDetector.h" - -#include "GaudiKernel/IAlgTool.h" - -#include <vector> - -class MuonHit; -class MuonLogPad; -class IMuonFastPosTool; - -/** - * Interface to clustering algorithm for standalone muon reconstruction - * @author Giacomo GRAZIANI - * @date 2009-10-15 - */ -struct IMuonClusterRec : extend_interfaces<IAlgTool> { - - DeclareInterfaceID( IMuonClusterRec, 4, 0 ); - - virtual std::vector<MuonHit> clusters( const std::vector<MuonLogPad>& pads, - DeMuonDetector const& muonDetector ) const = 0; -}; diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonClusterRec2.h b/Muon/MuonInterfaces/include/MuonInterfaces/IMuonClusterRec2.h deleted file mode 100644 index 0e03e71ef728c003cf2c668c04a8e74ee3ec12f7..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonClusterRec2.h +++ /dev/null @@ -1,39 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#ifndef MUONID_IMUONCLUSTERREC2_H -#define MUONID_IMUONCLUSTERREC2_H 1 - -// Include files -// from STL -#include <memory> -#include <vector> -// from Gaudi -#include "GaudiKernel/IAlgTool.h" -#include "Kernel/STLExtensions.h" -#include "MuonInterfaces/IMuonPadRec.h" - -struct ClusterVars { - std::array<int, 4> ncl{}; - std::array<float, 4> avg_cs{}; -}; - -/** @class IMuonClusterRec2 IMuonClusterRec2.h MuonInterfaces/IMuonClusterRec2.h - * - * Interface to clustering algorithm - * @author Marco Santimaria - * @date 2017-06-23 - */ -struct IMuonClusterRec2 : extend_interfaces<IAlgTool> { - - DeclareInterfaceID( IMuonClusterRec2, 1, 0 ); - virtual ClusterVars clusters( LHCb::span<const MuonLogPad> pads ) const = 0; -}; -#endif // MUONID_IMUONCLUSTERREC2_H diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonHitDecode.h b/Muon/MuonInterfaces/include/MuonInterfaces/IMuonHitDecode.h deleted file mode 100644 index 647746461b8e82fbab5c5d28ad08e4fbd35856df..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonHitDecode.h +++ /dev/null @@ -1,70 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#pragma once - -#include "Detector/Muon/TileID.h" -#include "Event/RawBank.h" -#include "MuonDet/DeMuonDetector.h" - -#include "GaudiKernel/IAlgTool.h" - -#include <vector> - -class MuonLogHit; - -/** - * @date 2008-01-25 - */ -class IMuonHitDecode : public extend_interfaces<IAlgTool> { -public: - DeclareInterfaceID( IMuonHitDecode, 3, 0 ); - - /// list of decoded hits - virtual std::vector<MuonLogHit> hits( LHCb::RawBank::View const&, const DeMuonDetector& muonDetector ) const = 0; - - virtual float tdc2ns( float TDCtime ) { return (float)( ( TDCtime - 7.5 ) * 25. / 16. ); } - virtual float tdc2ns_diff( float TDCdelta ) { return (float)( TDCdelta * 25. / 16. ); } - // specific for Online Monitoring - virtual int banksSize( LHCb::RawBank::BankType bankType, std::vector<int>& sizes ) = 0; - virtual unsigned int odeErrorWord( int T1, int BX ) = 0; - virtual int bankVersion() = 0; - virtual void dumpRawBanks() = 0; - virtual void dumpFrame( int Tell1, int ODE ) = 0; - virtual bool mappingIsOld() = 0; - virtual int l0id() = 0; - virtual int bcn() = 0; - virtual int cbcn() = 0; - virtual void setMultiBunch( int bxPerSide ) = 0; - virtual void unsetMultiBunch() = 0; - virtual bool multiBunch() = 0; - virtual int mbExtraBXPerside() = 0; - virtual bool centralBX() = 0; - virtual bool firstBX() = 0; - virtual bool lastBX() = 0; - virtual LHCb::Detector::Muon::TileID tileFromODE( int ODEnumber, int ODEchannel ) = 0; - virtual int odeIndex( int ODEnumber ) = 0; - virtual int channelsPerQuadrant( int station, int region ) = 0; - virtual int nPadX( int s ) = 0; - virtual int nPadY( int s ) = 0; - virtual int nPadXvy( int s, int r ) = 0; - virtual int nPadYvx( int s, int r ) = 0; - virtual float padSizeX( int station, int region ) = 0; - virtual float padSizeY( int station, int region ) = 0; - virtual float padSizeXvy( int station, int region ) = 0; - virtual float padSizeYvx( int station, int region ) = 0; - virtual LHCb::Detector::Muon::TileID tileFromLogCh( unsigned int q, unsigned int s, unsigned int r, short int io, - unsigned int ch ) = 0; - virtual bool completeEvent() = 0; - virtual void setCompleteEventMask( int mask ) { m_ceMask = mask; } - -private: - int m_ceMask; -}; diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonPadRec.h b/Muon/MuonInterfaces/include/MuonInterfaces/IMuonPadRec.h deleted file mode 100644 index 9d1140ab819f8d5befd58008d1b9b6cd7e49e7d9..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonPadRec.h +++ /dev/null @@ -1,31 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#pragma once - -#include "MuonDet/DeMuonDetector.h" -#include "MuonInterfaces/MuonLogPad.h" - -#include "GaudiKernel/IAlgTool.h" - -#include <vector> - -class MuonLogHit; - -/** - * @date 2008-01-25 - */ -struct IMuonPadRec : extend_interfaces<IAlgTool> { - - // Return the interface ID - DeclareInterfaceID( IMuonPadRec, 2, 0 ); - - virtual std::vector<MuonLogPad> pads( std::vector<MuonLogHit>& myhits, DeMuonDetector const& ) const = 0; -}; diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTimeCor.h b/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTimeCor.h deleted file mode 100644 index c01f717eaab8363005ffe82470653814ac5a96b0..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTimeCor.h +++ /dev/null @@ -1,38 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#ifndef MUONTOOLS_IMUONTIMECOR_H -#define MUONTOOLS_IMUONTIMECOR_H 1 - -// Include files -// from STL -#include <string> - -// from Gaudi -#include "Detector/Muon/TileID.h" -#include "GaudiKernel/IAlgTool.h" - -/** @class IMuonTimeCor IMuonTimeCor.h MuonTools/IMuonTimeCor.h - * - * - * @author Alessia Satta - * @date 2009-12-22 - */ -struct IMuonTimeCor : extend_interfaces<IAlgTool> { - - // Return the interface ID - DeclareInterfaceID( IMuonTimeCor, 2, 0 ); - virtual StatusCode getCorrection( LHCb::Detector::Muon::TileID tile, int& cor ) = 0; - virtual StatusCode getOutCorrection( LHCb::Detector::Muon::TileID tile, int& cor ) = 0; - virtual StatusCode setOutCorrection( LHCb::Detector::Muon::TileID tile, int cor ) = 0; - virtual StatusCode writeOutCorrection() = 0; - virtual StatusCode writeCorrection() = 0; -}; -#endif // MUONTOOLS_IMUONTIMECOR_H diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTrackMomRec.h b/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTrackMomRec.h deleted file mode 100644 index 11bd93b38d4a6d658705653575415ef887b4dc0c..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTrackMomRec.h +++ /dev/null @@ -1,40 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#ifndef MUONINTERFACES_IMUONTRACKMOMREC_H -#define MUONINTERFACES_IMUONTRACKMOMREC_H 1 - -// Include files -// from STL -#include <string> - -// from Gaudi -#include "GaudiKernel/IAlgTool.h" - -// from LHCb -#include "Event/Track.h" - -class MuonTrack; - -/** @class IMuonTrackMomRec IMuonTrackMomRec.h MuonInterfaces/IMuonTrackMomRec.h - * - * - * @author Giacomo Graziani - * @date 2010-02-10 - */ -struct IMuonTrackMomRec : extend_interfaces<IAlgTool> { - - // Return the interface ID - DeclareInterfaceID( IMuonTrackMomRec, 4, 0 ); - - virtual std::unique_ptr<LHCb::Track> recMomentum( MuonTrack& track ) const = 0; - virtual double getBdl() const = 0; -}; -#endif // MUONINTERFACES_IMUONTRACKMOMREC_H diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTrackRec.h b/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTrackRec.h deleted file mode 100644 index f1dcb5221d29dc734d3d4c75ca6c97c1103630b8..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/IMuonTrackRec.h +++ /dev/null @@ -1,39 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#pragma once - -#include "Event/RawEvent.h" -#include "MuonDet/DeMuonDetector.h" - -#include "GaudiKernel/IAlgTool.h" - -#include <vector> - -class MuonHit; -class MuonTrack; -class MuonNeuron; - -/** - * @author Giovanni Passaleva / Giacomo Graziani - * @date 2008-04-11 - */ -struct IMuonTrackRec : extend_interfaces<IAlgTool> { - - DeclareInterfaceID( IMuonTrackRec, 3, 0 ); - - virtual std::tuple<std::vector<MuonHit>, std::vector<MuonTrack>, bool> const - tracks( LHCb::RawBank::View const&, const DeMuonDetector& ) const = 0; - - virtual void setZref( double Zref ) = 0; - virtual void setPhysicsTiming( bool PhysTiming ) = 0; - virtual void setAssumeCosmics( bool AssumeCosmics ) = 0; - virtual void setAssumePhysics( bool AssumePhysics ) = 0; -}; diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/MuonCluster.h b/Muon/MuonInterfaces/include/MuonInterfaces/MuonCluster.h new file mode 100644 index 0000000000000000000000000000000000000000..594e853612ab49cc1448d0c46da1804d5819ac14 --- /dev/null +++ b/Muon/MuonInterfaces/include/MuonInterfaces/MuonCluster.h @@ -0,0 +1,153 @@ +/*****************************************************************************\ +* (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. * +\*****************************************************************************/ +#pragma once + +/** @class MuonPad MuonPad.h + * + * Muon pad class for standalone muon track reconstruction + * @author Alessia + * @date 2022-09-29 + */ +#include "Detector/Muon/TileID.h" +#include "GaudiKernel/Vector3DTypes.h" +#include "MuonDAQ/CommonMuonHit.h" +#include "MuonDAQ/MuonHitContainer.h" +#include "MuonDet/DeMuonDetector.h" +#include "MuonInterfaces/MuonPad.h" +#include <ostream> +#include <vector> + +namespace MuonClusterContainerLocation { + inline const std::string Default = "Muon/MuonClusters"; +} + +class MuonCluster final { +public: + /// standard constructor + MuonCluster() = default; + /// constructor from pad + MuonCluster( const MuonPad* pad, const DeMuonDetector::TilePosition pad_position ) { + createFromPad( pad, pad_position ); + } + + // public member functions + /// add a pad to this cluster + void addPad( const MuonPad* pad, const DeMuonDetector::TilePosition pad_position ); + + /// store a progressive hit number for debugging + void setHitID( int id ); + + int hitPID() const { return m_pid; } + int hitMother() const { return m_mamy_pid; } + /// return the logical channels used for this cluster + std::vector<const CommonMuonHit*> getHits() const; + /// return the MuonTileIDs of the logical channels used for this cluster + std::vector<LHCb::Detector::Muon::TileID> getTiles() const; + /// get the raw times of logical channels in this cluster + + std::vector<float> getTimes() const; + std::array<double, 3> hitTile_Size() const; /// half-sizes of the tile(s) underlying this hit + double hitTile_dX() const /// dx half-size of the tile underlying this hit + { + return 0.5 * ( m_hit_maxx - m_hit_minx ); + } + double hitTile_dY() const /// dy half-size of the tile underlying this hit + { + return 0.5 * ( m_hit_maxy - m_hit_miny ); + } + double hitTile_dZ() const /// dz half-size of the tile underlying this hit + { + return 0.5 * ( m_hit_maxz - m_hit_minz ); + } + float hitTime() const { return m_time; } /// in TDC counts ! + float hitDeltaTime() const { return m_dtime; } /// in TDC counts ! + float hitMinTime() const { return m_mintime; } /// in TDC counts ! + float hitMaxTime() const { return m_maxtime; } /// in TDC counts ! + + /// retireve the hit ID + int hitID() const { return m_hit_ID; } + /// return the hit station + int station() const { return m_pads.empty() ? -1 : m_pads[0]->tile().station(); } + /// return the hit region + int region() const { return m_pads.empty() ? -1 : m_pads[0]->tile().region(); } + /// return the (first) MuonTileID of the underlying logical pad + LHCb::Detector::Muon::TileID tile() const { + return !m_pads.empty() ? m_pads.front()->tile() : LHCb::Detector::Muon::TileID{}; + } + /// return the most centered tile of this cluster + LHCb::Detector::Muon::TileID centerTile() const; + /// check if this is a true logical and not an uncrossed log. channel + bool isTruePad() const { return !m_pads.empty() && m_pads.front()->truepad(); } + + /// return the (first) associated MuonPad object + const MuonPad* pad() const { return !m_pads.empty() ? m_pads[0] : nullptr; } + /// return the associated MuonPad objects + const std::vector<const MuonPad*>& pads() const { return m_pads; } + /// return the MuonTileIDs of the logical pads used for this cluster + std::vector<LHCb::Detector::Muon::TileID> getPadTiles() const; + /// number of logical pads in this hit + int npads() const { return m_pads.size(); } + int clsizeX() const { return m_xsize; } /// cluster size in X + int clsizeY() const { return m_ysize; } /// cluster size in Y + double dX() const { return m_dx; } /// error on X position + double dY() const { return m_dy; } /// error on Y position + double dZ() const { return m_dz; } /// error on Z position + double minX() const { return m_hit_minx; } + double maxX() const { return m_hit_maxx; } + double minY() const { return m_hit_miny; } + double maxY() const { return m_hit_maxy; } + double minZ() const { return m_hit_minz; } + double maxZ() const { return m_hit_maxz; } + double X() const { return m_position.X(); } + double Y() const { return m_position.Y(); } + double Z() const { return m_position.Z(); } + Gaudi::XYZVector pos() const { return m_position; } + MuonCluster& SetXYZ( double x, double y, double z ) { + m_position = {x, y, z}; + return *this; + } + +private: + void createFromPad( const MuonPad* pad, const DeMuonDetector::TilePosition pad_position ); + + void recomputeTime(); + +private: + std::vector<const MuonPad*> m_pads; + std::vector<double> m_padx; + std::vector<double> m_pady; + std::vector<double> m_padz; + Gaudi::XYZVector m_position{}; + double m_dx = 0; + double m_dy = 0; + double m_dz = 0; + double m_hit_minx = 0; + double m_hit_maxx = 0; + double m_hit_miny = 0; + double m_hit_maxy = 0; + double m_hit_minz = 0; + double m_hit_maxz = 0; + float m_time = 0; + float m_dtime = 0; + float m_mintime = 0; + float m_maxtime = 0; + int m_pid = 0; + int m_mamy_pid = 0; + int m_hit_ID = -1; + int m_xsize = 0; + int m_ysize = 0; + int m_zsize = 0; +}; + +using MuonClusters = std::vector<MuonCluster, LHCb::Allocators::EventLocal<MuonCluster>>; +typedef std::vector<const MuonCluster*> ConstMuonClusters; +typedef const Gaudi::Range_<MuonClusters> MuonClusterRange; +typedef const Gaudi::Range_<ConstMuonClusters> ConstMuonClusterRange; diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/MuonHit.h b/Muon/MuonInterfaces/include/MuonInterfaces/MuonHit.h deleted file mode 100644 index b96ccf8f5aaff5bdd068fbc44f7c0b394ef63286..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/MuonHit.h +++ /dev/null @@ -1,140 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#ifndef MUONHIT_H -#define MUONHIT_H 1 - -#include <vector> - -#include "Detector/Muon/TileID.h" -#include "Math/GenVector/PositionVector3D.h" -#include "Math/GenVector/VectorUtil.h" -#include "Math/Point3D.h" -#include "Math/Vector3D.h" - -#include "MuonInterfaces/MuonLogPad.h" -class MuonLogHit; -class IMuonFastPosTool; - -/** @class MuonHit MuonHit.h - * represents hits for muon track (cluster of muon logical pads) - * - * @author Giovanni Passaleva, Giacomo Graziani - * @date 2007-10-26 - */ - -class MuonHit final : public ROOT::Math::PositionVector3D<ROOT::Math::Cartesian3D<double>> { -public: - MuonHit(); - /// constructor for empty cluster - MuonHit( IMuonFastPosTool const* posTool ); - /// constructor from a MuonPad - MuonHit( const MuonLogPad* mp, IMuonFastPosTool const* posTool ); - - // public member functions - /// add a logical pad to this cluster - void addPad( const MuonLogPad* mp ); - - /// store a progressive hit number for debugging - void setHitID( int id ); - - int hitPID() const { return m_pid; } - int hitMother() const { return m_mamy_pid; } - /// return the logical channels used for this cluster - std::vector<const MuonLogHit*> getHits() const; - /// return the MuonTileIDs of the logical channels used for this cluster - std::vector<LHCb::Detector::Muon::TileID> getTiles() const; - /// get the raw times of logical channels in this cluster - std::vector<float> getTimes() const; - std::array<double, 3> hitTile_Size() const; /// half-sizes of the tile(s) underlying this hit - double hitTile_dX() const /// dx half-size of the tile underlying this hit - { - return 0.5 * ( m_hit_maxx - m_hit_minx ); - } - double hitTile_dY() const /// dy half-size of the tile underlying this hit - { - return 0.5 * ( m_hit_maxy - m_hit_miny ); - } - double hitTile_dZ() const /// dz half-size of the tile underlying this hit - { - return 0.5 * ( m_hit_maxz - m_hit_minz ); - } - float hitTime() const { return m_time; } /// in TDC counts ! - float hitDeltaTime() const { return m_dtime; } /// in TDC counts ! - float hitMinTime() const { return m_mintime; } /// in TDC counts ! - float hitMaxTime() const { return m_maxtime; } /// in TDC counts ! - - /// retireve the hit ID - int hitID() const { return m_hit_ID; } - /// return the hit station - int station() const { return m_pads.empty() ? -1 : (int)m_pads[0]->tile().station(); } - /// return the hit region - int region() const { return m_pads.empty() ? -1 : (int)m_pads[0]->tile().region(); } - /// return the (first) MuonTileID of the underlying logical pad - LHCb::Detector::Muon::TileID tile() const { - return !m_pads.empty() ? m_pads.front()->tile() : LHCb::Detector::Muon::TileID{}; - } - /// return the most centered tile of this cluster - LHCb::Detector::Muon::TileID centerTile() const; - /// check if this is a true logical and not an uncrossed log. channel - bool isTruePad() const { return !m_pads.empty() && m_pads.front()->truepad(); } - - /// return the (first) associated MuonLogPad object - const MuonLogPad* logPad() const { return !m_pads.empty() ? m_pads[0] : nullptr; } - /// return the associated MuonLogPad objects - const std::vector<const MuonLogPad*>& logPads() const { return m_pads; } - /// return the MuonTileIDs of the logical pads used for this cluster - std::vector<LHCb::Detector::Muon::TileID> getLogPadTiles() const; - /// number of logical pads in this hit - int npads() const { return m_pads.size(); } - int clsizeX() const { return m_xsize; } /// cluster size in X - int clsizeY() const { return m_ysize; } /// cluster size in Y - double dX() const { return m_dx; } /// error on X position - double dY() const { return m_dy; } /// error on Y position - double dZ() const { return m_dz; } /// error on Z position - double minX() const { return m_hit_minx; } - double maxX() const { return m_hit_maxx; } - double minY() const { return m_hit_miny; } - double maxY() const { return m_hit_maxy; } - double minZ() const { return m_hit_minz; } - double maxZ() const { return m_hit_maxz; } - -private: - void createFromPad( const MuonLogPad* mp ); - void recomputeTime(); - -private: - IMuonFastPosTool const* m_posTool = nullptr; - std::vector<const MuonLogPad*> m_pads; - std::vector<double> m_padx; - std::vector<double> m_pady; - std::vector<double> m_padz; - double m_dx = 0; - double m_dy = 0; - double m_dz = 0; - double m_hit_minx = 0; - double m_hit_maxx = 0; - double m_hit_miny = 0; - double m_hit_maxy = 0; - double m_hit_minz = 0; - double m_hit_maxz = 0; - float m_time = 0; - float m_dtime = 0; - float m_mintime = 0; - float m_maxtime = 0; - int m_pid = 0; - int m_mamy_pid = 0; - int m_hit_ID = -1; - int m_xsize = 0; - int m_ysize = 0; - int m_zsize = 0; -}; - -#endif // MUONHIT_H diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/MuonLogHit.h b/Muon/MuonInterfaces/include/MuonInterfaces/MuonLogHit.h index 9d7e5ca3ee32610d45912d2aaa44c7205353d6af..3c7ba7d33d1f6b9652c45b833bb96be5e622c35a 100644 --- a/Muon/MuonInterfaces/include/MuonInterfaces/MuonLogHit.h +++ b/Muon/MuonInterfaces/include/MuonInterfaces/MuonLogHit.h @@ -19,28 +19,28 @@ public: MuonLogHit() = default; /// constructor from tile explicit MuonLogHit( LHCb::Detector::Muon::TileID tile ) : m_tile( tile ) {} - inline LHCb::Detector::Muon::TileID tile() const { return m_tile; } - inline int odeNumber() const { return m_ODEnumber; } - inline void setOdeNumber( unsigned int& OdeNumber ) { m_ODEnumber = (int)OdeNumber; } - inline int odeChannel() const { return m_ODEchannel; } - inline void setOdeChannel( unsigned int& OdeChannel ) { m_ODEchannel = (int)OdeChannel; } - inline int odeIndex() const { return m_ODEindex; } - inline void setOdeIndex( short int& OdeIndex ) { m_ODEindex = (int)OdeIndex; } - inline float time() const { // avoid bias due to bins 0 and 1 being added in bin 1 + LHCb::Detector::Muon::TileID tile() const { return m_tile; } + int odeNumber() const { return m_ODEnumber; } + void setOdeNumber( unsigned int& OdeNumber ) { m_ODEnumber = (int)OdeNumber; } + int odeChannel() const { return m_ODEchannel; } + void setOdeChannel( unsigned int& OdeChannel ) { m_ODEchannel = (int)OdeChannel; } + int odeIndex() const { return m_ODEindex; } + void setOdeIndex( short int& OdeIndex ) { m_ODEindex = (int)OdeIndex; } + float time() const { // avoid bias due to bins 0 and 1 being added in bin 1 return (float)( ( m_time + 50 * 16 ) % 16 == 1 ? m_time - 0.499 : m_time ); } - inline int rawtime() const { return m_time; } - inline bool intime() const { return ( m_time > -1 && m_time < 16 ); } - inline int bx() { return ( ( m_time + 160 ) / 16 - 10 ); } + int rawtime() const { return m_time; } + bool intime() const { return ( m_time > -1 && m_time < 16 ); } + int bx() { return ( ( m_time + 160 ) / 16 - 10 ); } - inline void setTime( int TDCtime ) { m_time = TDCtime; } - inline std::string odeName() const { + void setTime( int TDCtime ) { m_time = TDCtime; } + std::string odeName() const { std::stringstream sname; sname << "Q" << ( m_tile.quarter() + 1 ) << "M" << ( m_tile.station() + 1 ) << "R" << ( m_tile.region() + 1 ) << "_" << m_ODEindex; return sname.str(); } - inline int odeHwID() const { + int odeHwID() const { return ( m_tile.quarter() + 1 ) * 1000 + ( m_tile.station() + 1 ) * 100 + ( m_tile.region() + 1 ) * 10 + m_ODEindex; } diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/MuonLogPad.h b/Muon/MuonInterfaces/include/MuonInterfaces/MuonLogPad.h index 1e6cd448424c8863873992a0063e427b01ed4365..c72c32e6b93219c25ee66c6dd79355ac62ea66ad 100644 --- a/Muon/MuonInterfaces/include/MuonInterfaces/MuonLogPad.h +++ b/Muon/MuonInterfaces/include/MuonInterfaces/MuonLogPad.h @@ -43,57 +43,66 @@ public: assignTimes( hit1->time(), hit2->time() ); } - // public member functions - typedef enum { NOX = 0, XONEFE = 1, XTWOFE = 2, UNPAIRED = 3 } LogPadType; + enum class Type { NOX = 0, XONEFE = 1, XTWOFE = 2, UNPAIRED = 3 }; + /// returns the type of logical pad (uncrossed, crossed with 1 or 2 FE channels, or unpaired log. channel) - inline LogPadType type() const { - if ( !m_truepad ) return UNPAIRED; - LogPadType t = XONEFE; + Type type() const { + if ( !m_truepad ) return Type::UNPAIRED; if ( m_tile.station() == 0 || ( m_tile.station() > 2 && m_tile.region() == 0 ) ) { - t = NOX; // single log. channel + return Type::NOX; // single log. channel } else { if ( m_tile.station() > 0 && m_tile.station() < 3 && m_tile.region() < 2 ) - t = XTWOFE; // double readout for M23R12 + return Type::XTWOFE; // double readout for M23R12 } - return t; + return Type::XONEFE; } - inline LHCb::Detector::Muon::TileID tile() const { return m_tile; } + LHCb::Detector::Muon::TileID tile() const { return m_tile; } - inline void assignTimes( float t1, float t2 ) { + void assignTimes( float t1, float t2 ) { m_time = 0.5 * ( t1 + t2 ); m_dtime = 0.5 * ( t1 - t2 ); } - inline void shiftTimes( float d1, float d2 ) { + void shiftTimes( float d1, float d2 ) { if ( !m_padhits.second ) return; float t1 = ( m_padhits.first )->time() + d1; float t2 = ( m_padhits.second )->time() + d2; assignTimes( t1, t2 ); } - inline void shiftTime( float delay ) { m_time += delay; } + void shiftTime( float delay ) { m_time += delay; } /// return the pad time (averaged for crossed pads), in TDC bits - inline float time() const { return m_time; } - inline float timeX() const { - LogPadType t = type(); - return (float)( ( t == XONEFE || t == XTWOFE ) ? m_time + m_dtime : -9999. ); + float time() const { return m_time; } + float timeX() const { + switch ( type() ) { + case Type::XONEFE: + case Type::XTWOFE: + return m_time + m_dtime; + default: + return std::numeric_limits<float>::lowest(); + } } - inline float timeY() const { - LogPadType t = type(); - return (float)( ( t == XONEFE || t == XTWOFE ) ? m_time - m_dtime : -9999. ); + float timeY() const { + switch ( type() ) { + case Type::XONEFE: + case Type::XTWOFE: + return m_time - m_dtime; + default: + return std::numeric_limits<float>::lowest(); + } } /// return the half difference of the two hit times for crossed pads, in TDC bits - inline float dtime() const { return m_dtime; } + float dtime() const { return m_dtime; } /// true if this is the crossing of two logical channels - inline bool crossed() const { return m_crossed; } + bool crossed() const { return m_crossed; } /// true if it's a real logical pad (if false, it's an unpaired logical channel) - inline bool truepad() const { return m_truepad; } - inline void settruepad() { m_truepad = true; } - inline bool intime() const { return m_intime; } - inline MuonLogHit* getHit( unsigned int i ) { return i == 0 ? m_padhits.first : i == 1 ? m_padhits.second : nullptr; } - inline std::vector<MuonLogHit*> getHits() const { + bool truepad() const { return m_truepad; } + void settruepad() { m_truepad = true; } + bool intime() const { return m_intime; } + MuonLogHit* getHit( unsigned int i ) { return i == 0 ? m_padhits.first : i == 1 ? m_padhits.second : nullptr; } + std::vector<MuonLogHit*> getHits() const { return m_padhits.second ? std::vector<MuonLogHit*>{m_padhits.first, m_padhits.second} : std::vector<MuonLogHit*>( 1, m_padhits.first ); } diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/MuonNeuron.h b/Muon/MuonInterfaces/include/MuonInterfaces/MuonNeuron.h deleted file mode 100644 index e28b8a6201eb50aba6295eb5988620fc60fff32b..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/MuonNeuron.h +++ /dev/null @@ -1,146 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#pragma once - -#include "Math/GenVector/VectorUtil.h" -#include "Math/Point3D.h" -#include "Math/Vector3D.h" -#include "MuonInterfaces/MuonHit.h" -#include <iostream> -#include <list> - -/** - * A MuonNeuron is an object that describes the neurons used in the NNET - * pattern recognition in the Muon Detector. A Neuron is an oriented segment - * conventionally pointing outward the intteraction point. It is built out - * of pairs of MuonHits belonging to different Muon stations. It is - * characterised by a tail, a head, a set of neurons to which it is connected - * to and the corresponding weights. - * By convention, station and region of a neuron are those of the tail - * - * @author Giovanni Passaleva - * @date 2007-08-21 - */ -class MuonNeuron final { -public: - MuonNeuron( MuonHit* h, MuonHit* t ); - - MuonNeuron( MuonHit* h, MuonHit* t, int s, int r ); - - MuonNeuron( MuonHit* h, MuonHit* t, int hID, int tID, int s, int r ); - - /// public member functions - - /// return neuron head - MuonHit* head() const { return m_head; } - /// returns the neuron tail - MuonHit* tail() const { return m_tail; } - - /// return the neuorn station. - inline int station() const { return m_station; } - - /// return neuron region - inline int region() const { return m_region; } - - /// calculate the neuron length in terms of crossed stations - int stationDifference(); - - /// return neuron length - double len() const; - - /// return neuron length along z - double deltaZ() const; - double deltaZ( const int st ) const; - - /// return neuron length in xz projection - double lenXZ() const; - - /// return neuron length in yz projection - double lenYZ() const; - - /// angle with another neuron in space - double angle( const MuonNeuron& n ); - - /// angle with another neuron in XZ - double angleXZ( const MuonNeuron& n ); - - /// angle with another neuron in YZ - double angleYZ( const MuonNeuron& n ); - - /// check if this is th with n - bool tailHead( const MuonNeuron& n ) const; - - /// check if this is ht with n - bool headTail( const MuonNeuron& n ) const; - - /// check if this is tt with n - bool tailTail( const MuonNeuron& n ) const; - - /// check if this is hh with n - bool headHead( const MuonNeuron& n ) const; - - /// check if this is connected to n - bool connectedTo( const MuonNeuron& n ) const; - - /// return the neuron projection in the xz plan - ROOT::Math::XYZVector projXZ(); - - /// return the neuron projection in the yz plan - ROOT::Math::XYZVector projYZ(); - - /// store the neuron weights - void setWeight( MuonNeuron* n, double ww ); - - /// return the neuron weights - std::list<std::pair<MuonNeuron*, double>> getWeights(); - - /// retain only the best HT and TH weights - void cleanupWeights(); - - /// kill double length neurons if there is a unit length one - void killDoubleLength(); - void killDoubleLength( const float angcut ); - - /// set a neuron status - void setStatus( double st ); - - /// return neuron status - double status(); - - /// Neuron ID, a progressive number for debugging purposes - void setNeuronID( int id ); - - /// retireve ID - int neuronID(); - - /// assign an ID to head and tail points - void setHeadTailID( int hID, int tID ); - - /// retireve head and tail IDs. First = head, Second = tail - std::pair<int, int> headTailID(); - -private: - MuonHit* m_head = nullptr; - MuonHit* m_tail = nullptr; - ROOT::Math::XYZVector m_neuron; - ROOT::Math::XYZVector m_neuronXZ; - ROOT::Math::XYZVector m_neuronYZ; - std::pair<const MuonNeuron*, double> m_weight; - std::list<std::pair<MuonNeuron*, double>> m_weight_list; - double m_status{1.0}; - int m_station{-1}; - int m_region{-1}; - int m_headID{-1}; - int m_tailID{-1}; - int m_ID{-1}; - // - void removeWeight( MuonNeuron* pn ); -}; diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/MuonPad.h b/Muon/MuonInterfaces/include/MuonInterfaces/MuonPad.h new file mode 100644 index 0000000000000000000000000000000000000000..de5422fea7920b0490008d049b0880ebd1739a06 --- /dev/null +++ b/Muon/MuonInterfaces/include/MuonInterfaces/MuonPad.h @@ -0,0 +1,124 @@ +/*****************************************************************************\ +* (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. * +\*****************************************************************************/ +#pragma once + +/** @class MuonPad MuonPad.h + * + * Muon pad class for standalone muon track reconstruction + * @author Alessia + * @date 2022-09-29 + */ + +#include "Detector/Muon/TileID.h" +#include "MuonDAQ/CommonMuonHit.h" +#include "MuonDAQ/MuonHitContainer.h" +#include "MuonDet/DeMuonDetector.h" +#include "MuonLogPad.h" +#include <iostream> +#include <ostream> +#include <vector> + +namespace MuonPadContainerLocation { + inline const std::string Default = "Muon/MuonPads"; +} + +class MuonPad final { +public: + using LogPadType = MuonLogPad::Type; + /// standard constructor + MuonPad() = default; + /// constructor for uncrossed pad + MuonPad( const CommonMuonHit* hit, bool truepad, LogPadType type ) + : m_tile{hit->tile()}, m_truepad{truepad}, m_muonhit{hit}, m_type{type} { + // range of TDC: [0;15] 1 bin corresponds to 25/16 ns + constexpr int lowerTDCvalue = -1; + constexpr int upperTDCvalue = 16; + // do some gimnastic to fill strips or pads + if ( hit->uncrossed() ) { + m_crossed = false; + m_subtiles[0] = ( hit->subtiles() )[0]; + m_time = hit->time(); + if ( m_time > lowerTDCvalue && m_time < upperTDCvalue ) m_intime = true; + } else { + m_crossed = true; + m_subtiles[0] = ( hit->subtiles() )[0]; + m_subtiles[1] = ( hit->subtiles() )[1]; + + assignTimes( hit->time(), hit->time() - hit->deltaTime() ); + int t2 = hit->time() - hit->deltaTime(); + if ( ( (int)hit->time() > lowerTDCvalue && (int)hit->time() < upperTDCvalue ) && + ( t2 > lowerTDCvalue && t2 < upperTDCvalue ) ) + m_intime = true; + } + } + + // public member functions + /// returns the type of logical pad (uncrossed, crossed with 1 or 2 FE channels, or unpaired log. channel) + LogPadType type() const { return m_type; } + LHCb::Detector::Muon::TileID tile() const { return m_tile; } + + void assignTimes( float t1, float t2 ) { + m_time = 0.5 * ( t1 + t2 ); + m_dtime = 0.5 * ( t1 - t2 ); + } + + /// return the pad time (averaged for crossed pads), in TDC bits + float time() const { return m_time; } + float timeX() const { + switch ( type() ) { + case LogPadType::XONEFE: + case LogPadType::XTWOFE: + return m_time + m_dtime; + default: + return std::numeric_limits<float>::lowest(); + } + } + float timeY() const { + switch ( type() ) { + case LogPadType::XONEFE: + case LogPadType::XTWOFE: + return m_time - m_dtime; + default: + return std::numeric_limits<float>::lowest(); + } + } + + /// return the half difference of the two hit times for crossed pads, in TDC bits + float dtime() const { return m_dtime; } + /// true if this is the crossing of two logical channels + bool crossed() const { return m_crossed; } + /// true if it's a real logical pad (if false, it's an unpaired logical channel) + bool truepad() const { return m_truepad; } + void settruepad() { m_truepad = true; } + bool intime() const { return m_intime; } + LHCb::Detector::Muon::TileID getHitTile( unsigned int i ) { + if ( i == 0 ) return m_subtiles[0]; + if ( i == 1 ) return m_subtiles[1]; + return LHCb::Detector::Muon::TileID(); + } + const CommonMuonHit* getHit() const { return m_muonhit; } + +private: + bool m_crossed = false; + LHCb::Detector::Muon::TileID m_tile = {}; + std::array<LHCb::Detector::Muon::TileID, 2> m_subtiles{{}}; + float m_time = 0; + float m_dtime = 0; + bool m_truepad = false; + bool m_intime = false; + const CommonMuonHit* m_muonhit{nullptr}; + LogPadType m_type = LogPadType::UNPAIRED; +}; + +using MuonPads = std::vector<MuonPad, LHCb::Allocators::EventLocal<MuonPad>>; +using ConstMuonPads = std::vector<const MuonPad*>; +using MuonPadRange = const Gaudi::Range_<MuonPads>; +using ConstMuonPadRange = const Gaudi::Range_<ConstMuonPads>; diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/MuonTrack.h b/Muon/MuonInterfaces/include/MuonInterfaces/MuonTrack.h deleted file mode 100644 index f3a24ca110ae8f4937aa2f768c87490c3a05bcaa..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/include/MuonInterfaces/MuonTrack.h +++ /dev/null @@ -1,165 +0,0 @@ -/*****************************************************************************\ -* (c) Copyright 2000-2020 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. * -\*****************************************************************************/ -#ifndef MUONTRACKRECMUONTRACK_H -#define MUONTRACKRECMUONTRACK_H 1 - -// Include files -#include "MuonInterfaces/MuonHit.h" -#include <GaudiKernel/Point4DTypes.h> -#include <GaudiKernel/StatusCode.h> -#include <GaudiKernel/Vector3DTypes.h> -#include <iostream> -#include <map> -#include <vector> -/** @class MuonTrack MuonTrack.h - * - * A MuonTrack is an object containing a list of MuonHits belonging to a muon - * track. The hits are stored in a std::map<int, MuonHit> where the int key is - * the ID (i.e. progressive number) of the inserted MuonHit. - * - * @author Giovanni Passaleva / Giacomo Graziani - * @date 2007-08-21 - */ - -#ifndef MUONTRACKRECNMSPC -namespace MuonTrackRec { - extern double muspeed; - extern double Zref; - extern bool PhysTiming; - extern bool IsCosmic; - extern bool IsPhysics; -} // namespace MuonTrackRec -#endif // MUONTRACKRECNMSPC - -class MuonTrack final { -public: - /// Standard constructor - MuonTrack() = default; - - /// public member functions - /// insert a hit in the track - void insert( const int id, MuonHit* xyz ) { m_muonTrack.emplace( id, xyz ); }; - /// store the best hit candidates in each station - void setBestCandidate( std::vector<const MuonHit*> bcand ) { m_bestcand = std::move( bcand ); } - /// retrieve the array of best candidates. Best candidates - /// are sorted by station by construction - std::vector<const MuonHit*> bestCandidate() const { return m_bestcand; }; - /// set the clone flag - void setClone() { m_isClone = true; } - /// get the Clone flag - bool isClone() const { return m_isClone; } - /// return a vector with hits - std::vector<const MuonHit*> getHits() const; - /// get the track span i.e. the max length in station units - int getSpan() const; - /// get the number of stations giving a hit to this track - int getFiringStations() const; - // linear chi2 fit. Track is fitted separately in XZ, YZ, TZ (assuming speed of light) - StatusCode linFit(); - // add XTalk tracks - StatusCode AddXTalk( const std::vector<MuonHit>& trackhits, float cut = 1.5, int m_skipStation = -1 ); - // linear fit to get particle speed - StatusCode speedFit(); - inline double chi2x() const { return m_chi2x; } /// chi2/dof XZ - inline double chi2y() const { return m_chi2y; } /// chi2/dof YZ - // slope XZ - inline double sx() const { return m_sx; } - // intercept XZ - inline double bx() const { return m_bx; } - // slope YZ - inline double sy() const { return m_sy; } - // direction (+1 forward or -1 backward) - double sz() const; - // intercept YZ - inline double by() const { return m_by; } - // track t0 - inline double t0() const { return m_t0; } - // estimated error on time - inline double sigmat() const { return m_sigmat; } - // fitted speed (in c units) - inline double speed() { - if ( !m_speedFitted ) speedFit().ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ ); - return m_speed; - } - // error on fitted speed (in c units) - inline double sigmaspeed() const { return m_sigmaspeed; } - - // errors on the above parameters - inline double errsx() const { return m_errsx; } - inline double errbx() const { return m_errbx; } - inline double covbsx() const { return m_covbsx; } - inline double errsy() const { return m_errsy; } - inline double errby() const { return m_errby; } - inline double covbsy() const { return m_covbsy; } - inline double errt0() const { return m_errt0; } - - // polar angles wrt beam axis (taking into account track direction) - inline double theta() const { return acos( sz() / sqrt( m_sx * m_sx + m_sy * m_sy + 1 ) ); } - inline double phi() const { return atan2( m_sy, m_sx ); } - // polar angles wrt vertical axis (pointing down) - inline double thetaVert() const { return acos( -( m_sy / sz() ) / sqrt( m_sx * m_sx + m_sy * m_sy + 1 ) ); } - inline double phiVert() const { return atan2( m_sx, sz() ); } - - // track extrapolation - void extrap( double Z, Gaudi::XYZTPoint& Pos, Gaudi::XYZTPoint* PosErr = NULL ); - // residuals - Gaudi::XYZTPoint& residuals( MuonHit& hit ); - // corrected time of i-th hit (i from 0) - double correctedTime( const MuonHit& hit ) const; - /// cluster size (total, and in the x/y views) associated to a given hit - /// (only if first hit of a given station, to avoid double counting) - int clsize( const MuonHit* hit, int& xsize, int& ysize ) const; - /// track momentum variables; setters - inline void setP( double p ) { m_trackP = p; } - inline void setPt( double pt ) { m_trackPt = pt; } - inline void setqOverP( double qp ) { m_trackqOverP = qp; } - inline void setMomentum( Gaudi::XYZVector mom ) { m_trackMomentum = mom; } - /// track momentum variables; getters - inline double p() const { return m_trackP; } - inline double pt() const { return m_trackPt; } - inline double qOverP() const { return m_trackqOverP; } - inline Gaudi::XYZVector momentum() const { return m_trackMomentum; } - -private: - double correctTOF( double rawT, double X, double Y, double Z ) const; - double correctTime( double rawT, double X, double Y, double Z ) const; - typedef std::map<int, MuonHit*>::value_type MuonTkVtype; - std::map<int, MuonHit*> m_muonTrack; - std::vector<const MuonHit*> m_bestcand; - bool m_isClone = false; - double m_chi2x = -1.; - double m_chi2y = -1.; - double m_sx = -1.; - double m_bx = -1.; - double m_sy = -1.; - double m_by = -1.; - double m_errsx = -1.; - double m_errbx = -1.; - double m_covbsx = -1.; - double m_errsy = -1.; - double m_errby = -1.; - double m_covbsy = -1.; - double m_t0 = -1.; - double m_errt0 = -1.; - double m_sigmat = -1.; - double m_speed = 0.; - double m_sigmaspeed = 0.; - bool m_speedFitted = false; - Gaudi::XYZTPoint m_point; - // track momentum tracks - double m_trackP = 0.; - double m_trackPt = 0.; - double m_trackqOverP = 0.; - Gaudi::XYZVector m_trackMomentum = {0., 0., 0.}; - // -}; - -#endif // MUONTRACKRECMUONTRACK_H diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/NNMuonTrack.h b/Muon/MuonInterfaces/include/MuonInterfaces/NNMuonTrack.h new file mode 100644 index 0000000000000000000000000000000000000000..c2844829598d479a0e2a7a79377ec4755826e670 --- /dev/null +++ b/Muon/MuonInterfaces/include/MuonInterfaces/NNMuonTrack.h @@ -0,0 +1,154 @@ +/*****************************************************************************\ +* (c) Copyright 2000-2020 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 + +// Include files +#include "MuonInterfaces/MuonCluster.h" +#include <GaudiKernel/Point4DTypes.h> +#include <GaudiKernel/StatusCode.h> +#include <GaudiKernel/Vector3DTypes.h> + +#include "GaudiKernel/Range.h" +#include "Kernel/EventLocalAllocator.h" +#include "Kernel/STLExtensions.h" + +#include "Detector/Muon/TileID.h" +#include "MuonDet/DeMuonDetector.h" +#include <cmath> +#include <iostream> +#include <map> +#include <ostream> +#include <vector> + +/** @class MuonTrack MuonTrack.h + * + * A MuonTrack is an object containing a list of MuonHits belonging to a muon + * track. The hits are stored in a std::map<int, MuonHit> where the int key is + * the ID (i.e. progressive number) of the inserted MuonHit. + * + * @author Giovanni Passaleva / Giacomo Graziani + * @date 2007-08-21 + */ + +namespace NNMuonTrackContainerLocation { + inline const std::string Default = "Muon/NNMuonTracks"; +} + +class NNMuonTrack final { +public: + /// Standard constructor + NNMuonTrack() = default; + + /// public member functions + /// insert a hit in the track + void insert( const int id, const MuonCluster* xyz ) { m_muonTrack.emplace( id, xyz ); }; + /// store the best hit candidates in each station + void setBestCandidate( std::vector<const MuonCluster*> bcand ) { m_bestcand = std::move( bcand ); } + /// retrieve the array of best candidates. Best candidates + /// are sorted by station by construction + std::vector<const MuonCluster*> bestCandidate() const { return m_bestcand; }; + /// set the clone flag + void setClone() { m_isClone = true; } + /// get the Clone flag + bool isClone() const { return m_isClone; } + /// return a vector with hits + std::vector<const MuonCluster*> getHits() const; + /// get the track span i.e. the max length in station units + int getSpan() const; + /// get the number of stations giving a hit to this track + int getFiringStations() const; + // linear chi2 fit. Track is fitted separately in XZ, YZ, TZ (assuming speed of light) + StatusCode linFit(); + // add XTalk tracks + StatusCode AddXTalk( const MuonClusters* trackhits, float cut = 1.5, int m_skipStation = -1 ); + // linear fit to get particle speed + StatusCode speedFit(); + double chi2x() const { return m_chi2x; } /// chi2/dof XZ + double chi2y() const { return m_chi2y; } /// chi2/dof YZ + // slope XZ + double sx() const { return m_sx; } + // intercept XZ + double bx() const { return m_bx; } + // slope YZ + double sy() const { return m_sy; } + // direction (+1 forward or -1 backward) + double sz() const; + // intercept YZ + double by() const { return m_by; } + // track t0 + double t0() const { return m_t0; } + // estimated error on time + double sigmat() const { return m_sigmat; } + // fitted speed (in c units) + double speed() { + if ( !m_speedFitted ) speedFit().ignore(); + return m_speed; + } + // error on fitted speed (in c units) + double sigmaspeed() const { return m_sigmaspeed; } + + // errors on the above parameters + double errsx() const { return m_errsx; } + double errbx() const { return m_errbx; } + double covbsx() const { return m_covbsx; } + double errsy() const { return m_errsy; } + double errby() const { return m_errby; } + double covbsy() const { return m_covbsy; } + double errt0() const { return m_errt0; } + + // polar angles wrt beam axis (taking into account track direction) + double theta() const { return std::acos( sz() / std::sqrt( m_sx * m_sx + m_sy * m_sy + 1 ) ); } + double phi() const { return std::atan2( m_sy, m_sx ); } + // polar angles wrt vertical axis (pointing down) + double thetaVert() const { return std::acos( -( m_sy / sz() ) / std::sqrt( m_sx * m_sx + m_sy * m_sy + 1 ) ); } + double phiVert() const { return std::atan2( m_sx, sz() ); } + + // track extrapolation + void extrap( double Z, Gaudi::XYZTPoint& Pos, Gaudi::XYZTPoint* PosErr = nullptr ); + // residuals + Gaudi::XYZTPoint& residuals( const MuonCluster& hit ); + // corrected time of i-th hit (i from 0) + double correctedTime( const MuonCluster& hit ) const; + /// cluster size (total, and in the x/y views) associated to a given hit + /// (only if first hit of a given station, to avoid double counting) + int clsize( const MuonCluster* hit, int& xsize, int& ysize ) const; + +private: + double correctTOF( double rawT, double X, double Y, double Z ) const; + double correctTime( double rawT, double X, double Y, double Z ) const; + std::map<int, const MuonCluster*> m_muonTrack; + std::vector<const MuonCluster*> m_bestcand; + bool m_isClone = false; + double m_chi2x = -1.; + double m_chi2y = -1.; + double m_sx = -1.; + double m_bx = -1.; + double m_sy = -1.; + double m_by = -1.; + double m_errsx = -1.; + double m_errbx = -1.; + double m_covbsx = -1.; + double m_errsy = -1.; + double m_errby = -1.; + double m_covbsy = -1.; + double m_t0 = -1.; + double m_errt0 = -1.; + double m_sigmat = -1.; + double m_speed = 0.; + double m_sigmaspeed = 0.; + bool m_speedFitted = false; + Gaudi::XYZTPoint m_point; +}; + +using NNMuonTracks = std::vector<NNMuonTrack, LHCb::Allocators::EventLocal<NNMuonTrack>>; +using ConstNNMuonTracks = std::vector<const NNMuonTrack*>; +using NNMuonTrackRange = const Gaudi::Range_<NNMuonTracks>; +using ConstNNMuonTrackRange = const Gaudi::Range_<ConstNNMuonTracks>; diff --git a/Muon/MuonInterfaces/include/MuonInterfaces/Neuron.h b/Muon/MuonInterfaces/include/MuonInterfaces/Neuron.h new file mode 100644 index 0000000000000000000000000000000000000000..202c4ecd70727109d64cfee608cde0b945d12770 --- /dev/null +++ b/Muon/MuonInterfaces/include/MuonInterfaces/Neuron.h @@ -0,0 +1,148 @@ +/*****************************************************************************\ +* (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. * +\*****************************************************************************/ +#pragma once + +#include "Math/GenVector/VectorUtil.h" +#include "Math/Point3D.h" +#include "Math/Vector3D.h" +#include "MuonInterfaces/MuonCluster.h" +#include <iostream> +#include <list> + +/** + * A Neuron is an object that describes the neurons used in the NNET + * pattern recognition in the Muon Detector. A Neuron is an oriented segment + * conventionally pointing outward the intteraction point. It is built out + * of pairs of MuonHits belonging to different Muon stations. It is + * characterised by a tail, a head, a set of neurons to which it is connected + * to and the corresponding weights. + * By convention, station and region of a neuron are those of the tail + * + * @author Giovanni Passaleva + * @date 2007-08-21 + */ +namespace LHCb::Muon { + class Neuron final { + public: + Neuron( const MuonCluster* h, const MuonCluster* t ); + + Neuron( const MuonCluster* h, const MuonCluster* t, int s, int r ); + + Neuron( const MuonCluster* h, const MuonCluster* t, int hID, int tID, int s, int r ); + + /// public member functions + + /// return neuron head + const MuonCluster* head() const { return m_head; } + /// returns the neuron tail + const MuonCluster* tail() const { return m_tail; } + + /// return the neuorn station. + int station() const { return m_station; } + + /// return neuron region + int region() const { return m_region; } + + /// calculate the neuron length in terms of crossed stations + int stationDifference(); + + /// return neuron length + double len() const; + + /// return neuron length along z + // double deltaZ() const; + // double deltaZ( const int st ) const; + + /// return neuron length in xz projection + double lenXZ() const; + + /// return neuron length in yz projection + double lenYZ() const; + + /// angle with another neuron in space + double angle( const Neuron& n ); + + /// angle with another neuron in XZ + double angleXZ( const Neuron& n ); + + /// angle with another neuron in YZ + double angleYZ( const Neuron& n ); + + /// check if this is th with n + bool tailHead( const Neuron& n ) const; + + /// check if this is ht with n + bool headTail( const Neuron& n ) const; + + /// check if this is tt with n + bool tailTail( const Neuron& n ) const; + + /// check if this is hh with n + bool headHead( const Neuron& n ) const; + + /// check if this is connected to n + bool connectedTo( const Neuron& n ) const; + + /// return the neuron projection in the xz plan + ROOT::Math::XYZVector projXZ(); + + /// return the neuron projection in the yz plan + ROOT::Math::XYZVector projYZ(); + + /// store the neuron weights + void setWeight( Neuron* n, double ww ); + + /// return the neuron weights + const std::list<std::pair<Neuron*, double>>& getWeights() const; + + /// retain only the best HT and TH weights + void cleanupWeights(); + + /// kill double length neurons if there is a unit length one + void killDoubleLength(); + void killDoubleLength( const float angcut ); + + /// set a neuron status + void setStatus( double st ); + + /// return neuron status + double status(); + + /// Neuron ID, a progressive number for debugging purposes + void setNeuronID( int id ); + + /// retireve ID + int neuronID(); + + /// assign an ID to head and tail points + void setHeadTailID( int hID, int tID ); + + /// retireve head and tail IDs. First = head, Second = tail + std::pair<int, int> headTailID(); + + private: + const MuonCluster* m_head = nullptr; + const MuonCluster* m_tail = nullptr; + ROOT::Math::XYZVector m_neuron; + ROOT::Math::XYZVector m_neuronXZ; + ROOT::Math::XYZVector m_neuronYZ; + std::pair<const Neuron*, double> m_weight; + std::list<std::pair<Neuron*, double>> m_weight_list; + double m_status{1.0}; + int m_station{-1}; + int m_region{-1}; + int m_headID{-1}; + int m_tailID{-1}; + int m_ID{-1}; + // + void removeWeight( Neuron* pn ); + }; +} // namespace LHCb::Muon diff --git a/Muon/MuonInterfaces/src/Lib/MuonCluster.cpp b/Muon/MuonInterfaces/src/Lib/MuonCluster.cpp new file mode 100644 index 0000000000000000000000000000000000000000..06cbbc28cedacec4e528b9949af7d3a309d524ca --- /dev/null +++ b/Muon/MuonInterfaces/src/Lib/MuonCluster.cpp @@ -0,0 +1,170 @@ +/*****************************************************************************\ + * (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. * +\*****************************************************************************/ +// Include files +#include "MuonInterfaces/MuonCluster.h" +#include "MuonInterfaces/MuonPad.h" +#include <cmath> + +namespace { + double recomputeClusterPos( const std::vector<double>& data, double& dpos, int& clsize, double step ) { + int np = 0; + double sum = 0., sum2 = 0.; + for ( auto ip = data.begin(); ip != data.end(); ++ip ) { + // check that this position is not already the same of a previous pad + bool prendila = std::none_of( data.begin(), ip, [&]( double p ) { return std::abs( *ip - p ) < 0.5 * step; } ); + if ( prendila ) { + ++np; + sum += *ip; + sum2 += std::pow( *ip, 2 ); + } + } + if ( np > 1 ) { + const float tmp = ( sum2 - sum * sum / np ) / ( np * np - np ); + dpos = ( tmp > 0 ? std::sqrt( tmp ) : 0.0f ); + } + clsize = np; + return ( np > 0 ? sum / np : 0.0 ); + } +} // namespace + +void MuonCluster::createFromPad( const MuonPad* pad, const DeMuonDetector::TilePosition pos ) { + m_pads.clear(); + if ( pad->type() == MuonPad::LogPadType::UNPAIRED ) return; + if ( pos.z() > 0 ) { + m_pads.push_back( pad ); + m_padx.push_back( pos.x() ); + m_pady.push_back( pos.y() ); + m_padz.push_back( pos.z() ); + static const auto isqrt_12 = 1.0 / std::sqrt( 12. ); + m_dx = isqrt_12 * pos.dX(); + m_dy = isqrt_12 * pos.dY(); + m_dz = isqrt_12 * pos.dZ(); + m_hit_minx = pos.x() - pos.dX(); + m_hit_maxx = pos.x() + pos.dX(); + m_hit_miny = pos.y() - pos.dY(); + m_hit_maxy = pos.y() + pos.dY(); + m_hit_minz = pos.z() - pos.dZ(); + m_hit_maxz = pos.z() + pos.dZ(); + SetXYZ( pos.x(), pos.y(), pos.z() ); + m_xsize = m_ysize = 1; + + recomputeTime(); + } +} + +void MuonCluster::recomputeTime() { + int np = 0; + float sum = 0., sum2 = 0.; + m_mintime = 999.; + m_maxtime = -999.; + + auto accumulate = [&]( float time ) { + sum += time; + sum2 += time * time; + np++; + if ( time < m_mintime ) m_mintime = time; + if ( time > m_maxtime ) m_maxtime = time; + }; + + for ( const auto& pad : m_pads ) { + if ( pad->type() == MuonPad::LogPadType::XTWOFE ) { // consider the two measurements as independent + accumulate( pad->timeX() ); + accumulate( pad->timeY() ); + } else { + accumulate( pad->time() ); + } + } + + m_time = ( np > 0 ? sum / np : 0.0f ); + if ( np > 1 ) { + const float tmp = ( sum2 - sum * sum / np ) / ( np * np - np ); + m_dtime = ( tmp > 0 ? std::sqrt( tmp ) : 0.0f ); + } else { + m_dtime = m_pads[0]->dtime(); + } +} + +void MuonCluster::addPad( const MuonPad* mp, const DeMuonDetector::TilePosition pos ) { + if ( mp->type() == MuonPad::LogPadType::UNPAIRED ) return; + if ( m_pads.empty() ) { + createFromPad( mp, pos ); + } else { + + if ( pos.z() > 0 ) { + m_pads.push_back( mp ); + m_padx.push_back( pos.x() ); + m_pady.push_back( pos.y() ); + m_padz.push_back( pos.z() ); + if ( ( pos.x() - pos.dX() ) < m_hit_minx ) m_hit_minx = pos.x() - pos.dX(); + if ( ( pos.x() + pos.dX() ) > m_hit_maxx ) m_hit_maxx = pos.x() + pos.dX(); + if ( ( pos.y() - pos.dY() ) < m_hit_miny ) m_hit_miny = pos.y() - pos.dY(); + if ( ( pos.y() + pos.dY() ) > m_hit_maxy ) m_hit_maxy = pos.y() + pos.dY(); + if ( ( pos.z() - pos.dZ() ) < m_hit_minz ) m_hit_minz = pos.z() - pos.dZ(); + if ( ( pos.z() + pos.dZ() ) > m_hit_maxz ) m_hit_maxz = pos.z() + pos.dZ(); + auto x = recomputeClusterPos( m_padx, m_dx, m_xsize, pos.dX() ); + auto y = recomputeClusterPos( m_pady, m_dy, m_ysize, pos.dY() ); + auto z = recomputeClusterPos( m_padz, m_dz, m_zsize, 10 * pos.dZ() ); + SetXYZ( x, y, z ); + + recomputeTime(); + } + } +} + +/// return tile sizes +std::array<double, 3> MuonCluster::hitTile_Size() const { + return {( m_hit_maxx - m_hit_minx ) / 2., ( m_hit_maxy - m_hit_miny ) / 2., ( m_hit_maxz - m_hit_minz ) / 2.}; +} + +/// store a progressive hit number for debugging +void MuonCluster::setHitID( int id ) { + if ( id != 0 ) m_hit_ID = id; +} + +std::vector<const CommonMuonHit*> MuonCluster::getHits() const { + std::vector<const CommonMuonHit*> out; + for ( const auto& pad : m_pads ) { + auto padhits = pad->getHit(); + out.insert( out.end(), padhits ); + } + return out; +} + +std::vector<LHCb::Detector::Muon::TileID> MuonCluster::getPadTiles() const { + std::vector<LHCb::Detector::Muon::TileID> tiles; + tiles.reserve( m_pads.size() ); + std::transform( m_pads.begin(), m_pads.end(), std::back_inserter( tiles ), + []( const MuonPad* mlp ) { return mlp->tile(); } ); + return tiles; +} + +std::vector<float> MuonCluster::getTimes() const { + auto hits = getHits(); + std::vector<float> times; + times.reserve( hits.size() ); + std::transform( hits.begin(), hits.end(), std::back_inserter( times ), + []( const CommonMuonHit* mlh ) { return mlh->time(); } ); + return times; +} + +LHCb::Detector::Muon::TileID MuonCluster::centerTile() const { + if ( m_pads.size() == 1 ) return m_pads.front()->tile(); + double d2min = std::numeric_limits<double>::max(); + LHCb::Detector::Muon::TileID out; + for ( unsigned int ip = 0; ip < m_pads.size(); ip++ ) { + auto d2 = std::pow( m_padx[ip] - X(), 2 ) + std::pow( m_pady[ip] - Y(), 2 ) + std::pow( m_padz[ip] - Z(), 2 ); + if ( d2 < d2min ) { + d2min = d2; + out = m_pads[ip]->tile(); + } + } + return out; +} diff --git a/Muon/MuonInterfaces/src/Lib/MuonHit.cpp b/Muon/MuonInterfaces/src/Lib/MuonHit.cpp deleted file mode 100644 index 87ce2485e0e9c8d38bfa0cd3d4ec63b7b3905611..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/src/Lib/MuonHit.cpp +++ /dev/null @@ -1,204 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -// Include files -#include "MuonInterfaces/MuonHit.h" -#include "MuonDet/IMuonFastPosTool.h" -#include "MuonInterfaces/MuonLogHit.h" -#include <cmath> - -namespace { - double recomputePos( const std::vector<double>& data, double& dpos, int& clsize, double step ) { - int np = 0; - double sum = 0., sum2 = 0.; - for ( auto ip = data.begin(); ip != data.end(); ++ip ) { - // check that this position is not already the same of a previous pad - bool prendila = std::none_of( data.begin(), ip, [&]( double p ) { return std::abs( *ip - p ) < 0.5 * step; } ); - if ( prendila ) { - ++np; - sum += *ip; - sum2 += std::pow( *ip, 2 ); - } - } - if ( np > 1 ) { - const float tmp = ( sum2 - sum * sum / np ) / ( np * np - np ); - dpos = ( tmp > 0 ? std::sqrt( tmp ) : 0.0f ); - } - clsize = np; - return ( np > 0 ? sum / np : 0.0 ); - } -} // namespace - -MuonHit::MuonHit() = default; - -MuonHit::MuonHit( IMuonFastPosTool const* posTool ) : m_posTool( posTool ) {} - -//============================================================================= -// Constructor from a MuonLogPad -//============================================================================= - -MuonHit::MuonHit( const MuonLogPad* mp, IMuonFastPosTool const* posTool ) - : ROOT::Math::XYZPoint( 0., 0., 0. ), m_posTool( posTool ) { - createFromPad( mp ); -} - -void MuonHit::createFromPad( const MuonLogPad* mp ) { - m_pads.clear(); - if ( mp->type() == MuonLogPad::UNPAIRED ) return; - auto pos = m_posTool->calcTilePos( mp->tile() ); - if ( pos ) { - m_pads.push_back( mp ); - m_padx.push_back( pos->x() ); - m_pady.push_back( pos->y() ); - m_padz.push_back( pos->z() ); - static const auto isqrt_12 = 1.0 / std::sqrt( 12. ); - m_dx = isqrt_12 * pos->dX(); - m_dy = isqrt_12 * pos->dY(); - m_dz = isqrt_12 * pos->dZ(); - m_hit_minx = pos->x() - pos->dX(); - m_hit_maxx = pos->x() + pos->dX(); - m_hit_miny = pos->y() - pos->dY(); - m_hit_maxy = pos->y() + pos->dY(); - m_hit_minz = pos->z() - pos->dZ(); - m_hit_maxz = pos->z() + pos->dZ(); - SetXYZ( pos->x(), pos->y(), pos->z() ); - m_xsize = m_ysize = 1; - - recomputeTime(); - } -} - -//============================================================================= -// public member functions -// - -void MuonHit::addPad( const MuonLogPad* mp ) { - if ( mp->type() == MuonLogPad::UNPAIRED ) return; - if ( m_pads.empty() ) { - createFromPad( mp ); - } else { - auto pos = m_posTool->calcTilePos( mp->tile() ); - if ( pos ) { - m_pads.push_back( mp ); - m_padx.push_back( pos->x() ); - m_pady.push_back( pos->y() ); - m_padz.push_back( pos->z() ); - if ( ( pos->x() - pos->dX() ) < m_hit_minx ) m_hit_minx = pos->x() - pos->dX(); - if ( ( pos->x() + pos->dX() ) > m_hit_maxx ) m_hit_maxx = pos->x() + pos->dX(); - if ( ( pos->y() - pos->dY() ) < m_hit_miny ) m_hit_miny = pos->y() - pos->dY(); - if ( ( pos->y() + pos->dY() ) > m_hit_maxy ) m_hit_maxy = pos->y() + pos->dY(); - if ( ( pos->z() - pos->dZ() ) < m_hit_minz ) m_hit_minz = pos->z() - pos->dZ(); - if ( ( pos->z() + pos->dZ() ) > m_hit_maxz ) m_hit_maxz = pos->z() + pos->dZ(); - auto x = recomputePos( m_padx, m_dx, m_xsize, pos->dX() ); - auto y = recomputePos( m_pady, m_dy, m_ysize, pos->dY() ); - auto z = recomputePos( m_padz, m_dz, m_zsize, 10 * pos->dZ() ); - SetXYZ( x, y, z ); - - recomputeTime(); - } - } -} - -void MuonHit::recomputeTime() { - int np = 0; - float sum = 0., sum2 = 0.; - m_mintime = 999.; - m_maxtime = -999.; - - auto accumulate = [&]( float time ) { - sum += time; - sum2 += time * time; - np++; - if ( time < m_mintime ) m_mintime = time; - if ( time > m_maxtime ) m_maxtime = time; - }; - - for ( const auto& pad : m_pads ) { - if ( pad->type() == MuonLogPad::XTWOFE ) { // consider the two measurements as independent - accumulate( pad->timeX() ); - accumulate( pad->timeY() ); - } else { - accumulate( pad->time() ); - } - } - - m_time = ( np > 0 ? sum / np : 0.0f ); - if ( np > 1 ) { - const float tmp = ( sum2 - sum * sum / np ) / ( np * np - np ); - m_dtime = ( tmp > 0 ? std::sqrt( tmp ) : 0.0f ); - } else { - m_dtime = m_pads[0]->dtime(); - } -} - -/// return tile sizes -std::array<double, 3> MuonHit::hitTile_Size() const { - return {( m_hit_maxx - m_hit_minx ) / 2., ( m_hit_maxy - m_hit_miny ) / 2., ( m_hit_maxz - m_hit_minz ) / 2.}; -} - -/// store a progressive hit number for debugging -void MuonHit::setHitID( int id ) { - if ( id != 0 ) m_hit_ID = id; -} - -std::vector<const MuonLogHit*> MuonHit::getHits() const { - std::vector<const MuonLogHit*> out; - for ( const auto& pad : m_pads ) { - auto padhits = pad->getHits(); - out.insert( out.end(), padhits.begin(), padhits.end() ); - } - return out; -} - -std::vector<LHCb::Detector::Muon::TileID> MuonHit::getTiles() const { - std::vector<LHCb::Detector::Muon::TileID> tiles; - for ( const auto& pad : m_pads ) { - auto padhits = pad->getHits(); - std::transform( padhits.begin(), padhits.end(), std::back_inserter( tiles ), - []( const MuonLogHit* mlh ) { return mlh->tile(); } ); - } - return tiles; -} - -std::vector<LHCb::Detector::Muon::TileID> MuonHit::getLogPadTiles() const { - std::vector<LHCb::Detector::Muon::TileID> tiles; - tiles.reserve( m_pads.size() ); - std::transform( m_pads.begin(), m_pads.end(), std::back_inserter( tiles ), - []( const MuonLogPad* mlp ) { return mlp->tile(); } ); - return tiles; -} - -std::vector<float> MuonHit::getTimes() const { - auto hits = getHits(); - std::vector<float> times; - times.reserve( hits.size() ); - std::transform( hits.begin(), hits.end(), std::back_inserter( times ), - []( const MuonLogHit* mlh ) { return mlh->time(); } ); - return times; -} - -LHCb::Detector::Muon::TileID MuonHit::centerTile() const { - if ( m_pads.size() == 1 ) return m_pads.front()->tile(); - double d2min = 9999999.; - LHCb::Detector::Muon::TileID out; - for ( unsigned int ip = 0; ip < m_pads.size(); ip++ ) { - auto d2 = std::pow( m_padx[ip] - X(), 2 ) + std::pow( m_pady[ip] - Y(), 2 ) + std::pow( m_padz[ip] - Z(), 2 ); - if ( d2 < d2min ) { - d2min = d2; - out = m_pads[ip]->tile(); - } - } - if ( !out.isDefined() ) { - for ( unsigned int ip = 0; ip < m_pads.size(); ip++ ) { - std::cout << m_padx[ip] << " " << m_pady[ip] << " " << m_padz[ip] << std::endl; - } - } - return out; -} diff --git a/Muon/MuonInterfaces/src/Lib/MuonNeuron.cpp b/Muon/MuonInterfaces/src/Lib/MuonNeuron.cpp deleted file mode 100644 index a1212a2d41331a679d9c8d6a6366544100735e30..0000000000000000000000000000000000000000 --- a/Muon/MuonInterfaces/src/Lib/MuonNeuron.cpp +++ /dev/null @@ -1,298 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#include "MuonInterfaces/MuonNeuron.h" - -MuonNeuron::MuonNeuron( MuonHit* h, MuonHit* t ) : m_head( h ), m_tail( t ) { - m_neuron = *t - *h; - m_neuronXZ.SetX( m_neuron.X() ); - m_neuronXZ.SetY( 0. ); - m_neuronXZ.SetZ( m_neuron.Z() ); - m_neuronYZ.SetX( 0. ); - m_neuronYZ.SetY( m_neuron.Y() ); - m_neuronYZ.SetZ( m_neuron.Z() ); -} - -MuonNeuron::MuonNeuron( MuonHit* h, MuonHit* t, int s, int r ) - : m_head( h ), m_tail( t ), m_station( s ), m_region( r ) { - m_neuron = *t - *h; - m_neuronXZ.SetX( m_neuron.X() ); - m_neuronXZ.SetY( 0. ); - m_neuronXZ.SetZ( m_neuron.Z() ); - m_neuronYZ.SetX( 0. ); - m_neuronYZ.SetY( m_neuron.Y() ); - m_neuronYZ.SetZ( m_neuron.Z() ); -} - -MuonNeuron::MuonNeuron( MuonHit* h, MuonHit* t, int hID, int tID, int s, int r ) - : m_head( h ), m_tail( t ), m_station( s ), m_region( r ), m_headID( hID ), m_tailID( tID ) { - m_neuron = *t - *h; - m_neuronXZ.SetX( m_neuron.X() ); - m_neuronXZ.SetY( 0. ); - m_neuronXZ.SetZ( m_neuron.Z() ); - m_neuronYZ.SetX( 0. ); - m_neuronYZ.SetY( m_neuron.Y() ); - m_neuronYZ.SetZ( m_neuron.Z() ); -} - -/// clean up weights -void MuonNeuron::cleanupWeights() { - - double wmaxTH = -9999; - double wmaxHT = -9999; - MuonNeuron* pmaxTH = nullptr; - MuonNeuron* pmaxHT = nullptr; - - auto iw = m_weight_list.begin(); - while ( ( iw != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { - - MuonNeuron* ConnNeur = iw->first; - if ( tailHead( *ConnNeur ) ) { - if ( iw->second >= wmaxTH ) { - wmaxTH = iw->second; - pmaxTH = iw->first; - } - iw = m_weight_list.erase( iw ); - ( *ConnNeur ).removeWeight( this ); - - } else if ( headTail( *ConnNeur ) ) { - if ( iw->second >= wmaxHT ) { - wmaxHT = iw->second; - pmaxHT = iw->first; - } - iw = m_weight_list.erase( iw ); - ( *ConnNeur ).removeWeight( this ); - - } else { - - iw++; - } - } - if ( pmaxTH ) { - setWeight( pmaxTH, wmaxTH ); - pmaxTH->setWeight( this, wmaxTH ); - } - - if ( pmaxHT ) { - setWeight( pmaxHT, wmaxHT ); - pmaxHT->setWeight( this, wmaxHT ); - } -} -/// kill double length neurons if there is a unit length one -void MuonNeuron::killDoubleLength() { - - // first check if there is at least 1 unit length neuron connected to this - auto iw = std::find_if( m_weight_list.begin(), m_weight_list.end(), - []( const std::pair<MuonNeuron*, double>& w ) { return w.first->stationDifference() == 1; } ); - bool go = ( iw != m_weight_list.end() ); - if ( !go ) return; - iw = m_weight_list.begin(); - - while ( ( iw != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { - - MuonNeuron* ConnNeur = iw->first; - if ( headHead( *ConnNeur ) || tailTail( *ConnNeur ) ) { - - if ( ConnNeur->stationDifference() > 1 ) { - iw = m_weight_list.erase( iw ); - ( *ConnNeur ).removeWeight( this ); - } else { - - iw++; - } - } else { - - iw++; - } - } -} - -// -void MuonNeuron::removeWeight( MuonNeuron* pn ) { - auto iw = std::find_if( m_weight_list.begin(), m_weight_list.end(), - [&]( const std::pair<MuonNeuron*, double>& n ) { return n.first == pn; } ); - if ( iw != m_weight_list.end() ) m_weight_list.erase( iw ); -} - -/// kill double length neurons if there is a unit length one -void MuonNeuron::killDoubleLength( const float angcut ) { - MuonNeuron* ConnNeur = 0; - MuonNeuron* ConnNeur1 = 0; - MuonNeuron* ConnNeur2 = 0; - - if ( this->stationDifference() != 1 ) return; - - // find L2 neurons in HH or TT and kill them if angleXZ smaller than 0.1 - - auto iw = m_weight_list.begin(); - - while ( ( iw != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { - - ConnNeur = iw->first; - if ( headHead( *ConnNeur ) || tailTail( *ConnNeur ) ) { - if ( ConnNeur->stationDifference() > 1 && this->angleXZ( *ConnNeur ) < angcut ) { - iw = m_weight_list.erase( iw ); - ConnNeur->removeWeight( this ); - } else { - - iw++; - } - - } else { - iw++; - } - } - // find L1 neurons in HT. Then search for L2 neurons in HT close in angleXZ - // to the L1 one and kill them if angleXZ smaller than 0.1 - - auto iw1 = m_weight_list.begin(); - - while ( ( iw1 != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { - - ConnNeur1 = iw1->first; - if ( headTail( *ConnNeur1 ) && ConnNeur1->stationDifference() == 1 ) { - // ok found an L1 HT with this. now search for an L2 HT - auto iw2 = m_weight_list.begin(); - while ( ( iw2 != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { - ConnNeur2 = iw2->first; - if ( headTail( *ConnNeur2 ) && ConnNeur2->stationDifference() > 1 && - ConnNeur2->angleXZ( *ConnNeur1 ) < angcut ) { - iw2 = m_weight_list.erase( iw2 ); // remove L2 from the list - ConnNeur2->removeWeight( this ); // remove this from L2 - } else { - iw2++; // next one - } - } - iw1++; - - } else { - iw1++; // look for next L1 - } - } - // find L1 neurons in TH. Then search for L2 neurons in TH close in angleXZ - // to the L1 one and kill them if angleXZ smaller than 0.1 - - iw1 = m_weight_list.begin(); - - while ( ( iw1 != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { - - ConnNeur1 = iw1->first; - - if ( tailHead( *ConnNeur1 ) && ConnNeur1->stationDifference() == 1 ) { - // ok found an L1 HT with this. now search for an L2 HT - auto iw2 = m_weight_list.begin(); - while ( ( iw2 != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { - ConnNeur2 = iw2->first; - - if ( tailHead( *ConnNeur2 ) && ConnNeur2->stationDifference() > 1 && - ConnNeur2->angleXZ( *ConnNeur1 ) < angcut ) { - iw2 = m_weight_list.erase( iw2 ); // remove L2 from the list - ConnNeur2->removeWeight( this ); // remove this from L2 - - } else { - iw2++; // next one - } - } - iw1++; - - } else { - iw1++; // look for next L1 - } - } -} - -/// neuron length in terms of stations crossed -int MuonNeuron::stationDifference() { return ( m_head->station() - m_tail->station() ); } - -/// return neuron length -double MuonNeuron::len() const { return sqrt( m_neuron.Mag2() ); } - -/// return neuron length along Z -double MuonNeuron::deltaZ() const { return ( m_head->Z() - m_tail->Z() ); } - -/// return distance along Z between the neuron station and the closest one -double MuonNeuron::deltaZ( const int st ) const { - double zsta[5] = {12100, 15200, 16400, 17600, 18800}; - return ( zsta[st] - m_tail->Z() ); -} - -/// return neuron length in the xz plane -double MuonNeuron::lenXZ() const { return sqrt( m_neuronXZ.Mag2() ); } - -/// return neuron length in the yz plane -double MuonNeuron::lenYZ() const { return sqrt( m_neuronYZ.Mag2() ); } - -/// angle with another neuron in space -double MuonNeuron::angle( const MuonNeuron& n ) { return ROOT::Math::VectorUtil::Angle( m_neuron, n.m_neuron ); } - -/// angle with another neuron in XZ -double MuonNeuron::angleXZ( const MuonNeuron& n ) { return ROOT::Math::VectorUtil::Angle( m_neuronXZ, n.m_neuronXZ ); } - -/// angle with another neuron in YZ -double MuonNeuron::angleYZ( const MuonNeuron& n ) { return ROOT::Math::VectorUtil::Angle( m_neuronYZ, n.m_neuronYZ ); } - -/// check if this is th with n -bool MuonNeuron::tailHead( const MuonNeuron& n ) const { return ( m_tail->hitID() == n.m_head->hitID() ); } - -/// check if this is ht with n -bool MuonNeuron::headTail( const MuonNeuron& n ) const { return ( m_head->hitID() == n.m_tail->hitID() ); } - -/// check if this is tt with n -bool MuonNeuron::tailTail( const MuonNeuron& n ) const { return ( m_tail->hitID() == n.m_tail->hitID() ); } - -/// check if this is hh with n -bool MuonNeuron::headHead( const MuonNeuron& n ) const { return ( m_head->hitID() == n.m_head->hitID() ); } - -/// check if this is connected to n -bool MuonNeuron::connectedTo( const MuonNeuron& n ) const { - return ( tailTail( n ) || headHead( n ) || tailHead( n ) || headTail( n ) ); -} - -/// return the neuron projection XZ -ROOT::Math::XYZVector MuonNeuron::projXZ() { return m_neuronXZ; } - -/// return the neuron projection YZ -ROOT::Math::XYZVector MuonNeuron::projYZ() { return m_neuronYZ; } - -/// store the weights -void MuonNeuron::setWeight( MuonNeuron* n, double ww ) { - m_weight.first = n; - m_weight.second = ww; - m_weight_list.emplace_back( n, ww ); -} - -/// retireve the weights -std::list<std::pair<MuonNeuron*, double>> MuonNeuron::getWeights() { return m_weight_list; } - -/// set neuron status -void MuonNeuron::setStatus( double st ) { m_status = st; } - -/// return neuron status -double MuonNeuron::status() { return m_status; } - -/// Neuron ID -void MuonNeuron::setNeuronID( int id ) { m_ID = id; } - -/// retireve ID -int MuonNeuron::neuronID() { return m_ID; } - -/// assign an ID to head and tail points -void MuonNeuron::setHeadTailID( int hID, int tID ) { - m_headID = hID; - m_tailID = tID; -} - -/// retireve head and tail IDs. First = head, Second = tail -std::pair<int, int> MuonNeuron::headTailID() { - std::pair<int, int> tmp; - tmp.first = m_headID; - tmp.second = m_tailID; - return tmp; -} diff --git a/Muon/MuonInterfaces/src/Lib/MuonTrack.cpp b/Muon/MuonInterfaces/src/Lib/NNMuonTrack.cpp similarity index 57% rename from Muon/MuonInterfaces/src/Lib/MuonTrack.cpp rename to Muon/MuonInterfaces/src/Lib/NNMuonTrack.cpp index ad053e178860ed8c5be5bda3eccd068a485c9a47..b756127840d266f5731dcffd5baba9e0f110c232 100644 --- a/Muon/MuonInterfaces/src/Lib/MuonTrack.cpp +++ b/Muon/MuonInterfaces/src/Lib/NNMuonTrack.cpp @@ -8,34 +8,30 @@ * granted to it by virtue of its status as an Intergovernmental Organization * * or submit itself to any jurisdiction. * \*****************************************************************************/ -#define MUONTRACKRECNMSPC - -#include "MuonInterfaces/MuonTrack.h" #include "Core/FloatComparison.h" -#include "MuonInterfaces/MuonLogPad.h" + +#include "GaudiKernel/SystemOfUnits.h" +#include "MuonInterfaces/MuonPad.h" +#include "MuonInterfaces/NNMuonTrack.h" #include <bitset> -namespace MuonTrackRec { - double muspeed = 468.42; // speed of light in mm/TDC units - double Zref = 17670; // default ref is M4 +namespace NNMuonTrackRec { + double muspeed = 468.42; // speed of light in mm/TDC units + double Zref = 17670 * Gaudi::Units::mm; // default ref is M4 bool PhysTiming = false; bool IsCosmic = false; bool IsPhysics = false; -} // namespace MuonTrackRec -#undef MUONTRACKRECNMSPC +} // namespace NNMuonTrackRec -//============================================================================= - -//============================================================================= -std::vector<const MuonHit*> MuonTrack::getHits() const { - std::vector<const MuonHit*> hits; +std::vector<const MuonCluster*> NNMuonTrack::getHits() const { + std::vector<const MuonCluster*> hits; hits.reserve( m_muonTrack.size() ); std::transform( m_muonTrack.begin(), m_muonTrack.end(), std::back_inserter( hits ), - []( const std::pair<const int, MuonHit*>& p ) { return p.second; } ); + []( const std::pair<const int, const MuonCluster*>& p ) { return p.second; } ); return hits; } /// -int MuonTrack::getSpan() const { +int NNMuonTrack::getSpan() const { int smax = -9999; int smin = 9999; for ( const auto& mt : m_muonTrack ) { @@ -46,25 +42,25 @@ int MuonTrack::getSpan() const { return smax - smin; } /// -int MuonTrack::getFiringStations() const { - std::bitset<5> stations; +int NNMuonTrack::getFiringStations() const { + std::bitset<4> stations; // was 5 for ( const auto& v : m_muonTrack ) stations.set( v.second->station() ); return stations.count(); } -StatusCode MuonTrack::speedFit() { +StatusCode NNMuonTrack::speedFit() { // first extract the hits double dof = m_muonTrack.size() - 2.; if ( dof < 0 ) return StatusCode::FAILURE; double tc11 = 0, tc12 = 0, tc22 = 0, tv1 = 0, tv2 = 0, ttt = 0; for ( const auto& tk : m_muonTrack ) { - const MuonHit* hit = tk.second; - auto xp = hit->X() - m_bx; - auto yp = hit->Y() - m_by; - auto z = hit->Z(); - auto d = sqrt( xp * xp + yp * yp + z * z ); - auto t = correctedTime( *hit ); + const MuonCluster* hit = tk.second; + auto xp = hit->X() - m_bx; + auto yp = hit->Y() - m_by; + auto z = hit->Z(); + auto d = std::sqrt( xp * xp + yp * yp + z * z ); + auto t = correctedTime( *hit ); tc11 += d * d; tc12 += d; @@ -74,38 +70,38 @@ StatusCode MuonTrack::speedFit() { ttt += t * t; } auto tdet = tc11 * tc22 - tc12 * tc12; - if ( LHCb::essentiallyZero( tdet ) ) return StatusCode::FAILURE; + if ( tdet == 0 ) return StatusCode::FAILURE; double invSpeed = ( tv1 * tc22 - tv2 * tc12 ) / tdet; - double sigma_invSpeed = sqrt( tc22 / tdet ); + double sigma_invSpeed = std::sqrt( tc22 / tdet ); double t0 = ( tv2 * tc11 - tv1 * tc12 ) / tdet; double sumResq = ( ttt + invSpeed * invSpeed * tc11 + t0 * t0 * tc22 - 2. * invSpeed * tv1 - 2. * t0 * tv2 + - 2 * invSpeed * t0 * tc12 ); - sigma_invSpeed *= sqrt( sumResq / dof ); - m_speed = 1 / invSpeed; + 2. * invSpeed * t0 * tc12 ); + sigma_invSpeed *= std::sqrt( sumResq / dof ); + m_speed = 1. / invSpeed; m_sigmaspeed = m_speed * m_speed * sigma_invSpeed; // convert to c units - m_speed /= MuonTrackRec::muspeed; - m_sigmaspeed /= MuonTrackRec::muspeed; + m_speed /= NNMuonTrackRec::muspeed; + m_sigmaspeed /= NNMuonTrackRec::muspeed; m_speedFitted = true; return StatusCode::SUCCESS; } -double MuonTrack::correctTOF( double rawT, double X, double Y, double Z ) const { - return rawT + ( sqrt( X * X + Y * Y + Z * Z ) - MuonTrackRec::Zref ) / MuonTrackRec::muspeed; +double NNMuonTrack::correctTOF( double rawT, double X, double Y, double Z ) const { + return rawT + ( std::sqrt( X * X + Y * Y + Z * Z ) - NNMuonTrackRec::Zref ) / NNMuonTrackRec::muspeed; } -double MuonTrack::correctTime( double rawT, double X, double Y, double Z ) const { +double NNMuonTrack::correctTime( double rawT, double X, double Y, double Z ) const { // correct for TOF applied in delays (from primary vertex) - return MuonTrackRec::PhysTiming ? correctTOF( rawT, X, Y, Z ) : rawT; + return NNMuonTrackRec::PhysTiming ? correctTOF( rawT, X, Y, Z ) : rawT; } -double MuonTrack::correctedTime( const MuonHit& hit ) const { +double NNMuonTrack::correctedTime( const MuonCluster& hit ) const { return correctTime( hit.hitTime(), hit.X(), hit.Y(), hit.Z() ); } /// track fitting with linear Chi^2 -StatusCode MuonTrack::linFit() { +StatusCode NNMuonTrack::linFit() { // first extract the hits double dof = m_muonTrack.size() - 2.; if ( dof < 0 ) return StatusCode::FAILURE; @@ -116,9 +112,9 @@ StatusCode MuonTrack::linFit() { yc11 = yc12 = yc22 = yv1 = yv2 = yyy = 0; for ( auto tk = m_muonTrack.begin(); tk != m_muonTrack.end(); tk++ ) { - const MuonHit* hit = tk->second; - auto xerr = 2. * hit->dX(); - auto yerr = 2. * hit->dY(); + const MuonCluster* hit = tk->second; + auto xerr = 2. * hit->dX(); + auto yerr = 2. * hit->dY(); auto x = hit->X(); auto y = hit->Y(); @@ -150,12 +146,12 @@ StatusCode MuonTrack::linFit() { m_bx = ( xv2 * xc11 - xv1 * xc12 ) / xdet; m_by = ( yv2 * yc11 - yv1 * yc12 ) / ydet; - m_errbx = sqrt( xc11 / xdet ); - m_errsx = sqrt( xc22 / xdet ); + m_errbx = std::sqrt( xc11 / xdet ); + m_errsx = std::sqrt( xc22 / xdet ); m_covbsx = -xc12 / xdet; - m_errby = sqrt( yc11 / ydet ); - m_errsy = sqrt( yc22 / ydet ); + m_errby = std::sqrt( yc11 / ydet ); + m_errsy = std::sqrt( yc22 / ydet ); m_covbsy = -yc12 / ydet; m_chi2x = @@ -167,7 +163,7 @@ StatusCode MuonTrack::linFit() { // 3) fit track time (assuming constant error on time and neglecting error on distance of flight) - if ( false == MuonTrackRec::IsCosmic && false == MuonTrackRec::IsPhysics ) { + if ( false == NNMuonTrackRec::IsCosmic && false == NNMuonTrackRec::IsPhysics ) { // get particle direction from sign of fitted speed // (for cosmics, we can use the y slope) speedFit().ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ ); @@ -175,12 +171,12 @@ StatusCode MuonTrack::linFit() { double sumt = 0, sumd = 0, sumt2 = 0, sumd2 = 0, sumtd = 0; for ( auto tk = m_muonTrack.begin(); tk != m_muonTrack.end(); tk++ ) { - const MuonHit* hit = tk->second; - auto xp = hit->X() - m_bx; - auto yp = hit->Y() - m_by; - auto z = hit->Z(); - auto d = sqrt( xp * xp + yp * yp + z * z ) / MuonTrackRec::muspeed; - auto t = correctedTime( *hit ); + const MuonCluster* hit = tk->second; + auto xp = hit->X() - m_bx; + auto yp = hit->Y() - m_by; + auto z = hit->Z(); + auto d = std::sqrt( xp * xp + yp * yp + z * z ) / NNMuonTrackRec::muspeed; + auto t = correctedTime( *hit ); sumt += t; sumd += d; sumt2 += t * t; @@ -188,24 +184,25 @@ StatusCode MuonTrack::linFit() { sumtd += t * d; } // compute t0 choosing track direction according to y slope - m_t0 = ( sumt - sz() * sumd ) / m_muonTrack.size(); - m_sigmat = - sqrt( ( sumt2 + sumd2 - sz() * 2 * sumtd - m_muonTrack.size() * m_t0 * m_t0 ) / ( m_muonTrack.size() - 1 ) ); - m_errt0 = m_sigmat / sqrt( float( m_muonTrack.size() ) ); + m_t0 = ( sumt - sz() * sumd ) / m_muonTrack.size(); + m_sigmat = std::sqrt( ( sumt2 + sumd2 - sz() * 2. * sumtd - m_muonTrack.size() * m_t0 * m_t0 ) / + ( m_muonTrack.size() - 1 ) ); + m_errt0 = m_sigmat / std::sqrt( m_muonTrack.size() ); return StatusCode::SUCCESS; } -void MuonTrack::extrap( double Z, Gaudi::XYZTPoint& Pos, Gaudi::XYZTPoint* PosErr ) { +void NNMuonTrack::extrap( double Z, Gaudi::XYZTPoint& Pos, Gaudi::XYZTPoint* PosErr ) { double dX = m_sx * Z, dY = m_sy * Z; Pos.SetCoordinates( m_bx + dX, m_by + dY, Z, - m_t0 + sz() * sqrt( dX * dX + dY * dY + Z * Z ) / MuonTrackRec::muspeed ); + m_t0 + sz() * std::sqrt( dX * dX + dY * dY + Z * Z ) / NNMuonTrackRec::muspeed ); if ( PosErr ) - PosErr->SetCoordinates( sqrt( m_errbx * m_errbx + Z * Z * m_errsx * m_errsx + 2 * Z * m_covbsx ), - sqrt( m_errby * m_errby + Z * Z * m_errsy * m_errsy + 2 * Z * m_covbsy ), 0., m_errt0 ); + PosErr->SetCoordinates( std::sqrt( m_errbx * m_errbx + Z * Z * m_errsx * m_errsx + 2 * Z * m_covbsx ), + std::sqrt( m_errby * m_errby + Z * Z * m_errsy * m_errsy + 2 * Z * m_covbsy ), 0., + m_errt0 ); } -Gaudi::XYZTPoint& MuonTrack::residuals( MuonHit& hit ) { +Gaudi::XYZTPoint& NNMuonTrack::residuals( const MuonCluster& hit ) { extrap( hit.Z(), m_point ); double t = correctedTime( hit ); m_point.SetCoordinates( hit.X() - m_point.X(), hit.Y() - m_point.Y(), 0., t - m_point.T() ); @@ -213,42 +210,37 @@ Gaudi::XYZTPoint& MuonTrack::residuals( MuonHit& hit ) { } // Z versor giving the track direction (obtained from y slope for cosmics) -double MuonTrack::sz() const { - return ( MuonTrackRec::IsPhysics +double NNMuonTrack::sz() const { + return ( NNMuonTrackRec::IsPhysics ? 1. - : ( MuonTrackRec::IsCosmic ? ( m_sy > 0 ? -1. : 1. ) : ( m_speed > 0 ? 1. : -1. ) ) ); + : ( NNMuonTrackRec::IsCosmic ? ( m_sy > 0 ? -1. : 1. ) : ( m_speed > 0 ? 1. : -1. ) ) ); } // attach Xtalk hits (by Silvia Pozzi) -StatusCode MuonTrack::AddXTalk( const std::vector<MuonHit>& trackhits, float cut, int m_skipStation ) { - StatusCode sc = linFit(); - if ( !sc ) return StatusCode::FAILURE; +StatusCode NNMuonTrack::AddXTalk( const MuonClusters* trackhits, float cut, int m_skipStation ) { + + if ( linFit().isFailure() ) return StatusCode::FAILURE; // first extract the hits - std::vector<const MuonHit*> tt_hits; // vector containing the added MuonHits + std::vector<const MuonCluster*> tt_hits; // vector containing the added MuonHits - for ( auto ihT = trackhits.begin(); ihT != trackhits.end(); ihT++ ) { // loop on all the hits + for ( auto ihT = trackhits->begin(); ihT != trackhits->end(); ihT++ ) { // loop on all the hits double z = ihT->Z(); - double dx2_fit = pow( m_errsx * z, 2 ) + pow( m_errbx, 2 ) + 2 * m_covbsx * z; - double dy2_fit = pow( m_errsy * z, 2 ) + pow( m_errby, 2 ) + 2 * m_covbsy * z; + double dx2_fit = std::pow( m_errsx * z, 2 ) + std::pow( m_errbx, 2 ) + 2 * m_covbsx * z; + double dy2_fit = std::pow( m_errsy * z, 2 ) + std::pow( m_errby, 2 ) + 2 * m_covbsy * z; - double x_fit = ( m_bx + m_sx * ihT->Z() ); - double y_fit = ( m_by + m_sy * ihT->Z() ); + double x_fit = m_bx + m_sx * ihT->Z(); + double y_fit = m_by + m_sy * ihT->Z(); - double deltaX = fabs( ihT->X() - x_fit ) / sqrt( pow( ihT->hitTile_dX(), 2 ) + dx2_fit ); - double deltaY = fabs( ihT->Y() - y_fit ) / sqrt( pow( ihT->hitTile_dY(), 2 ) + dy2_fit ); + double deltaX = std::abs( ihT->X() - x_fit ) / std::sqrt( std::pow( ihT->hitTile_dX(), 2 ) + dx2_fit ); + double deltaY = std::abs( ihT->Y() - y_fit ) / std::sqrt( std::pow( ihT->hitTile_dY(), 2 ) + dy2_fit ); - double dist = sqrt( pow( ihT->X() - x_fit, 2 ) + pow( ihT->Y() - y_fit, 2 ) ); + double dist = std::sqrt( std::pow( ihT->X() - x_fit, 2 ) + std::pow( ihT->Y() - y_fit, 2 ) ); + constexpr double maxRadialDistanceToFit = 50.; if ( ihT->station() == m_skipStation ) { - if ( ( deltaX < cut && deltaY < cut ) || dist < 50. ) { - /* - std::cout<< " Found a hit in station M"<< (*ihT)->station()+1<<"R"<<(*ihT)->region()+1<<" "<<(*ihT)->hitID()<<" - "<< - (*ihT)->X()<<" +/- "<<(*ihT)->hitTile_dX()<<" "<< (*ihT)->Y()<<" +/- "<<(*ihT)->hitTile_dY()<<" "<<(*ihT)->Z()<< - " delta: "<<deltaX<<" "<<deltaY<<" dist "<<dist<<std::endl; - */ + if ( ( deltaX < cut && deltaY < cut ) || dist < maxRadialDistanceToFit ) { if ( std::find( tt_hits.begin(), tt_hits.end(), &*ihT ) == tt_hits.end() ) { // avoid to fill double tt_hits.push_back( &*ihT ); } @@ -256,7 +248,7 @@ StatusCode MuonTrack::AddXTalk( const std::vector<MuonHit>& trackhits, float cut } else { if ( deltaX < cut && deltaY < cut ) { for ( auto tk = m_muonTrack.begin(); tk != m_muonTrack.end(); tk++ ) { // loop on the track hits - const MuonHit* hit = tk->second; + const MuonCluster* hit = tk->second; if ( hit->station() == ihT->station() && hit->hitID() != ihT->hitID() ) { // avoid to fill double if ( std::find( tt_hits.begin(), tt_hits.end(), &*ihT ) == tt_hits.end() ) { tt_hits.push_back( &*ihT ); } @@ -267,14 +259,14 @@ StatusCode MuonTrack::AddXTalk( const std::vector<MuonHit>& trackhits, float cut } // loop on trackhits int idhit = 100; - for ( auto tj = tt_hits.begin(); tj != tt_hits.end(); tj++ ) { insert( ++idhit, const_cast<MuonHit*>( *tj ) ); } + for ( auto tj = tt_hits.begin(); tj != tt_hits.end(); tj++ ) { insert( ++idhit, ( *tj ) ); } return StatusCode::SUCCESS; } -int MuonTrack::clsize( const MuonHit* hit, int& xsize, int& ysize ) const { +int NNMuonTrack::clsize( const MuonCluster* hit, int& xsize, int& ysize ) const { // cluster size is computed only for the first hit of a given station, return -1 otherwise - std::vector<const MuonHit*> hits = getHits(); - bool start = false; + std::vector<const MuonCluster*> hits = getHits(); + bool start = false; xsize = ysize = 0; int np = 0; @@ -291,8 +283,8 @@ int MuonTrack::clsize( const MuonHit* hit, int& xsize, int& ysize ) const { for ( auto iprevh = hits.begin(); iprevh < itkh; iprevh++ ) { auto prevh = *iprevh; if ( prevh->station() == tkh->station() ) { - if ( fabs( tkh->X() - prevh->X() ) < tkh->hitTile_dX() ) { prendilax = false; } - if ( fabs( tkh->Y() - prevh->Y() ) < tkh->hitTile_dY() ) { prendilay = false; } + if ( std::abs( tkh->X() - prevh->X() ) < tkh->hitTile_dX() ) { prendilax = false; } + if ( std::abs( tkh->Y() - prevh->Y() ) < tkh->hitTile_dY() ) { prendilay = false; } } } np += tkh->npads(); diff --git a/Muon/MuonInterfaces/src/Lib/Neuron.cpp b/Muon/MuonInterfaces/src/Lib/Neuron.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c5975de661993b4ae1eed1ff2477308c6cdf41a0 --- /dev/null +++ b/Muon/MuonInterfaces/src/Lib/Neuron.cpp @@ -0,0 +1,274 @@ +/*****************************************************************************\ +* (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. * +\*****************************************************************************/ +#include "MuonInterfaces/Neuron.h" + +namespace LHCb::Muon { + Neuron::Neuron( const MuonCluster* h, const MuonCluster* t ) : m_head( h ), m_tail( t ) { + m_neuron = t->pos() - h->pos(); + m_neuronXZ.SetX( m_neuron.X() ); + m_neuronXZ.SetY( 0. ); + m_neuronXZ.SetZ( m_neuron.Z() ); + m_neuronYZ.SetX( 0. ); + m_neuronYZ.SetY( m_neuron.Y() ); + m_neuronYZ.SetZ( m_neuron.Z() ); + } + + Neuron::Neuron( const MuonCluster* h, const MuonCluster* t, int s, int r ) + : m_head( h ), m_tail( t ), m_station( s ), m_region( r ) { + m_neuron = t->pos() - h->pos(); + m_neuronXZ.SetX( m_neuron.X() ); + m_neuronXZ.SetY( 0. ); + m_neuronXZ.SetZ( m_neuron.Z() ); + m_neuronYZ.SetX( 0. ); + m_neuronYZ.SetY( m_neuron.Y() ); + m_neuronYZ.SetZ( m_neuron.Z() ); + } + + Neuron::Neuron( const MuonCluster* h, const MuonCluster* t, int hID, int tID, int s, int r ) + : m_head( h ), m_tail( t ), m_station( s ), m_region( r ), m_headID( hID ), m_tailID( tID ) { + m_neuron = t->pos() - h->pos(); + m_neuronXZ.SetX( m_neuron.X() ); + m_neuronXZ.SetY( 0. ); + m_neuronXZ.SetZ( m_neuron.Z() ); + m_neuronYZ.SetX( 0. ); + m_neuronYZ.SetY( m_neuron.Y() ); + m_neuronYZ.SetZ( m_neuron.Z() ); + } + + /// clean up weights + void Neuron::cleanupWeights() { + + double wmaxTH = -9999; + double wmaxHT = -9999; + Neuron* pmaxTH = nullptr; + Neuron* pmaxHT = nullptr; + + auto iw = m_weight_list.begin(); + while ( ( iw != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { + + Neuron* ConnNeur = iw->first; + if ( tailHead( *ConnNeur ) ) { + if ( iw->second >= wmaxTH ) { + wmaxTH = iw->second; + pmaxTH = iw->first; + } + iw = m_weight_list.erase( iw ); + ( *ConnNeur ).removeWeight( this ); + + } else if ( headTail( *ConnNeur ) ) { + if ( iw->second >= wmaxHT ) { + wmaxHT = iw->second; + pmaxHT = iw->first; + } + iw = m_weight_list.erase( iw ); + ( *ConnNeur ).removeWeight( this ); + + } else { + + iw++; + } + } + if ( pmaxTH ) { + setWeight( pmaxTH, wmaxTH ); + pmaxTH->setWeight( this, wmaxTH ); + } + + if ( pmaxHT ) { + setWeight( pmaxHT, wmaxHT ); + pmaxHT->setWeight( this, wmaxHT ); + } + } + /// kill double length neurons if there is a unit length one + void Neuron::killDoubleLength() { + + // first check if there is at least 1 unit length neuron connected to this + auto iw = std::find_if( m_weight_list.begin(), m_weight_list.end(), + []( const std::pair<Neuron*, double>& w ) { return w.first->stationDifference() == 1; } ); + bool go = ( iw != m_weight_list.end() ); + if ( !go ) return; + iw = m_weight_list.begin(); + + while ( ( iw != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { + + Neuron* ConnNeur = iw->first; + if ( ( headHead( *ConnNeur ) || tailTail( *ConnNeur ) ) && ConnNeur->stationDifference() > 1 ) { + iw = m_weight_list.erase( iw ); + ( *ConnNeur ).removeWeight( this ); + } else { + iw++; + } + } + } + + // + void Neuron::removeWeight( Neuron* pn ) { + auto iw = std::find_if( m_weight_list.begin(), m_weight_list.end(), + [&]( const std::pair<Neuron*, double>& n ) { return n.first == pn; } ); + if ( iw != m_weight_list.end() ) m_weight_list.erase( iw ); + } + + /// kill double length neurons if there is a unit length one + void Neuron::killDoubleLength( const float angcut ) { + Neuron* ConnNeur = 0; + Neuron* ConnNeur1 = 0; + Neuron* ConnNeur2 = 0; + + if ( this->stationDifference() != 1 ) return; + + // find L2 neurons in HH or TT and kill them if angleXZ smaller than 0.1 + + auto iw = m_weight_list.begin(); + + while ( ( iw != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { + + ConnNeur = iw->first; + if ( ( headHead( *ConnNeur ) || tailTail( *ConnNeur ) ) && ConnNeur->stationDifference() > 1 && + this->angleXZ( *ConnNeur ) < angcut ) { + iw = m_weight_list.erase( iw ); + ConnNeur->removeWeight( this ); + } else { + iw++; + } + } + // find L1 neurons in HT. Then search for L2 neurons in HT close in angleXZ + // to the L1 one and kill them if angleXZ smaller than 0.1 + + auto iw1 = m_weight_list.begin(); + + while ( ( iw1 != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { + + ConnNeur1 = iw1->first; + if ( headTail( *ConnNeur1 ) && ConnNeur1->stationDifference() == 1 ) { + // ok found an L1 HT with this. now search for an L2 HT + auto iw2 = m_weight_list.begin(); + while ( ( iw2 != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { + ConnNeur2 = iw2->first; + if ( headTail( *ConnNeur2 ) && ConnNeur2->stationDifference() > 1 && + ConnNeur2->angleXZ( *ConnNeur1 ) < angcut ) { + iw2 = m_weight_list.erase( iw2 ); // remove L2 from the list + ConnNeur2->removeWeight( this ); // remove this from L2 + } else { + iw2++; // next one + } + } + iw1++; + + } else { + iw1++; // look for next L1 + } + } + // find L1 neurons in TH. Then search for L2 neurons in TH close in angleXZ + // to the L1 one and kill them if angleXZ smaller than 0.1 + + iw1 = m_weight_list.begin(); + + while ( ( iw1 != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { + + ConnNeur1 = iw1->first; + + if ( tailHead( *ConnNeur1 ) && ConnNeur1->stationDifference() == 1 ) { + // ok found an L1 HT with this. now search for an L2 HT + auto iw2 = m_weight_list.begin(); + while ( ( iw2 != m_weight_list.end() ) && ( !m_weight_list.empty() ) ) { + ConnNeur2 = iw2->first; + + if ( tailHead( *ConnNeur2 ) && ConnNeur2->stationDifference() > 1 && + ConnNeur2->angleXZ( *ConnNeur1 ) < angcut ) { + iw2 = m_weight_list.erase( iw2 ); // remove L2 from the list + ConnNeur2->removeWeight( this ); // remove this from L2 + + } else { + iw2++; // next one + } + } + iw1++; + + } else { + iw1++; // look for next L1 + } + } + } + + /// neuron length in terms of stations crossed + int Neuron::stationDifference() { return ( m_head->station() - m_tail->station() ); } + + /// return neuron length + double Neuron::len() const { return sqrt( m_neuron.Mag2() ); } + + /// return neuron length in the xz plane + double Neuron::lenXZ() const { return sqrt( m_neuronXZ.Mag2() ); } + + /// return neuron length in the yz plane + double Neuron::lenYZ() const { return sqrt( m_neuronYZ.Mag2() ); } + + /// angle with another neuron in space + double Neuron::angle( const Neuron& n ) { return ROOT::Math::VectorUtil::Angle( m_neuron, n.m_neuron ); } + + /// angle with another neuron in XZ + double Neuron::angleXZ( const Neuron& n ) { return ROOT::Math::VectorUtil::Angle( m_neuronXZ, n.m_neuronXZ ); } + + /// angle with another neuron in YZ + double Neuron::angleYZ( const Neuron& n ) { return ROOT::Math::VectorUtil::Angle( m_neuronYZ, n.m_neuronYZ ); } + + /// check if this is th with n + bool Neuron::tailHead( const Neuron& n ) const { return ( m_tail->hitID() == n.m_head->hitID() ); } + + /// check if this is ht with n + bool Neuron::headTail( const Neuron& n ) const { return ( m_head->hitID() == n.m_tail->hitID() ); } + + /// check if this is tt with n + bool Neuron::tailTail( const Neuron& n ) const { return ( m_tail->hitID() == n.m_tail->hitID() ); } + + /// check if this is hh with n + bool Neuron::headHead( const Neuron& n ) const { return ( m_head->hitID() == n.m_head->hitID() ); } + + /// check if this is connected to n + bool Neuron::connectedTo( const Neuron& n ) const { + return ( tailTail( n ) || headHead( n ) || tailHead( n ) || headTail( n ) ); + } + + /// return the neuron projection XZ + ROOT::Math::XYZVector Neuron::projXZ() { return m_neuronXZ; } + + /// return the neuron projection YZ + ROOT::Math::XYZVector Neuron::projYZ() { return m_neuronYZ; } + + /// store the weights + void Neuron::setWeight( Neuron* n, double ww ) { + m_weight.first = n; + m_weight.second = ww; + m_weight_list.emplace_back( n, ww ); + } + + /// retireve the weights + const std::list<std::pair<Neuron*, double>>& Neuron::getWeights() const { return m_weight_list; } + + /// set neuron status + void Neuron::setStatus( double st ) { m_status = st; } + + /// return neuron status + double Neuron::status() { return m_status; } + + /// Neuron ID + void Neuron::setNeuronID( int id ) { m_ID = id; } + + /// retireve ID + int Neuron::neuronID() { return m_ID; } + + /// assign an ID to head and tail points + void Neuron::setHeadTailID( int hID, int tID ) { + m_headID = hID; + m_tailID = tID; + } + + /// retireve head and tail IDs. First = head, Second = tail + std::pair<int, int> Neuron::headTailID() { return {m_headID, m_tailID}; } +} // namespace LHCb::Muon diff --git a/Muon/MuonTrackRec/CMakeLists.txt b/Muon/MuonTrackRec/CMakeLists.txt index b892a817694b89cca48262f2e09ecea61064df71..e50f1fc350aa0069d37c4d0493ce23f305afe2d4 100644 --- a/Muon/MuonTrackRec/CMakeLists.txt +++ b/Muon/MuonTrackRec/CMakeLists.txt @@ -13,16 +13,13 @@ Muon/MuonTrackRec ----------------- #]=======================================================================] + gaudi_add_module(MuonTrackRec SOURCES src/component - src/component/MuonClusterRec.cpp - src/component/MuonDetPosTool.cpp - src/component/MuonHitDecode.cpp - src/component/MuonNNetRec.cpp - src/component/MuonPadRec.cpp - src/component/MuonTrackMomRec.cpp - src/component/MuonRawBuffer.cpp + src/component/MuonHitsToMuonPads.cpp + src/component/MuonPadsToMuonClusters.cpp + src/component/MuonClustersToNNMuonTracks.cpp LINK Boost::container Gaudi::GaudiAlgLib diff --git a/Muon/MuonTrackRec/options/MuonClusterRec.opts b/Muon/MuonTrackRec/options/MuonClusterRec.opts deleted file mode 100644 index 0c1d45ec3116f72331b641001fb7775d0bc1b2a6..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/options/MuonClusterRec.opts +++ /dev/null @@ -1,3 +0,0 @@ -ToolSvc.MuonClusterRec.PosTool = "MuonDetPosTool"; // default tool for using standard MuonDet methods - // alternative is "MuonPosTool" from Hlt/HltMuon - diff --git a/Muon/MuonTrackRec/options/cosmics.py b/Muon/MuonTrackRec/options/cosmics.py deleted file mode 100644 index 4d21ace4f815c93fbb238b0ef468c1b2bcc249d2..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/options/cosmics.py +++ /dev/null @@ -1,18 +0,0 @@ -############################################################################### -# (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. # -############################################################################### -# -# use MuonNNetRec as Track rec tool -#YourAlgorithm.addTool(muonNNet) - -from Configurables import MuonNNetRec - -muonNNet = MuonNNetRec(OutputLevel=INFO) -muonNNet.ClusterTool = "MuonClusterRec" diff --git a/Muon/MuonTrackRec/src/component/IMuonRawBuffer.h b/Muon/MuonTrackRec/src/component/IMuonRawBuffer.h deleted file mode 100644 index 5b8f13a8cb49c7d76f4b97a0514896e654e86a7b..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/src/component/IMuonRawBuffer.h +++ /dev/null @@ -1,39 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#pragma once - -#include "Detector/Muon/TileID.h" -#include "Event/RawBank.h" -#include "GaudiKernel/IAlgTool.h" -#include "MuonDet/MuonDAQHelper.h" - -#include <utility> -#include <vector> - -namespace LHCb { - /** - * Interface for the tools to convert Detector::Muon::TileID to coordinates - * - * @author David Hutchcroft - * @date 11/03/2002 - */ - struct IMuonRawBuffer : extend_interfaces<IAlgTool> { - - /** static interface identification - * @return unique interface identifier - */ - DeclareInterfaceID( IMuonRawBuffer, 5, 0 ); - - using TileAndADCVector = std::vector<std::pair<Detector::Muon::TileID, unsigned int>>; - - virtual TileAndADCVector getTileAndTDC( RawBank::View const& raw, MuonDAQHelper const& ) const = 0; - }; -} // namespace LHCb diff --git a/Muon/MuonTrackRec/src/component/MuonClusterRec.cpp b/Muon/MuonTrackRec/src/component/MuonClusterRec.cpp deleted file mode 100644 index 8f350d8a0cb3e0fab82e1383261dc9e4d646fd89..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/src/component/MuonClusterRec.cpp +++ /dev/null @@ -1,146 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ - -#include "MuonDet/DeMuonDetector.h" -#include "MuonDet/IMuonFastPosTool.h" -#include "MuonDet/MuonNamespace.h" - -#include "MuonInterfaces/IMuonClusterRec.h" -#include "MuonInterfaces/MuonHit.h" -#include "MuonInterfaces/MuonLogPad.h" - -#include "Detector/Muon/TileID.h" - -#include "GaudiAlg/GaudiTool.h" -#include "GaudiKernel/IIncidentListener.h" -#include "GaudiKernel/IIncidentSvc.h" - -namespace LHCb { - - /** - * clustering tool for the muon detector - * @author Giacomo GRAZIANI - * @date 2009-10-15 - */ - class MuonClusterRec : public extends<GaudiTool, IMuonClusterRec> { - public: - MuonClusterRec( const std::string& type, const std::string& name, const IInterface* parent ); - std::vector<MuonHit> clusters( const std::vector<MuonLogPad>& pads, - DeMuonDetector const& muonDetector ) const override; - - private: - Gaudi::Property<unsigned int> m_maxPadsPerStation{this, "MaxPadsPerStation", 1500}; - ToolHandle<IMuonFastPosTool> m_posTool{this, "PosTool", "MuonDetPosTool"}; - }; - - DECLARE_COMPONENT_WITH_ID( MuonClusterRec, "MuonClusterRec" ) -} // namespace LHCb - -namespace { - int regX( LHCb::Detector::Muon::TileID tile ) { return ( ( tile.quarter() > 1 ? -1 : 1 ) * tile.nX() ); } - int regY( LHCb::Detector::Muon::TileID tile ) { - return ( ( ( tile.quarter() > 0 && tile.quarter() < 3 ) ? -1 : 1 ) * tile.nY() ); - } -} // namespace - -LHCb::MuonClusterRec::MuonClusterRec( const std::string& type, const std::string& name, const IInterface* parent ) - : base_class( type, name, parent ) { - declareInterface<IMuonClusterRec>( this ); -} - -std::vector<MuonHit> LHCb::MuonClusterRec::clusters( const std::vector<MuonLogPad>& pads, - DeMuonDetector const& muonDetector ) const { - static const std::array<int, 5> factor = {3, 1, 1, 1, 1}; - int nhits = 0; - std::map<const MuonLogPad*, bool> usedPad; - bool searchNeighbours = true; - - // group pads by station - debug() << "Log. pads before clustering:" << endmsg; - // make it a vector of vectors, to allow dynamic sizing - std::vector<std::vector<const MuonLogPad*>> stationPads{static_cast<size_t>( muonDetector.stations() )}; - for ( auto& isP : stationPads ) isP.reserve( pads.size() ); - - if ( msgLevel( MSG::DEBUG ) ) { - for ( const auto& pad : pads ) { - if ( !pad.truepad() ) continue; - debug() << "LOGPAD Q" << ( pad.tile().quarter() + 1 ) << "M" << ( pad.tile().station() + 1 ) << "R" - << ( pad.tile().region() + 1 ) << " nX=" << pad.tile().nX() << " nY=" << pad.tile().nY() - << " time=" << pad.time() << " +/-" << pad.dtime() << endmsg; - } - } - for ( const auto& pad : pads ) { - if ( pad.truepad() ) stationPads[pad.tile().station()].push_back( &pad ); - } - - std::vector<MuonHit> clusters; - for ( int station = 0; station < muonDetector.stations(); station++ ) { - if ( stationPads[station].size() > factor[station] * m_maxPadsPerStation ) { - info() << "skipping station M" << station + 1 << " with too many pads:" << stationPads[station].size() << endmsg; - continue; - } - for ( auto ipad = stationPads[station].begin(); ipad != stationPads[station].end(); ipad++ ) { - if ( !usedPad.count( *ipad ) ) { - // cluster seed - usedPad[*ipad] = true; - clusters.emplace_back( *ipad, m_posTool.get() ); - MuonHit& muon_Hit = clusters.back(); - // store a progressive hit number for debugging purposes - muon_Hit.setHitID( ++nhits ); - // now search for adjacent pads - searchNeighbours = true; - while ( searchNeighbours ) { - searchNeighbours = false; - for ( auto jpad = std::next( ipad ); jpad != stationPads[station].end(); ++jpad ) { - if ( usedPad.count( *jpad ) ) continue; - bool takeit = false; - int deltaRegion = abs( (int)( ( *ipad )->tile().region() - ( *jpad )->tile().region() ) ); - if ( deltaRegion > 1 ) continue; - if ( deltaRegion == 0 ) { // same region: use logical position - takeit = - std::any_of( muon_Hit.logPads().begin(), muon_Hit.logPads().end(), [&]( const MuonLogPad* clpad ) { - if ( clpad->tile().region() != ( *jpad )->tile().region() ) return false; - int deltaX = std::abs( regX( clpad->tile() ) - regX( ( *jpad )->tile() ) ); - int deltaY = std::abs( regY( clpad->tile() ) - regY( ( *jpad )->tile() ) ); - return ( ( deltaX == 0 && deltaY == 1 ) || ( deltaX == 1 && deltaY == 0 ) ); - } ); - } else { // adjacent regions: use absolute position - auto pos = m_posTool->calcTilePos( ( *jpad )->tile() ); - - bool Xinside = ( pos->x() > muon_Hit.minX() && pos->x() < muon_Hit.maxX() ); - bool Xadj = ( ( pos->x() > muon_Hit.maxX() && pos->x() - pos->dX() - muon_Hit.maxX() < pos->dX() / 2 ) || - ( pos->x() < muon_Hit.minX() && muon_Hit.minX() - pos->x() - pos->dX() < pos->dX() / 2 ) ); - bool Yinside = ( pos->y() > muon_Hit.minY() && pos->y() < muon_Hit.maxY() ); - bool Yadj = ( ( pos->y() > muon_Hit.maxY() && pos->y() - pos->dY() - muon_Hit.maxY() < pos->dY() / 2 ) || - ( pos->y() < muon_Hit.minY() && muon_Hit.minY() - pos->y() - pos->dY() < pos->dY() / 2 ) ); - takeit = ( ( Xinside || Xadj ) && ( Yinside || Yadj ) ); - } - if ( takeit ) { // it's a neighbour, add it to the cluster - usedPad[*jpad] = true; - muon_Hit.addPad( *jpad ); - searchNeighbours = true; // we exit the loop and restart from ipad+1 ith the larger cluster - break; - } - } - } // end of neighbour search - } // end of unused pad request - } // end of loop on log. pads of a given station - } // end of loop on stations - if ( msgLevel( MSG::DEBUG ) ) { - debug() << "\n OBTAINED CLUSTERS:" << endmsg; - for ( const auto& c : clusters ) { - debug() << "Cluster #" << c.hitID() << " in M" << ( c.station() + 1 ) << " with " << c.npads() - << " pads X=" << c.minX() << " - " << c.maxX() << " Y=" << c.minY() << " - " << c.maxY() - << " first tile has Nx/Ny=" << c.tile().nX() << "/" << c.tile().nY() << endmsg; - } - } // end of clustering algorithm - return clusters; -} diff --git a/Muon/MuonTrackRec/src/component/MuonClustersToNNMuonTracks.cpp b/Muon/MuonTrackRec/src/component/MuonClustersToNNMuonTracks.cpp new file mode 100644 index 0000000000000000000000000000000000000000..59e274261bcff963a709a8fd8a3bdae824ef078b --- /dev/null +++ b/Muon/MuonTrackRec/src/component/MuonClustersToNNMuonTracks.cpp @@ -0,0 +1,551 @@ +/*****************************************************************************\ + * (c) Copyright 2000-2021 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. * +\*****************************************************************************/ + +#include "DetDesc/Condition.h" +#include "Event/RawBank.h" +#include "Gaudi/Accumulators.h" +#include "LHCbAlgs/Transformer.h" +#include "MuonDAQ/MuonDAQDefinitions.h" +#include "MuonDAQ/MuonHitContainer.h" +#include "MuonDet/DeMuonDetector.h" +#include "MuonDet/MuonNamespace.h" + +#include "GaudiKernel/ToolHandle.h" + +#include "MuonInterfaces/MuonCluster.h" +#include "MuonInterfaces/MuonPad.h" +#include <boost/numeric/conversion/cast.hpp> + +#include "MuonInterfaces/NNMuonTrack.h" +#include "MuonInterfaces/Neuron.h" + +#include <array> +#include <bitset> +#include <boost/container/static_vector.hpp> +#include <functional> +#include <optional> +#include <string> +#include <vector> + +namespace NNMuonTrackRec { + extern double muspeed; + extern double Zref; + extern bool PhysTiming; + extern bool IsCosmic; + extern bool IsPhysics; +} // namespace NNMuonTrackRec + +/** + * This is the muon reconstruction algorithm + * This just crosses the logical strips back into pads + */ +using namespace Muon::DAQ; +namespace LHCb::Muon::MuonTrackRec { + + class ClustersToNNTracks final + : public Algorithm::Transformer<NNMuonTracks( const EventContext&, const MuonClusters&, const DeMuonDetector& ), + Algorithm::Traits::usesConditions<DeMuonDetector>> { + public: + ClustersToNNTracks( const std::string& name, ISvcLocator* pSvcLocator ); + + StatusCode initialize() override; + StatusCode finalize() override; + NNMuonTracks operator()( const EventContext&, const MuonClusters&, const DeMuonDetector& ) const override; + + void setZref( double Zref ) { NNMuonTrackRec::Zref = Zref; } + void setPhysicsTiming( bool PhysTiming ) { NNMuonTrackRec::PhysTiming = PhysTiming; } + void setAssumeCosmics( bool AssumeCosmics ) { + NNMuonTrackRec::IsCosmic = AssumeCosmics; + if ( AssumeCosmics ) NNMuonTrackRec::IsPhysics = false; + } + void setAssumePhysics( bool AssumePhysics ) { + NNMuonTrackRec::IsPhysics = AssumePhysics; + if ( AssumePhysics ) NNMuonTrackRec::IsCosmic = false; + } + + private: + StatusCode muonNNetMon(); + StatusCode trackFit( NNMuonTracks* tracks ) const; + Gaudi::Property<float> m_aa{this, "PosScaleFactor", 10., "head-tail weight scale factor"}; + Gaudi::Property<float> m_bb{this, "NegScaleFactorB", 1., "head-head weight scale factor"}; + Gaudi::Property<float> m_cc{this, "NegScaleFactorC", 1., "tail-tail weight scale factor"}; + Gaudi::Property<float> m_slamb{this, "SlamFactorB", 6., "penalty for TT connections"}; + Gaudi::Property<float> m_slamc{this, "SlamFactorC", 6., "penalty for HH connections"}; + Gaudi::Property<double> m_xesp1{this, "ExponentXZ", 10., "exponent for (1-sin(thxz)) weight factor"}; + Gaudi::Property<double> m_xesp2{this, "ExponentYZ", 10., "exponent for (1-sin(thyz)) weight factor"}; + Gaudi::Property<float> m_dd{this, "Stimulus", 0., "stimulation weight term"}; + Gaudi::Property<float> m_temp{this, "Temperature", 1., "temperature"}; + Gaudi::Property<float> m_dsum{this, "Convergence", 1e-6, "convergence factor"}; + Gaudi::Property<float> m_scut{this, "NeuronThreshold", 0.7, "neuron activation cut"}; + Gaudi::Property<float> m_acut{this, "DoubleKillAngCut", 0.1, "angular cut for double length neurons killing"}; + Gaudi::Property<int> m_span_cut{this, "TrackSpanCut", 2, "cut on span for selected tracks"}; + Gaudi::Property<int> m_firing_cut{this, "StationFiringCut", 2, "min # of stations firing in the track"}; + Gaudi::Property<int> m_maxNeurons{this, "MaxNeurons", 5000, "max number of possible track segments"}; + Gaudi::Property<int> m_maxIterations{this, "MaxIterations", 100, "max number of NN iterations"}; + + Gaudi::Property<int> m_skipStation{ + this, "SkipStation", -1, "station to be skipped (e.g. for eff. study): 0-4; -1 = keep all stns (default)"}; + Gaudi::Property<bool> m_allowHoles{this, "AllowHoles", true, + "if <true> (default) holes of 1 station are allowed in track reconstruction"}; + + Gaudi::Property<bool> m_physicsTiming{ + this, "PhysicsTiming", true, + "if true, we assume that timing is the final one (accounting for TOF from primary vx)"}; + + Gaudi::Property<bool> m_assumeCosmics{ + this, "AssumeCosmics", false, "if true (default) we assume that tracks are of cosmic origin (can be backward)"}; + + Gaudi::Property<bool> m_assumePhysics{this, "AssumePhysics", true, + "if true we assume that tracks have the 'right' direction (pz>0)"}; + + Gaudi::Property<bool> m_XTalk{this, "AddXTalk", true}; + Gaudi::Property<float> m_XtalkRadius{this, "XtalkRadius", 1.5}; + + mutable Gaudi::Accumulators::Counter<> m_trackFitFailed{this, "nb track with Fit failure"}; + }; + + DECLARE_COMPONENT_WITH_ID( ClustersToNNTracks, "MuonClustersToNNMuonTracks" ) + //============================================================================= + // Standard constructor + //============================================================================= + ClustersToNNTracks::ClustersToNNTracks( const std::string& name, ISvcLocator* pSvcLocator ) + : Transformer( name, pSvcLocator, + {KeyValue{"ClusterContainerLocation", MuonClusterContainerLocation::Default}, + KeyValue{"MuonDetectorLocation", DeMuonLocation::Default}}, + KeyValue{"NNMuonTracksContainer", NNMuonTrackContainerLocation::Default} ) {} + + //============================================================================= + // Initialisation + //============================================================================= + StatusCode ClustersToNNTracks::initialize() { + return Transformer::initialize().andThen( [&]() { + setPhysicsTiming( m_physicsTiming ); + setAssumeCosmics( m_assumeCosmics ); + setAssumePhysics( m_assumePhysics ); + } ); + } + StatusCode ClustersToNNTracks::finalize() { + return Transformer::finalize().andThen( [&]() {} ); + } + NNMuonTracks ClustersToNNTracks::operator()( const EventContext&, const MuonClusters& muonClusters, + const DeMuonDetector& det ) const { + + auto trackFitFailed = m_trackFitFailed.buffer(); + + if ( msgLevel( MSG::DEBUG ) ) debug() << "\n running MuonNNetMon" << endmsg; + unsigned int nStations = det.stations(); + + boost::container::static_vector<unsigned int, 4> hit_per_station( nStations, 0 ); // was 5 + + // check on maximum number of hit combinations giving a neuron + + NNMuonTracks tracks{}; + + for ( const auto& coord : muonClusters ) hit_per_station[coord.station()]++; + int ncomb = 0, nFiringS = 0; + int minFiringS = 99; + int maxFiringS = -99; + for ( auto [i, nhits] : LHCb::range::enumerate( hit_per_station, 0u ) ) { + if ( nhits > 0 ) { + ++nFiringS; + if ( minFiringS == 99 ) minFiringS = i; + maxFiringS = i; + } + for ( unsigned j = i + 1; j < nStations && j < ( i + 3 ); j++ ) { + if ( int( i ) != m_skipStation ) ncomb += hit_per_station[i] * hit_per_station[j]; + } + } + if ( nFiringS <= m_firing_cut || ( maxFiringS - minFiringS ) < m_span_cut ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << "not enough firing stations to get tracks" << endmsg; + return tracks; + } + if ( msgLevel( MSG::DEBUG ) ) + debug() << " max combination " << hit_per_station[0] << " " << hit_per_station[1] << " " << hit_per_station[2] + << " " << hit_per_station[3] << " " << ncomb << endmsg; + if ( ncomb > m_maxNeurons ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << "Too many hits to proceed with cosmic track finding " << ncomb << endmsg; + return tracks; + } + + // starts the NNet reconstruction + + // here starts the double loop over hits to build the neurons + // Neurons are oriented segments with a tail (close to the IP) and a head + // (far from the IP). Neurons can be connected head-head (tail-tail) + // if they enter (exit) in (from) the same hit + // + // if holes are allowed (default) max neuron length is 2 else 1 + int neuronLength = m_allowHoles ? 2 : 1; + if ( msgLevel( MSG::DEBUG ) ) + debug() << "MAX NEURON LENGTH FOR THIS JOB IS: " << neuronLength << " Skipping Station " << m_skipStation + << endmsg; + + std::list<Muon::Neuron*> neurons; + int Nneurons = 0; + for ( auto ihT = muonClusters.begin(); ihT != muonClusters.end(); ihT++ ) { + MuonCluster const *head, *tail; + // skip a station for efficiency studies + int stT = ihT->station(); + if ( stT == m_skipStation ) continue; + + int tID = ihT->hitID(); // tail ID + for ( auto ihH = std::next( ihT ); ihH != muonClusters.end(); ihH++ ) { + + // skip a station for efficiency studies + int stH = ihH->station(); + if ( stH == m_skipStation ) continue; + + // cut on neuron length in terms of crossed stations + + if ( std::abs( double( ihH->station() - ihT->station() ) ) > neuronLength || ihH->station() == ihT->station() ) + continue; + if ( ihH->station() > ihT->station() ) { + head = &*ihH; + tail = &*ihT; + } else { + head = &*ihT; + tail = &*ihH; + } + int sta = nStations == 5 ? tail->station() + 1 : tail->station() + 2; // switch depends on no. of stations + + int reg = tail->region() + 1; + int hID = head->hitID(); // head ID + + if ( m_assumePhysics ) { // tighter cuts on neurons + double sf1, sf2, sf3, sf4; + bool neuron_OK = true; + + double tT = atan2( ihT->Y(), ihT->Z() ); + double tH = atan2( ihH->Y(), ihH->Z() ); + double pT = atan2( ihT->X(), ihT->Z() ); + double pH = atan2( ihH->X(), ihH->Z() ); + double dth = fabs( tT - tH ); + double dph = fabs( pT - pH ); + + switch ( sta ) { + case 1: + sf1 = 2.0; + sf2 = 1.5; + sf3 = 2.0; + sf4 = 2.0; + switch ( reg ) { + case 1: + if ( dth > sf1 * 0.002 ) neuron_OK = false; + if ( dph > sf1 * 0.0015 ) neuron_OK = false; + break; + case 2: + if ( dth > sf2 * 0.004 ) neuron_OK = false; + if ( dph > sf2 * 0.003 ) neuron_OK = false; + break; + case 3: + if ( dth > sf3 * 0.008 ) neuron_OK = false; + if ( dph > sf3 * 0.0065 ) neuron_OK = false; + break; + case 4: + if ( dth > sf4 * 0.016 ) neuron_OK = false; + if ( dph > sf4 * 0.013 ) neuron_OK = false; + break; + } + break; + case 2: + sf1 = 3.0; + sf2 = 3.0; + sf3 = 6.0; + sf4 = 3.0; + switch ( reg ) { + case 1: + if ( dth > sf1 * 0.002 ) neuron_OK = false; + if ( dph > sf1 * 0.0015 ) neuron_OK = false; + break; + case 2: + if ( dth > sf2 * 0.004 ) neuron_OK = false; + if ( dph > sf2 * 0.003 ) neuron_OK = false; + break; + case 3: + if ( dth > sf3 * 0.008 ) neuron_OK = false; + if ( dph > sf3 * 0.0065 ) neuron_OK = false; + break; + case 4: + if ( dth > sf4 * 0.016 ) neuron_OK = false; + if ( dph > sf4 * 0.013 ) neuron_OK = false; + break; + } + break; + default: + sf1 = 5.0; + sf2 = 3.0; + sf3 = 2.0; + sf4 = 2.0; + switch ( reg ) { + case 1: + if ( dth > sf1 * 0.002 ) neuron_OK = false; + if ( dph > sf1 * 0.0015 ) neuron_OK = false; + break; + case 2: + if ( dth > sf2 * 0.004 ) neuron_OK = false; + if ( dph > sf2 * 0.003 ) neuron_OK = false; + break; + case 3: + if ( dth > sf3 * 0.008 ) neuron_OK = false; + if ( dph > sf3 * 0.0065 ) neuron_OK = false; + break; + case 4: + if ( dth > sf4 * 0.016 ) neuron_OK = false; + if ( dph > sf4 * 0.013 ) neuron_OK = false; + break; + } + break; + } + + if ( !neuron_OK ) continue; + } + // here if everything OK. Now build the neurons. + + Nneurons++; + // create the MuonNeuron + Muon::Neuron* Neuron = new Muon::Neuron( head, tail, hID, tID, sta, reg ); + // store progressive neuron number for debugging + Neuron->setNeuronID( Nneurons ); + // fill a neuron list to mainipulate them in the program + neurons.push_back( Neuron ); // this is a std::list<MuonNeuron*> + } + } + // the manipulation of neurons is made through the std::list neurons + + if ( msgLevel( MSG::DEBUG ) ) debug() << "Created neurons: " << neurons.size() << endmsg; + + // now calculate the weights + + for ( auto nl1 = neurons.begin(); nl1 != neurons.end(); nl1++ ) { + for ( auto nl2 = std::next( nl1 ); nl2 != neurons.end(); nl2++ ) { + + double ww = 0; + // neurons 1 and 2 are tail-head or head-tail + if ( ( *nl1 )->tailHead( *( *nl2 ) ) || ( *nl1 )->headTail( *( *nl2 ) ) ) { + double thxz = ( *nl1 )->angleXZ( *( *nl2 ) ); + double thyz = ( *nl1 )->angleYZ( *( *nl2 ) ); + ww = m_aa * ( std::pow( ( 1 - sin( thxz ) ), m_xesp1 ) * std::pow( ( 1 - sin( thyz ) ), m_xesp2 ) ); + + // store neuron 2 pointer in neuron 1 and its weight + ( *nl1 )->setWeight( &( *( *nl2 ) ), ww ); + // store neuron 1 pointer in neuron 2 and its weight + ( *nl2 )->setWeight( &( *( *nl1 ) ), ww ); + } + + // neurons 1 and 2 are head-head + if ( ( *nl1 )->headHead( *( *nl2 ) ) ) { + ww = -m_slamb * m_bb; + // store neuron 2 pointer in neuron 1 and its weight + ( *nl1 )->setWeight( &( *( *nl2 ) ), ww ); + // store neuron 1 pointer in neuron 2 and its weight + ( *nl2 )->setWeight( &( *( *nl1 ) ), ww ); + } + // neurons 1 and 2 are tail-tail + if ( ( *nl1 )->tailTail( *( *nl2 ) ) ) { + + ww = -m_slamc * m_cc; + // store neuron 2 pointer in neuron 1 and its weight + ( *nl1 )->setWeight( &( *( *nl2 ) ), ww ); + // store neuron 1 pointer in neuron 1 and its weight + ( *nl2 )->setWeight( &( *( *nl1 ) ), ww ); + } + } + } + + if ( m_allowHoles ) { + // kill double length neurons if there is a unit length one + for ( auto& n : neurons ) n->killDoubleLength( m_acut ); + } + + // clean up weights. only the tail-head and the head-tail with the best + // weight are kept + for ( auto& n : neurons ) n->cleanupWeights(); + + // + // now starts network evolution + // + + int iterations = 0; + double ssum = 2 * m_dsum; + while ( ssum > m_dsum ) { + iterations++; + ssum = 0.0; + /// update neuron status + for ( auto& n : neurons ) { + const auto& wl = n->getWeights(); + + double sum = + std::accumulate( wl.begin(), wl.end(), 0.0, []( double s, const std::pair<Muon::Neuron*, double>& p ) { + return s + p.second * p.first->status(); + } ); + double s = 0.5 * ( 1.0 + std::tanh( m_dd / m_temp + sum / m_temp ) ); // actual status + double sp = n->status(); // previous status + if ( sum == 0 ) s = 0; + ssum += std::abs( s - sp ) / neurons.size(); + n->setStatus( s ); // update neuron status + } + if ( iterations == m_maxIterations ) break; + } + + if ( iterations == m_maxIterations ) { + + if ( msgLevel( MSG::DEBUG ) ) + debug() << "maximum number of iterations reached" << m_maxIterations << " reached" << endmsg; + } else { + if ( msgLevel( MSG::DEBUG ) ) debug() << "network convergence after " << iterations << " iterations" << endmsg; + } + + // drop OFF neurons + + int pip = 0; + auto nl1 = neurons.begin(); + while ( nl1 != neurons.end() ) { + if ( ( *nl1 )->status() <= m_scut ) { + nl1 = neurons.erase( nl1 ); + } else { + pip++; + // store progressive neuron number for debugging + ( *nl1 )->setNeuronID( pip ); + nl1++; + } + } + if ( msgLevel( MSG::DEBUG ) ) debug() << "ON neurons after convergence: " << neurons.size() << endmsg; + + // + // create the tracks + // + std::list<Muon::Neuron*> tmpList; + nl1 = neurons.begin(); + tracks.reserve( neurons.size() ); + while ( ( nl1 != neurons.end() ) && ( !neurons.empty() ) ) { + tracks.emplace_back(); + auto& muonTrack = tracks.back(); + std::list<Muon::Neuron*> track_neurons; + // 1st neuron copied in temp list and deleted from primary + tmpList.push_back( *nl1 ); + Muon::Neuron* firstNeuron = *nl1; + neurons.pop_front(); + // now loop over all other neurons and copy in the tmp list those in contact with 1st + // also these neurons are removed from the primary list + while ( !tmpList.empty() ) { + auto nl2 = neurons.begin(); + + while ( ( nl2 != neurons.end() ) && ( !neurons.empty() ) ) { + + if ( ( *nl2 )->connectedTo( *firstNeuron ) ) { + tmpList.push_back( *nl2 ); + nl2 = neurons.erase( nl2 ); + } else { + nl2++; + } + } + // the first neuron of tmp is copied into the track_neurons and removed from + // the tmp list; then we proceed with the 1st element of the tmp list + // and look for connected neurons that are in turn added to the tmp list + + int hID = tmpList.front()->headTailID().first; + int tID = tmpList.front()->headTailID().second; + const MuonCluster* head = tmpList.front()->head(); + const MuonCluster* tail = tmpList.front()->tail(); + + muonTrack.insert( hID, head ); // insert the head point + muonTrack.insert( tID, tail ); // insert the tail point + + track_neurons.push_back( tmpList.front() ); + tmpList.pop_front(); + if ( !tmpList.empty() ) firstNeuron = tmpList.front(); + } + + // here the track_neurons should be filled and we can proceed with the next remaining neuron + + if ( msgLevel( MSG::DEBUG ) ) { + debug() << "the track" << endmsg; + + auto t_hits = muonTrack.getHits(); + debug() << "track hits " << t_hits.size() << endmsg; + for ( const auto& tk : t_hits ) { debug() << tk->X() << " " << tk->Y() << " " << tk->Z() << endmsg; } + } + + int span = muonTrack.getSpan(); + + int firedstat = muonTrack.getFiringStations(); + + // fill the track vector only for those tracks where at least 3 stations are firing + + if ( span >= m_span_cut && firedstat > m_firing_cut && int( muonTrack.getHits().size() ) <= firedstat ) { + + if ( m_XTalk ) { + StatusCode sct = muonTrack.AddXTalk( &muonClusters, m_XtalkRadius, m_skipStation ); + if ( msgLevel( MSG::DEBUG ) ) { + if ( !sct ) debug() << "problem adding XTalk pads" << endmsg; + debug() << " After Xtalk " << muonTrack.getHits().size() << " hits:" << endmsg; + auto t_hits = muonTrack.getHits(); + for ( const auto& tk : t_hits ) { + debug() << tk->X() << " " << tk->Y() << " " << tk->Z() << endmsg; + auto const Tiles = tk->getPadTiles(); + debug() << " padTiles " << Tiles.size() << endmsg; + for ( auto const& tile : Tiles ) debug() << tile << endmsg; + } + } + } + + } else { + if ( msgLevel( MSG::DEBUG ) ) { + debug() << "Rejected track "; + if ( int( muonTrack.getHits().size() ) > firedstat ) debug() << " (TOO MANY HITS per STATION)"; + debug() << endmsg; + } + + tracks.pop_back(); + } + + nl1 = neurons.begin(); + } + // here I have the list of good tracks selected by span cut. + + if ( msgLevel( MSG::DEBUG ) ) debug() << "selected tracks: " << tracks.size() << endmsg; + + // start track fitting + + StatusCode scf = trackFit( &tracks ); + if ( !scf ) { + ++trackFitFailed; + if ( msgLevel( MSG::DEBUG ) ) debug() << "problem in track fitting" << endmsg; + } + return tracks; + } + + //============================================================================= + // track fitting + //============================================================================= + + StatusCode ClustersToNNTracks::trackFit( NNMuonTracks* tracks ) const { + + for ( auto itk = tracks->begin(); itk != tracks->end(); itk++ ) { + StatusCode tsc = itk->linFit(); + if ( !tsc ) { + err() << "Error fitting track" << endmsg; + return tsc; + } + + if ( msgLevel( MSG::DEBUG ) ) { + debug() << "sx : " << itk->sx() << " bx : " << itk->bx() << endmsg; + debug() << "sy : " << itk->sy() << " by : " << itk->by() << endmsg; + debug() << "esx : " << itk->errsx() << " ebx : " << itk->errbx() << endmsg; + debug() << "esy : " << itk->errsy() << " eby : " << itk->errby() << endmsg; + } + + } // end loop on tracks + + return StatusCode::SUCCESS; + } + +} // namespace LHCb::Muon::MuonTrackRec diff --git a/Muon/MuonTrackRec/src/component/MuonDetPosTool.cpp b/Muon/MuonTrackRec/src/component/MuonDetPosTool.cpp deleted file mode 100644 index 5b86b032e3d7e7521758a3ea0707e0a1159f84bf..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/src/component/MuonDetPosTool.cpp +++ /dev/null @@ -1,51 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ - -#include "MuonDet/DeMuonDetector.h" -#include "MuonDet/IMuonFastPosTool.h" -#include "MuonDet/MuonNamespace.h" - -#include "Detector/Muon/TileID.h" - -#include "DetDesc/GenericConditionAccessorHolder.h" - -#include "GaudiAlg/GaudiTool.h" - -namespace LHCb { - - /** - * @author Giacomo GRAZIANI - * @date 2009-03-17 - */ - class MuonDetPosTool : public extends<DetDesc::ConditionAccessorHolder<GaudiTool>, IMuonFastPosTool> { - public: - using extends::extends; - - std::optional<DeMuonDetector::TilePosition> calcTilePos( const Detector::Muon::TileID& tile ) const override { - return m_muonDetector.get().position( tile ); - } - - std::optional<DeMuonDetector::TilePosition> calcStripXPos( const Detector::Muon::TileID& tile ) const override { - return m_muonDetector.get().position( tile ); - } - - std::optional<DeMuonDetector::TilePosition> calcStripYPos( const Detector::Muon::TileID& tile ) const override { - return m_muonDetector.get().position( tile ); - } - - private: - ConditionAccessor<DeMuonDetector> m_muonDetector{this, DeMuonLocation::Default}; - }; - - // Declaration of the Tool Factory - DECLARE_COMPONENT_WITH_ID( MuonDetPosTool, "MuonDetPosTool" ) - -} // namespace LHCb diff --git a/Muon/MuonTrackRec/src/component/MuonHitDecode.cpp b/Muon/MuonTrackRec/src/component/MuonHitDecode.cpp deleted file mode 100644 index edb1e83d731fb65f66754c9e44af8d2be734b709..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/src/component/MuonHitDecode.cpp +++ /dev/null @@ -1,115 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ - -#include "IMuonRawBuffer.h" -#include "MuonDet/DeMuonDetector.h" -#include "MuonDet/MuonNamespace.h" -#include "MuonInterfaces/IMuonHitDecode.h" // Interface -#include "MuonInterfaces/MuonLogHit.h" - -#include "Detector/Muon/TileID.h" - -#include "GaudiAlg/GaudiTool.h" - -namespace LHCb { - - /** - * interface standard decoding tool (MuonRawBuffer) to MuonLogHit objects - * - * @author Giacomo Graziani - * @date 2009-03-16 - * - * Parameters: - * - SkipHWNumber: Skip the calculation of the hardware numbers. Can be set 'true' - * for reconstructing MuonTT tracks as it is faster. - */ - class MuonHitDecode : public extends<GaudiTool, IMuonHitDecode> { - - public: - using extends::extends; - - std::vector<MuonLogHit> hits( LHCb::RawBank::View const& raw, const DeMuonDetector& muonDetector ) const override; - // specific for Online Monitoring, not implemented here (just avoid compil. warnings) - int banksSize( LHCb::RawBank::BankType, std::vector<int>& ) override { return 0; } - unsigned int odeErrorWord( int, int ) override { return 0; } - int bankVersion() override { return 0; } - void dumpRawBanks() override {} - void dumpFrame( int, int ) override {} - bool mappingIsOld() override { return false; } - int l0id() override { return 0; } - int bcn() override { return 0; } - int cbcn() override { return 0; } - void setMultiBunch( int ) override {} - void unsetMultiBunch() override {} - bool multiBunch() override { return false; } - int mbExtraBXPerside() override { return 0; } - bool centralBX() override { return true; } - bool firstBX() override { return true; } - bool lastBX() override { return true; } - LHCb::Detector::Muon::TileID tileFromODE( int, int ) override { return {}; } - int odeIndex( int ) override { return 0; } - int channelsPerQuadrant( int, int ) override { return 0; } - int nPadX( int ) override { return 0; } - int nPadY( int ) override { return 0; } - int nPadXvy( int, int ) override { return 0; } - int nPadYvx( int, int ) override { return 0; } - float padSizeX( int, int ) override { return 0.; } - float padSizeY( int, int ) override { return 0.; } - float padSizeXvy( int, int ) override { return 0.; } - float padSizeYvx( int, int ) override { return 0.; } - LHCb::Detector::Muon::TileID tileFromLogCh( unsigned int, unsigned int, unsigned int, short int, - unsigned int ) override { - return {}; - } - bool completeEvent() override { return true; } - - private: - ToolHandle<IMuonRawBuffer> m_recTool{this, "MuonRawBuffer", "MuonRawBuffer"}; - Gaudi::Property<bool> m_skipHWNumber{this, "SkipHWNumber", false}; - }; - - DECLARE_COMPONENT_WITH_ID( MuonHitDecode, "MuonHitDecode" ) -} // namespace LHCb - -std::vector<MuonLogHit> LHCb::MuonHitDecode::hits( LHCb::RawBank::View const& raw, - const DeMuonDetector& muonDetector ) const { - auto tileAndTDC = m_recTool->getTileAndTDC( raw, *muonDetector.getDAQInfo() ); - for ( auto& ttdc : tileAndTDC ) { ttdc.second += 7 * 16; } - - if ( msgLevel( MSG::DEBUG ) ) debug() << "Size of tilesAndTDC container is: " << tileAndTDC.size() << endmsg; - - // create list of MuonLogHit objects - std::vector<MuonLogHit> hits; - hits.reserve( tileAndTDC.size() ); - for ( const auto& ttdc : tileAndTDC ) { - hits.emplace_back( ttdc.first ); - auto& newhit = hits.back(); - long ODE_number = 0, ode_ch = 0; - if ( !m_skipHWNumber.value() ) { - auto address = muonDetector.getDAQInfo()->findHWNumber( ttdc.first ); - if ( address ) { - ODE_number = address->ODENumber; - ode_ch = address->position; - } - } - unsigned int on = ODE_number, oc = ode_ch; - newhit.setOdeNumber( on ); - newhit.setOdeChannel( oc ); - short int OdeIndex = 1; - newhit.setOdeIndex( OdeIndex ); // to be implemented - int time = ttdc.second - 7 * 16; // remove the positive-forcing offset - newhit.setTime( time ); - } - - if ( msgLevel( MSG::DEBUG ) ) debug() << "Size of MuonLogHit container is: " << hits.size() << endmsg; - - return hits; -} diff --git a/Muon/MuonTrackRec/src/component/MuonHitsToMuonPads.cpp b/Muon/MuonTrackRec/src/component/MuonHitsToMuonPads.cpp new file mode 100644 index 0000000000000000000000000000000000000000..0057e2d2d9e92c7b15da47c7ccfa0a3e707523a2 --- /dev/null +++ b/Muon/MuonTrackRec/src/component/MuonHitsToMuonPads.cpp @@ -0,0 +1,107 @@ +/*****************************************************************************\ + * (c) Copyright 2000-2021 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. * +\*****************************************************************************/ + +#include "DetDesc/Condition.h" +#include "Event/PrHits.h" +#include "Event/RawBank.h" +#include "MuonDAQ/MuonDAQDefinitions.h" +#include "MuonDAQ/MuonHitContainer.h" +#include "MuonDet/DeMuonDetector.h" +#include "MuonDet/MuonNamespace.h" + +#include "LHCbAlgs/Transformer.h" + +#include "GaudiKernel/ToolHandle.h" + +#include "MuonInterfaces/MuonPad.h" +#include <boost/numeric/conversion/cast.hpp> + +#include <array> +#include <bitset> +#include <functional> +#include <optional> +#include <string> +#include <vector> + +/** + * This is the muon reconstruction algorithm + * This just crosses the logical strips back into pads + */ +using namespace Muon::DAQ; +namespace LHCb::Muon::MuonTrackRec { + + class HitsToPads final + : public Algorithm::Transformer<MuonPads( const EventContext&, const MuonHitContainer&, const DeMuonDetector& ), + Algorithm::Traits::usesConditions<DeMuonDetector>> { + public: + HitsToPads( const std::string& name, ISvcLocator* pSvcLocator ); + MuonPads operator()( const EventContext&, const MuonHitContainer&, const DeMuonDetector& ) const override; + + private: + }; + + DECLARE_COMPONENT_WITH_ID( HitsToPads, "MuonHitsToMuonPads" ) + //============================================================================= + // Standard constructor + //============================================================================= + HitsToPads::HitsToPads( const std::string& name, ISvcLocator* pSvcLocator ) + : Transformer( name, pSvcLocator, + {KeyValue{"HitContainerLocation", MuonHitContainerLocation::Default}, + KeyValue{"MuonDetectorLocation", DeMuonLocation::Default}}, + KeyValue{"PadContainer", MuonPadContainerLocation::Default} ) {} + + MuonPads HitsToPads::operator()( const EventContext&, const MuonHitContainer& muonHits, + const DeMuonDetector& det ) const { + + MuonPads pads{}; + + int NStation = det.stations(); + if ( msgLevel( MSG::DEBUG ) ) debug() << "station # " << NStation << endmsg; + if ( NStation > 4 ) throw GaudiException( "two many stations M1 will be ignored", name(), StatusCode::FAILURE ); + for ( int stat = 0; stat < NStation; stat++ ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << " station " << stat << endmsg; + const auto mhits = muonHits.hits( stat ); + if ( mhits.size() == 0 ) { continue; } + if ( msgLevel( MSG::DEBUG ) ) debug() << "hits size " << mhits.size() << endmsg; + for ( const auto& muonhit : mhits ) { + MuonPad::LogPadType type = MuonPad::LogPadType::NOX; + MuonPad pad( &muonhit, true, type ); + + bool truepad = false; + + if ( msgLevel( MSG::DEBUG ) ) + debug() << "hit " << muonhit.station() << " " << muonhit.region() << " " + << det.getLogMapInRegion( muonhit.station(), muonhit.region() ) << " " + << det.readoutInRegion( muonhit.station(), muonhit.region() ) << endmsg; + if ( det.getLogMapInRegion( muonhit.station(), muonhit.region() ) == 1 ) { + truepad = true; + type = MuonPad::LogPadType::NOX; + } else { + if ( muonhit.uncrossed() ) { + type = MuonPad::LogPadType::UNPAIRED; + } else { + truepad = true; + if ( det.readoutInRegion( muonhit.station(), muonhit.region() ) == 1 ) type = MuonPad::LogPadType::XONEFE; + if ( det.readoutInRegion( muonhit.station(), muonhit.region() ) == 2 ) type = MuonPad::LogPadType::XTWOFE; + } + } + if ( msgLevel( MSG::DEBUG ) ) + debug() << "hit cross truepad type " << muonhit.uncrossed() << " " << truepad << " " + << static_cast<int>( type ) << endmsg; + pads.emplace_back( &muonhit, truepad, type ); + } + if ( msgLevel( MSG::DEBUG ) ) debug() << "processing station # " << stat << " ended" << endmsg; + } + + if ( msgLevel( MSG::DEBUG ) ) debug() << "pads size " << pads.size() << endmsg; + return pads; + } +} // namespace LHCb::Muon::MuonTrackRec diff --git a/Muon/MuonTrackRec/src/component/MuonNNetRec.cpp b/Muon/MuonTrackRec/src/component/MuonNNetRec.cpp deleted file mode 100644 index 76712268297fccfa72350617f6a3e9aedcb94bc9..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/src/component/MuonNNetRec.cpp +++ /dev/null @@ -1,563 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ - -#include "MuonDet/DeMuonDetector.h" -#include "MuonDet/MuonNamespace.h" -#include "MuonInterfaces/IMuonClusterRec.h" -#include "MuonInterfaces/IMuonHitDecode.h" -#include "MuonInterfaces/IMuonPadRec.h" -#include "MuonInterfaces/IMuonTrackMomRec.h" -#include "MuonInterfaces/IMuonTrackRec.h" -#include "MuonInterfaces/MuonHit.h" -#include "MuonInterfaces/MuonLogHit.h" -#include "MuonInterfaces/MuonLogPad.h" -#include "MuonInterfaces/MuonNeuron.h" -#include "MuonInterfaces/MuonTrack.h" - -#include "Core/FloatComparison.h" -#include "Event/State.h" -#include "Event/StateVector.h" -#include "Event/Track.h" -#include "Kernel/STLExtensions.h" - -#include "GaudiAlg/GaudiTool.h" -#include "GaudiAlg/ISequencerTimerTool.h" - -#include "boost/container/static_vector.hpp" - -#include <list> -#include <numeric> -#include <string> -#include <vector> - -using namespace LHCb; -using namespace std; - -/** - * @author Giovanni Passaleva - * @date 2008-04-11 - */ -class MuonNNetRec : public GaudiTool, virtual public IMuonTrackRec { -public: - MuonNNetRec( const std::string& type, const std::string& name, const IInterface* parent ); - StatusCode initialize() override; - - /** - * builds and returns muon tracks as well as tooManyHits flag - * @return tuple with vector of hits, vector of tracks and whether too many hits were found - * Note that the tracks have pointers to hits in the vector of hits - */ - std::tuple<std::vector<MuonHit>, std::vector<MuonTrack>, bool> const tracks( LHCb::RawBank::View const&, - const DeMuonDetector& ) const override; - void setZref( double Zref ) override { MuonTrackRec::Zref = Zref; } - void setPhysicsTiming( bool PhysTiming ) override { MuonTrackRec::PhysTiming = PhysTiming; } - void setAssumeCosmics( bool AssumeCosmics ) override { - MuonTrackRec::IsCosmic = AssumeCosmics; - if ( AssumeCosmics ) MuonTrackRec::IsPhysics = false; - } - void setAssumePhysics( bool AssumePhysics ) override { - MuonTrackRec::IsPhysics = AssumePhysics; - if ( AssumePhysics ) MuonTrackRec::IsCosmic = false; - } - -private: - StatusCode muonNNetMon(); - StatusCode trackFit( std::vector<MuonTrack>& tracks ) const; - - // job options - Gaudi::Property<float> m_aa{this, "PosScaleFactor", 10., "head-tail weight scale factor"}; - Gaudi::Property<float> m_bb{this, "NegScaleFactorB", 1., "head-head weight scale factor"}; - Gaudi::Property<float> m_cc{this, "NegScaleFactorC", 1., "tail-tail weight scale factor"}; - Gaudi::Property<float> m_slamb{this, "SlamFactorB", 5., "penalty for TT connections"}; - Gaudi::Property<float> m_slamc{this, "SlamFactorC", 5., "penalty for HH connections"}; - Gaudi::Property<double> m_xesp1{this, "ExponentXZ", 10., "exponent for (1-sin(thxz)) weight factor"}; - Gaudi::Property<double> m_xesp2{this, "ExponentYZ", 10., "exponent for (1-sin(thyz)) weight factor"}; - Gaudi::Property<float> m_dd{this, "Stimulus", 0., "stimulation weight term"}; - Gaudi::Property<float> m_temp{this, "Temperature", 1., "temperature"}; - Gaudi::Property<float> m_dsum{this, "Convergence", 1e-5, "convergence factor"}; - Gaudi::Property<float> m_scut{this, "NeuronThreshold", 0.7, "neuron activation cut"}; - Gaudi::Property<float> m_acut{this, "DoubleKillAngCut", 0.1, "angular cut for double length neurons killing"}; - Gaudi::Property<int> m_span_cut{this, "TrackSpanCut", 2, "cut on span for selected tracks"}; - Gaudi::Property<int> m_firing_cut{this, "StationFiringCut", 2, "min # of stations firing in the track"}; - Gaudi::Property<int> m_maxNeurons{this, "MaxNeurons", 3000, "max number of possible track segments"}; - Gaudi::Property<int> m_maxIterations{this, "MaxIterations", 100, "max number of NN iterations"}; - - Gaudi::Property<int> m_skipStation{this, "SkipStation", -1, - "station to be skipped (e.g. for eff. study): 0-4; -1 = keep all stns (default)"}; - - Gaudi::Property<bool> m_allowHoles{this, "AllowHoles", true, - "if <true> (default) holes of 1 station are allowed in track reconstruction"}; - - Gaudi::Property<bool> m_physicsTiming{ - this, "PhysicsTiming", true, - "if true, we assume that timing is the final one (accounting for TOF from primary vx)"}; - - Gaudi::Property<bool> m_assumeCosmics{ - this, "AssumeCosmics", true, "if true (default) we assume that tracks are of cosmic origin (can be backward)"}; - - Gaudi::Property<bool> m_assumePhysics{this, "AssumePhysics", false, - "if true we assume that tracks have the 'right' direction (pz>0)"}; - - // TOOLS - ToolHandle<IMuonHitDecode> m_decTool{ - this, "DecodingTool", "MuonHitDecode", - "Decoding tool (MuonHitDecode for offline, MuonMonHitDecode for online monitoring)"}; - ToolHandle<IMuonPadRec> m_padTool{this, "PadRecTool", "MuonPadRec", "Pad rec tool (MuonPadRec only option so far)"}; - ToolHandle<IMuonClusterRec> m_clusterTool{this, "ClusterTool", "MuonClusterRec", "Clustering tool"}; - ToolHandle<IMuonTrackMomRec> m_momentumTool{this, "MomemtumTool", "MuonTrackMomRec", - "Tool for calculating the transverse momentum"}; - - Gaudi::Property<bool> m_XTalk{this, "AddXTalk", false}; - Gaudi::Property<float> m_XtalkRadius{this, "XtalkRadius", 1.5}; - - /// LHCb tracks output location in TES - Gaudi::Property<std::string> m_trackOutputLoc{this, "TracksOutputLocation", "Rec/Muon/Track"}; -}; - -DECLARE_COMPONENT( MuonNNetRec ) - -MuonNNetRec::MuonNNetRec( const std::string& type, const std::string& name, const IInterface* parent ) - : GaudiTool( type, name, parent ) { - declareInterface<IMuonTrackRec>( this ); -} - -StatusCode MuonNNetRec::initialize() { - StatusCode sc = GaudiTool::initialize(); - - if ( !sc ) return sc; - - // switch off xtalk code if we're doing real clustering - // if (m_clusterTool->name() == "MuonClusterRec") m_XTalk=false; - - // set tool options - setPhysicsTiming( m_physicsTiming ); - setAssumeCosmics( m_assumeCosmics ); - setAssumePhysics( m_assumePhysics ); - - return StatusCode::SUCCESS; -} - -//============================================================================= -// Main reconstruction routine -//============================================================================= -std::tuple<std::vector<MuonHit>, std::vector<MuonTrack>, bool> const -MuonNNetRec::tracks( LHCb::RawBank::View const& raw, const DeMuonDetector& muonDetector ) const { - // call decoding and pad reconstruction - std::vector<MuonLogHit> myhits = m_decTool->hits( raw, muonDetector ); - std::vector<MuonLogPad> coords = m_padTool->pads( myhits, muonDetector ); - - // call clustering algorithm - std::vector<MuonHit> trackhits = m_clusterTool->clusters( coords, muonDetector ); - - debug() << "\n running MuonNNetMon" << endmsg; - unsigned nStations = muonDetector.stations(); - // preliminary cuts based on hits number in each station - boost::container::static_vector<unsigned int, 5> hit_per_station( nStations, 0 ); - // check on maximum number of hit combinations giving a neuron - for ( const auto& coord : trackhits ) hit_per_station[coord.station()]++; - - int ncomb = 0, nFiringS = 0; - int minFiringS = 99; - int maxFiringS = -99; - for ( auto [i, nhits] : LHCb::range::enumerate( hit_per_station, 0u ) ) { - if ( nhits > 0 ) { - ++nFiringS; - if ( minFiringS == 99 ) minFiringS = i; - maxFiringS = i; - } - for ( unsigned j = i + 1; j < nStations && j < ( i + 3 ); j++ ) { - if ( int( i ) != m_skipStation ) // stefania - ncomb += hit_per_station[i] * hit_per_station[j]; - } - } - if ( nFiringS <= m_firing_cut || ( maxFiringS - minFiringS ) < m_span_cut ) { - debug() << "not enough firing stations to get tracks" << endmsg; - return {{}, {}, false}; - } - - if ( ncomb > m_maxNeurons ) { - info() << "Too many hits to proceed with cosmic track finding" << endmsg; - return {{}, {}, true}; - } - - // starts the NNet reconstruction - - // here starts the double loop over hits to build the neurons - // Neurons are oriented segments with a tail (close to the IP) and a head - // (far from the IP). Neurons can be connected head-head (tail-tail) - // if they enter (exit) in (from) the same hit - // - // if holes are allowed (default) max neuron length is 2 else 1 - int neuronLength = m_allowHoles ? 2 : 1; - debug() << "MAX NEURON LENGTH FOR THIS JOB IS: " << neuronLength << " Skipping Station " << m_skipStation << endmsg; - - std::list<MuonNeuron*> neurons; - int Nneurons = 0; - for ( auto ihT = trackhits.begin(); ihT != trackhits.end(); ihT++ ) { - MuonHit *head, *tail; - // skip a station for efficiency studies - int stT = ihT->station(); - if ( stT == m_skipStation ) continue; - - int tID = ihT->hitID(); // tail ID - for ( auto ihH = std::next( ihT ); ihH != trackhits.end(); ihH++ ) { - - // skip a station for efficiency studies - int stH = ihH->station(); - if ( stH == m_skipStation ) continue; - - // cut on neuron length in terms of crossed stations - - if ( std::abs( double( ihH->station() - ihT->station() ) ) > neuronLength || ihH->station() == ihT->station() ) - continue; - if ( ihH->station() > ihT->station() ) { - head = &*ihH; - tail = &*ihT; - } else { - head = &*ihT; - tail = &*ihH; - } - - int sta = nStations == 5 ? tail->station() + 1 : tail->station() + 2; // switch depends on no. of stations - int reg = tail->region() + 1; - int hID = head->hitID(); // head ID - - if ( m_assumePhysics ) { // tighter cuts on neurons - double sf1, sf2, sf3, sf4; - bool neuron_OK = true; - - double tT = atan2( ihT->Y(), ihT->Z() ); - double tH = atan2( ihH->Y(), ihH->Z() ); - double pT = atan2( ihT->X(), ihT->Z() ); - double pH = atan2( ihH->X(), ihH->Z() ); - double dth = fabs( tT - tH ); - double dph = fabs( pT - pH ); - - switch ( sta ) { - case 1: - sf1 = 2.0; - sf2 = 1.5; - sf3 = 2.0; - sf4 = 2.0; - switch ( reg ) { - case 1: - if ( dth > sf1 * 0.002 ) neuron_OK = false; - if ( dph > sf1 * 0.0015 ) neuron_OK = false; - break; - case 2: - if ( dth > sf2 * 0.004 ) neuron_OK = false; - if ( dph > sf2 * 0.003 ) neuron_OK = false; - break; - case 3: - if ( dth > sf3 * 0.008 ) neuron_OK = false; - if ( dph > sf3 * 0.0065 ) neuron_OK = false; - break; - case 4: - if ( dth > sf4 * 0.016 ) neuron_OK = false; - if ( dph > sf4 * 0.013 ) neuron_OK = false; - break; - } - break; - case 2: - sf1 = 3.0; - sf2 = 3.0; - sf3 = 6.0; - sf4 = 3.0; - switch ( reg ) { - case 1: - if ( dth > sf1 * 0.002 ) neuron_OK = false; - if ( dph > sf1 * 0.0015 ) neuron_OK = false; - break; - case 2: - if ( dth > sf2 * 0.004 ) neuron_OK = false; - if ( dph > sf2 * 0.003 ) neuron_OK = false; - break; - case 3: - if ( dth > sf3 * 0.008 ) neuron_OK = false; - if ( dph > sf3 * 0.0065 ) neuron_OK = false; - break; - case 4: - if ( dth > sf4 * 0.016 ) neuron_OK = false; - if ( dph > sf4 * 0.013 ) neuron_OK = false; - break; - } - break; - default: - sf1 = 5.0; - sf2 = 3.0; - sf3 = 2.0; - sf4 = 2.0; - switch ( reg ) { - case 1: - if ( dth > sf1 * 0.002 ) neuron_OK = false; - if ( dph > sf1 * 0.0015 ) neuron_OK = false; - break; - case 2: - if ( dth > sf2 * 0.004 ) neuron_OK = false; - if ( dph > sf2 * 0.003 ) neuron_OK = false; - break; - case 3: - if ( dth > sf3 * 0.008 ) neuron_OK = false; - if ( dph > sf3 * 0.0065 ) neuron_OK = false; - break; - case 4: - if ( dth > sf4 * 0.016 ) neuron_OK = false; - if ( dph > sf4 * 0.013 ) neuron_OK = false; - break; - } - break; - } - - if ( !neuron_OK ) continue; - } - - // here if everything OK. Now build the neurons. - - Nneurons++; - // create the MuonNeuron - MuonNeuron* Neuron = new MuonNeuron( head, tail, hID, tID, sta, reg ); - // store progressive neuron number for debugging - Neuron->setNeuronID( Nneurons ); - // fill a neuron list to mainipulate them in the program - neurons.push_back( Neuron ); // this is a std::list<MuonNeuron*> - } - } - - // the manipulation of neurons is made through the std::list neurons - - debug() << "Created neurons: " << neurons.size() << endmsg; - - // now calculate the weights - - for ( auto nl1 = neurons.begin(); nl1 != neurons.end(); nl1++ ) { - - for ( auto nl2 = std::next( nl1 ); nl2 != neurons.end(); nl2++ ) { - - double ww = 0; - - // neurons 1 and 2 are tail-head or head-tail - if ( ( *nl1 )->tailHead( *( *nl2 ) ) || ( *nl1 )->headTail( *( *nl2 ) ) ) { - double thxz = ( *nl1 )->angleXZ( *( *nl2 ) ); - double thyz = ( *nl1 )->angleYZ( *( *nl2 ) ); - ww = m_aa * ( pow( ( 1 - sin( thxz ) ), m_xesp1 ) * pow( ( 1 - sin( thyz ) ), m_xesp2 ) ); - - // store neuron 2 pointer in neuron 1 and its weight - ( *nl1 )->setWeight( &( *( *nl2 ) ), ww ); - // store neuron 1 pointer in neuron 2 and its weight - ( *nl2 )->setWeight( &( *( *nl1 ) ), ww ); - } - // neurons 1 and 2 are head-head - if ( ( *nl1 )->headHead( *( *nl2 ) ) ) { - - ww = -m_slamb * m_bb; - // store neuron 2 pointer in neuron 1 and its weight - ( *nl1 )->setWeight( &( *( *nl2 ) ), ww ); - // store neuron 1 pointer in neuron 2 and its weight - ( *nl2 )->setWeight( &( *( *nl1 ) ), ww ); - } - // neurons 1 and 2 are tail-tail - if ( ( *nl1 )->tailTail( *( *nl2 ) ) ) { - - ww = -m_slamc * m_cc; - // store neuron 2 pointer in neuron 1 and its weight - ( *nl1 )->setWeight( &( *( *nl2 ) ), ww ); - // store neuron 1 pointer in neuron 1 and its weight - ( *nl2 )->setWeight( &( *( *nl1 ) ), ww ); - } - } - } - - if ( m_allowHoles ) { - // kill double length neurons if there is a unit length one - for ( auto& n : neurons ) n->killDoubleLength( m_acut ); - } - - // clean up weights. only the tail-head and the head-tail with the best - // weight are kept - for ( auto& n : neurons ) n->cleanupWeights(); - - // - // now starts network evolution - // - - int iterations = 0; - double ssum = 2 * m_dsum; - while ( ssum > m_dsum ) { - iterations++; - ssum = 0.0; - /// update neuron status - for ( auto& n : neurons ) { - - const auto& wl = n->getWeights(); - - double sum = std::accumulate( wl.begin(), wl.end(), 0.0, []( double s, const std::pair<MuonNeuron*, double>& p ) { - return s + p.second * p.first->status(); - } ); - double s = 0.5 * ( 1.0 + tanh( m_dd / m_temp + sum / m_temp ) ); // actual status - double sp = n->status(); // previous status - if ( LHCb::essentiallyZero( sum ) ) s = 0; - ssum += fabs( s - sp ) / neurons.size(); - n->setStatus( s ); // update neuron status - } - if ( iterations == m_maxIterations ) break; - } - - if ( iterations == m_maxIterations ) { - - Warning( "maximum number of iterations reached", StatusCode::SUCCESS, 0 ).ignore(); - if ( msgLevel( MSG::DEBUG ) ) - debug() << "maximum number of iterations reached" << m_maxIterations << " reached" << endmsg; - } else { - if ( msgLevel( MSG::DEBUG ) ) debug() << "network convergence after " << iterations << " iterations" << endmsg; - } - - // drop OFF neurons - - int pip = 0; - auto nl1 = neurons.begin(); - while ( nl1 != neurons.end() ) { - if ( ( *nl1 )->status() <= m_scut ) { - nl1 = neurons.erase( nl1 ); - } else { - pip++; - // store progressive neuron number for debugging - ( *nl1 )->setNeuronID( pip ); - nl1++; - } - } - if ( msgLevel( MSG::DEBUG ) ) debug() << "ON neurons after convergence: " << neurons.size() << endmsg; - - // - // create the tracks - // - - std::list<MuonNeuron*> tmpList; - nl1 = neurons.begin(); - std::vector<MuonTrack> tracks; - tracks.reserve( neurons.size() ); - while ( ( nl1 != neurons.end() ) && ( !neurons.empty() ) ) { - tracks.emplace_back(); - auto& muonTrack = tracks.back(); - std::list<MuonNeuron*> track; // create a new track - // 1st neuron copied in temp list and deleted from primary - tmpList.push_back( *nl1 ); - MuonNeuron* firstNeuron = *nl1; - neurons.pop_front(); - // now loop over all other neurons and copy in the tmp list those in contact with 1st - // also these neurons are removed from the primary list - - while ( !tmpList.empty() ) { - - auto nl2 = neurons.begin(); - - while ( ( nl2 != neurons.end() ) && ( !neurons.empty() ) ) { - - if ( ( *nl2 )->connectedTo( *firstNeuron ) ) { - tmpList.push_back( *nl2 ); - nl2 = neurons.erase( nl2 ); - } else { - nl2++; - } - } - // the first neuron of tmp is copied into the track and removed from - // the tmp list; then we proceed with the 1st element of the tmp list - // and look for connected neurons that are in turn added to the tmp list - - int hID = tmpList.front()->headTailID().first; - int tID = tmpList.front()->headTailID().second; - MuonHit* head = tmpList.front()->head(); - MuonHit* tail = tmpList.front()->tail(); - - muonTrack.insert( hID, head ); // insert the head point - muonTrack.insert( tID, tail ); // insert the tail point - - track.push_back( tmpList.front() ); - tmpList.pop_front(); - if ( !tmpList.empty() ) firstNeuron = tmpList.front(); - } - - // here the track should be filled and we can proceed with the next - // remaining neuron - - if ( msgLevel( MSG::DEBUG ) ) { - debug() << "the track" << endmsg; - for ( const auto& tk : track ) debug() << tk->neuronID() << endmsg; - - auto t_hits = muonTrack.getHits(); - debug() << "track hits " << t_hits.size() << endmsg; - for ( const auto& tk : t_hits ) { debug() << tk->X() << " " << tk->Y() << " " << tk->Z() << endmsg; } - } - - int span = muonTrack.getSpan(); - if ( msgLevel( MSG::DEBUG ) ) debug() << "track span " << span << endmsg; - - int firstat = muonTrack.getFiringStations(); - if ( msgLevel( MSG::DEBUG ) ) debug() << "firing stations " << firstat << endmsg; - - // fill the track vector only for those tracks where at least 3 stations - // are firing - if ( span >= m_span_cut && firstat > m_firing_cut ) { - if ( m_XTalk ) { - if ( msgLevel( MSG::DEBUG ) ) - debug() << " before Xtalk " << muonTrack.getHits().size() << " hits to the track" << endmsg; - - StatusCode sct = muonTrack.AddXTalk( trackhits, m_XtalkRadius, m_skipStation ); - - if ( msgLevel( MSG::DEBUG ) ) - debug() << " After Xtalk " << muonTrack.getHits().size() << " hits to the track" << endmsg; - - if ( !sct ) Warning( "problem adding XTalk pads", sct, 0 ).ignore(); - } - - } else { - tracks.pop_back(); - } - - nl1 = neurons.begin(); - } - - // here I have the list of good tracks selected by span cut. - - if ( msgLevel( MSG::DEBUG ) ) debug() << "selected tracks: " << tracks.size() << endmsg; - - // start track fitting - - StatusCode scf = trackFit( tracks ); - if ( !scf ) { Warning( "problem in track fitting", scf, 0 ).ignore(); } - - // clearNeurons(); - return {std::move( trackhits ), std::move( tracks ), false}; -} - -//============================================================================= -// track fitting -//============================================================================= - -StatusCode MuonNNetRec::trackFit( std::vector<MuonTrack>& tracks ) const { - - for ( auto itk = tracks.begin(); itk != tracks.end(); itk++ ) { - StatusCode tsc = itk->linFit(); - if ( !tsc ) { - err() << "Error fitting track" << endmsg; - return tsc; - } - - if ( msgLevel( MSG::DEBUG ) ) { - debug() << "sx : " << itk->sx() << " bx : " << itk->bx() << endmsg; - debug() << "sy : " << itk->sy() << " by : " << itk->by() << endmsg; - debug() << "esx : " << itk->errsx() << " ebx : " << itk->errbx() << endmsg; - debug() << "esy : " << itk->errsy() << " eby : " << itk->errby() << endmsg; - } - - } // end loop on tracks - - return StatusCode::SUCCESS; -} diff --git a/Muon/MuonTrackRec/src/component/MuonPadRec.cpp b/Muon/MuonTrackRec/src/component/MuonPadRec.cpp deleted file mode 100644 index d244b5d74b216581e1201a2c1c681c21687a1587..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/src/component/MuonPadRec.cpp +++ /dev/null @@ -1,230 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ - -#include "MuonInterfaces/IMuonPadRec.h" -#include "MuonInterfaces/MuonLogHit.h" -#include "MuonInterfaces/MuonLogPad.h" - -#include "MuonDet/DeMuonDetector.h" -#include "MuonDet/MuonNamespace.h" - -#include "Detector/Muon/Layout.h" -#include "Detector/Muon/TileID.h" - -#include "GaudiAlg/GaudiTool.h" - -#include <memory> -#include <set> -#include <vector> - -namespace LHCb { - - using MuonLayout = Detector::Muon::Layout; - - /** - * special reconstruction tool for Monitoring - * code based on MuonRec by A.Satta et al. - * - * @author G.Graziani - * @date 2008-01-25 - */ - - class MuonPadRec : public GaudiTool, virtual public IMuonPadRec { - public: - MuonPadRec( const std::string& type, const std::string& name, const IInterface* parent ); - std::vector<MuonLogPad> pads( std::vector<MuonLogHit>&, DeMuonDetector const& ) const override; - - StatusCode initialize() override; - - private: - Gaudi::Property<std::vector<long int>> m_TileVeto{this, "TileVeto"}; - Gaudi::Property<bool> m_getfirsthit{this, "FirstComeFirstServed", false}; - std::set<long int> m_TileVetoed; - - void addCoordsNoMap( std::vector<MuonLogPad>&, std::vector<MuonLogHit*>&, int, int ) const; - StatusCode addCoordsCrossingMap( std::vector<MuonLogPad>&, std::vector<MuonLogHit*>&, int, int, - DeMuonDetector const& ) const; - StatusCode makeStripLayouts( int, int, MuonLayout&, MuonLayout&, DeMuonDetector const& ) const; - void removeDoubleHits( std::vector<MuonLogHit*>& hits ) const; - }; - - DECLARE_COMPONENT_WITH_ID( MuonPadRec, "MuonPadRec" ) -} // namespace LHCb - -LHCb::MuonPadRec::MuonPadRec( const std::string& type, const std::string& name, const IInterface* parent ) - : GaudiTool( type, name, parent ), m_TileVeto( 0 ) { - declareInterface<IMuonPadRec>( this ); -} - -StatusCode LHCb::MuonPadRec::initialize() { - return GaudiTool::initialize().andThen( [&]() { - for ( const auto& iv : m_TileVeto ) m_TileVetoed.insert( iv ); - return StatusCode::SUCCESS; - } ); -} - -//-------------------------------------------------------------------------------// -// logical pad reconstruction, based on MuonRec algorithm from MuonDAQ package // -//-------------------------------------------------------------------------------// -std::vector<MuonLogPad> LHCb::MuonPadRec::pads( std::vector<MuonLogHit>& myhits, - DeMuonDetector const& muonDetector ) const { - std::vector<MuonLogPad> pads; - pads.reserve( 1000 ); - // save locally current hits - std::vector<MuonLogHit*> hits; - std::transform( myhits.begin(), myhits.end(), std::back_inserter( hits ), - []( MuonLogHit& mlh ) { return &mlh; } ); //@FIXME - if ( msgLevel( MSG::DEBUG ) ) debug() << "buildLogicalPads: raw hits are " << hits.size() << endmsg; - removeDoubleHits( hits ); - if ( msgLevel( MSG::DEBUG ) ) debug() << " after cleaning doubles " << hits.size() << endmsg; - if ( !hits.empty() ) { - int station; - for ( station = 0; station < muonDetector.stations(); station++ ) { - int region; - for ( region = 0; region < muonDetector.regions(); region++ ) { - - // get mapping of input to output from region - // in fact we are reversing the conversion done in the digitisation - int NLogicalMap = muonDetector.getLogMapInRegion( station, region ); - if ( msgLevel( MSG::VERBOSE ) ) - verbose() << " station and region " << station << " " << region << " maps " << NLogicalMap << endmsg; - - if ( 1 == NLogicalMap ) { - // straight copy of the input + making SmartRefs to the MuonDigits - addCoordsNoMap( pads, hits, station, region ); - } else { - // need to cross the input strips to get output strips - StatusCode sc = addCoordsCrossingMap( pads, hits, station, region, muonDetector ); - if ( !sc.isSuccess() ) { - throw GaudiException( "Failed to map digits to coords by crossing strips", "MuonPadRec::pads", sc ); - } - } - } - } - } - return pads; -} - -// Adding entries to coords 1 to 1 from digits, need to make the references -void LHCb::MuonPadRec::addCoordsNoMap( std::vector<MuonLogPad>& pads, std::vector<MuonLogHit*>& hits, int station, - int region ) const { - for ( const auto& hit : hits ) { - if ( hit->tile().station() == static_cast<unsigned int>( station ) && - hit->tile().region() == static_cast<unsigned int>( region ) ) { - // make the coordinate to be added to coords - if ( msgLevel( MSG::DEBUG ) ) - debug() << " LOGPAD OK nomap ODE " << hit->odeName() << " ch " << hit->odeChannel() << " tile " << hit->tile() - << " time)=" << hit->time() << endmsg; - - if ( m_TileVetoed.find( (long int)hit->tile() ) == m_TileVetoed.end() ) { - pads.emplace_back( hit ); - pads.back().settruepad(); - } else { - if ( msgLevel( MSG::DEBUG ) ) debug() << "applied veto on pad " << ( (long int)hit->tile() ) << endmsg; - } - } - } -} - -StatusCode LHCb::MuonPadRec::addCoordsCrossingMap( std::vector<MuonLogPad>& pads, std::vector<MuonLogHit*>& hits, - int station, int region, DeMuonDetector const& muonDetector ) const { - // get local MuonLayouts for strips - MuonLayout layoutOne, layoutTwo; - StatusCode sc = makeStripLayouts( station, region, layoutOne, layoutTwo, muonDetector ); - if ( !sc.isSuccess() ) { return sc; } - - // seperate the two types of logical channel, flag if used with the pair - std::vector<std::pair<MuonLogHit*, bool>> typeOnes; - std::vector<std::pair<MuonLogHit*, bool>> typeTwos; - for ( const auto& hit : hits ) { - if ( ( hit->tile() ).station() == static_cast<unsigned int>( station ) && - ( hit->tile() ).region() == static_cast<unsigned int>( region ) ) { - if ( hit->tile().layout() == layoutOne ) { - typeOnes.emplace_back( hit, false ); - } else if ( hit->tile().layout() == layoutTwo ) { - typeTwos.emplace_back( hit, false ); - } else { - Warning( "MuonDigits in list are not compatible with expected shapes" ).ignore(); - } - } - } - // now cross the two sets of channels - // sorry about this std::pair stuff but it is the easiest way of matching - // a bool to each digit - - for ( auto& iOne : typeOnes ) { - for ( auto& iTwo : typeTwos ) { - // who said C++ did not make lovely transparent code? - auto pad = iOne.first->tile().intercept( iTwo.first->tile() ); - if ( pad.isValid() ) { - if ( m_TileVetoed.find( (long int)pad ) == m_TileVetoed.end() ) { - pads.emplace_back( iOne.first, iTwo.first ); - pads.back().settruepad(); - if ( msgLevel( MSG::DEBUG ) ) - debug() << " LOGPAD OK crossed ODE " << iOne.first->odeName() << " ch " << iOne.first->odeChannel() - << " and " << iTwo.first->odeChannel() << " tiles " << iOne.first->tile() << " and " - << iTwo.first->tile() << " times=" << iOne.first->time() << " and " << iTwo.first->time() << endmsg; - - } else { - if ( msgLevel( MSG::DEBUG ) ) debug() << "applied veto on pad " << ( (long int)pad ) << endmsg; - } - // set flags to used on iOne and iTwo - iOne.second = true; - iTwo.second = true; - } - } - } - - // now copy across directly all strips that have not yet been used - for ( const auto& iOne : typeOnes ) { - if ( !( iOne.second ) ) pads.emplace_back( iOne.first ); - } - for ( const auto& iTwo : typeTwos ) { - if ( !( iTwo.second ) ) pads.emplace_back( iTwo.first ); - } - return StatusCode::SUCCESS; -} - -StatusCode LHCb::MuonPadRec::makeStripLayouts( int station, int region, MuonLayout& layout1, MuonLayout& layout2, - DeMuonDetector const& muonDetector ) const { - unsigned int x1 = muonDetector.getLayoutX( 0, station, region ); - unsigned int y1 = muonDetector.getLayoutY( 0, station, region ); - unsigned int x2 = muonDetector.getLayoutX( 1, station, region ); - unsigned int y2 = muonDetector.getLayoutY( 1, station, region ); - layout1 = MuonLayout{x1, y1}; - layout2 = MuonLayout{x2, y2}; - return StatusCode::SUCCESS; -} - -void LHCb::MuonPadRec::removeDoubleHits( std::vector<MuonLogHit*>& hits ) const { - auto ih1 = hits.begin(); - while ( ih1 != hits.end() ) { - auto ih2 = std::find_if( hits.begin(), ih1, [&]( MuonLogHit const* i ) { return i->tile() == ( *ih1 )->tile(); } ); - if ( ih2 != ih1 ) { - if ( msgLevel( MSG::VERBOSE ) ) verbose() << "Found double hit in Tile " << ( *ih1 )->tile() << endmsg; - bool chooseone = m_getfirsthit - ? ( ( *ih1 )->time() < ( *ih2 )->time() ) // take the first one - : ( std::abs( ( *ih1 )->time() - 7.5 ) < - std::abs( ( *ih2 )->time() - 7.5 ) ); // or take time closer to 0 , i.e. 7.5 bits - if ( chooseone ) { - if ( msgLevel( MSG::VERBOSE ) ) - verbose() << " choose time " << ( *ih1 )->time() << " rather than " << ( *ih2 )->time() << endmsg; - ( *ih2 )->setTime( ( *ih1 )->rawtime() ); - } else { - if ( msgLevel( MSG::VERBOSE ) ) - verbose() << " choose time " << ( *ih2 )->time() << " rather than " << ( *ih1 )->time() << endmsg; - } - ih1 = hits.erase( ih1 ); - } else { - ++ih1; - } - } -} diff --git a/Muon/MuonTrackRec/src/component/MuonPadsToMuonClusters.cpp b/Muon/MuonTrackRec/src/component/MuonPadsToMuonClusters.cpp new file mode 100644 index 0000000000000000000000000000000000000000..7bfdac8f9998f6e0d6bf103203628448eab5f4e8 --- /dev/null +++ b/Muon/MuonTrackRec/src/component/MuonPadsToMuonClusters.cpp @@ -0,0 +1,184 @@ +/*****************************************************************************\ + * (c) Copyright 2000-2021 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. * +\*****************************************************************************/ + +#include "DetDesc/Condition.h" +#include "Event/RawBank.h" +#include "MuonDAQ/MuonDAQDefinitions.h" +#include "MuonDAQ/MuonHitContainer.h" +#include "MuonDet/DeMuonDetector.h" +#include "MuonDet/MuonNamespace.h" + +#include "LHCbAlgs/Transformer.h" + +#include "GaudiKernel/ToolHandle.h" + +#include "MuonInterfaces/MuonCluster.h" +#include "MuonInterfaces/MuonPad.h" +#include <boost/numeric/conversion/cast.hpp> + +#include <array> +#include <bitset> +#include <functional> +#include <optional> +#include <string> +#include <vector> + +/** + * This is the muon reconstruction algorithm + * This just crosses the logical strips back into pads + */ +using namespace Muon::DAQ; +namespace LHCb::Muon::MuonTrackRec { + + class PadsToClusters final + : public Algorithm::Transformer<MuonClusters( const EventContext&, const MuonPads&, const DeMuonDetector& ), + Algorithm::Traits::usesConditions<DeMuonDetector>> { + public: + PadsToClusters( const std::string& name, ISvcLocator* pSvcLocator ); + + MuonClusters operator()( const EventContext&, const MuonPads&, const DeMuonDetector& ) const override; + + private: + Gaudi::Property<unsigned int> m_maxPadsPerStation{this, "MaxPadsPerStation", 1500}; + int regX( const LHCb::Detector::Muon::TileID tile ) const { + return ( ( tile.quarter() > 1 ? -1 : 1 ) * tile.nX() ); + } + int regY( const LHCb::Detector::Muon::TileID tile ) const { + return ( ( ( tile.quarter() > 0 && tile.quarter() < 3 ) ? -1 : 1 ) * tile.nY() ); + } + }; + + DECLARE_COMPONENT_WITH_ID( PadsToClusters, "MuonPadsToMuonClusters" ) + //============================================================================= + // Standard constructor + //============================================================================= + PadsToClusters::PadsToClusters( const std::string& name, ISvcLocator* pSvcLocator ) + : Transformer( name, pSvcLocator, + {KeyValue{"PadContainerLocation", MuonPadContainerLocation::Default}, + KeyValue{"MuonDetectorLocation", DeMuonLocation::Default}}, + KeyValue{"ClusterContainer", MuonClusterContainerLocation::Default} ) {} + + MuonClusters PadsToClusters::operator()( const EventContext&, const MuonPads& muonPads, + const DeMuonDetector& det ) const { + + int nhits = 0; + std::map<const MuonPad*, bool> usedPad; + bool searchNeighbours = true; + + std::vector<std::vector<const MuonPad*>> stationPads{static_cast<size_t>( det.stations() )}; + for ( auto& isP : stationPads ) isP.reserve( muonPads.size() ); + + if ( msgLevel( MSG::DEBUG ) ) { + for ( const auto& pad : muonPads ) { + if ( !pad.truepad() ) continue; + debug() << "LOGPAD Q" << ( pad.tile().quarter() + 1 ) << "M" << ( pad.tile().station() + 1 ) << "R" + << ( pad.tile().region() + 1 ) << " nX=" << pad.tile().nX() << " nY=" << pad.tile().nY() + << " time=" << pad.time() << " +/-" << pad.dtime() << endmsg; + } + } + for ( const auto& pad : muonPads ) { + if ( pad.truepad() ) stationPads[pad.tile().station()].push_back( &pad ); + } + + MuonClusters clusters{}; + + for ( int station = 0; station < det.stations(); station++ ) { + if ( stationPads[station].size() > m_maxPadsPerStation ) { + if ( msgLevel( MSG::DEBUG ) ) + debug() << "skipping station M" << station + 1 << " with too many pads:" << stationPads[station].size() + << endmsg; + continue; + } + for ( auto ipad = stationPads[station].begin(); ipad != stationPads[station].end(); ipad++ ) { + if ( !usedPad.count( *ipad ) ) { + // cluster seed + usedPad[*ipad] = true; + auto i_pos = det.position( ( *ipad )->tile() ); + if ( !i_pos.has_value() ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << "position not found" << endmsg; + continue; + } + if ( i_pos ) clusters.emplace_back( MuonCluster( *ipad, i_pos.value() ) ); + MuonCluster& muon_cluster = clusters.back(); + // store a progressive hit number for debugging purposes + muon_cluster.setHitID( ++nhits ); + // now search for adjacent pads + searchNeighbours = true; + while ( searchNeighbours ) { + searchNeighbours = false; + for ( auto jpad = std::next( ipad ); jpad != stationPads[station].end(); ++jpad ) { + if ( usedPad.count( *jpad ) ) continue; + bool takeit = false; + int deltaRegion = abs( (int)( ( *ipad )->tile().region() - ( *jpad )->tile().region() ) ); + if ( deltaRegion > 1 ) continue; + if ( deltaRegion == 0 ) { // same region: use logical position + + takeit = + std::any_of( muon_cluster.pads().begin(), muon_cluster.pads().end(), [&]( const MuonPad* clpad ) { + if ( clpad->tile().region() != ( *jpad )->tile().region() ) return false; + int deltaX = std::abs( regX( clpad->tile() ) - regX( ( *jpad )->tile() ) ); + int deltaY = std::abs( regY( clpad->tile() ) - regY( ( *jpad )->tile() ) ); + return ( ( deltaX == 0 && deltaY == 1 ) || ( deltaX == 1 && deltaY == 0 ) ); + } ); + } else { // adjacent regions: use absolute position + // auto pos = m_posTool->calcTilePos( ( *jpad )->tile() ); + auto j_pos = det.position( ( *jpad )->tile() ); + if ( j_pos.has_value() ) { + bool Xinside = ( j_pos->x() > muon_cluster.minX() && j_pos->x() < muon_cluster.maxX() ); + bool Xadj = ( ( j_pos->x() > muon_cluster.maxX() && + j_pos->x() - j_pos->dX() - muon_cluster.maxX() < j_pos->dX() / 2 ) || + ( j_pos->x() < muon_cluster.minX() && + muon_cluster.minX() - j_pos->x() - j_pos->dX() < j_pos->dX() / 2 ) ); + bool Yinside = ( j_pos->y() > muon_cluster.minY() && j_pos->y() < muon_cluster.maxY() ); + bool Yadj = ( ( j_pos->y() > muon_cluster.maxY() && + j_pos->y() - j_pos->dY() - muon_cluster.maxY() < j_pos->dY() / 2 ) || + ( j_pos->y() < muon_cluster.minY() && + muon_cluster.minY() - j_pos->y() - j_pos->dY() < j_pos->dY() / 2 ) ); + takeit = ( ( Xinside || Xadj ) && ( Yinside || Yadj ) ); + } else { + takeit = false; + } + } + if ( takeit ) { // it's a neighbour, add it to the cluster + usedPad[*jpad] = true; + auto j_pos = det.position( ( *jpad )->tile() ); + if ( j_pos ) { + muon_cluster.addPad( *jpad, j_pos.value() ); + searchNeighbours = true; // we exit the loop and restart from ipad+1 ith the larger cluster + break; + } + } + } + } // end of neighbour search + + } // end of unused pad request + } // end of loop on log. pads of a given station + } // end of loop on stations + if ( msgLevel( MSG::DEBUG ) ) { + debug() << "\n OBTAINED CLUSTERS:" << endmsg; + if ( det.stations() == 5 ) { + for ( const auto& c : clusters ) { + debug() << "Cluster #" << c.hitID() << " in M" << ( c.station() + 1 ) << " with " << c.npads() + << " pads X=" << c.minX() << " - " << c.maxX() << " Y=" << c.minY() << " - " << c.maxY() + << " first tile has Nx/Ny=" << c.tile().nX() << "/" << c.tile().nY() << endmsg; + } + } else { + for ( const auto& c : clusters ) { + debug() << "Cluster #" << c.hitID() << " in M" << ( c.station() + 2 ) << " with " << c.npads() + << " pads X=" << c.minX() << " - " << c.maxX() << " Y=" << c.minY() << " - " << c.maxY() + << " first tile has Nx/Ny=" << c.tile().nX() << "/" << c.tile().nY() << endmsg; + } + } + } + // end of clustering algorithm + return clusters; + } +} // namespace LHCb::Muon::MuonTrackRec diff --git a/Muon/MuonTrackRec/src/component/MuonRawBuffer.cpp b/Muon/MuonTrackRec/src/component/MuonRawBuffer.cpp deleted file mode 100644 index 5a6fda1289ade28610056fa8d5d4b7f2db95311b..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/src/component/MuonRawBuffer.cpp +++ /dev/null @@ -1,247 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -#include "Event/MuonBankVersion.h" -#include "Event/MuonODEData.h" -#include "Event/MuonPPEventInfo.h" -#include "Event/MuonTell1Header.h" -#include "Event/RawBank.h" -#include "Gaudi/Accumulators.h" -#include "GaudiKernel/AlgTool.h" -#include "IMuonRawBuffer.h" -#include "MuonDet/DeMuonDetector.h" -#include "MuonDet/MuonDAQHelper.h" -#include "MuonDet/MuonL1Board.h" -#include "MuonDet/MuonNamespace.h" -#include "MuonDet/MuonODEBoard.h" -#include "MuonDet/MuonStationCabling.h" -#include "MuonDet/MuonTSMap.h" -#include "fmt/format.h" -#include <array> -#include <bitset> -#include <string> - -namespace { - // some template metaprogramming to allow easy usage of arrays of Gaudi counters - template <std::size_t N> - struct CounterArray : std::array<Gaudi::Accumulators::Counter<>, N> { - template <typename OWNER, int... I> - CounterArray( OWNER* owner, std::string_view name, std::integer_sequence<int, I...> ) - : std::array<Gaudi::Accumulators::Counter<>, N>{ - {{owner, fmt::format( "{}{}", name, std::to_string( I ) )}...}} {} - template <typename OWNER, typename Indices = std::make_integer_sequence<int, N>> - CounterArray( OWNER* owner, std::string_view name ) : CounterArray( owner, name, Indices{} ) {} - }; -} // namespace - -namespace LHCb { - /** - * @author Alessia Satta - * @date 2005-10-18 - */ - class MuonRawBuffer : public extends<AlgTool, IMuonRawBuffer> { - public: - using extends::extends; - - IMuonRawBuffer::TileAndADCVector getTileAndTDC( RawBank::View const&, MuonDAQHelper const& ) const override; - - private: - IMuonRawBuffer::TileAndADCVector decodeTileAndTDCV1( RawBank const&, MuonDAQHelper const& ) const; - IMuonRawBuffer::TileAndADCVector DecodeData( RawBank const&, MuonDAQHelper const& ) const; - StatusCode checkBankSize( RawBank const& ) const; - StatusCode checkAllHeaders( RawBank::View const& ) const; - void checkTell1Header( unsigned int tell1, unsigned int data ) const; - - mutable CounterArray<MuonDAQHelper::maxTell1Number> m_counter_invalid_hit{this, "CounterInvalidHit_Tell"}; - mutable CounterArray<MuonDAQHelper::maxTell1Number> m_processed_bank{this, "ProcessedBank_Tell"}; - mutable CounterArray<MuonDAQHelper::maxTell1Number> m_hit_checkSize{this, "HitCheckSize_Tell"}; - mutable CounterArray<MuonDAQHelper::maxTell1Number> m_tell1_header_error{this, "HeaderErrors_Tell"}; - mutable CounterArray<MuonDAQHelper::maxTell1Number> m_tell1_header_ORODE_error{this, "ORODEError_Tell"}; - mutable CounterArray<MuonDAQHelper::maxTell1Number> m_tell1_header_SYNCH_data_error{this, "SYNCHdataError_Tell"}; - mutable CounterArray<MuonDAQHelper::maxTell1Number> m_tell1_header_SYNCH_BC_error{this, "SYNCHBCError_Tell"}; - mutable CounterArray<MuonDAQHelper::maxTell1Number> m_tell1_header_SYNCH_Evt_error{this, "SYNCHEvtError_Tell"}; - }; - - DECLARE_COMPONENT_WITH_ID( MuonRawBuffer, "MuonRawBuffer" ) -} // namespace LHCb - -LHCb::IMuonRawBuffer::TileAndADCVector LHCb::MuonRawBuffer::decodeTileAndTDCV1( RawBank const& rawdata, - MuonDAQHelper const& daqInfo ) const { - IMuonRawBuffer::TileAndADCVector storage; - - unsigned int tell1Number = rawdata.sourceID(); - if ( checkBankSize( rawdata ).isFailure() ) { - ++m_hit_checkSize[tell1Number]; - return storage; - } - - bool print_bank = false; - bool muon_spec_header = true; - - // printout - if ( print_bank ) { - info() << "Tell1 " << tell1Number << " " - << "bank length " << rawdata.size() << endmsg; - std::for_each( rawdata.begin<unsigned short>(), rawdata.end<unsigned short>(), - [&, count_word = 0]( unsigned short i ) mutable { - info() << count_word++ << ' ' << ( i & ( 0xFFF ) ) << ' ' << ( ( i >> 12 ) & ( 0xF ) ) << endmsg; - } ); - } - const unsigned short* it = rawdata.begin<unsigned short>(); - short skip = 0; - - ++m_processed_bank[tell1Number]; - - if ( muon_spec_header ) { - // how many pads ? - unsigned short nPads = *it; - skip = ( nPads + 3 ) / 2; - for ( int k = 0; k < 2 * skip; k++ ) { - if ( k == 1 ) checkTell1Header( tell1Number, *it ); - it++; - } - } - - std::array<unsigned int, 24> hit_link_cnt = {{0}}; - - for ( int i = 0; i < 4; i++ ) { - // now go to the single pp counter - unsigned int pp_cnt = *it++; - for ( unsigned int loop = 0; loop < pp_cnt; ++loop ) { - unsigned int add = ( *it ) & ( 0x0FFF ); - unsigned int tdc_value = ( ( ( *it ) & ( 0xF000 ) ) >> 12 ); - ++it; - Detector::Muon::TileID tile = daqInfo.getADDInTell1( tell1Number, add ); - if ( msgLevel( MSG::VERBOSE ) ) verbose() << " add " << add << ' ' << tile << endmsg; - if ( tile.isValid() ) { - if ( msgLevel( MSG::DEBUG ) ) debug() << " valid add " << add << ' ' << tile << endmsg; - storage.emplace_back( tile, tdc_value ); - } else { - ++m_counter_invalid_hit[tell1Number]; - } - // update the hitillink counter - unsigned int link = add / 192; - hit_link_cnt[link]++; - } - } - return storage; -} - -LHCb::IMuonRawBuffer::TileAndADCVector LHCb::MuonRawBuffer::getTileAndTDC( LHCb::RawBank::View const& raw, - MuonDAQHelper const& daqInfo ) const { - TileAndADCVector storage; - StatusCode sc = checkAllHeaders( raw ); - if ( !sc.isFailure() ) { - // first decode data and insert in buffer - for ( const auto& r : raw ) { - auto st = DecodeData( *r, daqInfo ); - std::copy( st.begin(), st.end(), std::back_inserter( storage ) ); - } - } - return storage; -} - -LHCb::IMuonRawBuffer::TileAndADCVector LHCb::MuonRawBuffer::DecodeData( LHCb::RawBank const& rawdata, - MuonDAQHelper const& daqInfo ) const { - unsigned int tell1Number = rawdata.sourceID(); - if ( tell1Number >= MuonDAQHelper::maxTell1Number ) { - throw GaudiException( fmt::format( "In muon data a Tell1 Source ID is greater than maximum : {} > {}", tell1Number, - MuonDAQHelper::maxTell1Number ), - "MuonRawBuffer::DecodeData", StatusCode::FAILURE ); - } - switch ( rawdata.version() ) { - case MuonBankVersion::v1: - return decodeTileAndTDCV1( rawdata, daqInfo ); - default: - throw GaudiException( fmt::format( "Unsupported RawBank version {}", rawdata.version() ), - "MuonRawBuffer::DecodeData", StatusCode::FAILURE ); - } -} - -StatusCode LHCb::MuonRawBuffer::checkBankSize( LHCb::RawBank const& rawdata ) const { - if ( RawBank::MagicPattern != rawdata.magic() ) { - error() << "magic pattern not correct in muon bank " << endmsg; - return StatusCode::FAILURE; - } - - const unsigned short* it = rawdata.begin<unsigned short>(); - unsigned int tell1Number = rawdata.sourceID(); - int bank_size = rawdata.size(); - int read_data = 0; - // minimum length is 3 words --> 12 bytes - if ( bank_size < 12 ) { - err() << " muon bank " << tell1Number << " is too short " << bank_size << endmsg; - return StatusCode::FAILURE; - } - // how many pads ? - unsigned short nPads = *it; - int skip = ( nPads + 3 ) / 2; - - if ( ( bank_size - skip * 4 ) < 0 ) { - err() << "bank_size " << bank_size << " pad size to read " << nPads * 4 << endmsg; - err() << "so muon bank " << tell1Number << " is too short in pad part " << endmsg; - return StatusCode::FAILURE; - } - - it += 2 * skip; - read_data = read_data + skip * 2; - if ( read_data < 0 ) info() << nPads << " " << skip << " " << bank_size << " " << read_data << endmsg; - - for ( int i = 0; i < 4; i++ ) { - // now go to the single pp counter - int pp_cnt = *it++; - read_data++; - - // check size before start looping - if ( bank_size - read_data * 2 < pp_cnt * 2 ) { - err() << "bank_size " << bank_size << "read data " << read_data << " hit size to read " << pp_cnt * 2 << endmsg; - err() << "so muon bank " << tell1Number << " is too short in hit part " << endmsg; - return StatusCode::FAILURE; - } - it += pp_cnt; - } - - return StatusCode::SUCCESS; -} - -StatusCode LHCb::MuonRawBuffer::checkAllHeaders( LHCb::RawBank::View const& b ) const { - if ( b.empty() ) return StatusCode::SUCCESS; - - std::vector<unsigned int> tell1InEvent; - tell1InEvent.reserve( b.size() ); - for ( const auto& mb : b ) { - if ( mb->type() != RawBank::Muon ) - throw GaudiException( "Wrong RawBank::Type", __PRETTY_FUNCTION__, StatusCode::FAILURE ); - tell1InEvent.push_back( mb->sourceID() ); - } - std::sort( tell1InEvent.begin(), tell1InEvent.end() ); - if ( std::adjacent_find( tell1InEvent.begin(), tell1InEvent.end() ) != tell1InEvent.end() ) { - return StatusCode::FAILURE; - } - - // there is no repeated Tell1 - // now check the fw version - if ( std::any_of( b.begin(), b.end(), [ReferenceVersion = b[0]->version()]( const RawBank* rb ) { - return rb->version() != ReferenceVersion; - } ) ) { - error() << " The muon Tell1 boards: not all the same version so skip the event" << endmsg; - return StatusCode::FAILURE; - } - return StatusCode::SUCCESS; -} - -void LHCb::MuonRawBuffer::checkTell1Header( unsigned int tell1Number, unsigned int data ) const { - MuonTell1Header dataWord( data ); - if ( dataWord.getError() ) ++m_tell1_header_error[tell1Number]; - if ( dataWord.getOROfODEErrors() ) ++m_tell1_header_ORODE_error[tell1Number]; - if ( dataWord.getSYNCHDataErrorInODE() ) ++m_tell1_header_SYNCH_data_error[tell1Number]; - if ( dataWord.getSYNCHBCNCntErrorInODE() ) ++m_tell1_header_SYNCH_BC_error[tell1Number]; - if ( dataWord.getSYNCHEventCntErrorInODE() ) ++m_tell1_header_SYNCH_Evt_error[tell1Number]; -} diff --git a/Muon/MuonTrackRec/src/component/MuonTrackMomRec.cpp b/Muon/MuonTrackRec/src/component/MuonTrackMomRec.cpp deleted file mode 100644 index 1eeed3a06706679be1a945f40f98c296939b87b0..0000000000000000000000000000000000000000 --- a/Muon/MuonTrackRec/src/component/MuonTrackMomRec.cpp +++ /dev/null @@ -1,185 +0,0 @@ -/*****************************************************************************\ -* (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. * -\*****************************************************************************/ -//----------------------------------------------------------------------------- -// Implementation file for class : MuonTrackMomRec -// -// 2010-02-10 : Giacomo Graziani -//----------------------------------------------------------------------------- -#include <DetDesc/GenericConditionAccessorHolder.h> -#include <Event/State.h> -#include <Event/StateParameters.h> -#include <Event/StateVector.h> -#include <Event/Track.h> -#include <Event/TrackParameters.h> -#include <Event/TrackTypes.h> -#include <GaudiAlg/GaudiTool.h> -#include <GaudiKernel/EventContext.h> -#include <GaudiKernel/PhysicalConstants.h> -#include <GaudiKernel/ThreadLocalContext.h> -#include <Kernel/IBIntegrator.h> -#include <Magnet/DeMagnet.h> -#include <MuonInterfaces/IMuonTrackMomRec.h> -#include <MuonInterfaces/MuonHit.h> -#include <MuonInterfaces/MuonLogPad.h> -#include <MuonInterfaces/MuonTrack.h> -#include <cmath> -#include <memory> -#include <vector> - -/** - * @author Giacomo Graziani - * @date 2010-02-10 - * - * tool to compute momentum for standalone muon track - * adapted from the TrackPtKick tool by M. Needham - */ -class MuonTrackMomRec final : public LHCb::DetDesc::ConditionAccessorHolder<extends<GaudiTool, IMuonTrackMomRec>> { -public: - using ConditionAccessorHolder::ConditionAccessorHolder; - - // from IMuonTrackMomRec - std::unique_ptr<LHCb::Track> recMomentum( MuonTrack& track ) const override; - double getBdl() const override; - -private: - Gaudi::Property<std::vector<float>> m_ParabolicCorrection{this, "ParabolicCorrection", {1.04, 0.14}}; - - Gaudi::Property<std::vector<float>> m_resParams{this, "m_resParams", {0.015, 0.29}}; - - Gaudi::Property<float> m_Constant{this, "ConstantCorrection", 0., "In MeV"}; - - ToolHandle<IBIntegrator> m_bIntegrator{this, "BIntegrator", "BIntegrator"}; - ConditionAccessor<DeMagnet> m_magnet{this, "Magnet", LHCb::Det::Magnet::det_path}; - - auto fieldGrid() const { return m_magnet.get( getConditionContext( Gaudi::Hive::currentContext() ) ).fieldGrid(); } -}; - -DECLARE_COMPONENT( MuonTrackMomRec ) - -std::unique_ptr<LHCb::Track> MuonTrackMomRec::recMomentum( MuonTrack& track ) const { - const auto Zfirst = StateParameters::ZEndRich2; - // create a state at the Z of M1 - Gaudi::XYZPoint trackPos( track.bx() + track.sx() * Zfirst, track.by() + track.sy() * Zfirst, Zfirst ); - LHCb::State state( LHCb::StateVector( trackPos, Gaudi::XYZVector( track.sx(), track.sy(), 1.0 ), 1. / 10000. ) ); - - // helpers to preserve the original TrackPtKick code as much as possible - auto tState = &state; - double tx_vtx = 0.; - - // copied from the TrackPtKick tool by M. Needham (comments starting with "// ==X== " are to highlight differences) - - // scan in cm steps - // ==X== const Gaudi::XYZPoint begin{0., 0., 0.}; - Gaudi::XYZVector bdl; - double zCenter; - - // ==X== m_bIntegrator->calculateBdlAndCenter( magnet.fieldGrid(), {}, tState->position(), tState->tx(), tState->ty(), - // ==X== zCenter, bdl ); - m_bIntegrator->calculateBdlAndCenter( fieldGrid(), {}, {0., 0., StateParameters::ZEndRich2}, 0.0001, 0., zCenter, - bdl ); - - double q = 0.; - double p = 1e6 * Gaudi::Units::MeV; - - if ( fabs( bdl.x() ) > TrackParameters::hiTolerance ) { - // can estimate momentum and charge - - // Rotate to the 0-0-z axis and do the ptkick - const double tX = tState->tx(); - const double xCenter = tState->x() + tX * ( zCenter - tState->z() ); - - const double zeta_trk = -tX / sqrt( 1.0 + tX * tX ); - // ==X== const double tx_vtx = xCenter / zCenter; - tx_vtx = xCenter / zCenter; - const double zeta_vtx = -tx_vtx / sqrt( 1.0 + tx_vtx * tx_vtx ); - - // curvature - const double curv = ( zeta_trk - zeta_vtx ); - - // charge - int sign = 1; - if ( curv < TrackParameters::hiTolerance ) { sign *= -1; } - if ( bdl.x() < TrackParameters::hiTolerance ) { sign *= -1; } - q = -1. * ( bdl.x() > 0.0 ? 1 : -1 ) * sign; - - // momentum - p = Gaudi::Units::eplus * Gaudi::Units::c_light * fabs( bdl.x() ) * - sqrt( ( 1.0 + tX * tX + std::pow( tState->ty(), 2 ) ) / ( 1.0 + std::pow( tX, 2 ) ) ) / fabs( curv ); - - // Addition Correction factor for the angle of the track! - if ( m_ParabolicCorrection.size() == 2u ) { - // p*= (a + b*tx*tx ) - p += m_Constant; - p *= ( m_ParabolicCorrection[0] + ( m_ParabolicCorrection[1] * tX * tX ) ); - } - - } else { - // can't estimate momentum or charge - error() << "B integral is 0!" << endmsg; - return {}; - } - - double qOverP = q / p; - const double err2 = std::pow( m_resParams[0], 2 ) + std::pow( m_resParams[1] / p, 2 ); - double sigmaQOverP2 = err2 / std::pow( p, 2 ); - - // fill momentum variables for state - state.setQOverP( qOverP ); - - Gaudi::TrackSymMatrix seedCov; - seedCov( 0, 0 ) = track.errbx() * track.errbx(); - seedCov( 2, 2 ) = track.errsx() * track.errsx(); - seedCov( 1, 1 ) = track.errby() * track.errby(); - seedCov( 3, 3 ) = track.errsy() * track.errsy(); - seedCov( 4, 4 ) = sigmaQOverP2; - state.setCovariance( seedCov ); - - state.setLocation( LHCb::State::Location::Muon ); - - debug() << "Muon state = " << state << endmsg; - - // set MuonTrack momentum variables (momentum at primary vertex) - double pz_vtx = state.p() * sqrt( 1 - tx_vtx * tx_vtx - state.ty() * state.ty() ); - Gaudi::XYZVector momentum_vtx( tx_vtx * pz_vtx, state.ty() * pz_vtx, pz_vtx ); - track.setP( state.p() ); - track.setPt( sqrt( std::pow( momentum_vtx.X(), 2 ) + std::pow( momentum_vtx.Y(), 2 ) ) ); - track.setqOverP( state.qOverP() ); - track.setMomentum( momentum_vtx ); - - auto lbtrack = std::make_unique<LHCb::Track>(); - lbtrack->addToStates( state ); - - int ntile = 0; - for ( const auto& hit : track.getHits() ) { - const auto Tiles = hit->getLogPadTiles(); - debug() << " Muon Hits has " << hit->getLogPadTiles().size() << " tiles in station " << hit->station() << endmsg; - for ( const auto& t : Tiles ) { - debug() << " Tile info ====== " << ( LHCb::LHCbID )( t ) << endmsg; - lbtrack->addToLhcbIDs( ( LHCb::LHCbID )( t ) ); - ++ntile; - } - } - debug() << " in total " << ntile << " tiles" << endmsg; - - lbtrack->setPatRecStatus( LHCb::Track::PatRecStatus::PatRecIDs ); - lbtrack->setType( LHCb::Track::Types::Muon ); - - return lbtrack; -} - -double MuonTrackMomRec::getBdl() const { - Gaudi::XYZVector bdl; - double zCenter; - - m_bIntegrator->calculateBdlAndCenter( fieldGrid(), {}, {0., 0., StateParameters::ZEndRich2}, 0.0001, 0., zCenter, - bdl ); - return bdl.x(); -} diff --git a/Phys/FunctorCore/include/Functors/TrackLike.h b/Phys/FunctorCore/include/Functors/TrackLike.h index d392452e99d856951e1a9af5627be03d71c93e1c..bb4d03f01d5b470d1462c0a2debf81d4b003684c 100644 --- a/Phys/FunctorCore/include/Functors/TrackLike.h +++ b/Phys/FunctorCore/include/Functors/TrackLike.h @@ -334,6 +334,16 @@ namespace Functors::Track { } }; + /** @brief HasBremAdded, as defined by the HasBremAdded accessor. + */ + struct HasBremAdded : public Predicate { + auto operator()( LHCb::Particle const& p ) const { + return !LHCb::essentiallyZero( p.info( LHCb::Particle::additionalInfo::HasBremAdded, 0 ) ); + } + + auto operator()( LHCb::Particle const* p ) const { return ( *this )( *p ); } + }; + /** @brief HcalEoP, as defined by the HcalEoP accessor. */ struct HcalEoP : public Function { @@ -611,31 +621,21 @@ namespace Functors::Track { */ struct HasT : public Predicate { static constexpr auto name() { return "HasT"; } - bool operator()( LHCb::Event::Enum::Track::Type t ) const { - return t == LHCb::Event::Enum::Track::Type::Ttrack || t == LHCb::Event::Enum::Track::Type::Downstream || - t == LHCb::Event::Enum::Track::Type::Long || t == LHCb::Event::Enum::Track::Type::SeedMuon; - } + constexpr auto operator()( LHCb::Event::Enum::Track::Type t ) const { return hasT( t ); } }; /** @brief Track hasUT, the input of this functor must be the track type */ struct HasUT : public Predicate { static constexpr auto name() { return "HasUT"; } - bool operator()( LHCb::Event::Enum::Track::Type t ) const { - return t == LHCb::Event::Enum::Track::Type::Downstream || t == LHCb::Event::Enum::Track::Type::Upstream || - t == LHCb::Event::Enum::Track::Type::Long || t == LHCb::Event::Enum::Track::Type::MuonUT; - } + constexpr auto operator()( LHCb::Event::Enum::Track::Type t ) const { return hasUT( t ); } }; /** @brief Track hasVelo, the input of this functor must be the track type */ struct HasVelo : public Predicate { static constexpr auto name() { return "HasVelo"; } - bool operator()( LHCb::Event::Enum::Track::Type t ) const { - return t == LHCb::Event::Enum::Track::Type::Velo || t == LHCb::Event::Enum::Track::Type::Upstream || - t == LHCb::Event::Enum::Track::Type::Long || t == LHCb::Event::Enum::Track::Type::VeloMuon || - t == LHCb::Event::Enum::Track::Type::SeedMuon || t == LHCb::Event::Enum::Track::Type::MuonUT; - } + constexpr auto operator()( LHCb::Event::Enum::Track::Type t ) const { return hasVelo( t ); } }; /** @brief Number of expected Velo clusters from VELO 3D pattern recognition diff --git a/Phys/FunctorCore/python/Functors/__init__.py b/Phys/FunctorCore/python/Functors/__init__.py index 78fc4dadcacdd164795728a1f13a8c631668605a..ba3646cae8b9f950f663b06d2523e3d009a0a496 100644 --- a/Phys/FunctorCore/python/Functors/__init__.py +++ b/Phys/FunctorCore/python/Functors/__init__.py @@ -756,6 +756,12 @@ HASBREM = Functor( 'HASBREM', "Track::HasBrem", """Has non-zero brem momentum-recovery energy. Functor's call operator expects a track like object.""") +HASBREMADDED = Functor( + 'HASBREMADDED', "Track::HasBremAdded", + """Has non-zero brem momentum-recovery energy added (using Particle class flag). + + Functor's call operator expects a track like object in v1 event model.""" +) INECAL = Functor( 'INECAL', "Track::InEcal", """In Ecal acceptance. @@ -890,7 +896,7 @@ ELECTRONMATCH_CHI2 = Functor( Functor's call operator expects a track like object.""") BREMHYPOID = Functor( 'BREMHYPOID', "Track::BremHypoID", - """CellID.all() of CaloHypo (photon) associated to track for brem recovery + """All significant bits representation of CellID (32bits), i.e. CellID.all(), for CaloHypo (photon) associated to track for brem recovery Functor's call operator expects a track like object.""") BREMHYPOMATCH_CHI2 = Functor( @@ -913,14 +919,14 @@ BREMHYPODELTAX = Functor( """Test statistic of being first-state like of CaloHypo (photon) for brem recovery Functor's call operator expects a track like object.""") -BREMTRACKBREMENERGY = Functor( - 'BREMTRACKBREMENERGY', "Track::BremTrackBasedEnergy", +BREMTRACKBASEDENERGY = Functor( + 'BREMTRACKBASEDENERGY', "Track::BremTrackBasedEnergy", """Track-based brem energy determination Functor's call operator expects a track like object.""") ELECTRONID = Functor( 'ELECTRONID', "Track::ElectronID", - """CellID.all() associated to CaloHypo seed (electron hypo) + """All significant bits representation of CellID (32bits), i.e. CellID.all(), associated to CaloHypo seed (electron hypo) Functor's call operator expects a track like object.""") HCALEOP = Functor( @@ -2092,11 +2098,11 @@ _MC_MOTHER = Functor('_MC_MOTHER', "Simulation::MC::Mother", def SMALLEST_DELTACHI2(Relations: DataHandle) -> BoundFunctor: """Evaluates the smallest delta chi2, defined as the absolute difference of the chi2 - of the related particle and the reference particle given a relation table + of the related particle and the reference particle given a relation table Args: - Relations: DataHandle to the relation table that maps a "reference" particle to several "related" particles. - + Relations: DataHandle to the relation table that maps a "reference" particle to several "related" particles. + Returns: The value of the mass of the candidate with the smallest delta chi2 """ @@ -2111,12 +2117,12 @@ def PARTICLE_PROPERTY_WITH_SMALLEST_DELTACHI2( Functor: BoundFunctor, Relations: DataHandle) -> BoundFunctor: """Evaluates the particle property express by the functor of the related particle with the smallest delta chi2, defined as the absolute difference of the chi2 of the related particle and the reference one given a - relation table + relation table Args: - Functor: BoundFunctor to apply to the related particle in the relation table giving the smallest delta chi2 + Functor: BoundFunctor to apply to the related particle in the relation table giving the smallest delta chi2 Relations: DataHandle with the relation table - + Returns: The value of the mass of the "related" particle with the smallest delta chi2 """ @@ -2721,20 +2727,6 @@ def ALLPV_FD(Vertices: DataHandle): return MAP(MAG_DIST).bind(TES(Vertices), FORWARDARGS) -def SSPionBDT_Mistag(FTags: DataHandle): - """Flavour tagging SSPion_BDT mistag - - Functor's call operator expects particle like input. - - Args: - FTags: DataHandle of the flavour tags - """ - _SSPionBDT_Mistag = Functor( - '_SSPIONBDT_MISTAG', "Composite::SSPionBDT_Mistag", - "Flavour tagging SSPion_BDT mistag probability") - return _SSPionBDT_Mistag.bind(TES(FTags), FORWARDARGS) - - def TaggingDecision(FTags: DataHandle, TaggerName: Union[str, int]): """Flavour tagging decision diff --git a/Phys/FunctorCore/tests/options/test_functors_tested.py b/Phys/FunctorCore/tests/options/test_functors_tested.py index 3b15d3783429c9a60cfd3720cb81687b29a5abc3..cb0bfcc28198f2b18324de7121a05e5d10ded8fc 100644 --- a/Phys/FunctorCore/tests/options/test_functors_tested.py +++ b/Phys/FunctorCore/tests/options/test_functors_tested.py @@ -50,8 +50,6 @@ exceptions = [ 'Functors::Composite::MassWithHypotheses', 'Functors::Composite::MotherTrajectoryDistanceOfClosestApproachChi2', 'Functors::Composite::PseudoRapidityFromVertex', - 'Functors::Composite::SSPionBDT_Mistag', - 'Functors::Composite::SSPionBDT_Decision', 'Functors::Examples::GreaterThan', 'Functors::Examples::ThorBeatsLoki', 'Functors::Examples::TimesTwo', 'Functors::MVA', 'Functors::Track::ClosestToBeamState', 'Functors::Track::Covariance', diff --git a/Phys/FunctorCore/tests/src/TestFunctors.cpp b/Phys/FunctorCore/tests/src/TestFunctors.cpp index 078e8426d52e4aed9d33a7d55fdafdd0426b926a..0c4371341425741eeb944681414d0405efac3bf8 100644 --- a/Phys/FunctorCore/tests/src/TestFunctors.cpp +++ b/Phys/FunctorCore/tests/src/TestFunctors.cpp @@ -390,25 +390,25 @@ BOOST_AUTO_TEST_CASE( test_ai_functors ) { ( Functors::Neutral::NeutralE49_t{} > 0.1f ) & ( Functors::Neutral::Saturation_t{} > 0.1f ) ); // test calo and rich track functors - testPointerAndObject( std::vector<int>{11, 22, 211}, - ( Functors::Track::HasBrem{} ) & ( Functors::Track::InEcal{} ) & ( Functors::Track::InHcal{} ) & - ( Functors::Track::InBrem{} ) & ( Functors::Track::BremEnergy{} > 0.f ) & - ( Functors::Track::BremBendCorr{} > 0.f ) & ( Functors::Track::BremPIDe{} > 0.f ) & - ( Functors::Track::EcalPIDe{} > 0.f ) & ( Functors::Track::EcalPIDmu{} > 0.f ) & - ( Functors::Track::HcalPIDe{} > 0.f ) & ( Functors::Track::HcalPIDmu{} > 0.f ) & - ( Functors::Track::ElectronShowerEoP{} > 0.f ) & - ( Functors::Track::ElectronShowerDLL{} > 0.f ) & ( Functors::Track::ClusterMatch{} > 0.f ) & - ( Functors::Track::ElectronMatch{} > 0.f ) & ( Functors::Track::BremHypoMatch{} > 0.f ) & - ( Functors::Track::ElectronEnergy{} > 0.f ) & ( Functors::Track::BremHypoEnergy{} > 0.f ) & - ( Functors::Track::BremHypoDeltaX{} > 0.f ) & ( Functors::Track::BremHypoID{} > 0 ) & - ( Functors::Track::BremTrackBasedEnergy{} > 0.f ) & ( Functors::Track::ElectronID{} > 0 ) & - ( Functors::Track::HcalEoP{} > 0.f ) & ( Functors::PID::RichDLLe{} > 0.f ) & - ( Functors::PID::RichDLLmu{} > 0.f ) & ( Functors::PID::RichDLLp{} > 0.f ) & - ( Functors::PID::RichDLLk{} > 0.f ) & ( Functors::PID::RichDLLpi{} > 0.f ) & - ( Functors::PID::RichDLLd{} > 0.f ) & ( Functors::PID::RichDLLbt{} > 0.f ) & - ( Functors::PID::RichScaledDLLe{} > 0.f ) & ( Functors::PID::RichScaledDLLmu{} > 0.f ) & - ( Functors::PID::RichThresholdEl{} ) & ( Functors::PID::Rich1GasUsed{} ) & - ( Functors::PID::Rich2GasUsed{} ) ); + testPointerAndObject( + std::vector<int>{11, 22, 211}, + ( Functors::Track::HasBrem{} ) & ( Functors::Track::HasBremAdded{} ) & ( Functors::Track::InEcal{} ) & + ( Functors::Track::InHcal{} ) & ( Functors::Track::InBrem{} ) & ( Functors::Track::BremEnergy{} > 0.f ) & + ( Functors::Track::BremBendCorr{} > 0.f ) & ( Functors::Track::BremPIDe{} > 0.f ) & + ( Functors::Track::EcalPIDe{} > 0.f ) & ( Functors::Track::EcalPIDmu{} > 0.f ) & + ( Functors::Track::HcalPIDe{} > 0.f ) & ( Functors::Track::HcalPIDmu{} > 0.f ) & + ( Functors::Track::ElectronShowerEoP{} > 0.f ) & ( Functors::Track::ElectronShowerDLL{} > 0.f ) & + ( Functors::Track::ClusterMatch{} > 0.f ) & ( Functors::Track::ElectronMatch{} > 0.f ) & + ( Functors::Track::BremHypoMatch{} > 0.f ) & ( Functors::Track::ElectronEnergy{} > 0.f ) & + ( Functors::Track::BremHypoEnergy{} > 0.f ) & ( Functors::Track::BremHypoDeltaX{} > 0.f ) & + ( Functors::Track::BremHypoID{} > 0 ) & ( Functors::Track::BremTrackBasedEnergy{} > 0.f ) & + ( Functors::Track::ElectronID{} > 0 ) & ( Functors::Track::HcalEoP{} > 0.f ) & + ( Functors::PID::RichDLLe{} > 0.f ) & ( Functors::PID::RichDLLmu{} > 0.f ) & + ( Functors::PID::RichDLLp{} > 0.f ) & ( Functors::PID::RichDLLk{} > 0.f ) & + ( Functors::PID::RichDLLpi{} > 0.f ) & ( Functors::PID::RichDLLd{} > 0.f ) & + ( Functors::PID::RichDLLbt{} > 0.f ) & ( Functors::PID::RichScaledDLLe{} > 0.f ) & + ( Functors::PID::RichScaledDLLmu{} > 0.f ) & ( Functors::PID::RichThresholdEl{} ) & + ( Functors::PID::Rich1GasUsed{} ) & ( Functors::PID::Rich2GasUsed{} ) ); } BOOST_AUTO_TEST_CASE( test_1trackmva_functor ) { diff --git a/Phys/ParticleMaker/src/ParticleWithHeavyFlavourTrackMaker.cpp b/Phys/ParticleMaker/src/ParticleWithHeavyFlavourTrackMaker.cpp index 3307e55dbc8bb5ee7686be32239f7e32ed182b01..325fa4bdc311a1d9a233ff997a588d51ff839105 100644 --- a/Phys/ParticleMaker/src/ParticleWithHeavyFlavourTrackMaker.cpp +++ b/Phys/ParticleMaker/src/ParticleWithHeavyFlavourTrackMaker.cpp @@ -22,6 +22,7 @@ namespace { using Output = std::tuple<LHCb::Particles, LHCb::ProtoParticles>; } // namespace +// main algorithm class ParticleWithHeavyFlavourTrackMaker : public LHCb::Algorithm::MultiTransformer<Output( LHCb::Particle::Range const&, RelationTable const& )> { public: @@ -44,7 +45,29 @@ private: "LHCb::ParticlePropertySvc"}; }; -DECLARE_COMPONENT( ParticleWithHeavyFlavourTrackMaker ) +// include also algorithm to decode Particle into relation table again (for use in functors etc..) +class HeavyFlavourTrackRelationTableMaker + : public LHCb::Algorithm::Transformer<RelationTable( LHCb::Particle::Range const& )> { +public: + HeavyFlavourTrackRelationTableMaker( const std::string& name, ISvcLocator* pSvcLocator ) + : Transformer( name, pSvcLocator, {KeyValue{"ParticlesWithHeavyFlavourTracks", ""}}, + {KeyValue{"OutputTable", ""}} ){}; + + RelationTable operator()( LHCb::Particle::Range const& particles ) const override { + RelationTable table; + for ( LHCb::Particle const* particle : particles ) { + if ( !particle->proto() ) continue; + auto daughters = particle->daughters(); + if ( !daughters.size() ) continue; + LHCb::Particle const* composite = daughters.front(); + LHCb::Track const* hf_track = particle->proto()->track(); + if ( !hf_track ) continue; + table.i_push( composite, hf_track ); + } + table.i_sort(); + return table; + }; +}; ParticleWithHeavyFlavourTrackMaker::ParticleWithHeavyFlavourTrackMaker( const std::string& name, ISvcLocator* pSvcLocator ) @@ -102,3 +125,6 @@ Output ParticleWithHeavyFlavourTrackMaker::operator()( LHCb::Particle::Range con return result; } + +DECLARE_COMPONENT_WITH_ID( ParticleWithHeavyFlavourTrackMaker, "ParticleWithHeavyFlavourTrackMaker" ) +DECLARE_COMPONENT_WITH_ID( HeavyFlavourTrackRelationTableMaker, "HeavyFlavourTrackRelationTableMaker" ) diff --git a/Plume/PlumeReco/options/examples/plume.py b/Plume/PlumeReco/options/examples/plume.py index a1189e87d56b0a5c53f13a1f56709feb93944b0d..cedb1b8c84da15c79b1206e4287b8aee388ca864 100755 --- a/Plume/PlumeReco/options/examples/plume.py +++ b/Plume/PlumeReco/options/examples/plume.py @@ -13,7 +13,7 @@ from Gaudi.Configuration import VERBOSE from GaudiConf.LbExec import Options from PyConf.application import ( - default_raw_event, + default_raw_banks, configure_input, configure, make_odin, @@ -25,45 +25,32 @@ from PyConf.Algorithms import ( PlumeTuple, ) -run_number = 232523 -run_number = 232607 -run_number = 234521 -run_number = 234664 -run_number = 231977 -run_number = 227542 -run_number = 237205 options = Options( input_type="RAW", - simulation=True, - data_type="Upgrade", - input_files=sorted(glob.glob(f'/hlt2*/objects/*/0000{run_number}/*.mdf')), + simulation=False, + data_type="2023", + input_files= + '/eos/lhcb/wg/rta/samples/data/2024-PLUME-RAW/plume_v4.mdf', #v4, little endian dddb_tag='dddb-20210617', conddb_tag='sim-20210617-vc-md100', - evt_max=100000, - histo_file=f'./plume_histos_{run_number}.root', - ntuple_file=f'./plume_ntuple_{run_number}.root', - monitoring_file=f"plume_output_{run_number}.json", + evt_max=500, + histo_file=f'./plume_histos.root', + ntuple_file=f'./plume_ntuple.root', + monitoring_file=f"plume_output.json", ) configure_input(options) # must call this before calling default_raw_event odin = make_odin() -read_all_channels = False +read_all_channels = True digits = PlumeRawToDigits( ReadAllChannels=read_all_channels, - # OutputLevel=VERBOSE, - RawEventLocation=default_raw_event(["Plume"])).Output + RawBankLocation=default_raw_banks("Plume")).Output -monitor = PlumeDigitMonitor( - Input=digits, - # OutputLevel=VERBOSE, - ODIN=odin) +monitor = PlumeDigitMonitor(Input=digits, ODIN=odin) plume_tuple = PlumeTuple( - Input=digits, - ODIN=odin, - # OutputLevel=VERBOSE, - ReadAllChannels=read_all_channels) + Input=digits, ODIN=odin, ReadAllChannels=read_all_channels) top_node = CompositeNode("Top", [plume_tuple, monitor]) configure(options, top_node) diff --git a/Plume/PlumeReco/src/PlumeDigitMonitor.cpp b/Plume/PlumeReco/src/PlumeDigitMonitor.cpp index 52453d578ce3415da3406799299ddeceb1c37923..f965abfc4ff54cbab011932c09bae7134a88f8ab 100644 --- a/Plume/PlumeReco/src/PlumeDigitMonitor.cpp +++ b/Plume/PlumeReco/src/PlumeDigitMonitor.cpp @@ -110,14 +110,8 @@ private: mutable std::mutex m_lazy_lock; - mutable Gaudi::Accumulators::Histogram<1> m_over_thld_lumi{ - this, "over_threshold_lumi", "#events OT per channel: LUMI", axis1D<double>{48, -0.5, 47.5}}; mutable Gaudi::Accumulators::Histogram<1> m_over_thld_time{ this, "over_threshold_time", "#events OT per channel: TIME", axis1D<double>{64, -0.5, 63.5}}; - mutable Gaudi::Accumulators::Histogram<1> m_over_thld_pin{this, "over_threshold_pin", "#events OT per channel: PIN", - axis1D<double>{11, -0.5, 10.5}}; - mutable Gaudi::Accumulators::Histogram<1> m_over_thld_mon{this, "over_threshold_mon", "#events OT per channel: MON", - axis1D<double>{6, -0.5, 5.5}}; mutable Gaudi::Accumulators::Histogram<2> m_bcid_adc_lumi{this, "bcid_adc", "BCID vs ADC (LUMI)", AxisBCID, AxisADC}; mutable Gaudi::Accumulators::Histogram<2> m_bcid_adc_time{this, "bcid_adc_time", "BCID vs ADC time", AxisBCID, @@ -192,7 +186,6 @@ private: mutable std::map<unsigned int, Gaudi::Accumulators::Histogram<2>> m_sshape_amp_err; mutable Gaudi::Accumulators::StatCounter<> m_numAdcOTLumi = {this, "Number of ADC over threshold for LUMI"}; - mutable Gaudi::Accumulators::StatCounter<> m_numCoinc = {this, "Number of coincidences"}; // Calibration // ADC histogram for every channel (LUMI/PIN/...) only for calibration trigger (light) @@ -210,14 +203,14 @@ private: // ADC histogram for every channel per BB/EB/BE/EE (excluding calib triggers) mutable std::map<std::pair<ChannelID, BXTypes>, Gaudi::Accumulators::Histogram<1>> m_channel_bx_adc; + // ADC histogram for every channel per BB/EB/BE/EE (only calib triggers) + mutable std::map<std::pair<ChannelID, BXTypes>, Gaudi::Accumulators::Histogram<1>> m_channel_bx_adc_calib; // ADC vs BCID (TProfile1) for every channel mutable std::map<ChannelID, Gaudi::Accumulators::ProfileHistogram<1>> m_channel_bcid_adc; - mutable Gaudi::Accumulators::ProfileHistogram<1> m_bcid_ncoinc_lumi{ - this, "bcid_ncoinc_LUMI", "Mean number of coincidences per event", AxisBCID}; - mutable Gaudi::Accumulators::ProfileHistogram<1> m_bcid_anycoinc_lumi{ - this, "bcid_anycoinc_LUMI", "Fraction of events with at least one coincidence", AxisBCID}; + // Pedestals + mutable std::map<ChannelID, Gaudi::Accumulators::Histogram<1>> m_channel_pedestals; mutable Gaudi::Accumulators::Histogram<2> m_bcid_lumi_tae{this, "bcid_lumi_tae", "ADC counts in lumi channels in TAE", AxisINDEXTAE, AxisADC}; @@ -241,10 +234,18 @@ StatusCode PlumeDigitMonitor::initialize() { return Consumer::initialize().andThen( [&] { // FIXME we should loop over the fiber-channel maps (once they're in the DB) in order to // generate the full list of possible ChannelIDs. This would avoid hardcoding ranges here. + std::vector<ChannelID> channels; - for ( int i = 0; i < 48; ++i ) { channels.emplace_back( ChannelID::ChannelType::LUMI, i ); } - for ( int i = 1; i <= 9; ++i ) { channels.emplace_back( ChannelID::ChannelType::PIN, i ); } - for ( int i = 1; i <= 4; ++i ) { channels.emplace_back( ChannelID::ChannelType::MON, i ); } + for ( int i = 0; i < LHCb::Plume::nLumiPMTsPerBank * 2 + LHCb::Plume::nTimingPMTs; ++i ) { + channels.emplace_back( ChannelID::ChannelType::LUMI, i ); + } // this needs to be up to 48, because the indexing afterwards is done with the PMT index, that gets up to 47 + // (because the timing PMTs have a numbering mixed with the lumi PMTs and there are four of them) + for ( int i = 1; i <= LHCb::Plume::nPINChannels + 1; ++i ) { + channels.emplace_back( ChannelID::ChannelType::PIN, i ); + } // loops over PIN numbers, that are defined between 1 and 9 + for ( int i = 1; i <= LHCb::Plume::nMonitoringPMTs; ++i ) { + channels.emplace_back( ChannelID::ChannelType::MON, i ); + } // loops over Monitoring PMT numbers, that are defined between 1 and 4 for ( int i : {5, 29, 11, 35} ) { for ( int j = 0; j <= 15; ++j ) channels.emplace_back( ChannelID::ChannelType::TIME, i, j ); channels.emplace_back( ChannelID::ChannelType::TIME_T, i ); @@ -254,10 +255,18 @@ StatusCode PlumeDigitMonitor::initialize() { if ( ch.channelType() != ChannelID::ChannelType::TIME_T ) { map_emplace( m_channel_bcid_adc, ch, this, "bcid_adc_" + ch.toString(), "ADC vs BCID for " + ch.toString(), AxisBCID ); + map_emplace( m_channel_pedestals, ch, this, "pedestal_" + ch.toString(), "Pedestal for " + ch.toString(), + AxisADC ); } + for ( auto bx : {BXTypes::NoBeam, BXTypes::Beam1, BXTypes::Beam2, BXTypes::BeamCrossing} ) { map_emplace( m_channel_bx_adc, std::make_pair( ch, bx ), this, "adc_" + ch.toString() + "_" + to_string( bx ), "ADC for " + ch.toString() + "/" + to_string( bx ), AxisADC ); + if ( ch.channelType() == ChannelID::ChannelType::LUMI ) { + map_emplace( m_channel_bx_adc_calib, std::make_pair( ch, bx ), this, + "adc_" + ch.toString() + "_" + to_string( bx ) + "_calib_signals", + "ADC for " + ch.toString() + "/" + to_string( bx ) + "/calib signals", AxisADC ); + } } if ( ch.channelType() == ChannelID::ChannelType::TIME_T ) { map_emplace( m_channel_time, ch, this, "time_" + ch.toString(), "Time for " + ch.toString(), {4096, 0, 4096} ); @@ -315,8 +324,7 @@ void PlumeDigitMonitor::operator()( const Input& adcs, const LHCb::ODIN& odin ) // Fill histograms // ============================================================================ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) const { - unsigned int nOTLumi = 0; - unsigned int nCoincLumi = 0; + unsigned int nOTLumi = 0; auto calibType = odin.calibrationType(); auto bx = odin.bunchCrossingType(); @@ -326,32 +334,40 @@ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) con using ChannelType = ChannelID::ChannelType; ++m_calibType[calibType]; - std::map<unsigned int, std::vector<std::pair<float, float>>> sshape_result{}; std::map<unsigned int, int> sshape_status{}; fit_sshapes( adcs, sshape_result, sshape_status ); - for ( const auto& digit : adcs ) { const auto adc = digit->adc(); const auto type = digit->channelID().channelType(); const auto channel_id = digit->channelID().channelID(); const auto channel_sub_id = digit->channelID().channelSubID(); const auto over_thld = overThreshold( *digit ); - bool complementOT = false; + const auto pedestal = digit->pedestal(); + + ++m_channel_pedestals.at( digit->channelID() )[pedestal]; + m_channel_bcid_adc.at( digit->channelID() )[bcid] += adc; // Profile ADC vs BXID for each channel + + bool complementOT = false; if ( type == ChannelType::LUMI || type == ChannelType::TIME ) { const auto* complement = adcs.object( ChannelID( type, channel_id < 24 ? ( channel_id + 24 ) : ( channel_id - 24 ), digit->channelID().channelSubID() ) ); complementOT = ( complement != nullptr ) && overThreshold( *complement ); } - if ( over_thld ) { m_channel_bcid_adc.at( digit->channelID() )[bcid] += adc; } - - if ( calibType == 0 && complementOT ) { + if ( calibType == 0 && type == ChannelType::LUMI ) { // lumi PMT, without requiring coincidence + auto key = std::make_pair( digit->channelID(), odin.bunchCrossingType() ); + ++m_channel_bx_adc.at( key )[adc]; + } else if ( calibType != 0 && type == ChannelType::LUMI ) { // lumi PMT, without requiring coincidence, but with + // the LED signals + auto key = std::make_pair( digit->channelID(), odin.bunchCrossingType() ); + ++m_channel_bx_adc_calib.at( key )[adc]; + } else if ( calibType == 0 && complementOT && type == ChannelType::TIME ) { // timing PMT requires coincidence auto key = std::make_pair( digit->channelID(), odin.bunchCrossingType() ); ++m_channel_bx_adc.at( key )[adc]; } - if ( type == ChannelType::TIME && channel_sub_id == 0 ) { + else if ( type == ChannelType::TIME && channel_sub_id == 0 ) { if ( sshape_status.at( channel_id ) == true ) { ++m_time_channel.at( channel_id )[{bcid, sshape_result.at( channel_id )[3].first}]; ++m_time_err_channel.at( channel_id )[{bcid, sshape_result.at( channel_id )[3].second}]; @@ -367,8 +383,7 @@ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) con switch ( type ) { case ChannelType::LUMI: - nCoincLumi += over_thld && complementOT; - if ( calibType == 0 && complementOT ) ++m_lumi_bx_adc.at( bx )[adc]; + if ( calibType == 0 ) ++m_lumi_bx_adc.at( bx )[adc]; // do not require coincidence break; case ChannelType::TIME: if ( calibType == 0 && complementOT ) ++m_time_bx_adc.at( bx )[adc]; @@ -385,7 +400,6 @@ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) con switch ( type ) { case ChannelID::ChannelType::LUMI: { - if ( over_thld ) ++m_over_thld_lumi[channel_id]; ++m_bcid_adc_lumi[{bcid, adc}]; ++m_bcid_adc_lumi_coarse[{bcid, adc}]; @@ -393,79 +407,75 @@ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) con // fill histograms for front layer int x = channel_id % 6 + 1; int y = channel_id % 6 + 1; + ++nOTLumi; - if ( over_thld ) { - ++nOTLumi; - - if ( channel_id > 11 && channel_id < 24 ) { - x *= -1; - y *= -1; + if ( channel_id > 11 && channel_id < 24 ) { + x *= -1; + y *= -1; + } + if ( channel_id > 35 && channel_id < 48 ) { + x *= -1; + y *= -1; + } + ( channel_id % 12 ) < 5 ? y = 0 : x = 0; + + // fill outliers first + if ( channel_id == 17 ) { ++m_xy_hits_front[{-2, -2}]; } + if ( channel_id == 23 ) { ++m_xy_hits_front[{2, -2}]; } + if ( channel_id == 41 ) { ++m_xy_hits_back[{-2, -2}]; } + if ( channel_id == 47 ) { ++m_xy_hits_back[{2, -2}]; } + + if ( channel_id < 24 ) { + ++m_xy_hits_front[{x, y}]; + if ( x > 0 && y == 0 ) { + ++m_occup_front_right[channel_id % 6]; + ++m_assym_front_horiz[x - 0.5]; + } + if ( x == 0 && y > 0 ) { + ++m_occup_front_up[channel_id % 6]; + ++m_assym_front_vert[y - 0.5]; } - if ( channel_id > 35 && channel_id < 48 ) { - x *= -1; - y *= -1; + if ( x < 0 && y == 0 ) { + ++m_occup_front_left[channel_id % 6]; + ++m_assym_front_horiz[x + 0.5]; } - ( channel_id % 12 ) < 5 ? y = 0 : x = 0; - - // fill outliers first - if ( channel_id == 17 ) { ++m_xy_hits_front[{-2, -2}]; } - if ( channel_id == 23 ) { ++m_xy_hits_front[{2, -2}]; } - if ( channel_id == 41 ) { ++m_xy_hits_back[{-2, -2}]; } - if ( channel_id == 47 ) { ++m_xy_hits_back[{2, -2}]; } - - if ( channel_id < 24 ) { - ++m_xy_hits_front[{x, y}]; - if ( x > 0 && y == 0 ) { - ++m_occup_front_right[channel_id % 6]; - ++m_assym_front_horiz[x - 0.5]; - } - if ( x == 0 && y > 0 ) { - ++m_occup_front_up[channel_id % 6]; - ++m_assym_front_vert[y - 0.5]; - } - if ( x < 0 && y == 0 ) { - ++m_occup_front_left[channel_id % 6]; - ++m_assym_front_horiz[x + 0.5]; - } - if ( x == 0 && y < 0 ) { - ++m_occup_front_down[channel_id % 6]; - ++m_assym_front_vert[y + 0.5]; - } + if ( x == 0 && y < 0 ) { + ++m_occup_front_down[channel_id % 6]; + ++m_assym_front_vert[y + 0.5]; } + } - if ( channel_id >= 24 ) { - ++m_xy_hits_back[{x, y}]; - if ( x > 0 && y == 0 ) { - ++m_occup_back_right[channel_id % 6]; - ++m_assym_back_horiz[x - 0.5]; - } - if ( x == 0 && y > 0 ) { - ++m_occup_back_up[channel_id % 6]; - ++m_assym_back_vert[y - 0.5]; - } - if ( x < 0 && y == 0 ) { - ++m_occup_back_left[channel_id % 6]; - ++m_assym_back_horiz[x + 0.5]; - } - if ( x == 0 && y < 0 ) { - ++m_occup_back_down[channel_id % 6]; - ++m_assym_back_vert[y + 0.5]; - } + if ( channel_id >= 24 ) { + ++m_xy_hits_back[{x, y}]; + if ( x > 0 && y == 0 ) { + ++m_occup_back_right[channel_id % 6]; + ++m_assym_back_horiz[x - 0.5]; + } + if ( x == 0 && y > 0 ) { + ++m_occup_back_up[channel_id % 6]; + ++m_assym_back_vert[y - 0.5]; + } + if ( x < 0 && y == 0 ) { + ++m_occup_back_left[channel_id % 6]; + ++m_assym_back_horiz[x + 0.5]; + } + if ( x == 0 && y < 0 ) { + ++m_occup_back_down[channel_id % 6]; + ++m_assym_back_vert[y + 0.5]; } } break; } + case ChannelID::ChannelType::TIME: ++m_time_adc[adc]; if ( over_thld ) ++m_over_thld_time[channel_id]; ++m_bcid_adc_time[{bcid, adc}]; break; case ChannelID::ChannelType::PIN: - if ( over_thld ) ++m_over_thld_pin[channel_id]; ++m_bcid_adc_pin[{bcid, adc}]; break; case ChannelID::ChannelType::MON: - if ( over_thld ) ++m_over_thld_mon[channel_id]; ++m_bcid_adc_mon[{bcid, adc}]; break; case ChannelID::ChannelType::TIME_T: @@ -474,10 +484,6 @@ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) con break; } } - - nCoincLumi = nCoincLumi / 2; // we double count because of how we loop over ADCs - m_bcid_ncoinc_lumi[bcid] += nCoincLumi; - m_bcid_anycoinc_lumi[bcid] += nCoincLumi > 0; m_numAdcOTLumi += nOTLumi; } @@ -517,7 +523,6 @@ void PlumeDigitMonitor::fit_sshapes( const Input& // map<<channelID, vector<ADC>> // where vector is ordered by s-shape order auto sshapes = std::map<unsigned int, std::vector<int>>{}; - // fill the timing_map with the ADCs for ( const auto& digit : adcs ) { if ( digit->channelID().channelType() != ChannelID::ChannelType::TIME ) continue; @@ -527,7 +532,6 @@ void PlumeDigitMonitor::fit_sshapes( const Input& if ( timing_map.find( channelID ) == timing_map.end() ) timing_map[channelID] = std::map<unsigned int, int>{}; timing_map[channelID][channelSubID] = digit->adc(); } - std::map<unsigned int, bool> coincidence{}; // use the last s-shape point for checking for coincidence @@ -537,7 +541,6 @@ void PlumeDigitMonitor::fit_sshapes( const Input& coincidence[11] = coincidence[35] = ( timing_map.at( 11 ).at( 15 ) - timing_map.at( 11 ).at( 7 ) ) > m_threshold_sshape && ( timing_map.at( 35 ).at( 15 ) - timing_map.at( 35 ).at( 7 ) ) > m_threshold_sshape; - // fill the s-shape map with differences for ( const auto& tchannel : timing_map ) { sshapes[tchannel.first] = std::vector<int>{}; @@ -546,7 +549,6 @@ void PlumeDigitMonitor::fit_sshapes( const Input& .push_back( tchannel.second.at( tsubchannel + 8 ) - tchannel.second.at( tsubchannel ) ); } } - // fit the s-shapes for ( const auto& sshape : sshapes ) { const auto channelID = sshape.first; diff --git a/Plume/PlumeReco/src/PlumeRawToDigits.cpp b/Plume/PlumeReco/src/PlumeRawToDigits.cpp index 17a9c6dab091923eb2f56d5502fc80f76b306eb8..1d946ec7f9b302bf40a6d3807463c4af2aa849ee 100755 --- a/Plume/PlumeReco/src/PlumeRawToDigits.cpp +++ b/Plume/PlumeReco/src/PlumeRawToDigits.cpp @@ -32,30 +32,25 @@ using LHCb::Detector::Plume::ChannelID; * @author Rosen Matev * */ -class PlumeRawToDigits : public LHCb::Algorithm::MultiTransformer<std::tuple<LHCb::PlumeAdcs, LHCb::PlumeCoincidences>( - const LHCb::RawEvent& )> { +class PlumeRawToDigits : public LHCb::Algorithm::Transformer<LHCb::PlumeAdcs( const LHCb::RawBank::View& )> { public: /// Standard constructor PlumeRawToDigits( const std::string&, ISvcLocator* ); - std::tuple<LHCb::PlumeAdcs, LHCb::PlumeCoincidences> operator()( const LHCb::RawEvent& ) const override; + LHCb::PlumeAdcs operator()( const LHCb::RawBank::View& ) const override; private: Gaudi::Property<bool> m_read_all_channels{this, "ReadAllChannels", false, "Read all channels, including those that are nominally not used"}; Gaudi::Property<int> m_pedestalOffset{this, "PedestalOffset", 256, "Offset to subtract from raw ADC counts."}; - mutable Gaudi::Accumulators::StatCounter<> m_numFiredChannels = {this, "Number of PMTs that got hit in event"}; - mutable Gaudi::Accumulators::MsgCounter<MSG::WARNING> m_noLumiBank{this, "No lumi bank found for Plume"}; - mutable Gaudi::Accumulators::MsgCounter<MSG::WARNING> m_noMonitoringBank{this, "No monitoring bank found for Plume"}; + mutable Gaudi::Accumulators::MsgCounter<MSG::WARNING> m_noLumiAndMonitoringBank{ + this, "No lumi and monitoring bank found for Plume"}; mutable Gaudi::Accumulators::MsgCounter<MSG::WARNING> m_noTimingBank{this, "No timing bank found for Plume"}; mutable Gaudi::Accumulators::MsgCounter<MSG::WARNING> m_tooManyBanks{this, "Too many banks for Plume"}; - mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_unknown_version{ - this, "Plume raw bank version not known. Assuming version = 1"}; - mutable Gaudi::Accumulators::WeightedHistogram<1> m_sumADCPerChannel{ + mutable Gaudi::Accumulators::MsgCounter<MSG::WARNING> m_noFoundBanks{this, "Banks not found"}; + mutable Gaudi::Accumulators::WeightedHistogram<1> m_sumADCPerChannel{ this, "SumADCPerChannel", "Sum of ADCs per channel", {4 * 32, 0, 4 * 32}}; - mutable Gaudi::Accumulators::Histogram<1, Gaudi::Accumulators::atomicity::full, uint64_t> m_nOverThresholdPerChannel{ - this, "NOverThresholdPerChannel", "Number of set over-threshold bits per channel", {4 * 32, 0, 4 * 32}}; }; DECLARE_COMPONENT( PlumeRawToDigits ) @@ -64,217 +59,148 @@ DECLARE_COMPONENT( PlumeRawToDigits ) // Standard creator, initializes variables //============================================================================= PlumeRawToDigits::PlumeRawToDigits( const std::string& name, ISvcLocator* pSvcLocator ) - : MultiTransformer( name, pSvcLocator, KeyValue{"RawEventLocation", ""}, - {KeyValue{"Output", ""}, KeyValue{"Coincidences", ""}} ) {} + : Transformer( name, pSvcLocator, KeyValue{"RawBankLocation", ""}, {KeyValue{"Output", ""}} ) {} //========================================================================= // Main execution //========================================================================= -std::tuple<LHCb::PlumeAdcs, LHCb::PlumeCoincidences> PlumeRawToDigits:: - operator()( const LHCb::RawEvent& rawEvt ) const { - LHCb::PlumeAdcs adcs; - LHCb::PlumeCoincidences coincidences; +LHCb::PlumeAdcs PlumeRawToDigits::operator()( const LHCb::RawBank::View& banks ) const { + LHCb::PlumeAdcs adcs; - auto banks = rawEvt.banks( LHCb::RawBank::Plume ); + if ( banks.size() > 4 ) { ++m_tooManyBanks; } // two banks for lumi + monitoring, two banks for timing - if ( banks.size() > 3 ) { ++m_tooManyBanks; } - - bool foundLumiBank = false; - bool foundMonitoringBank = false; - bool foundTimingBank = false; + bool foundLumiAndMonitoringBank = false; + bool foundTimingBank = false; + bool foundBanks = false; for ( const auto& bank : banks ) { - if ( bank->version() > 1 ) { ++m_unknown_version; } - const int sourceID = bank->sourceID(); - - std::bitset<64> bits_ovt{__builtin_bswap32( bank->range<uint32_t>()[0] ) + - ( uint64_t( __builtin_bswap32( bank->range<uint32_t>()[1] ) ) << 32 )}; - - std::bitset<32> bits_ovt_0{__builtin_bswap32( bank->range<uint32_t>()[0] )}; - std::bitset<32> bits_ovt_1{__builtin_bswap32( bank->range<uint32_t>()[1] )}; - - // std::bitset<32> bits_coinc_11{__builtin_bswap32( bank->range<uint32_t>()[26] )}; - // std::bitset<32> bits_coinc_00{__builtin_bswap32( bank->range<uint32_t>()[27] )}; - // std::bitset<32> bits_coinc_01{__builtin_bswap32( bank->range<uint32_t>()[28] )}; - // The above does not work because we have 4 control bits first. Below we shift them away and fill the missing - // bits from the following word. This will change in the future. - const auto w26 = __builtin_bswap32( bank->range<uint32_t>()[26] ); - const auto w27 = __builtin_bswap32( bank->range<uint32_t>()[27] ); - const auto w28 = __builtin_bswap32( bank->range<uint32_t>()[28] ); - const auto w29 = __builtin_bswap32( bank->range<uint32_t>()[29] ); - std::bitset<32> bits_coinc_11{( w26 << 4 ) | ( w27 >> 28 )}; - std::bitset<32> bits_coinc_00{( w27 << 4 ) | ( w28 >> 28 )}; - std::bitset<32> bits_coinc_01{( w28 << 4 ) | ( w29 >> 28 )}; - - if ( msgLevel( MSG::VERBOSE ) ) { - verbose() << bits_ovt << endmsg; - verbose() << bits_ovt_0 << endmsg; - verbose() << bits_ovt_1 << endmsg; - verbose() << bits_coinc_11 << endmsg; - verbose() << bits_coinc_00 << endmsg; - verbose() << bits_coinc_01 << endmsg; + if ( bank->type() != LHCb::RawBank::BankType::Plume ) { + foundBanks = false; + continue; } - - using bitset = std::bitset<2 * 32 * 12>; // 2 FEBs x 32 channels x 12 bits - bitset bits; - for ( const auto& [i, data] : LHCb::range::enumerate( bank->range<std::byte>().subspan( 8, 96 ) ) ) { - // usual bit order, seems to not correspond to what the firmware does - // bits |= bitset{std::to_integer<unsigned int>( num )} << ( i * 8 ); - // instead swap nibbles, i.e. for 0b11110101 we first "push" 0b1111 and then 0b0101 - auto num = static_cast<uint8_t>( data ); - uint8_t swapped = ( num >> 4 ) | ( ( num & 0x0F ) << 4 ); - bits |= bitset{swapped} << ( i * 8 ); - - if ( msgLevel( MSG::VERBOSE ) ) { - // verbose() << fmt::format( "i={:02} num={:02x} swapped={:02x}", i, num, swapped ) << endmsg; - } + if ( bank->version() != 4 ) { + throw GaudiException( "Plume raw bank version not supported, decoding is assuming version 4", + "LHCb::PlumeAdcs PlumeRawToDigits", StatusCode::FAILURE ); } - constexpr int shift_feb_0 = 0; - constexpr int shift_feb_1 = 32 * 12; - - if ( sourceID == LHCb::Plume::lumiSourceID ) { - foundLumiBank = true; - if ( msgLevel( MSG::VERBOSE ) ) verbose() << "Reading PLUME bank from TELL40 0 stream_0" << endmsg; - if ( msgLevel( MSG::VERBOSE ) ) verbose() << bits_ovt << endmsg; - for ( int i = 0; i < 32; i++ ) { - // if ( msgLevel( MSG::VERBOSE ) ) verbose() << fmt::format( "bit number={:02} bit value={:01}", i, - // bits_ovt[31 - i]) << endmsg; - } - - for ( int feb = 0; feb < 2; feb++ ) { - int n_lumi_channels = ( ( !m_read_all_channels ) ? 22 : 32 ); - // FIXME also loop over the spares, so 22+2=24 - for ( int i = 0; i < n_lumi_channels; ++i ) { - int shift = ( feb == 0 ? shift_feb_0 : shift_feb_1 ); - auto rawAdc = (unsigned int)( bitset{0xFFF} & ( bits >> ( shift + 12 * i ) ) ).to_ulong(); - // reverse the three nibbles in the ADC value - rawAdc = ( ( rawAdc & 0x00F ) << 8 ) | ( rawAdc & 0x0F0 ) | ( rawAdc >> 8 ); - auto overThreshold = feb == 0 ? bits_ovt_0[i] : bits_ovt_1[i]; - - auto pmt_id = - ( !m_read_all_channels ) ? LHCb::Plume::lumiFebToLogicalChannel.at( 32 * feb + i ) : ( 32 * feb + i ); - auto adc = new LHCb::PlumeAdc( ChannelID( ChannelID::ChannelType::LUMI, pmt_id ), rawAdc - m_pedestalOffset, - overThreshold ); - - if ( msgLevel( MSG::VERBOSE ) ) - verbose() << "Fiber: " << sourceID << "/" << feb << "/" << i << " ADC: " << *adc << endmsg; - - adcs.insert( adc ); - ++m_numFiredChannels; - m_sumADCPerChannel[feb * 32 + i] += rawAdc; - if ( overThreshold ) { ++m_nOverThresholdPerChannel[feb * 32 + i]; } - } - } + foundBanks = true; + const int sourceID = bank->sourceID(); - // The matrix for coincidences is effectively hardcoded below. - // Bit `i` denotes the coincidence between FEB channels i and i+1 - for ( int i = 0; i < 22; i += 2 ) { - bool coincidence_11 = bits_coinc_11[i]; - bool coincidence_00 = bits_coinc_00[i]; - bool coincidence_01 = bits_coinc_01[i]; - if ( msgLevel( MSG::VERBOSE ) ) - verbose() << fmt::format( "i={:02} coinc_11={:02} coinc_00={:02} coinc_01={:02} ", i, coincidence_11, - coincidence_00, coincidence_01 ) - << endmsg; - - if ( coincidence_00 ) { - auto adc_1 = - adcs.object( ChannelID( ChannelID::ChannelType::LUMI, LHCb::Plume::lumiFebToLogicalChannel.at( i ) ) ); - auto adc_2 = adcs.object( - ChannelID( ChannelID::ChannelType::LUMI, LHCb::Plume::lumiFebToLogicalChannel.at( i + 1 ) ) ); - coincidences.emplace_back( *adc_1, *adc_2 ); - } + using bitset = std::bitset<32 * 32>; // 32 channels x 32 bits + bitset bits; + for ( const auto& [i, data] : LHCb::range::enumerate( bank->range<std::byte>().subspan( 0, 128 ) ) ) { + auto num = static_cast<uint8_t>( data ); + bits |= bitset{num} << ( i * 8 ); - if ( coincidence_11 ) { - auto adc_1 = adcs.object( - ChannelID( ChannelID::ChannelType::LUMI, LHCb::Plume::lumiFebToLogicalChannel.at( i + 32 ) ) ); - auto adc_2 = adcs.object( - ChannelID( ChannelID::ChannelType::LUMI, LHCb::Plume::lumiFebToLogicalChannel.at( i + 32 + 1 ) ) ); - coincidences.emplace_back( *adc_1, *adc_2 ); + if ( msgLevel( MSG::VERBOSE ) ) { verbose() << fmt::format( "i={:02} num={:02x}", i, num ) << endmsg; } + } + if ( msgLevel( MSG::VERBOSE ) ) verbose() << "Reading PLUME bank ID " << sourceID << endmsg; + + const int n_channels = 32; + if ( sourceID == LHCb::Plume::lumiAndMonitoringSourceID_1 || + sourceID == LHCb::Plume::lumiAndMonitoringSourceID_2 ) { + foundLumiAndMonitoringBank = true; + + unsigned int shift = ( sourceID == LHCb::Plume::lumiAndMonitoringSourceID_1 ) ? 0 : 32; + for ( int i = 0; i < n_channels; ++i ) { + auto channel = (unsigned int)( bitset{0xFFFFFFFF} & ( bits >> ( 32 * i ) ) ).to_ulong(); + auto overThreshold = (unsigned int)( ( 0x80000000 & channel ) >> 31 ); // first bit is ovt bit + auto pedsubAdc = (unsigned int)( ( 0x7ffff000 & channel ) >> 12 ); // then 19 bits ped sub adc + auto rawAdc = (unsigned int)( 0xFFF & channel ); // then 12 bits not ped sub from FEB + if ( msgLevel( MSG::VERBOSE ) ) { + verbose() << i << " , CHANNEL: " << channel << " , OVT: " << overThreshold + << " , PED SUB ADC: " << pedsubAdc / 128. << " , RAW ADC: " << rawAdc << endmsg; } - } - } else if ( sourceID == LHCb::Plume::monitoringSourceID ) { - foundMonitoringBank = true; - if ( msgLevel( MSG::VERBOSE ) ) verbose() << "Reading PLUME bank from TELL40 0 stream_1" << endmsg; - for ( int feb = 0; feb < 1; feb++ ) { - int n_channels = 16; // 8 PIN + 4 MON + 4 spares - for ( int i = 0; i < n_channels; ++i ) { - int shift = ( feb == 0 ? shift_feb_0 : shift_feb_1 ); - auto rawAdc = (unsigned int)( bitset{0xFFF} & ( bits >> ( shift + 12 * i ) ) ).to_ulong(); - // reverse the three nibbles in the ADC value - rawAdc = ( ( rawAdc & 0x00F ) << 8 ) | ( rawAdc & 0x0F0 ) | ( rawAdc >> 8 ); - auto overThreshold = feb == 0 ? bits_ovt_0[i] : bits_ovt_1[i]; - - const auto it = LHCb::Plume::monitoringFebToLogicalChannel.find( i ); + if ( i < LHCb::Plume::nLumiPMTsPerBank ) { + auto pmt_id = LHCb::Plume::lumiFebToLogicalChannel.at( shift + i ); + auto adc = std::make_unique<LHCb::PlumeAdc>( ChannelID( ChannelID::ChannelType::LUMI, pmt_id ), + std::round( pedsubAdc / 128. ) - m_pedestalOffset, + std::round( rawAdc - pedsubAdc / 128. ), overThreshold ); + if ( msgLevel( MSG::VERBOSE ) ) { + verbose() << "Lumi channel, Bank: " << sourceID << " / " << shift << " / " << i << " ADC: " << *adc + << endmsg; + } + + adcs.insert( adc.release() ); + m_sumADCPerChannel[shift + i] += std::round( pedsubAdc / 128. ); + } else if ( i >= LHCb::Plume::nLumiPMTsPerBank && + i < LHCb::Plume::nLumiPMTsPerBank + LHCb::Plume::nEmptyPMTsPerBank ) { // skip two empty channels at + // the end of 3rd line of raw + // bank + if ( msgLevel( MSG::VERBOSE ) ) { + verbose() << "Empty channel, Bank: " << sourceID << " / " << shift << " / " << i + << " , ADC: " << pedsubAdc / 128. << endmsg; + } + + m_sumADCPerChannel[shift + i] += std::round( pedsubAdc / 128. ); + } else { + unsigned int j = i - LHCb::Plume::nLumiPMTsPerBank - + LHCb::Plume::nEmptyPMTsPerBank; // index needed for PIN and MON channels. Starts from 0, 0-7 + // PIN diodes, j = 0...7 + if ( sourceID == LHCb::Plume::lumiAndMonitoringSourceID_2 ) { + j += LHCb::Plume::nPINChannels; // Starts from 8, 8-11 Monitoring PMTs, j = 8...11 + if ( j >= LHCb::Plume::nPINChannels + LHCb::Plume::nMonitoringPMTs ) + continue; // j = 12...15 are not mapped, skip them + } + + const auto it = LHCb::Plume::monitoringFebToLogicalChannel.find( j ); if ( it == LHCb::Plume::monitoringFebToLogicalChannel.end() ) continue; - auto adc = new LHCb::PlumeAdc( ChannelID( it->second.first, it->second.second ), rawAdc - m_pedestalOffset, - overThreshold ); + auto adc = std::make_unique<LHCb::PlumeAdc>( + ChannelID( it->second.first, it->second.second ), std::round( pedsubAdc / 128. ) - m_pedestalOffset, + std::round( rawAdc - pedsubAdc / 128. ), + false ); // ovt bit not meaningful for PIN and Monitoring PMTs, so set to false if ( msgLevel( MSG::VERBOSE ) ) - verbose() << "Fiber: " << sourceID << "/" << feb << "/" << i - << " raw ADC: " << fmt::format( "{:04} {:03X}", rawAdc, rawAdc ) << " ADC: " << *adc << endmsg; - adcs.insert( adc ); - ++m_numFiredChannels; - m_sumADCPerChannel[( feb + 2 ) * 32 + i] += rawAdc; - if ( overThreshold ) { ++m_nOverThresholdPerChannel[( feb + 2 ) * 32 + i]; } + verbose() << "Monitoring channel, Bank: " << sourceID << " / " << shift << " / " << i << " ADC: " << *adc + << endmsg; + adcs.insert( adc.release() ); + m_sumADCPerChannel[shift + i] += std::round( pedsubAdc / 128. ); } } - } else if ( sourceID == LHCb::Plume::timingSourceID ) { + } else if ( sourceID == LHCb::Plume::timingSourceID_1 || sourceID == LHCb::Plume::timingSourceID_2 ) { foundTimingBank = true; - // Timing channels - if ( msgLevel( MSG::VERBOSE ) ) verbose() << "Reading PLUME bank from TELL40 1 stream_2" << endmsg; - for ( int feb = 0; feb < 2; feb++ ) { - int n_channels = 32; - for ( int i = 0; i < n_channels; ++i ) { - int shift = ( feb == 0 ? shift_feb_0 : shift_feb_1 ); - auto rawAdc = (unsigned int)( bitset{0xFFF} & ( bits >> ( shift + 12 * i ) ) ).to_ulong(); - // reverse the three nibbles in the ADC - rawAdc = ( ( rawAdc & 0x00F ) << 8 ) | ( rawAdc & 0x0F0 ) | ( rawAdc >> 8 ); - - const auto it = LHCb::Plume::timingFebToLogicalChannel[feb].find( i ); - if ( it == LHCb::Plume::timingFebToLogicalChannel[feb].end() ) continue; - auto const& [channelID, channelSubID] = it->second; - - auto adc = new LHCb::PlumeAdc( ChannelID( ChannelID::ChannelType::TIME, channelID, channelSubID ), - rawAdc - m_pedestalOffset, false ); - if ( msgLevel( MSG::VERBOSE ) ) - verbose() << "Fiber: " << sourceID << "/" << feb << "/" << i - << " raw ADC: " << fmt::format( "{:04} {:03X}", rawAdc, rawAdc ) << " ADC: " << *adc << endmsg; - adcs.insert( adc ); - ++m_numFiredChannels; - m_sumADCPerChannel[( feb + 3 ) * 32 + i] += rawAdc; - } + unsigned int shift = ( sourceID == LHCb::Plume::timingSourceID_1 ) ? 0 : 32; + for ( int i = 0; i < n_channels; ++i ) { + auto channel = (unsigned int)( bitset{0xFFFFFFFF} & ( bits >> ( 32 * i ) ) ).to_ulong(); + auto pedsubAdc = (unsigned int)( ( 0x7ffff000 & channel ) >> 12 ); // no ovt bit, so 19 bits ped sub adc + auto rawAdc = (unsigned int)( 0xFFF & channel ); // then 12 bits not ped sub from FEB - auto const& bits_time = feb == 0 ? bits_ovt_0 : bits_ovt_1; - for ( int i = 0; i < 2; ++i ) { - unsigned int time = ( bits_time >> ( 16 * i ) ).to_ulong() & ( ( 1 << 12 ) - 1 ); - auto const channelID = LHCb::Plume::timingValueLogicalChannel[feb][i]; - auto adc = new LHCb::PlumeAdc( ChannelID( ChannelID::ChannelType::TIME_T, channelID ), time, false ); - adcs.insert( adc ); + const auto it = + LHCb::Plume::timingFebToLogicalChannel[( sourceID == LHCb::Plume::timingSourceID_1 ? 0 : 1 )].find( i ); + if ( it == LHCb::Plume::timingFebToLogicalChannel[( sourceID == LHCb::Plume::timingSourceID_1 ? 0 : 1 )].end() ) + continue; + + auto const& [channelID, channelSubID] = it->second; + + auto adc = std::make_unique<LHCb::PlumeAdc>( ChannelID( ChannelID::ChannelType::TIME, channelID, channelSubID ), + std::round( pedsubAdc / 128. ) - m_pedestalOffset, + std::round( rawAdc - pedsubAdc / 128. ), + false ); // ovt bit not meaningful for Timing PMTs, so set to false + + if ( msgLevel( MSG::VERBOSE ) ) { + verbose() << "Timing channel, Bank: " << sourceID << " / " << i << " ADC: " << *adc << endmsg; } + + adcs.insert( adc.release() ); + m_sumADCPerChannel[n_channels * 2 + shift + i] += std::round( pedsubAdc / 128. ); } } else { warning() << fmt::format( "Unknown source ID {}", sourceID ) << endmsg; } } - if ( !foundLumiBank ) ++m_noLumiBank; - if ( !foundMonitoringBank ) ++m_noMonitoringBank; + if ( !foundLumiAndMonitoringBank ) ++m_noLumiAndMonitoringBank; if ( !foundTimingBank ) ++m_noTimingBank; + if ( !foundBanks ) ++m_noFoundBanks; if ( msgLevel( MSG::DEBUG ) ) { debug() << "Found ADCs:\n"; for ( const auto& adc : adcs ) { debug() << *adc << '\n'; } debug() << endmsg; - - debug() << "Found coincidences:\n"; - for ( const auto& coinc : coincidences ) { debug() << coinc.first << " " << coinc.second << '\n'; } - debug() << endmsg; } - return {std::move( adcs ), std::move( coincidences )}; + return adcs; } diff --git a/Plume/PlumeReco/tests/options/plume_decoding.py b/Plume/PlumeReco/tests/options/plume_decoding.py index 0a3fbdfe07bff372cb06f48545c4d410914bc31d..0336fb8ae8a7c20f443410c16bfd2f27e6bf8495 100644 --- a/Plume/PlumeReco/tests/options/plume_decoding.py +++ b/Plume/PlumeReco/tests/options/plume_decoding.py @@ -13,7 +13,7 @@ from Gaudi.Configuration import VERBOSE, DEBUG from PRConfig.TestFileDB import test_file_db from PyConf.application import ( - default_raw_event, + default_raw_banks, configure_input, configure, make_odin, @@ -26,7 +26,7 @@ from PyConf.Algorithms import ( PrintHeader, ) -options = test_file_db["plume-raw-data-v1.1"].make_lbexec_options( +options = test_file_db["plume-raw-data-v4"].make_lbexec_options( simulation=True, dddb_tag="dddb-20210617", conddb_tag="sim-20210617-vc-md100", @@ -41,7 +41,7 @@ configure_input(options) # must call this before calling default_raw_event odin = make_odin() digits = PlumeRawToDigits( - OutputLevel=DEBUG, RawEventLocation=default_raw_event(["Plume"])).Output + OutputLevel=DEBUG, RawBankLocation=default_raw_banks("Plume")).Output monitor = PlumeDigitMonitor(Input=digits, ODIN=odin) plume_tuple = PlumeTuple(Input=digits, ODIN=odin) print_event = PrintHeader(ODINLocation=odin) diff --git a/Plume/PlumeReco/tests/refs/plume_decoding.ref b/Plume/PlumeReco/tests/refs/plume_decoding.ref index 8af4f53b8b04debfa1e43b13eb6805f550e02d70..d8f1242d4f117ee72b5998109164674b979ef347 100644 --- a/Plume/PlumeReco/tests/refs/plume_decoding.ref +++ b/Plume/PlumeReco/tests/refs/plume_decoding.ref @@ -5,11 +5,10 @@ ApplicationMgr INFO Application Manager Configured successfully NTupleSvc INFO Added stream file:plume_decoding_ntuple.root as FILE1 HLTControlFlowMgr INFO Start initialization HistogramPersistencySvc INFO Added successfully Conversion service:RootHistSvc -PlumeRawToDigits_14e83b64 DEBUG input handles: 1 -PlumeRawToDigits_14e83b64 DEBUG output handles: 2 - + INPUT '/Event/DAQ/RawEvent' - + OUTPUT '/Event/PlumeRawToDigits_14e83b64/Coincidences' - + OUTPUT '/Event/PlumeRawToDigits_14e83b64/Output' +PlumeRawToDigits_89428f2d DEBUG input handles: 1 +PlumeRawToDigits_89428f2d DEBUG output handles: 1 + + INPUT '/Event/RawBanks/Plume' + + OUTPUT '/Event/PlumeRawToDigits_89428f2d/Output' 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> @@ -18,25426 +17,24425 @@ HLTControlFlowMgr INFO o Number of events slots: 1 HLTControlFlowMgr INFO o TBB thread pool size: 'ThreadPoolSize':1 ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully -EventSelector INFO Stream:EventSelector.DataStreamTool_1 Def:DATAFILE='mdf:root://eoslhcb.cern.ch//eos/lhcb//lhcb/swtest/plume-raw-data-v1.1/Run_0000232607_20220604-065800-966_SODIN01_4264_10000.mdf' SVC='LHCb::MDFSelector' OPT='READ' IgnoreChecksum='YES' +EventSelector INFO Stream:EventSelector.DataStreamTool_1 Def:DATAFILE='mdf:root://eoslhcb.cern.ch//eos/lhcb/wg/rta/samples/data/2024-PLUME-RAW/plume_v4.mdf' SVC='LHCb::MDFSelector' OPT='READ' IgnoreChecksum='YES' HLTControlFlowMgr INFO Will measure time between events 20 and 180 (stop might be some events later) HLTControlFlowMgr INFO Starting loop on events -EventSelector.DataStreamTool_1 INFO Compression:0 Checksum:1 +EventSelector.DataStreamTool_1 INFO Compression:0 Checksum:0 EventSelector SUCCESS Reading Event record 1. Record number within stream 1: 1 EventPersistencySvc INFO Added successfully Conversion service:RootCnvSvc EventPersistencySvc INFO Added successfully Conversion service:LHCb::RawDataCnvSvc -PrintHeader_7bb0e124 INFO Run 232607, Event 64270 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 616, OverTh=true -Channel=LUMI_31 , ADC= 171, OverTh=true -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 253, OverTh=true -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 418, OverTh=true -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= -3, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -3, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= -2, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -Channel=LUMI_07 , ADC= 616, OverTh=true Channel=LUMI_31 , ADC= 171, OverTh=true +PrintHeader_7bb0e124 INFO Run 282822, Event 30001 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 814, OverTh=true +Channel=LUMI_24 , ADC=1014, OverTh=true +Channel=LUMI_01 , ADC= 909, OverTh=true +Channel=LUMI_25 , ADC= 912, OverTh=true +Channel=LUMI_02 , ADC= 930, OverTh=true +Channel=LUMI_26 , ADC= 821, OverTh=true +Channel=LUMI_03 , ADC= 939, OverTh=true +Channel=LUMI_27 , ADC= 972, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 375, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 308, OverTh=true +Channel=LUMI_15 , ADC= 320, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 359, OverTh=true +Channel=LUMI_47 , ADC= 342, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 259, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 254, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 254, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false RFileCnv INFO opening Root file "plume_decoding_ntuple.root" for writing -RCWNTupleCnv INFO Booked TTree with ID: Plume "PlumeTuple" in directory plume_decoding_ntuple.root:/PlumeTuple_402ca397 -PrintHeader_7bb0e124 INFO Run 232607, Event 64265 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= -11, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -2, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64275 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -3, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -3, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= -7, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 3, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64276 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 6, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -5, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= -7, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -2, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= -2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64260 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= 11, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -4, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64269 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= -3, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= -7, OverTh=true -Channel=PIN_06 , ADC= 18, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 4, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64271 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= -38, OverTh=false -Channel=LUMI_31 , ADC= -9, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= -13, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -17, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= -4, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= -5, OverTh=true -Channel=PIN_06 , ADC= 10, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 4, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64266 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 12, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= -3, OverTh=true -Channel=PIN_09 , ADC= 20, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 3, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 4, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 4, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64273 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 41, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 14, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 17, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= -8, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 3, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -3, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 4, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64272 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= -8, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= 9, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -2, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 4, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= -2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64257 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= -4, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= -4, OverTh=true -Channel=PIN_03 , ADC= -4, OverTh=true -Channel=PIN_04 , ADC= 7, OverTh=true -Channel=PIN_08 , ADC= -3, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -3, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 3, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64274 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 10, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= -7, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 3, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -2, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 4, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64277 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -4, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 10, OverTh=true -Channel=PIN_09 , ADC= -3, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -2, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= -2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -2, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= -3, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64284 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= -4, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= -2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 4, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 3, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 3, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64278 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 11, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= -2, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 4, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 4, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64280 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -5, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=true -Channel=PIN_02 , ADC= 8, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 3, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64279 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= -4, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 11, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 15, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 3, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64281 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 6, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 8, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= -2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= 4, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64283 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= -4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -4, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= -4, OverTh=true -Channel=PIN_06 , ADC= -7, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= -2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= -2, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 4, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64282 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= -4, OverTh=true -Channel=PIN_04 , ADC= -2, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -2, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= -3, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 4, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64286 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 10, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 4, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 3, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 3, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 4, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 4, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 4, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64292 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= -2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 3, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64264 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -5, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 8, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -3, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= -2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 4, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= -3, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -2, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 3, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64285 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -3, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= -7, OverTh=true -Channel=PIN_08 , ADC= -7, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 3, OverTh=false -Channel=TIME_29_07, ADC= -2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 3, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64288 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= -2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 3, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 3, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= -2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64295 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 8, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 9, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= -10, OverTh=true -Channel=PIN_07 , ADC= -3, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -3, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64297 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 8, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= -8, OverTh=true -Channel=PIN_09 , ADC= -7, OverTh=true -Channel=PIN_06 , ADC= 8, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 4, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 4, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64290 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 7, OverTh=true -Channel=PIN_08 , ADC= -2, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 10, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 4, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -3, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 4, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64287 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 9, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= 9, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 4, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 3, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= -2, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 3, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -2, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64293 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -5, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= -8, OverTh=true -Channel=PIN_06 , ADC= 13, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 4, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 3, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 4, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 3, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64299 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 10, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 13, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= -2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64311 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= -6, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 14, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 3, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -2, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -3, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64307 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -4, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -5, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 10, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 3, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 3, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 3, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 3, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64315 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -3, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64308 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= -13, OverTh=true -Channel=PIN_06 , ADC= -7, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 4, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 4, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 4, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64309 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= -8, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 3, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= -2, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64317 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -5, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 10, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64305 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -5, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= -6, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= -2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -3, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= -2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= -3, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64318 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 10, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -6, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 8, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= -9, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= -2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -3, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -2, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64312 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 9, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 4, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64313 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= 9, OverTh=true -Channel=PIN_04 , ADC= -7, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -2, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64304 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= -9, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 9, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64296 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 4, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 4, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 4, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= -2, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 5, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64291 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -3, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -5, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 10, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -2, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 4, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= -2, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 3, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64298 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 4, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= -2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= -4, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 3, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64294 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -4, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 10, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= -4, OverTh=true -Channel=PIN_07 , ADC= 4, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 3, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64300 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 5, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -3, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= -2, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= -2, OverTh=false -Channel=TIME_29_03, ADC= -3, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 4, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 3, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64301 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= -5, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 7, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -2, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 4, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 3, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64302 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 4, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= -3, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64289 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 8, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 9, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 3, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= -3, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 3, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64303 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= -4, OverTh=true -Channel=PIN_03 , ADC= 4, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 9, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= -3, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64316 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 12, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= 9, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -3, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64325 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 9, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= 9, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 3, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 4, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64306 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 13, OverTh=true -Channel=PIN_04 , ADC= 11, OverTh=true -Channel=PIN_08 , ADC= -5, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 7, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -3, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64314 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 6, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 6, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= 10, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 5, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 4, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 3, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64320 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 8, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= -6, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 10, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 9, OverTh=true -Channel=PIN_04 , ADC= -5, OverTh=true -Channel=PIN_08 , ADC= -3, OverTh=true -Channel=PIN_09 , ADC= -3, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 3, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= -2, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= -2, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 3, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64319 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 9, OverTh=false -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 4, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 3, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 3, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 3, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64321 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 8, OverTh=false -Channel=LUMI_15 , ADC= 7, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= -4, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 3, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= -2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64322 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 7, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= -5, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 4, OverTh=true -Channel=PIN_04 , ADC= -5, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 3, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 3, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= -3, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64324 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= -2, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= -3, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -2, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 4, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64329 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= -4, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= -8, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= -7, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 3, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64326 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= -3, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 3, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 5, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 4, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64327 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -7, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 14, OverTh=true -Channel=PIN_08 , ADC= -8, OverTh=true -Channel=PIN_09 , ADC= 7, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 4, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -2, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64310 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -2, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= -2, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64328 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -4, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 8, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 4, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 3, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 4, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64337 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 10, OverTh=true -Channel=PIN_04 , ADC= 7, OverTh=true -Channel=PIN_08 , ADC= 12, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -4, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 4, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 4, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= 4, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64330 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 14, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 4, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 4, OverTh=false -Channel=TIME_29_15, ADC= -3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= -3, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= -2, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64338 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 10, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= -5, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -2, OverTh=false -Channel=TIME_29_09, ADC= -2, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64331 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -8, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= 12, OverTh=true -Channel=PIN_08 , ADC= -7, OverTh=true -Channel=PIN_09 , ADC= -6, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 4, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -2, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 3, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -3, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 4, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 4, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64333 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 6, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 8, OverTh=true -Channel=PIN_08 , ADC= 13, OverTh=true -Channel=PIN_09 , ADC= 7, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 3, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 3, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= -3, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64335 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= -7, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 11, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -2, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 3, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64334 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= -4, OverTh=true -Channel=PIN_04 , ADC= 15, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64336 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 8, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 3, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= -3, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -3, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -3, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64343 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -4, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -6, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= -5, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -3, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= -2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 4, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 3, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64332 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 4, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= -3, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64339 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -3, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -3, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 4, OverTh=false -Channel=TIME_29_04, ADC= 3, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= -2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64340 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= -4, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64342 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 5, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= -2, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= -5, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 4, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 3, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 4, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64344 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 4, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= -3, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -2, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64341 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= -2, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 3, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64323 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= -2, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 4, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64352 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 15, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -2, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 3, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 4, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 3, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64354 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= 18, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= -3, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 3, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 4, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 3, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64346 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -3, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -4, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= -5, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= 7, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= -4, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 3, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= -2, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 3, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64356 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= -2, OverTh=true -Channel=PIN_08 , ADC= -2, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= 7, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 4, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 3, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= -2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 3, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64351 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= -7, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 3, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 3, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64349 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 3, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64350 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -5, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -4, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= 8, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= -5, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -2, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 3, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64345 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= 9, OverTh=true -Channel=PIN_07 , ADC= -2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= -3, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 4, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 4, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -3, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64353 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= -4, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= -2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 4, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64355 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= -12, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= -4, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 3, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 4, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64347 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 10, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= 10, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 3, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 3, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64357 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 10, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 4, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 4, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 3, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= -3, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 3, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64348 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 11, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 8, OverTh=true -Channel=PIN_08 , ADC= 8, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 3, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= -2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -3, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 3, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 3, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64366 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 6, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= -2, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 7, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -2, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= -2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64365 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= 9, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 7, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= -2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 4, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 3, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 3, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= -2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64360 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -3, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 16, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -2, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 3, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -2, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64361 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= -2, OverTh=true -Channel=PIN_03 , ADC= -7, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 3, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 3, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -2, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 4, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 4, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64362 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -5, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -4, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 8, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= -6, OverTh=true -Channel=PIN_09 , ADC= 12, OverTh=true -Channel=PIN_06 , ADC= -7, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 4, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 4, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -4, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= -2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64364 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= -8, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 6, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64363 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -3, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= -5, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= -7, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= -3, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 4, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= -2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64359 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= -4, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= -2, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 3, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -3, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64358 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -6, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 9, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= -12, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= -3, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 3, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 3, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= -2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 4, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64367 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= -6, OverTh=true -Channel=PIN_08 , ADC= -2, OverTh=true -Channel=PIN_09 , ADC= -8, OverTh=true -Channel=PIN_06 , ADC= 11, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -2, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 3, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= -2, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= 3, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64375 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 10, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -2, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64376 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= 11, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -2, OverTh=false -Channel=TIME_29_08, ADC= -2, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= -2, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= -2, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64368 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 10, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= -3, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= -4, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -3, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64370 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= -9, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= -2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 3, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -3, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 4, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 3, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -3, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64371 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 4, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 3, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= -3, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64373 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 11, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -3, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 4, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64374 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= -4, OverTh=true -Channel=PIN_03 , ADC= -4, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 10, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 7, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 3, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -3, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64369 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 8, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 4, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 4, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= -2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64372 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= -4, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= -2, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64384 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 12, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= 10, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 4, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64387 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 10, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= -2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64379 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 9, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64378 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 7, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 7, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= -2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 3, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64383 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 14, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 3, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 4, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= -2, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -3, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64380 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -3, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -4, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= -2, OverTh=true -Channel=PIN_03 , ADC= 8, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= -3, OverTh=true -Channel=PIN_06 , ADC= -4, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64381 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= 12, OverTh=true -Channel=PIN_08 , ADC= 9, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 3, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64385 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -11, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64392 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -4, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= -4, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= 10, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 3, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= -3, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 3, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64386 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 6, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= -9, OverTh=true -Channel=PIN_06 , ADC= 8, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -2, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64395 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= -3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= 10, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= -7, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 3, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64382 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -5, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= -11, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 3, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 3, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 3, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64397 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 8, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= -4, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64388 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 4, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -3, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 3, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= -2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64377 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= -2, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 3, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64391 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -4, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= -3, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -3, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 3, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -3, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -3, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64393 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= 8, OverTh=true -Channel=PIN_08 , ADC= -5, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64394 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=true -Channel=PIN_02 , ADC= -7, OverTh=true -Channel=PIN_03 , ADC= 12, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 8, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 4, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64403 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= -9, OverTh=true -Channel=PIN_03 , ADC= -7, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 9, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -3, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -3, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 4, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= -2, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64405 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -3, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 3, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 3, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64406 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -4, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= -2, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= 9, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 3, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= -2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64398 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 7, OverTh=true -Channel=PIN_02 , ADC= 10, OverTh=true -Channel=PIN_03 , ADC= -4, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 3, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 3, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64399 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -6, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -5, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 12, OverTh=true -Channel=PIN_06 , ADC= 8, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 3, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -2, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 4, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= -2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64400 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 3, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64402 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -4, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= -6, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= -7, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 3, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 3, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 3, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -3, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 3, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64408 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 4, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 8, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= -5, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -2, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 4, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64389 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= -4, OverTh=true -Channel=PIN_03 , ADC= 8, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= -2, OverTh=true -Channel=MON_04 , ADC= -2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64410 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 13, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 3, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= -2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= -2, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 3, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64390 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= -4, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= 10, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 3, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 3, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64407 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 8, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 9, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -2, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -3, OverTh=false -Channel=TIME_05_11, ADC= -2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 2, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64404 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -5, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= 6, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= -7, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= -2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 3, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64401 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 9, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 11, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64396 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -3, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 7, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 12, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -3, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 4, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64418 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 13, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= -2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -3, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 4, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64411 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 15, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 3, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -2, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= -2, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 4, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64413 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -4, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -4, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -5, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 8, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 3, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= -2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 3, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64414 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 5, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 12, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= 8, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -3, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= -2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64415 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= -5, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= -2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 4, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 4, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 3, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 3, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -2, OverTh=false -Channel=TIME_11_13, ADC= -3, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -3, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64421 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 10, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 8, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 3, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 4, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64425 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 8, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= -2, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 4, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64424 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= 14, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 10, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 4, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64416 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= -5, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 11, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= -12, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 4, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 3, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64419 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 5, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 9, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= -2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -3, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -2, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 4, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -3, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64420 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= -7, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= -7, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 21, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= -2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64412 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= -8, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= -3, OverTh=true -Channel=PIN_09 , ADC= -3, OverTh=true -Channel=PIN_06 , ADC= 7, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64422 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= 10, OverTh=true -Channel=PIN_08 , ADC= 11, OverTh=true -Channel=PIN_09 , ADC= 6, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 3, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 3, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= -3, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64423 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -3, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= -2, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 3, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -4, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64417 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -5, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= -2, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -2, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 4, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 3, OverTh=false -Channel=TIME_11_09, ADC= -2, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= -2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64443 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= -2, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 10, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 4, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= -3, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= -3, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -3, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64437 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= 14, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 3, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 3, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64432 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= 14, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 6, OverTh=true -Channel=PIN_09 , ADC= 11, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= 3, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= -2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 3, OverTh=false -Channel=TIME_35_11, ADC= 3, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 4, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64447 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -3, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 4, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 3, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64427 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 3, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= -4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 4, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 4, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= -2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 5, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64439 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 9, OverTh=true -Channel=PIN_04 , ADC= 7, OverTh=true -Channel=PIN_08 , ADC= 11, OverTh=true -Channel=PIN_09 , ADC= 4, OverTh=true -Channel=PIN_06 , ADC= 8, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= -3, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= -4, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= -2, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64442 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= -6, OverTh=true -Channel=PIN_09 , ADC= 9, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 4, OverTh=false -Channel=TIME_05_02, ADC= 3, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 3, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64441 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 4, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 2, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 3, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= -3, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 4, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64429 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 8, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 8, OverTh=true -Channel=PIN_09 , ADC= 7, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -2, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= -3, OverTh=false -Channel=TIME_05_01, ADC= 3, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 3, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= -2, OverTh=false -Channel=TIME_29_04, ADC= -2, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -2, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -4, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 3, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 4, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 4, OverTh=false -Channel=TIME_35_03, ADC= -3, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64444 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -3, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= 9, OverTh=true -Channel=PIN_09 , ADC= -12, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= -2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 3, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -2, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= -1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64431 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= 5, OverTh=true -Channel=PIN_08 , ADC= 2, OverTh=true -Channel=PIN_09 , ADC= -8, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 3, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= -2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 3, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 4, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 3, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= -2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64409 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= -5, OverTh=true -Channel=PIN_03 , ADC= 4, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= 13, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= -2, OverTh=false -Channel=TIME_05_03, ADC= 4, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -2, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64426 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 8, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= -5, OverTh=true -Channel=PIN_06 , ADC= -7, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 3, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -3, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= -2, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64435 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -3, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= 13, OverTh=true -Channel=PIN_03 , ADC= -8, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= 10, OverTh=true -Channel=PIN_06 , ADC= -6, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= -2, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 4, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64436 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= -7, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 10, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 3, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 3, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 3, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 3, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64428 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -3, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= -6, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 4, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= -2, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64430 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -3, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= 8, OverTh=true -Channel=PIN_03 , ADC= -7, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= 5, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= -2, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= -2, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= -2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64438 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 6, OverTh=true -Channel=PIN_02 , ADC= 15, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= 3, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= -5, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= -2, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -2, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 3, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 2, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64433 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= -2, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 3, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 3, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 3, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 3, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= 3, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 3, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64434 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 15, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= -4, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 3, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -2, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64454 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 5, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= -2, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= 10, OverTh=true -Channel=PIN_08 , ADC= 9, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= -1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 2, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 3, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 3, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 3, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 2, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -2, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64450 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 2, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= -2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=true -Channel=PIN_02 , ADC= 5, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 9, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= 8, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -2, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 3, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64452 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -2, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= -5, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 9, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= 1, OverTh=true -Channel=PIN_08 , ADC= -5, OverTh=true -Channel=PIN_09 , ADC= 3, OverTh=true -Channel=PIN_06 , ADC= 9, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -2, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 3, OverTh=false -Channel=TIME_05_06, ADC= 3, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 4, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 3, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= -1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= -3, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= -2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64458 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= -4, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= -9, OverTh=true -Channel=PIN_09 , ADC= 7, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 3, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 3, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 2, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= -2, OverTh=false -Channel=TIME_05_07, ADC= 3, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 3, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 3, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64459 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -4, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 5, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= -10, OverTh=true -Channel=PIN_06 , ADC= -3, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= -2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= -2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 2, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 3, OverTh=false -Channel=TIME_11_01, ADC= 3, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 2, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 3, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 3, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64462 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= -5, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 4, OverTh=true -Channel=PIN_03 , ADC= 2, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= 7, OverTh=true -Channel=PIN_09 , ADC= -7, OverTh=true -Channel=PIN_06 , ADC= 7, OverTh=true -Channel=PIN_07 , ADC= -2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= -2, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= 3, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -2, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -2, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= -1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= -2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= -3, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= -2, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64460 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=true -Channel=PIN_02 , ADC= -10, OverTh=true -Channel=PIN_03 , ADC= -9, OverTh=true -Channel=PIN_04 , ADC= 0, OverTh=true -Channel=PIN_08 , ADC= 10, OverTh=true -Channel=PIN_09 , ADC= 9, OverTh=true -Channel=PIN_06 , ADC= 0, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= -2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= -3, OverTh=false -Channel=TIME_29_00, ADC= -2, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 3, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 2, OverTh=false -Channel=TIME_29_11, ADC= -3, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= -2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -2, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 0, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 3, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 2, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -3, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64468 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 6, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 9, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= -4, OverTh=true -Channel=PIN_06 , ADC= 9, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 2, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= 2, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 0, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= -3, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 3, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= 1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 4, OverTh=false -Channel=TIME_35_05, ADC= 3, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 3, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64457 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -3, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 6, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= -1, OverTh=true -Channel=PIN_04 , ADC= 6, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 14, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 2, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 3, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 2, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 2, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 3, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 3, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64464 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= -4, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=true -Channel=PIN_02 , ADC= 1, OverTh=true -Channel=PIN_03 , ADC= 0, OverTh=true -Channel=PIN_04 , ADC= -2, OverTh=true -Channel=PIN_08 , ADC= -6, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 6, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 3, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 4, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 2, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 3, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 3, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= 2, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 1, OverTh=false -Channel=TIME_35_00, ADC= -1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= 1, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= -2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= -1, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= -2, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= -2, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= -2, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= -2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64451 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -3, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= 0, OverTh=true -Channel=PIN_03 , ADC= 10, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 10, OverTh=true -Channel=PIN_09 , ADC= -1, OverTh=true -Channel=PIN_06 , ADC= 1, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 4, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= -1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 2, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 4, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 0, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 0, OverTh=false -Channel=TIME_35_04, ADC= 2, OverTh=false -Channel=TIME_35_12, ADC= -2, OverTh=false -Channel=TIME_11_05, ADC= -1, OverTh=false -Channel=TIME_11_13, ADC= 4, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= -1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 2, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64453 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= -1, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=true -Channel=PIN_02 , ADC= 3, OverTh=true -Channel=PIN_03 , ADC= 8, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= -1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 2, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 2, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 3, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= -1, OverTh=false -Channel=TIME_29_13, ADC= 1, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 0, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 0, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= -1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= -1, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= -2, OverTh=false -Channel=TIME_11_12, ADC= -2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= -1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64440 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=true -Channel=PIN_02 , ADC= 14, OverTh=true -Channel=PIN_03 , ADC= 1, OverTh=true -Channel=PIN_04 , ADC= -4, OverTh=true -Channel=PIN_08 , ADC= -9, OverTh=true -Channel=PIN_09 , ADC= -2, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= -1, OverTh=false -Channel=TIME_05_01, ADC= 2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -1, OverTh=false -Channel=TIME_29_02, ADC= 3, OverTh=false -Channel=TIME_29_10, ADC= -1, OverTh=false -Channel=TIME_05_03, ADC= 3, OverTh=false -Channel=TIME_05_11, ADC= -2, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 2, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 3, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 3, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 3, OverTh=false -Channel=TIME_35_08, ADC= 0, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 3, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 0, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 2, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= -1, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 0, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= -3, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 2, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 2, OverTh=false -Channel=TIME_35_15, ADC= 2, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64448 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -4, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= -4, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=true -Channel=PIN_02 , ADC= -1, OverTh=true -Channel=PIN_03 , ADC= 7, OverTh=true -Channel=PIN_04 , ADC= -1, OverTh=true -Channel=PIN_08 , ADC= 0, OverTh=true -Channel=PIN_09 , ADC= 10, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 1, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 2, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 0, OverTh=false -Channel=TIME_05_01, ADC= -2, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= -2, OverTh=false -Channel=TIME_05_10, ADC= 0, OverTh=false -Channel=TIME_29_02, ADC= -1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= -1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= -1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= -1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= -1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= 0, OverTh=false -Channel=TIME_29_07, ADC= 4, OverTh=false -Channel=TIME_29_15, ADC= -2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 0, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= -1, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= 1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= -1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= -2, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= -1, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64449 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=true -Channel=PIN_02 , ADC= 2, OverTh=true -Channel=PIN_03 , ADC= -7, OverTh=true -Channel=PIN_04 , ADC= -5, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 0, OverTh=true -Channel=PIN_06 , ADC= 5, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 3, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= 0, OverTh=true -Channel=TIME_05_00, ADC= 3, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= 1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= -1, OverTh=false -Channel=TIME_29_01, ADC= -1, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= 0, OverTh=false -Channel=TIME_05_10, ADC= -3, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 1, OverTh=false -Channel=TIME_05_03, ADC= 0, OverTh=false -Channel=TIME_05_11, ADC= 0, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 2, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= 0, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= -2, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 1, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 2, OverTh=false -Channel=TIME_35_09, ADC= 0, OverTh=false -Channel=TIME_11_02, ADC= -1, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= -1, OverTh=false -Channel=TIME_35_10, ADC= 2, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 3, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= 0, OverTh=false -Channel=TIME_11_05, ADC= 1, OverTh=false -Channel=TIME_11_13, ADC= 5, OverTh=false -Channel=TIME_35_05, ADC= -2, OverTh=false -Channel=TIME_35_13, ADC= 1, OverTh=false -Channel=TIME_11_06, ADC= 0, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 1, OverTh=false -Channel=TIME_35_07, ADC= 1, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64456 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 0, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -5, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= 7, OverTh=true -Channel=PIN_03 , ADC= 12, OverTh=true -Channel=PIN_04 , ADC= -3, OverTh=true -Channel=PIN_08 , ADC= 4, OverTh=true -Channel=PIN_09 , ADC= 1, OverTh=true -Channel=PIN_06 , ADC= 4, OverTh=true -Channel=PIN_07 , ADC= 0, OverTh=true -Channel=MON_01 , ADC= 1, OverTh=true -Channel=MON_02 , ADC= 0, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 2, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 1, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= 1, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 0, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 1, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= -2, OverTh=false -Channel=TIME_29_02, ADC= 2, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= 0, OverTh=false -Channel=TIME_29_04, ADC= 1, OverTh=false -Channel=TIME_29_12, ADC= 2, OverTh=false -Channel=TIME_05_05, ADC= 0, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 1, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= -1, OverTh=false -Channel=TIME_05_14, ADC= 1, OverTh=false -Channel=TIME_29_06, ADC= -1, OverTh=false -Channel=TIME_29_14, ADC= 1, OverTh=false -Channel=TIME_05_07, ADC= 0, OverTh=false -Channel=TIME_05_15, ADC= 4, OverTh=false -Channel=TIME_29_07, ADC= 0, OverTh=false -Channel=TIME_29_15, ADC= 2, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 3, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 1, OverTh=false -Channel=TIME_11_10, ADC= -1, OverTh=false -Channel=TIME_35_02, ADC= 1, OverTh=false -Channel=TIME_35_10, ADC= 3, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= 2, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 0, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 0, OverTh=false -Channel=TIME_35_05, ADC= 0, OverTh=false -Channel=TIME_35_13, ADC= -1, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= 1, OverTh=false -Channel=TIME_35_14, ADC= -1, OverTh=false -Channel=TIME_11_07, ADC= -1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 3, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64455 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=true -Channel=PIN_02 , ADC= -2, OverTh=true -Channel=PIN_03 , ADC= -4, OverTh=true -Channel=PIN_04 , ADC= 7, OverTh=true -Channel=PIN_08 , ADC= -1, OverTh=true -Channel=PIN_09 , ADC= 5, OverTh=true -Channel=PIN_06 , ADC= -1, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 2, OverTh=true -Channel=MON_04 , ADC= -1, OverTh=true -Channel=TIME_05_00, ADC= -1, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= 2, OverTh=false -Channel=TIME_05_01, ADC= -1, OverTh=false -Channel=TIME_05_09, ADC= 1, OverTh=false -Channel=TIME_29_01, ADC= 1, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 2, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 0, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 0, OverTh=false -Channel=TIME_29_11, ADC= 1, OverTh=false -Channel=TIME_05_04, ADC= 1, OverTh=false -Channel=TIME_05_12, ADC= -1, OverTh=false -Channel=TIME_29_04, ADC= -1, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= 1, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 0, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= -1, OverTh=false -Channel=TIME_29_06, ADC= -2, OverTh=false -Channel=TIME_29_14, ADC= -1, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 1, OverTh=false -Channel=TIME_29_07, ADC= 1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 1, OverTh=false -Channel=TIME_11_08, ADC= 0, OverTh=false -Channel=TIME_35_00, ADC= 1, OverTh=false -Channel=TIME_35_08, ADC= -2, OverTh=false -Channel=TIME_11_01, ADC= 0, OverTh=false -Channel=TIME_11_09, ADC= 3, OverTh=false -Channel=TIME_35_01, ADC= 1, OverTh=false -Channel=TIME_35_09, ADC= 2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 2, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= -1, OverTh=false -Channel=TIME_35_11, ADC= 1, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= -3, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 2, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 3, OverTh=false -Channel=TIME_11_14, ADC= 1, OverTh=false -Channel=TIME_35_06, ADC= -1, OverTh=false -Channel=TIME_35_14, ADC= 0, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 0, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64445 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=true -Channel=PIN_02 , ADC= -4, OverTh=true -Channel=PIN_03 , ADC= -3, OverTh=true -Channel=PIN_04 , ADC= 4, OverTh=true -Channel=PIN_08 , ADC= 3, OverTh=true -Channel=PIN_09 , ADC= 8, OverTh=true -Channel=PIN_06 , ADC= 3, OverTh=true -Channel=PIN_07 , ADC= 2, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= 1, OverTh=true -Channel=MON_03 , ADC= 0, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= -2, OverTh=false -Channel=TIME_29_00, ADC= 0, OverTh=false -Channel=TIME_29_08, ADC= -2, OverTh=false -Channel=TIME_05_01, ADC= 1, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 2, OverTh=false -Channel=TIME_29_09, ADC= -1, OverTh=false -Channel=TIME_05_02, ADC= -1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 2, OverTh=false -Channel=TIME_05_03, ADC= 1, OverTh=false -Channel=TIME_05_11, ADC= 1, OverTh=false -Channel=TIME_29_03, ADC= 1, OverTh=false -Channel=TIME_29_11, ADC= -1, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 1, OverTh=false -Channel=TIME_05_05, ADC= -2, OverTh=false -Channel=TIME_05_13, ADC= 1, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= 2, OverTh=false -Channel=TIME_05_06, ADC= 1, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 1, OverTh=false -Channel=TIME_29_14, ADC= 3, OverTh=false -Channel=TIME_05_07, ADC= 1, OverTh=false -Channel=TIME_05_15, ADC= -1, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= 2, OverTh=false -Channel=TIME_11_08, ADC= -1, OverTh=false -Channel=TIME_35_00, ADC= 2, OverTh=false -Channel=TIME_35_08, ADC= -1, OverTh=false -Channel=TIME_11_01, ADC= 2, OverTh=false -Channel=TIME_11_09, ADC= 0, OverTh=false -Channel=TIME_35_01, ADC= -1, OverTh=false -Channel=TIME_35_09, ADC= 1, OverTh=false -Channel=TIME_11_02, ADC= 0, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= 0, OverTh=false -Channel=TIME_11_03, ADC= -1, OverTh=false -Channel=TIME_11_11, ADC= 0, OverTh=false -Channel=TIME_35_03, ADC= 1, OverTh=false -Channel=TIME_35_11, ADC= -2, OverTh=false -Channel=TIME_11_04, ADC= 1, OverTh=false -Channel=TIME_11_12, ADC= 1, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= -1, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= 1, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 1, OverTh=false -Channel=TIME_11_14, ADC= 2, OverTh=false -Channel=TIME_35_06, ADC= 4, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 0, OverTh=false -Channel=TIME_11_15, ADC= 0, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= 1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: -PrintHeader_7bb0e124 INFO Run 232607, Event 64446 -PlumeRawToDigits_14e83b64 DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=true -Channel=PIN_02 , ADC= -2, OverTh=true -Channel=PIN_03 , ADC= 6, OverTh=true -Channel=PIN_04 , ADC= 2, OverTh=true -Channel=PIN_08 , ADC= 1, OverTh=true -Channel=PIN_09 , ADC= 9, OverTh=true -Channel=PIN_06 , ADC= 2, OverTh=true -Channel=PIN_07 , ADC= -1, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=true -Channel=MON_02 , ADC= -1, OverTh=true -Channel=MON_03 , ADC= 1, OverTh=true -Channel=MON_04 , ADC= 1, OverTh=true -Channel=TIME_05_00, ADC= 0, OverTh=false -Channel=TIME_05_08, ADC= 0, OverTh=false -Channel=TIME_29_00, ADC= -1, OverTh=false -Channel=TIME_29_08, ADC= -2, OverTh=false -Channel=TIME_05_01, ADC= 0, OverTh=false -Channel=TIME_05_09, ADC= 2, OverTh=false -Channel=TIME_29_01, ADC= 0, OverTh=false -Channel=TIME_29_09, ADC= 0, OverTh=false -Channel=TIME_05_02, ADC= 1, OverTh=false -Channel=TIME_05_10, ADC= 1, OverTh=false -Channel=TIME_29_02, ADC= 1, OverTh=false -Channel=TIME_29_10, ADC= 0, OverTh=false -Channel=TIME_05_03, ADC= 2, OverTh=false -Channel=TIME_05_11, ADC= -2, OverTh=false -Channel=TIME_29_03, ADC= -1, OverTh=false -Channel=TIME_29_11, ADC= 0, OverTh=false -Channel=TIME_05_04, ADC= 0, OverTh=false -Channel=TIME_05_12, ADC= 1, OverTh=false -Channel=TIME_29_04, ADC= 0, OverTh=false -Channel=TIME_29_12, ADC= 0, OverTh=false -Channel=TIME_05_05, ADC= -1, OverTh=false -Channel=TIME_05_13, ADC= 0, OverTh=false -Channel=TIME_29_05, ADC= 0, OverTh=false -Channel=TIME_29_13, ADC= -1, OverTh=false -Channel=TIME_05_06, ADC= 2, OverTh=false -Channel=TIME_05_14, ADC= 2, OverTh=false -Channel=TIME_29_06, ADC= 2, OverTh=false -Channel=TIME_29_14, ADC= 2, OverTh=false -Channel=TIME_05_07, ADC= -1, OverTh=false -Channel=TIME_05_15, ADC= 2, OverTh=false -Channel=TIME_29_07, ADC= -1, OverTh=false -Channel=TIME_29_15, ADC= 0, OverTh=false -Channel=TIME_05 , ADC=4095, OverTh=false -Channel=TIME_29 , ADC=4095, OverTh=false -Channel=TIME_11_00, ADC= -1, OverTh=false -Channel=TIME_11_08, ADC= 2, OverTh=false -Channel=TIME_35_00, ADC= 0, OverTh=false -Channel=TIME_35_08, ADC= 1, OverTh=false -Channel=TIME_11_01, ADC= 1, OverTh=false -Channel=TIME_11_09, ADC= 2, OverTh=false -Channel=TIME_35_01, ADC= 0, OverTh=false -Channel=TIME_35_09, ADC= -2, OverTh=false -Channel=TIME_11_02, ADC= 2, OverTh=false -Channel=TIME_11_10, ADC= 0, OverTh=false -Channel=TIME_35_02, ADC= 2, OverTh=false -Channel=TIME_35_10, ADC= -1, OverTh=false -Channel=TIME_11_03, ADC= 1, OverTh=false -Channel=TIME_11_11, ADC= -2, OverTh=false -Channel=TIME_35_03, ADC= 0, OverTh=false -Channel=TIME_35_11, ADC= -1, OverTh=false -Channel=TIME_11_04, ADC= 0, OverTh=false -Channel=TIME_11_12, ADC= 2, OverTh=false -Channel=TIME_35_04, ADC= 1, OverTh=false -Channel=TIME_35_12, ADC= 2, OverTh=false -Channel=TIME_11_05, ADC= 0, OverTh=false -Channel=TIME_11_13, ADC= 1, OverTh=false -Channel=TIME_35_05, ADC= -2, OverTh=false -Channel=TIME_35_13, ADC= 2, OverTh=false -Channel=TIME_11_06, ADC= 2, OverTh=false -Channel=TIME_11_14, ADC= 0, OverTh=false -Channel=TIME_35_06, ADC= 0, OverTh=false -Channel=TIME_35_14, ADC= 1, OverTh=false -Channel=TIME_11_07, ADC= 1, OverTh=false -Channel=TIME_11_15, ADC= 2, OverTh=false -Channel=TIME_35_07, ADC= 0, OverTh=false -Channel=TIME_35_15, ADC= -1, OverTh=false -Channel=TIME_11 , ADC=4095, OverTh=false -Channel=TIME_35 , ADC=4095, OverTh=false -PlumeRawToDigits_14e83b64 DEBUG Found coincidences: +RCWNTupleCnv INFO Booked TTree with ID: Plume "PlumeTuple" in directory plume_decoding_ntuple.root:/PlumeTuple_d36bf254 +PrintHeader_7bb0e124 INFO Run 282822, Event 30003 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 909, OverTh=true +Channel=LUMI_24 , ADC= 968, OverTh=true +Channel=LUMI_01 , ADC= 876, OverTh=true +Channel=LUMI_25 , ADC= 964, OverTh=true +Channel=LUMI_02 , ADC= 916, OverTh=true +Channel=LUMI_26 , ADC= 851, OverTh=true +Channel=LUMI_03 , ADC= 927, OverTh=true +Channel=LUMI_27 , ADC=1012, OverTh=true +Channel=LUMI_04 , ADC= 318, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 345, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 244, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 251, OverTh=true +Channel=LUMI_07 , ADC= 263, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 261, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 259, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30002 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 824, OverTh=true +Channel=LUMI_24 , ADC= 841, OverTh=true +Channel=LUMI_01 , ADC= 859, OverTh=true +Channel=LUMI_25 , ADC= 852, OverTh=true +Channel=LUMI_02 , ADC= 884, OverTh=true +Channel=LUMI_26 , ADC= 749, OverTh=true +Channel=LUMI_03 , ADC= 871, OverTh=true +Channel=LUMI_27 , ADC=1152, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 344, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 235, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 330, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 348, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 253, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 262, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 261, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 260, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 261, OverTh=true +Channel=LUMI_21 , ADC= 252, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 260, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 259, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 260, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 254, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 254, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30000 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 886, OverTh=true +Channel=LUMI_24 , ADC= 903, OverTh=true +Channel=LUMI_01 , ADC= 883, OverTh=true +Channel=LUMI_25 , ADC= 886, OverTh=true +Channel=LUMI_02 , ADC= 838, OverTh=true +Channel=LUMI_26 , ADC= 722, OverTh=true +Channel=LUMI_03 , ADC= 864, OverTh=true +Channel=LUMI_27 , ADC= 868, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 247, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 332, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 253, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 254, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 254, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30004 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 832, OverTh=true +Channel=LUMI_24 , ADC= 807, OverTh=true +Channel=LUMI_01 , ADC= 803, OverTh=true +Channel=LUMI_25 , ADC= 834, OverTh=true +Channel=LUMI_02 , ADC= 884, OverTh=true +Channel=LUMI_26 , ADC= 747, OverTh=true +Channel=LUMI_03 , ADC= 860, OverTh=true +Channel=LUMI_27 , ADC= 965, OverTh=true +Channel=LUMI_04 , ADC= 275, OverTh=true +Channel=LUMI_28 , ADC= 242, OverTh=true +Channel=LUMI_12 , ADC= 287, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 337, OverTh=true +Channel=LUMI_37 , ADC= 240, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 278, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 258, OverTh=true +Channel=LUMI_23 , ADC= 234, OverTh=true +Channel=LUMI_47 , ADC= 262, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 254, OverTh=true +Channel=LUMI_07 , ADC= 254, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 253, OverTh=true +Channel=LUMI_32 , ADC= 253, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 253, OverTh=true +Channel=LUMI_34 , ADC= 253, OverTh=true +Channel=LUMI_17 , ADC= 252, OverTh=true +Channel=LUMI_41 , ADC= 253, OverTh=true +Channel=LUMI_18 , ADC= 252, OverTh=true +Channel=LUMI_42 , ADC= 253, OverTh=true +Channel=LUMI_19 , ADC= 252, OverTh=true +Channel=LUMI_43 , ADC= 252, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 253, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 260, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 254, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 259, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30005 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 872, OverTh=true +Channel=LUMI_24 , ADC= 918, OverTh=true +Channel=LUMI_01 , ADC= 862, OverTh=true +Channel=LUMI_25 , ADC= 887, OverTh=true +Channel=LUMI_02 , ADC= 834, OverTh=true +Channel=LUMI_26 , ADC= 792, OverTh=true +Channel=LUMI_03 , ADC= 993, OverTh=true +Channel=LUMI_27 , ADC=1005, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 260, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 253, OverTh=false +Channel=TIME_35_11, ADC= 254, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30006 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 823, OverTh=true +Channel=LUMI_24 , ADC= 817, OverTh=true +Channel=LUMI_01 , ADC= 883, OverTh=true +Channel=LUMI_25 , ADC= 758, OverTh=true +Channel=LUMI_02 , ADC= 906, OverTh=true +Channel=LUMI_26 , ADC= 724, OverTh=true +Channel=LUMI_03 , ADC= 855, OverTh=true +Channel=LUMI_27 , ADC= 938, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 233, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 344, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 259, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 260, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 253, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 253, OverTh=false +Channel=TIME_35_14, ADC= 260, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30008 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 776, OverTh=true +Channel=LUMI_24 , ADC= 813, OverTh=true +Channel=LUMI_01 , ADC= 853, OverTh=true +Channel=LUMI_25 , ADC= 794, OverTh=true +Channel=LUMI_02 , ADC= 864, OverTh=true +Channel=LUMI_26 , ADC= 728, OverTh=true +Channel=LUMI_03 , ADC= 799, OverTh=true +Channel=LUMI_27 , ADC= 954, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 246, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 327, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 261, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 254, OverTh=false +Channel=TIME_35_03, ADC= 253, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 254, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30009 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 843, OverTh=true +Channel=LUMI_24 , ADC= 967, OverTh=true +Channel=LUMI_01 , ADC= 879, OverTh=true +Channel=LUMI_25 , ADC= 917, OverTh=true +Channel=LUMI_02 , ADC= 914, OverTh=true +Channel=LUMI_26 , ADC= 930, OverTh=true +Channel=LUMI_03 , ADC= 864, OverTh=true +Channel=LUMI_27 , ADC= 955, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 342, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 321, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 260, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 254, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 254, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30010 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 824, OverTh=true +Channel=LUMI_24 , ADC= 840, OverTh=true +Channel=LUMI_01 , ADC= 848, OverTh=true +Channel=LUMI_25 , ADC= 797, OverTh=true +Channel=LUMI_02 , ADC= 915, OverTh=true +Channel=LUMI_26 , ADC= 758, OverTh=true +Channel=LUMI_03 , ADC= 873, OverTh=true +Channel=LUMI_27 , ADC=1057, OverTh=true +Channel=LUMI_04 , ADC= 281, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 234, OverTh=true +Channel=LUMI_13 , ADC= 345, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 276, OverTh=true +Channel=LUMI_38 , ADC= 285, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 261, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 254, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 261, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 259, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30011 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 837, OverTh=true +Channel=LUMI_24 , ADC= 996, OverTh=true +Channel=LUMI_01 , ADC= 848, OverTh=true +Channel=LUMI_25 , ADC= 910, OverTh=true +Channel=LUMI_02 , ADC= 841, OverTh=true +Channel=LUMI_26 , ADC= 911, OverTh=true +Channel=LUMI_03 , ADC=1003, OverTh=true +Channel=LUMI_27 , ADC= 954, OverTh=true +Channel=LUMI_04 , ADC= 318, OverTh=true +Channel=LUMI_28 , ADC= 367, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 381, OverTh=true +Channel=LUMI_13 , ADC= 256, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 331, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 260, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 260, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30012 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 841, OverTh=true +Channel=LUMI_24 , ADC= 786, OverTh=true +Channel=LUMI_01 , ADC= 870, OverTh=true +Channel=LUMI_25 , ADC= 825, OverTh=true +Channel=LUMI_02 , ADC= 887, OverTh=true +Channel=LUMI_26 , ADC= 735, OverTh=true +Channel=LUMI_03 , ADC= 833, OverTh=true +Channel=LUMI_27 , ADC= 966, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 242, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 340, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 253, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 260, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 251, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 254, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 259, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30007 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 865, OverTh=true +Channel=LUMI_24 , ADC= 992, OverTh=true +Channel=LUMI_01 , ADC= 821, OverTh=true +Channel=LUMI_25 , ADC= 787, OverTh=true +Channel=LUMI_02 , ADC= 878, OverTh=true +Channel=LUMI_26 , ADC= 863, OverTh=true +Channel=LUMI_03 , ADC=1065, OverTh=true +Channel=LUMI_27 , ADC= 972, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 324, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 345, OverTh=false +Channel=PIN_09 , ADC= 349, OverTh=false +Channel=PIN_06 , ADC= 259, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 259, OverTh=false +Channel=TIME_05_14, ADC= 254, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 254, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 254, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30013 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 791, OverTh=true +Channel=LUMI_24 , ADC= 992, OverTh=true +Channel=LUMI_01 , ADC= 945, OverTh=true +Channel=LUMI_25 , ADC= 815, OverTh=true +Channel=LUMI_02 , ADC= 901, OverTh=true +Channel=LUMI_26 , ADC= 877, OverTh=true +Channel=LUMI_03 , ADC= 905, OverTh=true +Channel=LUMI_27 , ADC=1017, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 334, OverTh=false +Channel=PIN_04 , ADC= 344, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 254, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 261, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 253, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 261, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 259, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 259, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 260, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30014 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 883, OverTh=true +Channel=LUMI_24 , ADC= 800, OverTh=true +Channel=LUMI_01 , ADC= 856, OverTh=true +Channel=LUMI_25 , ADC= 824, OverTh=true +Channel=LUMI_02 , ADC= 919, OverTh=true +Channel=LUMI_26 , ADC= 765, OverTh=true +Channel=LUMI_03 , ADC= 837, OverTh=true +Channel=LUMI_27 , ADC= 976, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 275, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 253, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 253, OverTh=true +Channel=LUMI_32 , ADC= 252, OverTh=true +Channel=LUMI_09 , ADC= 261, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 253, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30015 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 833, OverTh=true +Channel=LUMI_24 , ADC= 963, OverTh=true +Channel=LUMI_01 , ADC= 919, OverTh=true +Channel=LUMI_25 , ADC= 828, OverTh=true +Channel=LUMI_02 , ADC= 882, OverTh=true +Channel=LUMI_26 , ADC= 918, OverTh=true +Channel=LUMI_03 , ADC= 959, OverTh=true +Channel=LUMI_27 , ADC=1033, OverTh=true +Channel=LUMI_04 , ADC= 318, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 255, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 331, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 368, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 324, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 336, OverTh=false +Channel=PIN_06 , ADC= 243, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 252, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 253, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 259, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 260, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 260, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 260, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30016 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 842, OverTh=true +Channel=LUMI_24 , ADC= 830, OverTh=true +Channel=LUMI_01 , ADC= 876, OverTh=true +Channel=LUMI_25 , ADC= 777, OverTh=true +Channel=LUMI_02 , ADC= 908, OverTh=true +Channel=LUMI_26 , ADC= 741, OverTh=true +Channel=LUMI_03 , ADC= 789, OverTh=true +Channel=LUMI_27 , ADC= 854, OverTh=true +Channel=LUMI_04 , ADC= 274, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 287, OverTh=true +Channel=LUMI_36 , ADC= 226, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 239, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 280, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 283, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 235, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 315, OverTh=false +Channel=PIN_02 , ADC= 326, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 330, OverTh=false +Channel=PIN_08 , ADC= 323, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 253, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 259, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30018 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 856, OverTh=true +Channel=LUMI_24 , ADC= 812, OverTh=true +Channel=LUMI_01 , ADC= 835, OverTh=true +Channel=LUMI_25 , ADC= 823, OverTh=true +Channel=LUMI_02 , ADC= 868, OverTh=true +Channel=LUMI_26 , ADC= 725, OverTh=true +Channel=LUMI_03 , ADC= 895, OverTh=true +Channel=LUMI_27 , ADC= 938, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 287, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 315, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 323, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 253, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 259, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 261, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 259, OverTh=false +Channel=TIME_11_09, ADC= 254, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30017 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 847, OverTh=true +Channel=LUMI_24 , ADC= 994, OverTh=true +Channel=LUMI_01 , ADC= 872, OverTh=true +Channel=LUMI_25 , ADC= 936, OverTh=true +Channel=LUMI_02 , ADC= 865, OverTh=true +Channel=LUMI_26 , ADC= 803, OverTh=true +Channel=LUMI_03 , ADC= 908, OverTh=true +Channel=LUMI_27 , ADC= 911, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 360, OverTh=true +Channel=LUMI_12 , ADC= 309, OverTh=true +Channel=LUMI_36 , ADC= 375, OverTh=true +Channel=LUMI_13 , ADC= 248, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 307, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 344, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 261, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 254, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 253, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 254, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 254, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30019 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 879, OverTh=true +Channel=LUMI_24 , ADC= 970, OverTh=true +Channel=LUMI_01 , ADC= 897, OverTh=true +Channel=LUMI_25 , ADC= 894, OverTh=true +Channel=LUMI_02 , ADC= 814, OverTh=true +Channel=LUMI_26 , ADC= 822, OverTh=true +Channel=LUMI_03 , ADC= 890, OverTh=true +Channel=LUMI_27 , ADC= 988, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 353, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 252, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 261, OverTh=true +Channel=LUMI_09 , ADC= 248, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 259, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30020 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 858, OverTh=true +Channel=LUMI_24 , ADC= 850, OverTh=true +Channel=LUMI_01 , ADC= 878, OverTh=true +Channel=LUMI_25 , ADC= 790, OverTh=true +Channel=LUMI_02 , ADC= 906, OverTh=true +Channel=LUMI_26 , ADC= 752, OverTh=true +Channel=LUMI_03 , ADC= 768, OverTh=true +Channel=LUMI_27 , ADC= 894, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 293, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 344, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 296, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 265, OverTh=true +Channel=LUMI_23 , ADC= 240, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 327, OverTh=false +Channel=PIN_09 , ADC= 338, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 253, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 264, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 261, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 259, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30022 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 872, OverTh=true +Channel=LUMI_24 , ADC= 821, OverTh=true +Channel=LUMI_01 , ADC= 892, OverTh=true +Channel=LUMI_25 , ADC= 827, OverTh=true +Channel=LUMI_02 , ADC= 854, OverTh=true +Channel=LUMI_26 , ADC= 743, OverTh=true +Channel=LUMI_03 , ADC= 867, OverTh=true +Channel=LUMI_27 , ADC= 995, OverTh=true +Channel=LUMI_04 , ADC= 276, OverTh=true +Channel=LUMI_28 , ADC= 242, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 227, OverTh=true +Channel=LUMI_13 , ADC= 337, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 279, OverTh=true +Channel=LUMI_15 , ADC= 297, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 264, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 271, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 354, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 253, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 253, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 260, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30021 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 812, OverTh=true +Channel=LUMI_24 , ADC= 985, OverTh=true +Channel=LUMI_01 , ADC= 827, OverTh=true +Channel=LUMI_25 , ADC= 915, OverTh=true +Channel=LUMI_02 , ADC= 851, OverTh=true +Channel=LUMI_26 , ADC= 849, OverTh=true +Channel=LUMI_03 , ADC= 915, OverTh=true +Channel=LUMI_27 , ADC=1050, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 314, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 361, OverTh=true +Channel=LUMI_47 , ADC= 342, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 330, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 245, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 260, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 254, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 253, OverTh=false +Channel=TIME_29_05, ADC= 254, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 259, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30024 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 863, OverTh=true +Channel=LUMI_24 , ADC= 821, OverTh=true +Channel=LUMI_01 , ADC= 856, OverTh=true +Channel=LUMI_25 , ADC= 877, OverTh=true +Channel=LUMI_02 , ADC= 858, OverTh=true +Channel=LUMI_26 , ADC= 708, OverTh=true +Channel=LUMI_03 , ADC= 869, OverTh=true +Channel=LUMI_27 , ADC= 925, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 335, OverTh=false +Channel=PIN_04 , ADC= 324, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 337, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 262, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 254, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 254, OverTh=false +Channel=TIME_05_14, ADC= 253, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 260, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 260, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 259, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30025 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 826, OverTh=true +Channel=LUMI_24 , ADC=1011, OverTh=true +Channel=LUMI_01 , ADC= 938, OverTh=true +Channel=LUMI_25 , ADC= 921, OverTh=true +Channel=LUMI_02 , ADC= 906, OverTh=true +Channel=LUMI_26 , ADC= 877, OverTh=true +Channel=LUMI_03 , ADC=1010, OverTh=true +Channel=LUMI_27 , ADC= 967, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 369, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 334, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 261, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 253, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 253, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 259, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 254, OverTh=false +Channel=TIME_35_14, ADC= 253, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30023 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 846, OverTh=true +Channel=LUMI_24 , ADC= 999, OverTh=true +Channel=LUMI_01 , ADC= 914, OverTh=true +Channel=LUMI_25 , ADC= 904, OverTh=true +Channel=LUMI_02 , ADC= 893, OverTh=true +Channel=LUMI_26 , ADC= 859, OverTh=true +Channel=LUMI_03 , ADC= 981, OverTh=true +Channel=LUMI_27 , ADC=1063, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 374, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 346, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 308, OverTh=true +Channel=LUMI_15 , ADC= 320, OverTh=true +Channel=LUMI_39 , ADC= 376, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 359, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 346, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 259, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 254, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 253, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30026 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 829, OverTh=true +Channel=LUMI_24 , ADC= 812, OverTh=true +Channel=LUMI_01 , ADC= 870, OverTh=true +Channel=LUMI_25 , ADC= 825, OverTh=true +Channel=LUMI_02 , ADC= 879, OverTh=true +Channel=LUMI_26 , ADC= 669, OverTh=true +Channel=LUMI_03 , ADC= 900, OverTh=true +Channel=LUMI_27 , ADC= 948, OverTh=true +Channel=LUMI_04 , ADC= 275, OverTh=true +Channel=LUMI_28 , ADC= 242, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 338, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 290, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 283, OverTh=true +Channel=LUMI_40 , ADC= 258, OverTh=true +Channel=LUMI_23 , ADC= 234, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 346, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 259, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 254, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 260, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 260, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 259, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 260, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30027 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 822, OverTh=true +Channel=LUMI_24 , ADC= 927, OverTh=true +Channel=LUMI_01 , ADC= 861, OverTh=true +Channel=LUMI_25 , ADC= 891, OverTh=true +Channel=LUMI_02 , ADC= 955, OverTh=true +Channel=LUMI_26 , ADC= 868, OverTh=true +Channel=LUMI_03 , ADC= 935, OverTh=true +Channel=LUMI_27 , ADC=1013, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 307, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 369, OverTh=true +Channel=LUMI_16 , ADC= 328, OverTh=true +Channel=LUMI_40 , ADC= 356, OverTh=true +Channel=LUMI_23 , ADC= 353, OverTh=true +Channel=LUMI_47 , ADC= 336, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 343, OverTh=false +Channel=PIN_03 , ADC= 318, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 253, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30028 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 888, OverTh=true +Channel=LUMI_24 , ADC= 848, OverTh=true +Channel=LUMI_01 , ADC= 899, OverTh=true +Channel=LUMI_25 , ADC= 833, OverTh=true +Channel=LUMI_02 , ADC= 862, OverTh=true +Channel=LUMI_26 , ADC= 742, OverTh=true +Channel=LUMI_03 , ADC= 844, OverTh=true +Channel=LUMI_27 , ADC= 909, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 340, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 343, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 259, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 253, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 254, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 260, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 253, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 260, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30029 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 843, OverTh=true +Channel=LUMI_24 , ADC=1010, OverTh=true +Channel=LUMI_01 , ADC= 840, OverTh=true +Channel=LUMI_25 , ADC= 921, OverTh=true +Channel=LUMI_02 , ADC= 920, OverTh=true +Channel=LUMI_26 , ADC= 842, OverTh=true +Channel=LUMI_03 , ADC= 923, OverTh=true +Channel=LUMI_27 , ADC=1022, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 334, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 259, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 259, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 254, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30031 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 764, OverTh=true +Channel=LUMI_24 , ADC= 935, OverTh=true +Channel=LUMI_01 , ADC= 942, OverTh=true +Channel=LUMI_25 , ADC= 888, OverTh=true +Channel=LUMI_02 , ADC= 872, OverTh=true +Channel=LUMI_26 , ADC= 806, OverTh=true +Channel=LUMI_03 , ADC= 950, OverTh=true +Channel=LUMI_27 , ADC= 938, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 369, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 359, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 342, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 253, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 261, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 260, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 253, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 253, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 259, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 259, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 254, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 254, OverTh=false +Channel=TIME_35_07, ADC= 254, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30030 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 774, OverTh=true +Channel=LUMI_24 , ADC= 782, OverTh=true +Channel=LUMI_01 , ADC= 794, OverTh=true +Channel=LUMI_25 , ADC= 859, OverTh=true +Channel=LUMI_02 , ADC= 872, OverTh=true +Channel=LUMI_26 , ADC= 721, OverTh=true +Channel=LUMI_03 , ADC= 875, OverTh=true +Channel=LUMI_27 , ADC=1054, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 290, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 318, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 262, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 253, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 260, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 260, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 259, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 260, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 259, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30032 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 904, OverTh=true +Channel=LUMI_24 , ADC= 834, OverTh=true +Channel=LUMI_01 , ADC= 900, OverTh=true +Channel=LUMI_25 , ADC= 780, OverTh=true +Channel=LUMI_02 , ADC= 930, OverTh=true +Channel=LUMI_26 , ADC= 783, OverTh=true +Channel=LUMI_03 , ADC= 885, OverTh=true +Channel=LUMI_27 , ADC= 972, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 234, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 254, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 259, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 253, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 253, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 253, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30033 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 812, OverTh=true +Channel=LUMI_24 , ADC=1016, OverTh=true +Channel=LUMI_01 , ADC= 798, OverTh=true +Channel=LUMI_25 , ADC= 938, OverTh=true +Channel=LUMI_02 , ADC= 929, OverTh=true +Channel=LUMI_26 , ADC= 814, OverTh=true +Channel=LUMI_03 , ADC=1034, OverTh=true +Channel=LUMI_27 , ADC=1061, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 347, OverTh=false +Channel=PIN_08 , ADC= 345, OverTh=false +Channel=PIN_09 , ADC= 350, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30034 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 865, OverTh=true +Channel=LUMI_24 , ADC= 771, OverTh=true +Channel=LUMI_01 , ADC= 851, OverTh=true +Channel=LUMI_25 , ADC= 818, OverTh=true +Channel=LUMI_02 , ADC= 890, OverTh=true +Channel=LUMI_26 , ADC= 691, OverTh=true +Channel=LUMI_03 , ADC= 924, OverTh=true +Channel=LUMI_27 , ADC= 994, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 296, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 343, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 344, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 260, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 260, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 254, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 260, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 254, OverTh=false +Channel=TIME_11_00, ADC= 254, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 254, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30036 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 807, OverTh=true +Channel=LUMI_24 , ADC= 844, OverTh=true +Channel=LUMI_01 , ADC= 903, OverTh=true +Channel=LUMI_25 , ADC= 779, OverTh=true +Channel=LUMI_02 , ADC= 807, OverTh=true +Channel=LUMI_26 , ADC= 715, OverTh=true +Channel=LUMI_03 , ADC= 826, OverTh=true +Channel=LUMI_27 , ADC= 986, OverTh=true +Channel=LUMI_04 , ADC= 275, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 286, OverTh=true +Channel=LUMI_36 , ADC= 227, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 279, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 258, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 326, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 330, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 254, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 252, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 253, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 260, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 259, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30035 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 866, OverTh=true +Channel=LUMI_24 , ADC=1021, OverTh=true +Channel=LUMI_01 , ADC= 897, OverTh=true +Channel=LUMI_25 , ADC= 918, OverTh=true +Channel=LUMI_02 , ADC= 903, OverTh=true +Channel=LUMI_26 , ADC= 779, OverTh=true +Channel=LUMI_03 , ADC= 984, OverTh=true +Channel=LUMI_27 , ADC= 957, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 254, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 259, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30037 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 793, OverTh=true +Channel=LUMI_24 , ADC= 935, OverTh=true +Channel=LUMI_01 , ADC= 913, OverTh=true +Channel=LUMI_25 , ADC= 900, OverTh=true +Channel=LUMI_02 , ADC= 932, OverTh=true +Channel=LUMI_26 , ADC= 818, OverTh=true +Channel=LUMI_03 , ADC= 918, OverTh=true +Channel=LUMI_27 , ADC=1052, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 250, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 325, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 343, OverTh=false +Channel=PIN_08 , ADC= 351, OverTh=false +Channel=PIN_09 , ADC= 350, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 253, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 262, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 253, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30038 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 811, OverTh=true +Channel=LUMI_24 , ADC= 789, OverTh=true +Channel=LUMI_01 , ADC= 878, OverTh=true +Channel=LUMI_25 , ADC= 819, OverTh=true +Channel=LUMI_02 , ADC= 859, OverTh=true +Channel=LUMI_26 , ADC= 683, OverTh=true +Channel=LUMI_03 , ADC= 901, OverTh=true +Channel=LUMI_27 , ADC= 940, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 262, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 253, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 260, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 259, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 254, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 259, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 254, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30039 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 824, OverTh=true +Channel=LUMI_24 , ADC=1008, OverTh=true +Channel=LUMI_01 , ADC= 921, OverTh=true +Channel=LUMI_25 , ADC= 947, OverTh=true +Channel=LUMI_02 , ADC= 828, OverTh=true +Channel=LUMI_26 , ADC= 888, OverTh=true +Channel=LUMI_03 , ADC= 880, OverTh=true +Channel=LUMI_27 , ADC= 960, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 250, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 253, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 253, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 260, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30041 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 851, OverTh=true +Channel=LUMI_24 , ADC= 913, OverTh=true +Channel=LUMI_01 , ADC= 792, OverTh=true +Channel=LUMI_25 , ADC= 977, OverTh=true +Channel=LUMI_02 , ADC= 896, OverTh=true +Channel=LUMI_26 , ADC= 799, OverTh=true +Channel=LUMI_03 , ADC= 972, OverTh=true +Channel=LUMI_27 , ADC= 977, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 334, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 260, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30040 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 835, OverTh=true +Channel=LUMI_24 , ADC= 772, OverTh=true +Channel=LUMI_01 , ADC= 895, OverTh=true +Channel=LUMI_25 , ADC= 844, OverTh=true +Channel=LUMI_02 , ADC= 905, OverTh=true +Channel=LUMI_26 , ADC= 731, OverTh=true +Channel=LUMI_03 , ADC= 878, OverTh=true +Channel=LUMI_27 , ADC= 915, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 331, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 332, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 246, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 260, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 260, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 260, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 254, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30042 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 881, OverTh=true +Channel=LUMI_24 , ADC= 843, OverTh=true +Channel=LUMI_01 , ADC= 905, OverTh=true +Channel=LUMI_25 , ADC= 795, OverTh=true +Channel=LUMI_02 , ADC= 877, OverTh=true +Channel=LUMI_26 , ADC= 726, OverTh=true +Channel=LUMI_03 , ADC= 803, OverTh=true +Channel=LUMI_27 , ADC= 976, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 342, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 347, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 253, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30043 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 865, OverTh=true +Channel=LUMI_24 , ADC= 911, OverTh=true +Channel=LUMI_01 , ADC= 903, OverTh=true +Channel=LUMI_25 , ADC= 885, OverTh=true +Channel=LUMI_02 , ADC= 806, OverTh=true +Channel=LUMI_26 , ADC= 796, OverTh=true +Channel=LUMI_03 , ADC= 929, OverTh=true +Channel=LUMI_27 , ADC=1010, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 359, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 342, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 343, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 355, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 260, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 253, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 254, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 260, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 260, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30045 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 863, OverTh=true +Channel=LUMI_24 , ADC= 968, OverTh=true +Channel=LUMI_01 , ADC= 846, OverTh=true +Channel=LUMI_25 , ADC= 809, OverTh=true +Channel=LUMI_02 , ADC= 953, OverTh=true +Channel=LUMI_26 , ADC= 855, OverTh=true +Channel=LUMI_03 , ADC= 877, OverTh=true +Channel=LUMI_27 , ADC= 942, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 375, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 346, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 359, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 326, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 337, OverTh=false +Channel=PIN_06 , ADC= 245, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 253, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 261, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 254, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 254, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30044 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 876, OverTh=true +Channel=LUMI_24 , ADC= 803, OverTh=true +Channel=LUMI_01 , ADC= 853, OverTh=true +Channel=LUMI_25 , ADC= 801, OverTh=true +Channel=LUMI_02 , ADC= 885, OverTh=true +Channel=LUMI_26 , ADC= 741, OverTh=true +Channel=LUMI_03 , ADC= 864, OverTh=true +Channel=LUMI_27 , ADC= 978, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 280, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 324, OverTh=false +Channel=PIN_02 , ADC= 345, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 344, OverTh=false +Channel=PIN_09 , ADC= 350, OverTh=false +Channel=PIN_06 , ADC= 245, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 253, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 261, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 254, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 261, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 254, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30046 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 783, OverTh=true +Channel=LUMI_24 , ADC= 826, OverTh=true +Channel=LUMI_01 , ADC= 807, OverTh=true +Channel=LUMI_25 , ADC= 765, OverTh=true +Channel=LUMI_02 , ADC= 894, OverTh=true +Channel=LUMI_26 , ADC= 779, OverTh=true +Channel=LUMI_03 , ADC= 861, OverTh=true +Channel=LUMI_27 , ADC= 907, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 344, OverTh=false +Channel=PIN_03 , ADC= 316, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 259, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 259, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 253, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30047 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 836, OverTh=true +Channel=LUMI_24 , ADC= 940, OverTh=true +Channel=LUMI_01 , ADC= 853, OverTh=true +Channel=LUMI_25 , ADC= 888, OverTh=true +Channel=LUMI_02 , ADC= 837, OverTh=true +Channel=LUMI_26 , ADC= 872, OverTh=true +Channel=LUMI_03 , ADC= 894, OverTh=true +Channel=LUMI_27 , ADC=1080, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 359, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 253, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 261, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 254, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30048 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 871, OverTh=true +Channel=LUMI_24 , ADC= 775, OverTh=true +Channel=LUMI_01 , ADC= 878, OverTh=true +Channel=LUMI_25 , ADC= 826, OverTh=true +Channel=LUMI_02 , ADC= 913, OverTh=true +Channel=LUMI_26 , ADC= 701, OverTh=true +Channel=LUMI_03 , ADC= 807, OverTh=true +Channel=LUMI_27 , ADC= 974, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 334, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 262, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 260, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 253, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 260, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 254, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 259, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 254, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 254, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 259, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 253, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30049 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 825, OverTh=true +Channel=LUMI_24 , ADC= 943, OverTh=true +Channel=LUMI_01 , ADC= 885, OverTh=true +Channel=LUMI_25 , ADC= 869, OverTh=true +Channel=LUMI_02 , ADC= 870, OverTh=true +Channel=LUMI_26 , ADC= 846, OverTh=true +Channel=LUMI_03 , ADC= 950, OverTh=true +Channel=LUMI_27 , ADC= 966, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 310, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 346, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 253, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 260, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 254, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30050 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 821, OverTh=true +Channel=LUMI_24 , ADC= 781, OverTh=true +Channel=LUMI_01 , ADC= 884, OverTh=true +Channel=LUMI_25 , ADC= 851, OverTh=true +Channel=LUMI_02 , ADC= 857, OverTh=true +Channel=LUMI_26 , ADC= 711, OverTh=true +Channel=LUMI_03 , ADC= 915, OverTh=true +Channel=LUMI_27 , ADC= 952, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 258, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 313, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 340, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 262, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 259, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 254, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30051 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 917, OverTh=true +Channel=LUMI_24 , ADC=1012, OverTh=true +Channel=LUMI_01 , ADC= 821, OverTh=true +Channel=LUMI_25 , ADC= 911, OverTh=true +Channel=LUMI_02 , ADC= 802, OverTh=true +Channel=LUMI_26 , ADC= 897, OverTh=true +Channel=LUMI_03 , ADC= 902, OverTh=true +Channel=LUMI_27 , ADC=1014, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 328, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 260, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 252, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 253, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 254, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30052 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 864, OverTh=true +Channel=LUMI_24 , ADC= 802, OverTh=true +Channel=LUMI_01 , ADC= 960, OverTh=true +Channel=LUMI_25 , ADC= 771, OverTh=true +Channel=LUMI_02 , ADC= 838, OverTh=true +Channel=LUMI_26 , ADC= 679, OverTh=true +Channel=LUMI_03 , ADC= 891, OverTh=true +Channel=LUMI_27 , ADC= 927, OverTh=true +Channel=LUMI_04 , ADC= 281, OverTh=true +Channel=LUMI_28 , ADC= 249, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 275, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 237, OverTh=true +Channel=LUMI_16 , ADC= 288, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 315, OverTh=false +Channel=PIN_02 , ADC= 331, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 344, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 261, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 254, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 259, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30053 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 857, OverTh=true +Channel=LUMI_24 , ADC=1038, OverTh=true +Channel=LUMI_01 , ADC= 864, OverTh=true +Channel=LUMI_25 , ADC= 884, OverTh=true +Channel=LUMI_02 , ADC= 853, OverTh=true +Channel=LUMI_26 , ADC= 849, OverTh=true +Channel=LUMI_03 , ADC= 921, OverTh=true +Channel=LUMI_27 , ADC= 966, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 352, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 343, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 344, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 253, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 260, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 260, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 254, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30055 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 911, OverTh=true +Channel=LUMI_24 , ADC= 957, OverTh=true +Channel=LUMI_01 , ADC= 865, OverTh=true +Channel=LUMI_25 , ADC= 946, OverTh=true +Channel=LUMI_02 , ADC= 929, OverTh=true +Channel=LUMI_26 , ADC= 827, OverTh=true +Channel=LUMI_03 , ADC= 971, OverTh=true +Channel=LUMI_27 , ADC= 986, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 340, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 343, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 260, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30056 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 817, OverTh=true +Channel=LUMI_24 , ADC= 814, OverTh=true +Channel=LUMI_01 , ADC= 853, OverTh=true +Channel=LUMI_25 , ADC= 803, OverTh=true +Channel=LUMI_02 , ADC= 931, OverTh=true +Channel=LUMI_26 , ADC= 733, OverTh=true +Channel=LUMI_03 , ADC= 875, OverTh=true +Channel=LUMI_27 , ADC= 930, OverTh=true +Channel=LUMI_04 , ADC= 276, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 347, OverTh=false +Channel=PIN_08 , ADC= 334, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 261, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 259, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 260, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 259, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30054 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 873, OverTh=true +Channel=LUMI_24 , ADC= 780, OverTh=true +Channel=LUMI_01 , ADC= 924, OverTh=true +Channel=LUMI_25 , ADC= 885, OverTh=true +Channel=LUMI_02 , ADC= 865, OverTh=true +Channel=LUMI_26 , ADC= 729, OverTh=true +Channel=LUMI_03 , ADC= 884, OverTh=true +Channel=LUMI_27 , ADC= 984, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 342, OverTh=false +Channel=PIN_03 , ADC= 320, OverTh=false +Channel=PIN_04 , ADC= 343, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 359, OverTh=false +Channel=PIN_06 , ADC= 244, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 260, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 254, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 259, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 260, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30057 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 866, OverTh=true +Channel=LUMI_24 , ADC= 976, OverTh=true +Channel=LUMI_01 , ADC= 821, OverTh=true +Channel=LUMI_25 , ADC= 964, OverTh=true +Channel=LUMI_02 , ADC= 922, OverTh=true +Channel=LUMI_26 , ADC= 873, OverTh=true +Channel=LUMI_03 , ADC= 863, OverTh=true +Channel=LUMI_27 , ADC=1052, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 320, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 344, OverTh=false +Channel=PIN_09 , ADC= 353, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 260, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 253, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30058 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 828, OverTh=true +Channel=LUMI_24 , ADC= 827, OverTh=true +Channel=LUMI_01 , ADC= 862, OverTh=true +Channel=LUMI_25 , ADC= 812, OverTh=true +Channel=LUMI_02 , ADC= 879, OverTh=true +Channel=LUMI_26 , ADC= 761, OverTh=true +Channel=LUMI_03 , ADC= 923, OverTh=true +Channel=LUMI_27 , ADC= 999, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 242, OverTh=true +Channel=LUMI_12 , ADC= 287, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 296, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 264, OverTh=true +Channel=LUMI_23 , ADC= 240, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 334, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 260, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 253, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30059 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 836, OverTh=true +Channel=LUMI_24 , ADC= 954, OverTh=true +Channel=LUMI_01 , ADC= 860, OverTh=true +Channel=LUMI_25 , ADC= 930, OverTh=true +Channel=LUMI_02 , ADC= 866, OverTh=true +Channel=LUMI_26 , ADC= 859, OverTh=true +Channel=LUMI_03 , ADC= 911, OverTh=true +Channel=LUMI_27 , ADC= 967, OverTh=true +Channel=LUMI_04 , ADC= 311, OverTh=true +Channel=LUMI_28 , ADC= 360, OverTh=true +Channel=LUMI_12 , ADC= 309, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 250, OverTh=true +Channel=LUMI_37 , ADC= 345, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 306, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 324, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 327, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 254, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 260, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30060 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 810, OverTh=true +Channel=LUMI_24 , ADC= 865, OverTh=true +Channel=LUMI_01 , ADC= 848, OverTh=true +Channel=LUMI_25 , ADC= 845, OverTh=true +Channel=LUMI_02 , ADC= 729, OverTh=true +Channel=LUMI_26 , ADC= 690, OverTh=true +Channel=LUMI_03 , ADC= 891, OverTh=true +Channel=LUMI_27 , ADC= 962, OverTh=true +Channel=LUMI_04 , ADC= 273, OverTh=true +Channel=LUMI_28 , ADC= 241, OverTh=true +Channel=LUMI_12 , ADC= 287, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 280, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 240, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30061 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 839, OverTh=true +Channel=LUMI_24 , ADC= 922, OverTh=true +Channel=LUMI_01 , ADC= 842, OverTh=true +Channel=LUMI_25 , ADC= 853, OverTh=true +Channel=LUMI_02 , ADC= 854, OverTh=true +Channel=LUMI_26 , ADC= 760, OverTh=true +Channel=LUMI_03 , ADC= 920, OverTh=true +Channel=LUMI_27 , ADC=1055, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 361, OverTh=true +Channel=LUMI_12 , ADC= 309, OverTh=true +Channel=LUMI_36 , ADC= 374, OverTh=true +Channel=LUMI_13 , ADC= 249, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 342, OverTh=false +Channel=PIN_09 , ADC= 353, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 254, OverTh=false +Channel=TIME_05_14, ADC= 254, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 254, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 260, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30062 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 816, OverTh=true +Channel=LUMI_24 , ADC= 785, OverTh=true +Channel=LUMI_01 , ADC= 869, OverTh=true +Channel=LUMI_25 , ADC= 784, OverTh=true +Channel=LUMI_02 , ADC= 817, OverTh=true +Channel=LUMI_26 , ADC= 680, OverTh=true +Channel=LUMI_03 , ADC= 899, OverTh=true +Channel=LUMI_27 , ADC= 905, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 314, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 337, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 262, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 259, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 260, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30063 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 889, OverTh=true +Channel=LUMI_24 , ADC= 988, OverTh=true +Channel=LUMI_01 , ADC= 905, OverTh=true +Channel=LUMI_25 , ADC= 881, OverTh=true +Channel=LUMI_02 , ADC= 910, OverTh=true +Channel=LUMI_26 , ADC= 863, OverTh=true +Channel=LUMI_03 , ADC= 925, OverTh=true +Channel=LUMI_27 , ADC= 963, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 316, OverTh=false +Channel=PIN_04 , ADC= 348, OverTh=false +Channel=PIN_08 , ADC= 334, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 254, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30064 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 904, OverTh=true +Channel=LUMI_24 , ADC= 868, OverTh=true +Channel=LUMI_01 , ADC= 790, OverTh=true +Channel=LUMI_25 , ADC= 834, OverTh=true +Channel=LUMI_02 , ADC= 856, OverTh=true +Channel=LUMI_26 , ADC= 690, OverTh=true +Channel=LUMI_03 , ADC= 884, OverTh=true +Channel=LUMI_27 , ADC= 941, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 342, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 260, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 253, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 254, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 254, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 253, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30067 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 867, OverTh=true +Channel=LUMI_24 , ADC= 983, OverTh=true +Channel=LUMI_01 , ADC= 841, OverTh=true +Channel=LUMI_25 , ADC= 986, OverTh=true +Channel=LUMI_02 , ADC= 923, OverTh=true +Channel=LUMI_26 , ADC= 866, OverTh=true +Channel=LUMI_03 , ADC= 941, OverTh=true +Channel=LUMI_27 , ADC=1006, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 355, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 253, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30065 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 806, OverTh=true +Channel=LUMI_24 , ADC= 913, OverTh=true +Channel=LUMI_01 , ADC= 783, OverTh=true +Channel=LUMI_25 , ADC= 887, OverTh=true +Channel=LUMI_02 , ADC= 840, OverTh=true +Channel=LUMI_26 , ADC= 861, OverTh=true +Channel=LUMI_03 , ADC= 879, OverTh=true +Channel=LUMI_27 , ADC=1048, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 310, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 255, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 308, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 343, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 259, OverTh=false +Channel=TIME_11_11, ADC= 259, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30066 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 808, OverTh=true +Channel=LUMI_24 , ADC= 762, OverTh=true +Channel=LUMI_01 , ADC= 848, OverTh=true +Channel=LUMI_25 , ADC= 860, OverTh=true +Channel=LUMI_02 , ADC= 905, OverTh=true +Channel=LUMI_26 , ADC= 738, OverTh=true +Channel=LUMI_03 , ADC= 918, OverTh=true +Channel=LUMI_27 , ADC= 962, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 242, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 330, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 253, OverTh=false +Channel=TIME_29_00, ADC= 254, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 261, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30068 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 856, OverTh=true +Channel=LUMI_24 , ADC= 775, OverTh=true +Channel=LUMI_01 , ADC= 903, OverTh=true +Channel=LUMI_25 , ADC= 787, OverTh=true +Channel=LUMI_02 , ADC= 917, OverTh=true +Channel=LUMI_26 , ADC= 675, OverTh=true +Channel=LUMI_03 , ADC= 831, OverTh=true +Channel=LUMI_27 , ADC=1051, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 227, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 321, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 254, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 260, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 259, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 260, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 253, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 259, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 259, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30069 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 795, OverTh=true +Channel=LUMI_24 , ADC= 970, OverTh=true +Channel=LUMI_01 , ADC= 797, OverTh=true +Channel=LUMI_25 , ADC= 892, OverTh=true +Channel=LUMI_02 , ADC= 870, OverTh=true +Channel=LUMI_26 , ADC= 798, OverTh=true +Channel=LUMI_03 , ADC= 898, OverTh=true +Channel=LUMI_27 , ADC=1011, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 306, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 352, OverTh=false +Channel=PIN_09 , ADC= 352, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 261, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 262, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 253, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 260, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 254, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30070 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 848, OverTh=true +Channel=LUMI_24 , ADC= 864, OverTh=true +Channel=LUMI_01 , ADC= 913, OverTh=true +Channel=LUMI_25 , ADC= 845, OverTh=true +Channel=LUMI_02 , ADC= 939, OverTh=true +Channel=LUMI_26 , ADC= 764, OverTh=true +Channel=LUMI_03 , ADC= 939, OverTh=true +Channel=LUMI_27 , ADC= 997, OverTh=true +Channel=LUMI_04 , ADC= 281, OverTh=true +Channel=LUMI_28 , ADC= 247, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 280, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 334, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 252, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 259, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 259, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 260, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30072 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 819, OverTh=true +Channel=LUMI_24 , ADC= 786, OverTh=true +Channel=LUMI_01 , ADC= 845, OverTh=true +Channel=LUMI_25 , ADC= 800, OverTh=true +Channel=LUMI_02 , ADC= 893, OverTh=true +Channel=LUMI_26 , ADC= 683, OverTh=true +Channel=LUMI_03 , ADC= 896, OverTh=true +Channel=LUMI_27 , ADC= 991, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 248, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 288, OverTh=true +Channel=LUMI_40 , ADC= 264, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 328, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 320, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 253, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 260, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 259, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30071 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 826, OverTh=true +Channel=LUMI_24 , ADC= 984, OverTh=true +Channel=LUMI_01 , ADC= 853, OverTh=true +Channel=LUMI_25 , ADC= 842, OverTh=true +Channel=LUMI_02 , ADC= 863, OverTh=true +Channel=LUMI_26 , ADC= 842, OverTh=true +Channel=LUMI_03 , ADC= 978, OverTh=true +Channel=LUMI_27 , ADC=1067, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 249, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 342, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 253, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 259, OverTh=false +Channel=TIME_11_11, ADC= 259, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30073 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 905, OverTh=true +Channel=LUMI_24 , ADC=1017, OverTh=true +Channel=LUMI_01 , ADC= 857, OverTh=true +Channel=LUMI_25 , ADC= 844, OverTh=true +Channel=LUMI_02 , ADC= 821, OverTh=true +Channel=LUMI_26 , ADC= 913, OverTh=true +Channel=LUMI_03 , ADC= 917, OverTh=true +Channel=LUMI_27 , ADC=1014, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 342, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 327, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 334, OverTh=false +Channel=PIN_09 , ADC= 354, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 252, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 254, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 253, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 259, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30074 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 773, OverTh=true +Channel=LUMI_24 , ADC= 819, OverTh=true +Channel=LUMI_01 , ADC= 892, OverTh=true +Channel=LUMI_25 , ADC= 808, OverTh=true +Channel=LUMI_02 , ADC= 875, OverTh=true +Channel=LUMI_26 , ADC= 646, OverTh=true +Channel=LUMI_03 , ADC= 878, OverTh=true +Channel=LUMI_27 , ADC= 973, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 290, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 270, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 328, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 245, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 260, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 254, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 254, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 254, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 254, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 259, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 261, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30075 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 896, OverTh=true +Channel=LUMI_24 , ADC=1018, OverTh=true +Channel=LUMI_01 , ADC= 923, OverTh=true +Channel=LUMI_25 , ADC= 883, OverTh=true +Channel=LUMI_02 , ADC= 831, OverTh=true +Channel=LUMI_26 , ADC= 890, OverTh=true +Channel=LUMI_03 , ADC= 952, OverTh=true +Channel=LUMI_27 , ADC=1024, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 344, OverTh=false +Channel=PIN_03 , ADC= 334, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 341, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 260, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 259, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 254, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 259, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30077 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 930, OverTh=true +Channel=LUMI_24 , ADC= 996, OverTh=true +Channel=LUMI_01 , ADC= 868, OverTh=true +Channel=LUMI_25 , ADC= 969, OverTh=true +Channel=LUMI_02 , ADC= 889, OverTh=true +Channel=LUMI_26 , ADC= 924, OverTh=true +Channel=LUMI_03 , ADC= 937, OverTh=true +Channel=LUMI_27 , ADC= 971, OverTh=true +Channel=LUMI_04 , ADC= 318, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 308, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 377, OverTh=true +Channel=LUMI_16 , ADC= 336, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 342, OverTh=true +Channel=PIN_01 , ADC= 315, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 243, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 259, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 253, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 261, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30076 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 829, OverTh=true +Channel=LUMI_24 , ADC= 846, OverTh=true +Channel=LUMI_01 , ADC= 923, OverTh=true +Channel=LUMI_25 , ADC= 812, OverTh=true +Channel=LUMI_02 , ADC= 915, OverTh=true +Channel=LUMI_26 , ADC= 745, OverTh=true +Channel=LUMI_03 , ADC= 874, OverTh=true +Channel=LUMI_27 , ADC= 970, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 237, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 265, OverTh=true +Channel=LUMI_23 , ADC= 242, OverTh=true +Channel=LUMI_47 , ADC= 271, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 329, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 329, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 253, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30078 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 875, OverTh=true +Channel=LUMI_24 , ADC= 855, OverTh=true +Channel=LUMI_01 , ADC= 931, OverTh=true +Channel=LUMI_25 , ADC= 737, OverTh=true +Channel=LUMI_02 , ADC= 856, OverTh=true +Channel=LUMI_26 , ADC= 754, OverTh=true +Channel=LUMI_03 , ADC= 800, OverTh=true +Channel=LUMI_27 , ADC= 934, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 247, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 270, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 344, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 260, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 259, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 261, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 253, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30079 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 803, OverTh=true +Channel=LUMI_24 , ADC= 956, OverTh=true +Channel=LUMI_01 , ADC= 874, OverTh=true +Channel=LUMI_25 , ADC= 903, OverTh=true +Channel=LUMI_02 , ADC= 871, OverTh=true +Channel=LUMI_26 , ADC= 884, OverTh=true +Channel=LUMI_03 , ADC= 882, OverTh=true +Channel=LUMI_27 , ADC=1038, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 315, OverTh=true +Channel=LUMI_36 , ADC= 380, OverTh=true +Channel=LUMI_13 , ADC= 255, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 334, OverTh=false +Channel=PIN_09 , ADC= 349, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 261, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 260, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 260, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 260, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30080 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 912, OverTh=true +Channel=LUMI_24 , ADC= 839, OverTh=true +Channel=LUMI_01 , ADC= 927, OverTh=true +Channel=LUMI_25 , ADC= 844, OverTh=true +Channel=LUMI_02 , ADC= 943, OverTh=true +Channel=LUMI_26 , ADC= 686, OverTh=true +Channel=LUMI_03 , ADC= 786, OverTh=true +Channel=LUMI_27 , ADC= 982, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 345, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 335, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 261, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 260, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 259, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30082 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 849, OverTh=true +Channel=LUMI_24 , ADC= 888, OverTh=true +Channel=LUMI_01 , ADC= 899, OverTh=true +Channel=LUMI_25 , ADC= 779, OverTh=true +Channel=LUMI_02 , ADC= 893, OverTh=true +Channel=LUMI_26 , ADC= 754, OverTh=true +Channel=LUMI_03 , ADC= 903, OverTh=true +Channel=LUMI_27 , ADC= 957, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 247, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 233, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 276, OverTh=true +Channel=LUMI_38 , ADC= 285, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 327, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 260, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 254, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 260, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 259, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 259, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30081 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 885, OverTh=true +Channel=LUMI_24 , ADC= 919, OverTh=true +Channel=LUMI_01 , ADC= 833, OverTh=true +Channel=LUMI_25 , ADC= 878, OverTh=true +Channel=LUMI_02 , ADC= 848, OverTh=true +Channel=LUMI_26 , ADC= 846, OverTh=true +Channel=LUMI_03 , ADC= 986, OverTh=true +Channel=LUMI_27 , ADC=1041, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 315, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 344, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 259, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 254, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 259, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30083 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 779, OverTh=true +Channel=LUMI_24 , ADC= 931, OverTh=true +Channel=LUMI_01 , ADC= 850, OverTh=true +Channel=LUMI_25 , ADC= 839, OverTh=true +Channel=LUMI_02 , ADC= 899, OverTh=true +Channel=LUMI_26 , ADC= 817, OverTh=true +Channel=LUMI_03 , ADC= 978, OverTh=true +Channel=LUMI_27 , ADC= 927, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 367, OverTh=true +Channel=LUMI_12 , ADC= 316, OverTh=true +Channel=LUMI_36 , ADC= 381, OverTh=true +Channel=LUMI_13 , ADC= 255, OverTh=true +Channel=LUMI_37 , ADC= 353, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 335, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 259, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30084 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 862, OverTh=true +Channel=LUMI_24 , ADC= 792, OverTh=true +Channel=LUMI_01 , ADC= 881, OverTh=true +Channel=LUMI_25 , ADC= 850, OverTh=true +Channel=LUMI_02 , ADC= 907, OverTh=true +Channel=LUMI_26 , ADC= 724, OverTh=true +Channel=LUMI_03 , ADC= 859, OverTh=true +Channel=LUMI_27 , ADC=1029, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 331, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 332, OverTh=false +Channel=PIN_08 , ADC= 342, OverTh=false +Channel=PIN_09 , ADC= 357, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 254, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 260, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 254, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 254, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 253, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 254, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 260, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 253, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30086 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 829, OverTh=true +Channel=LUMI_24 , ADC= 729, OverTh=true +Channel=LUMI_01 , ADC= 863, OverTh=true +Channel=LUMI_25 , ADC= 829, OverTh=true +Channel=LUMI_02 , ADC= 907, OverTh=true +Channel=LUMI_26 , ADC= 740, OverTh=true +Channel=LUMI_03 , ADC= 874, OverTh=true +Channel=LUMI_27 , ADC=1036, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 348, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 331, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 252, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 253, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 260, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 259, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30085 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 806, OverTh=true +Channel=LUMI_24 , ADC= 964, OverTh=true +Channel=LUMI_01 , ADC= 811, OverTh=true +Channel=LUMI_25 , ADC= 923, OverTh=true +Channel=LUMI_02 , ADC= 876, OverTh=true +Channel=LUMI_26 , ADC= 856, OverTh=true +Channel=LUMI_03 , ADC= 911, OverTh=true +Channel=LUMI_27 , ADC=1011, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 330, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 260, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 259, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30087 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 845, OverTh=true +Channel=LUMI_24 , ADC= 960, OverTh=true +Channel=LUMI_01 , ADC= 851, OverTh=true +Channel=LUMI_25 , ADC= 965, OverTh=true +Channel=LUMI_02 , ADC= 857, OverTh=true +Channel=LUMI_26 , ADC= 838, OverTh=true +Channel=LUMI_03 , ADC= 902, OverTh=true +Channel=LUMI_27 , ADC= 999, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 320, OverTh=false +Channel=PIN_04 , ADC= 345, OverTh=false +Channel=PIN_08 , ADC= 343, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 254, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 253, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 259, OverTh=false +Channel=TIME_05_15, ADC= 254, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 254, OverTh=false +Channel=TIME_35_10, ADC= 260, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 260, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30088 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 822, OverTh=true +Channel=LUMI_24 , ADC= 825, OverTh=true +Channel=LUMI_01 , ADC= 807, OverTh=true +Channel=LUMI_25 , ADC= 832, OverTh=true +Channel=LUMI_02 , ADC= 845, OverTh=true +Channel=LUMI_26 , ADC= 751, OverTh=true +Channel=LUMI_03 , ADC= 887, OverTh=true +Channel=LUMI_27 , ADC= 997, OverTh=true +Channel=LUMI_04 , ADC= 275, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 287, OverTh=true +Channel=LUMI_36 , ADC= 227, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 280, OverTh=true +Channel=LUMI_15 , ADC= 290, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 258, OverTh=true +Channel=LUMI_23 , ADC= 234, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 344, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 252, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 254, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30089 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 887, OverTh=true +Channel=LUMI_24 , ADC=1094, OverTh=true +Channel=LUMI_01 , ADC= 904, OverTh=true +Channel=LUMI_25 , ADC= 893, OverTh=true +Channel=LUMI_02 , ADC= 805, OverTh=true +Channel=LUMI_26 , ADC= 833, OverTh=true +Channel=LUMI_03 , ADC= 951, OverTh=true +Channel=LUMI_27 , ADC=1076, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 361, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 250, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 313, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 345, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 260, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 260, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 260, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 259, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 259, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 259, OverTh=false +Channel=TIME_11_09, ADC= 254, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 254, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 253, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30090 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 822, OverTh=true +Channel=LUMI_24 , ADC= 840, OverTh=true +Channel=LUMI_01 , ADC= 883, OverTh=true +Channel=LUMI_25 , ADC= 840, OverTh=true +Channel=LUMI_02 , ADC= 894, OverTh=true +Channel=LUMI_26 , ADC= 727, OverTh=true +Channel=LUMI_03 , ADC= 907, OverTh=true +Channel=LUMI_27 , ADC= 935, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 330, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 259, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 260, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30091 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 849, OverTh=true +Channel=LUMI_24 , ADC= 964, OverTh=true +Channel=LUMI_01 , ADC= 837, OverTh=true +Channel=LUMI_25 , ADC= 925, OverTh=true +Channel=LUMI_02 , ADC= 889, OverTh=true +Channel=LUMI_26 , ADC= 846, OverTh=true +Channel=LUMI_03 , ADC= 904, OverTh=true +Channel=LUMI_27 , ADC=1010, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 330, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 252, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 252, OverTh=false +Channel=TIME_05_04, ADC= 253, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 254, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 253, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 260, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 260, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30092 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 842, OverTh=true +Channel=LUMI_24 , ADC= 829, OverTh=true +Channel=LUMI_01 , ADC= 964, OverTh=true +Channel=LUMI_25 , ADC= 744, OverTh=true +Channel=LUMI_02 , ADC= 814, OverTh=true +Channel=LUMI_26 , ADC= 794, OverTh=true +Channel=LUMI_03 , ADC= 879, OverTh=true +Channel=LUMI_27 , ADC= 964, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 240, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 347, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 246, OverTh=false +Channel=PIN_07 , ADC= 260, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 262, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 261, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 254, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 253, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 259, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 254, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30093 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 772, OverTh=true +Channel=LUMI_24 , ADC= 994, OverTh=true +Channel=LUMI_01 , ADC= 831, OverTh=true +Channel=LUMI_25 , ADC= 938, OverTh=true +Channel=LUMI_02 , ADC= 942, OverTh=true +Channel=LUMI_26 , ADC= 877, OverTh=true +Channel=LUMI_03 , ADC= 896, OverTh=true +Channel=LUMI_27 , ADC=1042, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 329, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 262, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 253, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 253, OverTh=true +Channel=LUMI_45 , ADC= 253, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 260, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 254, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30094 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 822, OverTh=true +Channel=LUMI_24 , ADC= 888, OverTh=true +Channel=LUMI_01 , ADC= 919, OverTh=true +Channel=LUMI_25 , ADC= 848, OverTh=true +Channel=LUMI_02 , ADC= 896, OverTh=true +Channel=LUMI_26 , ADC= 667, OverTh=true +Channel=LUMI_03 , ADC= 908, OverTh=true +Channel=LUMI_27 , ADC=1013, OverTh=true +Channel=LUMI_04 , ADC= 275, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 240, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 279, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 326, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 349, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30095 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 813, OverTh=true +Channel=LUMI_24 , ADC= 967, OverTh=true +Channel=LUMI_01 , ADC= 893, OverTh=true +Channel=LUMI_25 , ADC= 882, OverTh=true +Channel=LUMI_02 , ADC= 831, OverTh=true +Channel=LUMI_26 , ADC= 864, OverTh=true +Channel=LUMI_03 , ADC= 976, OverTh=true +Channel=LUMI_27 , ADC= 948, OverTh=true +Channel=LUMI_04 , ADC= 311, OverTh=true +Channel=LUMI_28 , ADC= 361, OverTh=true +Channel=LUMI_12 , ADC= 310, OverTh=true +Channel=LUMI_36 , ADC= 374, OverTh=true +Channel=LUMI_13 , ADC= 249, OverTh=true +Channel=LUMI_37 , ADC= 346, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 336, OverTh=true +Channel=PIN_01 , ADC= 327, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 335, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 326, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 246, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 260, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 260, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 260, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 254, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 254, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30097 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 858, OverTh=true +Channel=LUMI_24 , ADC= 942, OverTh=true +Channel=LUMI_01 , ADC= 901, OverTh=true +Channel=LUMI_25 , ADC= 875, OverTh=true +Channel=LUMI_02 , ADC= 899, OverTh=true +Channel=LUMI_26 , ADC= 832, OverTh=true +Channel=LUMI_03 , ADC= 873, OverTh=true +Channel=LUMI_27 , ADC= 938, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 345, OverTh=false +Channel=PIN_08 , ADC= 330, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 253, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 259, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 260, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 254, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30096 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 845, OverTh=true +Channel=LUMI_24 , ADC= 766, OverTh=true +Channel=LUMI_01 , ADC= 841, OverTh=true +Channel=LUMI_25 , ADC= 846, OverTh=true +Channel=LUMI_02 , ADC= 897, OverTh=true +Channel=LUMI_26 , ADC= 731, OverTh=true +Channel=LUMI_03 , ADC= 832, OverTh=true +Channel=LUMI_27 , ADC=1002, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 242, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 258, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 330, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 265, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 261, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 260, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30098 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 801, OverTh=true +Channel=LUMI_24 , ADC= 854, OverTh=true +Channel=LUMI_01 , ADC= 945, OverTh=true +Channel=LUMI_25 , ADC= 822, OverTh=true +Channel=LUMI_02 , ADC= 850, OverTh=true +Channel=LUMI_26 , ADC= 802, OverTh=true +Channel=LUMI_03 , ADC= 802, OverTh=true +Channel=LUMI_27 , ADC= 949, OverTh=true +Channel=LUMI_04 , ADC= 276, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 346, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 240, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 350, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 262, OverTh=true +Channel=LUMI_30 , ADC= 253, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 270, OverTh=true +Channel=LUMI_08 , ADC= 253, OverTh=true +Channel=LUMI_32 , ADC= 260, OverTh=true +Channel=LUMI_09 , ADC= 245, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 263, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 253, OverTh=true +Channel=LUMI_43 , ADC= 265, OverTh=true +Channel=LUMI_20 , ADC= 260, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 253, OverTh=true +Channel=LUMI_45 , ADC= 252, OverTh=true +Channel=LUMI_22 , ADC= 260, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 259, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 259, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 259, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 260, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 260, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 253, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 253, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30099 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 809, OverTh=true +Channel=LUMI_24 , ADC= 932, OverTh=true +Channel=LUMI_01 , ADC= 894, OverTh=true +Channel=LUMI_25 , ADC= 909, OverTh=true +Channel=LUMI_02 , ADC= 917, OverTh=true +Channel=LUMI_26 , ADC= 881, OverTh=true +Channel=LUMI_03 , ADC= 943, OverTh=true +Channel=LUMI_27 , ADC=1007, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 346, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 377, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 349, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 346, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 265, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 266, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 262, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 250, OverTh=true +Channel=LUMI_41 , ADC= 262, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 261, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 260, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 259, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30100 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 877, OverTh=true +Channel=LUMI_24 , ADC= 841, OverTh=true +Channel=LUMI_01 , ADC= 844, OverTh=true +Channel=LUMI_25 , ADC= 787, OverTh=true +Channel=LUMI_02 , ADC= 835, OverTh=true +Channel=LUMI_26 , ADC= 791, OverTh=true +Channel=LUMI_03 , ADC= 851, OverTh=true +Channel=LUMI_27 , ADC=1017, OverTh=true +Channel=LUMI_04 , ADC= 284, OverTh=true +Channel=LUMI_28 , ADC= 249, OverTh=true +Channel=LUMI_12 , ADC= 294, OverTh=true +Channel=LUMI_36 , ADC= 233, OverTh=true +Channel=LUMI_13 , ADC= 344, OverTh=true +Channel=LUMI_37 , ADC= 248, OverTh=true +Channel=LUMI_14 , ADC= 278, OverTh=true +Channel=LUMI_38 , ADC= 286, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 264, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 253, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 259, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 259, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 254, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30101 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 859, OverTh=true +Channel=LUMI_24 , ADC=1001, OverTh=true +Channel=LUMI_01 , ADC= 911, OverTh=true +Channel=LUMI_25 , ADC= 963, OverTh=true +Channel=LUMI_02 , ADC= 796, OverTh=true +Channel=LUMI_26 , ADC= 829, OverTh=true +Channel=LUMI_03 , ADC= 887, OverTh=true +Channel=LUMI_27 , ADC= 987, OverTh=true +Channel=LUMI_04 , ADC= 319, OverTh=true +Channel=LUMI_28 , ADC= 368, OverTh=true +Channel=LUMI_12 , ADC= 317, OverTh=true +Channel=LUMI_36 , ADC= 381, OverTh=true +Channel=LUMI_13 , ADC= 255, OverTh=true +Channel=LUMI_37 , ADC= 353, OverTh=true +Channel=LUMI_14 , ADC= 332, OverTh=true +Channel=LUMI_38 , ADC= 313, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 376, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 337, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 254, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 253, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 253, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 254, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 254, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 254, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 259, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 260, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30103 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 792, OverTh=true +Channel=LUMI_24 , ADC= 992, OverTh=true +Channel=LUMI_01 , ADC= 881, OverTh=true +Channel=LUMI_25 , ADC= 920, OverTh=true +Channel=LUMI_02 , ADC= 889, OverTh=true +Channel=LUMI_26 , ADC= 861, OverTh=true +Channel=LUMI_03 , ADC=1003, OverTh=true +Channel=LUMI_27 , ADC=1066, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 368, OverTh=true +Channel=LUMI_16 , ADC= 329, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 343, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 261, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 259, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 260, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 260, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 259, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 259, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30102 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 817, OverTh=true +Channel=LUMI_24 , ADC= 763, OverTh=true +Channel=LUMI_01 , ADC= 854, OverTh=true +Channel=LUMI_25 , ADC= 843, OverTh=true +Channel=LUMI_02 , ADC= 886, OverTh=true +Channel=LUMI_26 , ADC= 774, OverTh=true +Channel=LUMI_03 , ADC= 866, OverTh=true +Channel=LUMI_27 , ADC= 926, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 347, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 341, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 260, OverTh=true +Channel=LUMI_22 , ADC= 260, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 254, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 260, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 254, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 260, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 260, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30104 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 912, OverTh=true +Channel=LUMI_24 , ADC= 798, OverTh=true +Channel=LUMI_01 , ADC= 871, OverTh=true +Channel=LUMI_25 , ADC= 904, OverTh=true +Channel=LUMI_02 , ADC= 899, OverTh=true +Channel=LUMI_26 , ADC= 755, OverTh=true +Channel=LUMI_03 , ADC= 780, OverTh=true +Channel=LUMI_27 , ADC= 976, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 247, OverTh=true +Channel=LUMI_12 , ADC= 287, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 285, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 270, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 320, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 260, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 254, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 259, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 259, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30106 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 898, OverTh=true +Channel=LUMI_24 , ADC= 876, OverTh=true +Channel=LUMI_01 , ADC= 858, OverTh=true +Channel=LUMI_25 , ADC= 778, OverTh=true +Channel=LUMI_02 , ADC= 960, OverTh=true +Channel=LUMI_26 , ADC= 702, OverTh=true +Channel=LUMI_03 , ADC= 913, OverTh=true +Channel=LUMI_27 , ADC= 989, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 350, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 254, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 260, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 254, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 252, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 254, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 253, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 259, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 253, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30105 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 827, OverTh=true +Channel=LUMI_24 , ADC= 965, OverTh=true +Channel=LUMI_01 , ADC= 871, OverTh=true +Channel=LUMI_25 , ADC= 899, OverTh=true +Channel=LUMI_02 , ADC= 901, OverTh=true +Channel=LUMI_26 , ADC= 846, OverTh=true +Channel=LUMI_03 , ADC= 961, OverTh=true +Channel=LUMI_27 , ADC= 983, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 376, OverTh=true +Channel=LUMI_16 , ADC= 336, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 342, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 344, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 253, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 260, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 259, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 259, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30108 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 841, OverTh=true +Channel=LUMI_24 , ADC= 851, OverTh=true +Channel=LUMI_01 , ADC= 894, OverTh=true +Channel=LUMI_25 , ADC= 848, OverTh=true +Channel=LUMI_02 , ADC= 877, OverTh=true +Channel=LUMI_26 , ADC= 764, OverTh=true +Channel=LUMI_03 , ADC= 817, OverTh=true +Channel=LUMI_27 , ADC= 946, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 296, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 288, OverTh=true +Channel=LUMI_40 , ADC= 264, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 254, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 253, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 252, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 259, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 254, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30107 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 872, OverTh=true +Channel=LUMI_24 , ADC= 906, OverTh=true +Channel=LUMI_01 , ADC= 851, OverTh=true +Channel=LUMI_25 , ADC= 918, OverTh=true +Channel=LUMI_02 , ADC= 897, OverTh=true +Channel=LUMI_26 , ADC= 920, OverTh=true +Channel=LUMI_03 , ADC= 989, OverTh=true +Channel=LUMI_27 , ADC=1077, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 315, OverTh=true +Channel=LUMI_36 , ADC= 381, OverTh=true +Channel=LUMI_13 , ADC= 255, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 328, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 260, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 260, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 253, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 254, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30109 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 778, OverTh=true +Channel=LUMI_24 , ADC=1002, OverTh=true +Channel=LUMI_01 , ADC= 868, OverTh=true +Channel=LUMI_25 , ADC= 954, OverTh=true +Channel=LUMI_02 , ADC= 891, OverTh=true +Channel=LUMI_26 , ADC= 828, OverTh=true +Channel=LUMI_03 , ADC= 911, OverTh=true +Channel=LUMI_27 , ADC= 982, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 343, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 244, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30110 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 870, OverTh=true +Channel=LUMI_24 , ADC= 867, OverTh=true +Channel=LUMI_01 , ADC= 875, OverTh=true +Channel=LUMI_25 , ADC= 815, OverTh=true +Channel=LUMI_02 , ADC= 912, OverTh=true +Channel=LUMI_26 , ADC= 735, OverTh=true +Channel=LUMI_03 , ADC= 868, OverTh=true +Channel=LUMI_27 , ADC=1030, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 290, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 332, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 260, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 260, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 260, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 260, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30111 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 848, OverTh=true +Channel=LUMI_24 , ADC= 955, OverTh=true +Channel=LUMI_01 , ADC= 905, OverTh=true +Channel=LUMI_25 , ADC= 894, OverTh=true +Channel=LUMI_02 , ADC= 864, OverTh=true +Channel=LUMI_26 , ADC= 905, OverTh=true +Channel=LUMI_03 , ADC=1036, OverTh=true +Channel=LUMI_27 , ADC=1028, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 368, OverTh=true +Channel=LUMI_16 , ADC= 329, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 336, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 261, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 259, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30112 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 827, OverTh=true +Channel=LUMI_24 , ADC= 823, OverTh=true +Channel=LUMI_01 , ADC= 824, OverTh=true +Channel=LUMI_25 , ADC= 715, OverTh=true +Channel=LUMI_02 , ADC= 871, OverTh=true +Channel=LUMI_26 , ADC= 777, OverTh=true +Channel=LUMI_03 , ADC= 815, OverTh=true +Channel=LUMI_27 , ADC=1028, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 344, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 324, OverTh=false +Channel=PIN_02 , ADC= 327, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 252, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 254, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 260, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 260, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 260, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 259, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 254, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30113 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 863, OverTh=true +Channel=LUMI_24 , ADC= 943, OverTh=true +Channel=LUMI_01 , ADC= 910, OverTh=true +Channel=LUMI_25 , ADC= 825, OverTh=true +Channel=LUMI_02 , ADC= 952, OverTh=true +Channel=LUMI_26 , ADC= 854, OverTh=true +Channel=LUMI_03 , ADC=1001, OverTh=true +Channel=LUMI_27 , ADC=1028, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 369, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 328, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 344, OverTh=false +Channel=PIN_08 , ADC= 329, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 260, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 261, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30114 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 822, OverTh=true +Channel=LUMI_24 , ADC= 878, OverTh=true +Channel=LUMI_01 , ADC= 779, OverTh=true +Channel=LUMI_25 , ADC= 788, OverTh=true +Channel=LUMI_02 , ADC= 867, OverTh=true +Channel=LUMI_26 , ADC= 677, OverTh=true +Channel=LUMI_03 , ADC= 865, OverTh=true +Channel=LUMI_27 , ADC= 947, OverTh=true +Channel=LUMI_04 , ADC= 282, OverTh=true +Channel=LUMI_28 , ADC= 249, OverTh=true +Channel=LUMI_12 , ADC= 293, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 275, OverTh=true +Channel=LUMI_38 , ADC= 285, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 329, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 254, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 253, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 253, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30116 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 882, OverTh=true +Channel=LUMI_24 , ADC= 825, OverTh=true +Channel=LUMI_01 , ADC= 870, OverTh=true +Channel=LUMI_25 , ADC= 782, OverTh=true +Channel=LUMI_02 , ADC= 890, OverTh=true +Channel=LUMI_26 , ADC= 724, OverTh=true +Channel=LUMI_03 , ADC= 806, OverTh=true +Channel=LUMI_27 , ADC= 989, OverTh=true +Channel=LUMI_04 , ADC= 276, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 287, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 342, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 349, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 353, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 253, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 260, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 259, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30115 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 823, OverTh=true +Channel=LUMI_24 , ADC=1025, OverTh=true +Channel=LUMI_01 , ADC= 852, OverTh=true +Channel=LUMI_25 , ADC= 921, OverTh=true +Channel=LUMI_02 , ADC= 828, OverTh=true +Channel=LUMI_26 , ADC= 910, OverTh=true +Channel=LUMI_03 , ADC= 982, OverTh=true +Channel=LUMI_27 , ADC=1071, OverTh=true +Channel=LUMI_04 , ADC= 319, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 315, OverTh=true +Channel=LUMI_36 , ADC= 381, OverTh=true +Channel=LUMI_13 , ADC= 257, OverTh=true +Channel=LUMI_37 , ADC= 352, OverTh=true +Channel=LUMI_14 , ADC= 331, OverTh=true +Channel=LUMI_38 , ADC= 313, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 343, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 327, OverTh=false +Channel=PIN_09 , ADC= 335, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 253, OverTh=false +Channel=TIME_05_00, ADC= 254, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 260, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 259, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30117 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 849, OverTh=true +Channel=LUMI_24 , ADC= 991, OverTh=true +Channel=LUMI_01 , ADC= 942, OverTh=true +Channel=LUMI_25 , ADC= 932, OverTh=true +Channel=LUMI_02 , ADC= 871, OverTh=true +Channel=LUMI_26 , ADC= 874, OverTh=true +Channel=LUMI_03 , ADC= 961, OverTh=true +Channel=LUMI_27 , ADC=1040, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 336, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 254, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 253, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 254, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 253, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30118 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 808, OverTh=true +Channel=LUMI_24 , ADC= 824, OverTh=true +Channel=LUMI_01 , ADC= 870, OverTh=true +Channel=LUMI_25 , ADC= 791, OverTh=true +Channel=LUMI_02 , ADC= 840, OverTh=true +Channel=LUMI_26 , ADC= 804, OverTh=true +Channel=LUMI_03 , ADC= 838, OverTh=true +Channel=LUMI_27 , ADC= 980, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 254, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 254, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 254, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 254, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 260, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 260, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 254, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30119 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 824, OverTh=true +Channel=LUMI_24 , ADC= 972, OverTh=true +Channel=LUMI_01 , ADC= 798, OverTh=true +Channel=LUMI_25 , ADC= 882, OverTh=true +Channel=LUMI_02 , ADC= 829, OverTh=true +Channel=LUMI_26 , ADC= 854, OverTh=true +Channel=LUMI_03 , ADC=1021, OverTh=true +Channel=LUMI_27 , ADC= 857, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 328, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 260, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 259, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 259, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 254, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30120 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 872, OverTh=true +Channel=LUMI_24 , ADC= 814, OverTh=true +Channel=LUMI_01 , ADC= 929, OverTh=true +Channel=LUMI_25 , ADC= 836, OverTh=true +Channel=LUMI_02 , ADC= 899, OverTh=true +Channel=LUMI_26 , ADC= 767, OverTh=true +Channel=LUMI_03 , ADC= 920, OverTh=true +Channel=LUMI_27 , ADC= 937, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 247, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 233, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 276, OverTh=true +Channel=LUMI_38 , ADC= 285, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 235, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 353, OverTh=false +Channel=PIN_06 , ADC= 260, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 260, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 259, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30121 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 820, OverTh=true +Channel=LUMI_24 , ADC= 911, OverTh=true +Channel=LUMI_01 , ADC= 871, OverTh=true +Channel=LUMI_25 , ADC= 921, OverTh=true +Channel=LUMI_02 , ADC= 842, OverTh=true +Channel=LUMI_26 , ADC= 880, OverTh=true +Channel=LUMI_03 , ADC= 957, OverTh=true +Channel=LUMI_27 , ADC= 949, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 336, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 330, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 243, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 262, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 259, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 254, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30122 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 875, OverTh=true +Channel=LUMI_24 , ADC= 894, OverTh=true +Channel=LUMI_01 , ADC= 875, OverTh=true +Channel=LUMI_25 , ADC= 740, OverTh=true +Channel=LUMI_02 , ADC= 865, OverTh=true +Channel=LUMI_26 , ADC= 708, OverTh=true +Channel=LUMI_03 , ADC= 893, OverTh=true +Channel=LUMI_27 , ADC= 930, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 235, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 321, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30123 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 842, OverTh=true +Channel=LUMI_24 , ADC= 967, OverTh=true +Channel=LUMI_01 , ADC= 848, OverTh=true +Channel=LUMI_25 , ADC= 883, OverTh=true +Channel=LUMI_02 , ADC= 889, OverTh=true +Channel=LUMI_26 , ADC= 748, OverTh=true +Channel=LUMI_03 , ADC= 926, OverTh=true +Channel=LUMI_27 , ADC= 962, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 307, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 324, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 346, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 259, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 254, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 254, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 259, OverTh=false +Channel=TIME_35_07, ADC= 260, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30124 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 856, OverTh=true +Channel=LUMI_24 , ADC= 810, OverTh=true +Channel=LUMI_01 , ADC= 900, OverTh=true +Channel=LUMI_25 , ADC= 893, OverTh=true +Channel=LUMI_02 , ADC= 939, OverTh=true +Channel=LUMI_26 , ADC= 712, OverTh=true +Channel=LUMI_03 , ADC= 807, OverTh=true +Channel=LUMI_27 , ADC= 900, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 242, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 337, OverTh=true +Channel=LUMI_37 , ADC= 239, OverTh=true +Channel=LUMI_14 , ADC= 268, OverTh=true +Channel=LUMI_38 , ADC= 277, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 328, OverTh=false +Channel=PIN_03 , ADC= 321, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 330, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 252, OverTh=true +Channel=LUMI_41 , ADC= 253, OverTh=true +Channel=LUMI_18 , ADC= 253, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 252, OverTh=true +Channel=LUMI_43 , ADC= 253, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 253, OverTh=true +Channel=LUMI_46 , ADC= 251, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 259, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 261, OverTh=false +Channel=TIME_05_02, ADC= 254, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 253, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 254, OverTh=false +Channel=TIME_05_15, ADC= 261, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 253, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 260, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30125 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 915, OverTh=true +Channel=LUMI_24 , ADC= 900, OverTh=true +Channel=LUMI_01 , ADC= 911, OverTh=true +Channel=LUMI_25 , ADC= 830, OverTh=true +Channel=LUMI_02 , ADC= 914, OverTh=true +Channel=LUMI_26 , ADC= 849, OverTh=true +Channel=LUMI_03 , ADC= 898, OverTh=true +Channel=LUMI_27 , ADC=1013, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 255, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 321, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 254, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 253, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 253, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 260, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30126 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 815, OverTh=true +Channel=LUMI_24 , ADC= 825, OverTh=true +Channel=LUMI_01 , ADC= 846, OverTh=true +Channel=LUMI_25 , ADC= 752, OverTh=true +Channel=LUMI_02 , ADC= 926, OverTh=true +Channel=LUMI_26 , ADC= 713, OverTh=true +Channel=LUMI_03 , ADC= 852, OverTh=true +Channel=LUMI_27 , ADC= 958, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 290, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 330, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 254, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 260, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 259, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 260, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30127 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 877, OverTh=true +Channel=LUMI_24 , ADC= 981, OverTh=true +Channel=LUMI_01 , ADC= 888, OverTh=true +Channel=LUMI_25 , ADC= 861, OverTh=true +Channel=LUMI_02 , ADC= 831, OverTh=true +Channel=LUMI_26 , ADC= 867, OverTh=true +Channel=LUMI_03 , ADC= 943, OverTh=true +Channel=LUMI_27 , ADC= 984, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 328, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 260, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 254, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 259, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 261, OverTh=false +Channel=TIME_05_04, ADC= 254, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 253, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 259, OverTh=false +Channel=TIME_35_04, ADC= 254, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 253, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30128 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 858, OverTh=true +Channel=LUMI_24 , ADC= 848, OverTh=true +Channel=LUMI_01 , ADC= 913, OverTh=true +Channel=LUMI_25 , ADC= 833, OverTh=true +Channel=LUMI_02 , ADC= 865, OverTh=true +Channel=LUMI_26 , ADC= 730, OverTh=true +Channel=LUMI_03 , ADC= 873, OverTh=true +Channel=LUMI_27 , ADC=1049, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 248, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 342, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 253, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30129 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 793, OverTh=true +Channel=LUMI_24 , ADC=1024, OverTh=true +Channel=LUMI_01 , ADC= 853, OverTh=true +Channel=LUMI_25 , ADC= 897, OverTh=true +Channel=LUMI_02 , ADC= 826, OverTh=true +Channel=LUMI_26 , ADC= 831, OverTh=true +Channel=LUMI_03 , ADC= 861, OverTh=true +Channel=LUMI_27 , ADC= 953, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 348, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 335, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 253, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 261, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 261, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 254, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 253, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30130 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 827, OverTh=true +Channel=LUMI_24 , ADC= 799, OverTh=true +Channel=LUMI_01 , ADC= 815, OverTh=true +Channel=LUMI_25 , ADC= 821, OverTh=true +Channel=LUMI_02 , ADC= 931, OverTh=true +Channel=LUMI_26 , ADC= 723, OverTh=true +Channel=LUMI_03 , ADC= 851, OverTh=true +Channel=LUMI_27 , ADC= 929, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 248, OverTh=true +Channel=LUMI_12 , ADC= 293, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 340, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 349, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 259, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 260, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 259, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 253, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 259, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30131 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 899, OverTh=true +Channel=LUMI_24 , ADC=1007, OverTh=true +Channel=LUMI_01 , ADC= 934, OverTh=true +Channel=LUMI_25 , ADC= 844, OverTh=true +Channel=LUMI_02 , ADC= 841, OverTh=true +Channel=LUMI_26 , ADC= 864, OverTh=true +Channel=LUMI_03 , ADC= 886, OverTh=true +Channel=LUMI_27 , ADC=1037, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 352, OverTh=true +Channel=LUMI_14 , ADC= 331, OverTh=true +Channel=LUMI_38 , ADC= 313, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 260, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 254, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 260, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 259, OverTh=false +Channel=TIME_35_04, ADC= 259, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 254, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30132 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 875, OverTh=true +Channel=LUMI_24 , ADC= 827, OverTh=true +Channel=LUMI_01 , ADC= 951, OverTh=true +Channel=LUMI_25 , ADC= 809, OverTh=true +Channel=LUMI_02 , ADC= 841, OverTh=true +Channel=LUMI_26 , ADC= 661, OverTh=true +Channel=LUMI_03 , ADC= 889, OverTh=true +Channel=LUMI_27 , ADC= 967, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 288, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 348, OverTh=false +Channel=PIN_06 , ADC= 244, OverTh=false +Channel=PIN_07 , ADC= 261, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 263, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 252, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 259, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 260, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30133 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 804, OverTh=true +Channel=LUMI_24 , ADC= 955, OverTh=true +Channel=LUMI_01 , ADC= 788, OverTh=true +Channel=LUMI_25 , ADC= 912, OverTh=true +Channel=LUMI_02 , ADC= 851, OverTh=true +Channel=LUMI_26 , ADC= 797, OverTh=true +Channel=LUMI_03 , ADC= 874, OverTh=true +Channel=LUMI_27 , ADC=1057, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 362, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 344, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 253, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 261, OverTh=true +Channel=LUMI_44 , ADC= 260, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 254, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30135 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 915, OverTh=true +Channel=LUMI_24 , ADC= 951, OverTh=true +Channel=LUMI_01 , ADC= 840, OverTh=true +Channel=LUMI_25 , ADC= 870, OverTh=true +Channel=LUMI_02 , ADC= 808, OverTh=true +Channel=LUMI_26 , ADC= 896, OverTh=true +Channel=LUMI_03 , ADC= 917, OverTh=true +Channel=LUMI_27 , ADC=1008, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 310, OverTh=true +Channel=LUMI_36 , ADC= 375, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 307, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 376, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 362, OverTh=true +Channel=LUMI_23 , ADC= 359, OverTh=true +Channel=LUMI_47 , ADC= 343, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 261, OverTh=true +Channel=LUMI_44 , ADC= 252, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 260, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 254, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 254, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30134 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 807, OverTh=true +Channel=LUMI_24 , ADC= 870, OverTh=true +Channel=LUMI_01 , ADC= 874, OverTh=true +Channel=LUMI_25 , ADC= 857, OverTh=true +Channel=LUMI_02 , ADC= 870, OverTh=true +Channel=LUMI_26 , ADC= 698, OverTh=true +Channel=LUMI_03 , ADC= 857, OverTh=true +Channel=LUMI_27 , ADC= 984, OverTh=true +Channel=LUMI_04 , ADC= 276, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 296, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 291, OverTh=true +Channel=LUMI_40 , ADC= 267, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 331, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 254, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 261, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 262, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 253, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 259, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 254, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 259, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30136 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 974, OverTh=true +Channel=LUMI_24 , ADC= 811, OverTh=true +Channel=LUMI_01 , ADC= 891, OverTh=true +Channel=LUMI_25 , ADC= 861, OverTh=true +Channel=LUMI_02 , ADC= 838, OverTh=true +Channel=LUMI_26 , ADC= 716, OverTh=true +Channel=LUMI_03 , ADC= 889, OverTh=true +Channel=LUMI_27 , ADC= 922, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 248, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 341, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 253, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 260, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30137 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 822, OverTh=true +Channel=LUMI_24 , ADC= 987, OverTh=true +Channel=LUMI_01 , ADC= 866, OverTh=true +Channel=LUMI_25 , ADC= 901, OverTh=true +Channel=LUMI_02 , ADC= 910, OverTh=true +Channel=LUMI_26 , ADC= 786, OverTh=true +Channel=LUMI_03 , ADC= 948, OverTh=true +Channel=LUMI_27 , ADC= 932, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 367, OverTh=true +Channel=LUMI_12 , ADC= 315, OverTh=true +Channel=LUMI_36 , ADC= 380, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 313, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 330, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 345, OverTh=false +Channel=PIN_09 , ADC= 337, OverTh=false +Channel=PIN_06 , ADC= 245, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 259, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 253, OverTh=false +Channel=TIME_35_11, ADC= 254, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 254, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30138 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 853, OverTh=true +Channel=LUMI_24 , ADC= 750, OverTh=true +Channel=LUMI_01 , ADC= 843, OverTh=true +Channel=LUMI_25 , ADC= 821, OverTh=true +Channel=LUMI_02 , ADC= 897, OverTh=true +Channel=LUMI_26 , ADC= 710, OverTh=true +Channel=LUMI_03 , ADC= 843, OverTh=true +Channel=LUMI_27 , ADC=1114, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 275, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 345, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 253, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 260, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 260, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 259, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30139 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 815, OverTh=true +Channel=LUMI_24 , ADC= 945, OverTh=true +Channel=LUMI_01 , ADC= 888, OverTh=true +Channel=LUMI_25 , ADC= 883, OverTh=true +Channel=LUMI_02 , ADC= 921, OverTh=true +Channel=LUMI_26 , ADC= 870, OverTh=true +Channel=LUMI_03 , ADC= 983, OverTh=true +Channel=LUMI_27 , ADC= 998, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 319, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 343, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 244, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 252, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 254, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 260, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30140 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 818, OverTh=true +Channel=LUMI_24 , ADC= 783, OverTh=true +Channel=LUMI_01 , ADC= 887, OverTh=true +Channel=LUMI_25 , ADC= 758, OverTh=true +Channel=LUMI_02 , ADC= 817, OverTh=true +Channel=LUMI_26 , ADC= 717, OverTh=true +Channel=LUMI_03 , ADC= 890, OverTh=true +Channel=LUMI_27 , ADC= 950, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 276, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 334, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 261, OverTh=true +Channel=LUMI_30 , ADC= 251, OverTh=true +Channel=LUMI_07 , ADC= 261, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 260, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 261, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 252, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 253, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 254, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30142 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 868, OverTh=true +Channel=LUMI_24 , ADC= 794, OverTh=true +Channel=LUMI_01 , ADC= 841, OverTh=true +Channel=LUMI_25 , ADC= 849, OverTh=true +Channel=LUMI_02 , ADC= 870, OverTh=true +Channel=LUMI_26 , ADC= 715, OverTh=true +Channel=LUMI_03 , ADC= 832, OverTh=true +Channel=LUMI_27 , ADC=1018, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 247, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 338, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 230, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 345, OverTh=false +Channel=PIN_09 , ADC= 350, OverTh=false +Channel=PIN_06 , ADC= 245, OverTh=false +Channel=PIN_07 , ADC= 254, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 254, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30141 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 877, OverTh=true +Channel=LUMI_24 , ADC=1015, OverTh=true +Channel=LUMI_01 , ADC= 820, OverTh=true +Channel=LUMI_25 , ADC= 884, OverTh=true +Channel=LUMI_02 , ADC= 835, OverTh=true +Channel=LUMI_26 , ADC= 853, OverTh=true +Channel=LUMI_03 , ADC= 978, OverTh=true +Channel=LUMI_27 , ADC= 999, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 329, OverTh=true +Channel=LUMI_40 , ADC= 355, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 334, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 260, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 252, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 261, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 254, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30143 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 812, OverTh=true +Channel=LUMI_24 , ADC= 900, OverTh=true +Channel=LUMI_01 , ADC= 838, OverTh=true +Channel=LUMI_25 , ADC= 920, OverTh=true +Channel=LUMI_02 , ADC= 832, OverTh=true +Channel=LUMI_26 , ADC= 757, OverTh=true +Channel=LUMI_03 , ADC= 913, OverTh=true +Channel=LUMI_27 , ADC=1092, OverTh=true +Channel=LUMI_04 , ADC= 318, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 341, OverTh=false +Channel=PIN_09 , ADC= 349, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 253, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 261, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 253, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 253, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 254, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 259, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 253, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30144 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 868, OverTh=true +Channel=LUMI_24 , ADC= 808, OverTh=true +Channel=LUMI_01 , ADC= 838, OverTh=true +Channel=LUMI_25 , ADC= 866, OverTh=true +Channel=LUMI_02 , ADC= 934, OverTh=true +Channel=LUMI_26 , ADC= 780, OverTh=true +Channel=LUMI_03 , ADC= 868, OverTh=true +Channel=LUMI_27 , ADC= 954, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 260, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 253, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 254, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 260, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 254, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30145 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 799, OverTh=true +Channel=LUMI_24 , ADC= 957, OverTh=true +Channel=LUMI_01 , ADC= 831, OverTh=true +Channel=LUMI_25 , ADC= 835, OverTh=true +Channel=LUMI_02 , ADC= 878, OverTh=true +Channel=LUMI_26 , ADC= 866, OverTh=true +Channel=LUMI_03 , ADC= 933, OverTh=true +Channel=LUMI_27 , ADC=1017, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 375, OverTh=true +Channel=LUMI_13 , ADC= 250, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 325, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 252, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 253, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 259, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30146 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 863, OverTh=true +Channel=LUMI_24 , ADC= 804, OverTh=true +Channel=LUMI_01 , ADC= 838, OverTh=true +Channel=LUMI_25 , ADC= 810, OverTh=true +Channel=LUMI_02 , ADC= 885, OverTh=true +Channel=LUMI_26 , ADC= 759, OverTh=true +Channel=LUMI_03 , ADC= 804, OverTh=true +Channel=LUMI_27 , ADC= 955, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 279, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 292, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 240, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 351, OverTh=false +Channel=PIN_08 , ADC= 341, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 254, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 253, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 260, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 254, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 261, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30147 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 845, OverTh=true +Channel=LUMI_24 , ADC= 978, OverTh=true +Channel=LUMI_01 , ADC= 895, OverTh=true +Channel=LUMI_25 , ADC= 933, OverTh=true +Channel=LUMI_02 , ADC= 906, OverTh=true +Channel=LUMI_26 , ADC= 846, OverTh=true +Channel=LUMI_03 , ADC= 886, OverTh=true +Channel=LUMI_27 , ADC= 925, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 361, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 375, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 320, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 362, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 344, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 243, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 251, OverTh=true +Channel=LUMI_07 , ADC= 260, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 260, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 252, OverTh=false +Channel=TIME_11_06, ADC= 259, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30148 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 829, OverTh=true +Channel=LUMI_24 , ADC= 813, OverTh=true +Channel=LUMI_01 , ADC= 839, OverTh=true +Channel=LUMI_25 , ADC= 807, OverTh=true +Channel=LUMI_02 , ADC= 963, OverTh=true +Channel=LUMI_26 , ADC= 771, OverTh=true +Channel=LUMI_03 , ADC= 818, OverTh=true +Channel=LUMI_27 , ADC= 990, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 284, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 330, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 254, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 254, OverTh=false +Channel=TIME_11_08, ADC= 253, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 260, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30149 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 858, OverTh=true +Channel=LUMI_24 , ADC= 942, OverTh=true +Channel=LUMI_01 , ADC= 872, OverTh=true +Channel=LUMI_25 , ADC= 876, OverTh=true +Channel=LUMI_02 , ADC= 862, OverTh=true +Channel=LUMI_26 , ADC= 835, OverTh=true +Channel=LUMI_03 , ADC= 922, OverTh=true +Channel=LUMI_27 , ADC= 988, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 350, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 259, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 254, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30150 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 870, OverTh=true +Channel=LUMI_24 , ADC= 839, OverTh=true +Channel=LUMI_01 , ADC= 910, OverTh=true +Channel=LUMI_25 , ADC= 889, OverTh=true +Channel=LUMI_02 , ADC= 887, OverTh=true +Channel=LUMI_26 , ADC= 650, OverTh=true +Channel=LUMI_03 , ADC= 822, OverTh=true +Channel=LUMI_27 , ADC= 847, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 345, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 290, OverTh=true +Channel=LUMI_39 , ADC= 228, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 315, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 332, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 353, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 260, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 253, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 254, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 253, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 254, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 254, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 260, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30152 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 863, OverTh=true +Channel=LUMI_24 , ADC= 865, OverTh=true +Channel=LUMI_01 , ADC= 863, OverTh=true +Channel=LUMI_25 , ADC= 809, OverTh=true +Channel=LUMI_02 , ADC= 837, OverTh=true +Channel=LUMI_26 , ADC= 767, OverTh=true +Channel=LUMI_03 , ADC= 900, OverTh=true +Channel=LUMI_27 , ADC= 997, OverTh=true +Channel=LUMI_04 , ADC= 276, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 328, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 329, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 353, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 260, OverTh=true +Channel=LUMI_18 , ADC= 260, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 260, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 260, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 253, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 260, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30151 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 897, OverTh=true +Channel=LUMI_24 , ADC= 964, OverTh=true +Channel=LUMI_01 , ADC= 789, OverTh=true +Channel=LUMI_25 , ADC= 842, OverTh=true +Channel=LUMI_02 , ADC= 853, OverTh=true +Channel=LUMI_26 , ADC= 894, OverTh=true +Channel=LUMI_03 , ADC= 922, OverTh=true +Channel=LUMI_27 , ADC=1034, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 382, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 328, OverTh=true +Channel=LUMI_40 , ADC= 356, OverTh=true +Channel=LUMI_23 , ADC= 354, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 334, OverTh=false +Channel=PIN_04 , ADC= 330, OverTh=false +Channel=PIN_08 , ADC= 345, OverTh=false +Channel=PIN_09 , ADC= 344, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 253, OverTh=true +Channel=LUMI_07 , ADC= 260, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 259, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 253, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 254, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 259, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 259, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30153 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 808, OverTh=true +Channel=LUMI_24 , ADC= 937, OverTh=true +Channel=LUMI_01 , ADC= 819, OverTh=true +Channel=LUMI_25 , ADC= 899, OverTh=true +Channel=LUMI_02 , ADC= 880, OverTh=true +Channel=LUMI_26 , ADC= 848, OverTh=true +Channel=LUMI_03 , ADC= 970, OverTh=true +Channel=LUMI_27 , ADC= 996, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 336, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 334, OverTh=false +Channel=PIN_04 , ADC= 344, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 335, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 261, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 250, OverTh=true +Channel=LUMI_18 , ADC= 260, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 253, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 260, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 260, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 259, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 260, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 260, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 254, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30154 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 833, OverTh=true +Channel=LUMI_24 , ADC= 794, OverTh=true +Channel=LUMI_01 , ADC= 870, OverTh=true +Channel=LUMI_25 , ADC= 826, OverTh=true +Channel=LUMI_02 , ADC= 915, OverTh=true +Channel=LUMI_26 , ADC= 765, OverTh=true +Channel=LUMI_03 , ADC= 867, OverTh=true +Channel=LUMI_27 , ADC= 919, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 253, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 253, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 259, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 260, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30155 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 915, OverTh=true +Channel=LUMI_24 , ADC= 945, OverTh=true +Channel=LUMI_01 , ADC= 948, OverTh=true +Channel=LUMI_25 , ADC= 888, OverTh=true +Channel=LUMI_02 , ADC= 819, OverTh=true +Channel=LUMI_26 , ADC= 880, OverTh=true +Channel=LUMI_03 , ADC= 912, OverTh=true +Channel=LUMI_27 , ADC= 991, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 315, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 341, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 260, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 254, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 253, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30156 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 851, OverTh=true +Channel=LUMI_24 , ADC= 857, OverTh=true +Channel=LUMI_01 , ADC= 898, OverTh=true +Channel=LUMI_25 , ADC= 812, OverTh=true +Channel=LUMI_02 , ADC= 850, OverTh=true +Channel=LUMI_26 , ADC= 719, OverTh=true +Channel=LUMI_03 , ADC= 887, OverTh=true +Channel=LUMI_27 , ADC= 975, OverTh=true +Channel=LUMI_04 , ADC= 281, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 346, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 266, OverTh=true +Channel=LUMI_23 , ADC= 240, OverTh=true +Channel=LUMI_47 , ADC= 271, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 349, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 254, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 263, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 261, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 259, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 259, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 254, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30157 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 806, OverTh=true +Channel=LUMI_24 , ADC= 917, OverTh=true +Channel=LUMI_01 , ADC= 770, OverTh=true +Channel=LUMI_25 , ADC= 926, OverTh=true +Channel=LUMI_02 , ADC= 923, OverTh=true +Channel=LUMI_26 , ADC= 872, OverTh=true +Channel=LUMI_03 , ADC= 909, OverTh=true +Channel=LUMI_27 , ADC=1061, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 328, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 346, OverTh=false +Channel=PIN_08 , ADC= 332, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 245, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 254, OverTh=true +Channel=LUMI_07 , ADC= 260, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 260, OverTh=true +Channel=LUMI_18 , ADC= 250, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 260, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 260, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 254, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 259, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 254, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30158 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 853, OverTh=true +Channel=LUMI_24 , ADC= 810, OverTh=true +Channel=LUMI_01 , ADC= 816, OverTh=true +Channel=LUMI_25 , ADC= 853, OverTh=true +Channel=LUMI_02 , ADC= 849, OverTh=true +Channel=LUMI_26 , ADC= 756, OverTh=true +Channel=LUMI_03 , ADC= 829, OverTh=true +Channel=LUMI_27 , ADC=1046, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 258, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 319, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 261, OverTh=true +Channel=LUMI_07 , ADC= 252, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 260, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30159 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 848, OverTh=true +Channel=LUMI_24 , ADC= 924, OverTh=true +Channel=LUMI_01 , ADC= 922, OverTh=true +Channel=LUMI_25 , ADC= 952, OverTh=true +Channel=LUMI_02 , ADC= 879, OverTh=true +Channel=LUMI_26 , ADC= 823, OverTh=true +Channel=LUMI_03 , ADC= 870, OverTh=true +Channel=LUMI_27 , ADC=1013, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 360, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 254, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 254, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 253, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30160 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 803, OverTh=true +Channel=LUMI_24 , ADC= 897, OverTh=true +Channel=LUMI_01 , ADC= 918, OverTh=true +Channel=LUMI_25 , ADC= 804, OverTh=true +Channel=LUMI_02 , ADC= 868, OverTh=true +Channel=LUMI_26 , ADC= 770, OverTh=true +Channel=LUMI_03 , ADC= 796, OverTh=true +Channel=LUMI_27 , ADC= 971, OverTh=true +Channel=LUMI_04 , ADC= 276, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 293, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 247, OverTh=true +Channel=LUMI_14 , ADC= 277, OverTh=true +Channel=LUMI_38 , ADC= 286, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 264, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 342, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 345, OverTh=false +Channel=PIN_09 , ADC= 349, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 251, OverTh=true +Channel=LUMI_07 , ADC= 260, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 262, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 251, OverTh=true +Channel=LUMI_18 , ADC= 260, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 262, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 263, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 261, OverTh=false +Channel=TIME_11_08, ADC= 259, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30161 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 814, OverTh=true +Channel=LUMI_24 , ADC= 986, OverTh=true +Channel=LUMI_01 , ADC= 848, OverTh=true +Channel=LUMI_25 , ADC= 942, OverTh=true +Channel=LUMI_02 , ADC= 859, OverTh=true +Channel=LUMI_26 , ADC= 861, OverTh=true +Channel=LUMI_03 , ADC= 914, OverTh=true +Channel=LUMI_27 , ADC= 938, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 255, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 308, OverTh=true +Channel=LUMI_15 , ADC= 323, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 331, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 331, OverTh=false +Channel=PIN_08 , ADC= 330, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 253, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 253, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 260, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 263, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 259, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 254, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 254, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 260, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 259, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30163 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 857, OverTh=true +Channel=LUMI_24 , ADC= 989, OverTh=true +Channel=LUMI_01 , ADC= 917, OverTh=true +Channel=LUMI_25 , ADC= 962, OverTh=true +Channel=LUMI_02 , ADC= 897, OverTh=true +Channel=LUMI_26 , ADC= 897, OverTh=true +Channel=LUMI_03 , ADC= 967, OverTh=true +Channel=LUMI_27 , ADC= 992, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 377, OverTh=true +Channel=LUMI_16 , ADC= 334, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 362, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 325, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 342, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 335, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 260, OverTh=true +Channel=LUMI_32 , ADC= 260, OverTh=true +Channel=LUMI_09 , ADC= 252, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 253, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 254, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 253, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30162 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 840, OverTh=true +Channel=LUMI_24 , ADC= 842, OverTh=true +Channel=LUMI_01 , ADC= 831, OverTh=true +Channel=LUMI_25 , ADC= 820, OverTh=true +Channel=LUMI_02 , ADC= 863, OverTh=true +Channel=LUMI_26 , ADC= 697, OverTh=true +Channel=LUMI_03 , ADC= 850, OverTh=true +Channel=LUMI_27 , ADC= 954, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 245, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 240, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 297, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 240, OverTh=true +Channel=LUMI_47 , ADC= 271, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 331, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 354, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 261, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 260, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 253, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 253, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 259, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30164 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 799, OverTh=true +Channel=LUMI_24 , ADC= 828, OverTh=true +Channel=LUMI_01 , ADC= 847, OverTh=true +Channel=LUMI_25 , ADC= 788, OverTh=true +Channel=LUMI_02 , ADC= 917, OverTh=true +Channel=LUMI_26 , ADC= 751, OverTh=true +Channel=LUMI_03 , ADC= 840, OverTh=true +Channel=LUMI_27 , ADC=1017, OverTh=true +Channel=LUMI_04 , ADC= 275, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 287, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 339, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 258, OverTh=true +Channel=LUMI_23 , ADC= 231, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 340, OverTh=false +Channel=PIN_03 , ADC= 319, OverTh=false +Channel=PIN_04 , ADC= 338, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 246, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 261, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 259, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 262, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 254, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30165 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 838, OverTh=true +Channel=LUMI_24 , ADC= 939, OverTh=true +Channel=LUMI_01 , ADC= 850, OverTh=true +Channel=LUMI_25 , ADC= 868, OverTh=true +Channel=LUMI_02 , ADC= 856, OverTh=true +Channel=LUMI_26 , ADC= 802, OverTh=true +Channel=LUMI_03 , ADC= 959, OverTh=true +Channel=LUMI_27 , ADC=1051, OverTh=true +Channel=LUMI_04 , ADC= 312, OverTh=true +Channel=LUMI_28 , ADC= 359, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 247, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 308, OverTh=true +Channel=LUMI_15 , ADC= 312, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 345, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 268, OverTh=true +Channel=LUMI_07 , ADC= 251, OverTh=true +Channel=LUMI_31 , ADC= 262, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 265, OverTh=true +Channel=LUMI_33 , ADC= 250, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 260, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 261, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 263, OverTh=true +Channel=LUMI_44 , ADC= 253, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 251, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 261, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 254, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 253, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 253, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30166 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 883, OverTh=true +Channel=LUMI_24 , ADC= 787, OverTh=true +Channel=LUMI_01 , ADC= 875, OverTh=true +Channel=LUMI_25 , ADC= 807, OverTh=true +Channel=LUMI_02 , ADC= 890, OverTh=true +Channel=LUMI_26 , ADC= 727, OverTh=true +Channel=LUMI_03 , ADC= 881, OverTh=true +Channel=LUMI_27 , ADC=1018, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 291, OverTh=true +Channel=LUMI_39 , ADC= 231, OverTh=true +Channel=LUMI_16 , ADC= 282, OverTh=true +Channel=LUMI_40 , ADC= 257, OverTh=true +Channel=LUMI_23 , ADC= 235, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 329, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 339, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 253, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 254, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 254, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 254, OverTh=false +Channel=TIME_35_07, ADC= 254, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30167 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 810, OverTh=true +Channel=LUMI_24 , ADC=1012, OverTh=true +Channel=LUMI_01 , ADC= 831, OverTh=true +Channel=LUMI_25 , ADC= 874, OverTh=true +Channel=LUMI_02 , ADC= 912, OverTh=true +Channel=LUMI_26 , ADC= 882, OverTh=true +Channel=LUMI_03 , ADC=1014, OverTh=true +Channel=LUMI_27 , ADC=1037, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 315, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 369, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 336, OverTh=true +Channel=PIN_01 , ADC= 325, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 342, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 259, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 259, OverTh=false +Channel=TIME_35_07, ADC= 253, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30168 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 888, OverTh=true +Channel=LUMI_24 , ADC= 817, OverTh=true +Channel=LUMI_01 , ADC= 883, OverTh=true +Channel=LUMI_25 , ADC= 776, OverTh=true +Channel=LUMI_02 , ADC= 861, OverTh=true +Channel=LUMI_26 , ADC= 704, OverTh=true +Channel=LUMI_03 , ADC= 860, OverTh=true +Channel=LUMI_27 , ADC= 915, OverTh=true +Channel=LUMI_04 , ADC= 282, OverTh=true +Channel=LUMI_28 , ADC= 250, OverTh=true +Channel=LUMI_12 , ADC= 292, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 246, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 230, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 343, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 260, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 259, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 251, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 253, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 260, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 259, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 253, OverTh=false +Channel=TIME_11_11, ADC= 259, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30169 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 825, OverTh=true +Channel=LUMI_24 , ADC= 936, OverTh=true +Channel=LUMI_01 , ADC= 884, OverTh=true +Channel=LUMI_25 , ADC= 862, OverTh=true +Channel=LUMI_02 , ADC= 832, OverTh=true +Channel=LUMI_26 , ADC= 915, OverTh=true +Channel=LUMI_03 , ADC= 922, OverTh=true +Channel=LUMI_27 , ADC=1030, OverTh=true +Channel=LUMI_04 , ADC= 319, OverTh=true +Channel=LUMI_28 , ADC= 368, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 373, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 341, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 325, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 261, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 253, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 254, OverTh=true +Channel=LUMI_43 , ADC= 260, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 253, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 260, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 259, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 254, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 260, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 260, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30170 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 866, OverTh=true +Channel=LUMI_24 , ADC= 865, OverTh=true +Channel=LUMI_01 , ADC= 842, OverTh=true +Channel=LUMI_25 , ADC= 904, OverTh=true +Channel=LUMI_02 , ADC= 842, OverTh=true +Channel=LUMI_26 , ADC= 719, OverTh=true +Channel=LUMI_03 , ADC= 836, OverTh=true +Channel=LUMI_27 , ADC=1003, OverTh=true +Channel=LUMI_04 , ADC= 281, OverTh=true +Channel=LUMI_28 , ADC= 247, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 229, OverTh=true +Channel=LUMI_13 , ADC= 344, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 290, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 235, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 341, OverTh=false +Channel=PIN_03 , ADC= 315, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 261, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 252, OverTh=true +Channel=LUMI_32 , ADC= 253, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 261, OverTh=true +Channel=LUMI_44 , ADC= 253, OverTh=true +Channel=LUMI_21 , ADC= 260, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 261, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 259, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 254, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 254, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30172 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 915, OverTh=true +Channel=LUMI_24 , ADC= 857, OverTh=true +Channel=LUMI_01 , ADC= 869, OverTh=true +Channel=LUMI_25 , ADC= 808, OverTh=true +Channel=LUMI_02 , ADC= 900, OverTh=true +Channel=LUMI_26 , ADC= 747, OverTh=true +Channel=LUMI_03 , ADC= 918, OverTh=true +Channel=LUMI_27 , ADC= 988, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 280, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 328, OverTh=false +Channel=PIN_03 , ADC= 324, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 344, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 260, OverTh=false +Channel=TIME_05_10, ADC= 253, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 259, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30173 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 907, OverTh=true +Channel=LUMI_24 , ADC= 944, OverTh=true +Channel=LUMI_01 , ADC= 831, OverTh=true +Channel=LUMI_25 , ADC= 885, OverTh=true +Channel=LUMI_02 , ADC= 936, OverTh=true +Channel=LUMI_26 , ADC= 871, OverTh=true +Channel=LUMI_03 , ADC= 932, OverTh=true +Channel=LUMI_27 , ADC=1001, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 363, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 329, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 328, OverTh=false +Channel=PIN_03 , ADC= 331, OverTh=false +Channel=PIN_04 , ADC= 339, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 349, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 259, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 253, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 259, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 259, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 258, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 259, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30171 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 864, OverTh=true +Channel=LUMI_24 , ADC=1042, OverTh=true +Channel=LUMI_01 , ADC= 851, OverTh=true +Channel=LUMI_25 , ADC= 880, OverTh=true +Channel=LUMI_02 , ADC= 838, OverTh=true +Channel=LUMI_26 , ADC= 898, OverTh=true +Channel=LUMI_03 , ADC= 924, OverTh=true +Channel=LUMI_27 , ADC= 955, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 369, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 331, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 254, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 254, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 259, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 254, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30174 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 864, OverTh=true +Channel=LUMI_24 , ADC= 812, OverTh=true +Channel=LUMI_01 , ADC= 906, OverTh=true +Channel=LUMI_25 , ADC= 854, OverTh=true +Channel=LUMI_02 , ADC= 836, OverTh=true +Channel=LUMI_26 , ADC= 699, OverTh=true +Channel=LUMI_03 , ADC= 809, OverTh=true +Channel=LUMI_27 , ADC= 956, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 248, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 337, OverTh=true +Channel=LUMI_37 , ADC= 242, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 241, OverTh=true +Channel=LUMI_47 , ADC= 270, OverTh=true +Channel=PIN_01 , ADC= 315, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 341, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 250, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 260, OverTh=true +Channel=LUMI_32 , ADC= 254, OverTh=true +Channel=LUMI_09 , ADC= 252, OverTh=true +Channel=LUMI_33 , ADC= 261, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 259, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 259, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 259, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 259, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30175 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 840, OverTh=true +Channel=LUMI_24 , ADC= 969, OverTh=true +Channel=LUMI_01 , ADC= 941, OverTh=true +Channel=LUMI_25 , ADC= 828, OverTh=true +Channel=LUMI_02 , ADC= 863, OverTh=true +Channel=LUMI_26 , ADC= 890, OverTh=true +Channel=LUMI_03 , ADC= 892, OverTh=true +Channel=LUMI_27 , ADC=1006, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 315, OverTh=true +Channel=LUMI_36 , ADC= 380, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 331, OverTh=true +Channel=LUMI_38 , ADC= 308, OverTh=true +Channel=LUMI_15 , ADC= 320, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 362, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 342, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 258, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 253, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 263, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 260, OverTh=true +Channel=LUMI_34 , ADC= 252, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 254, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 259, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 259, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 259, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 259, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30176 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 814, OverTh=true +Channel=LUMI_24 , ADC= 767, OverTh=true +Channel=LUMI_01 , ADC= 880, OverTh=true +Channel=LUMI_25 , ADC= 865, OverTh=true +Channel=LUMI_02 , ADC= 881, OverTh=true +Channel=LUMI_26 , ADC= 730, OverTh=true +Channel=LUMI_03 , ADC= 790, OverTh=true +Channel=LUMI_27 , ADC= 969, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 338, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 282, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 269, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 330, OverTh=false +Channel=PIN_08 , ADC= 329, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 255, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 261, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 260, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 259, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 259, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 253, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30177 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 781, OverTh=true +Channel=LUMI_24 , ADC= 913, OverTh=true +Channel=LUMI_01 , ADC= 847, OverTh=true +Channel=LUMI_25 , ADC= 888, OverTh=true +Channel=LUMI_02 , ADC= 891, OverTh=true +Channel=LUMI_26 , ADC= 856, OverTh=true +Channel=LUMI_03 , ADC= 964, OverTh=true +Channel=LUMI_27 , ADC= 997, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 318, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 361, OverTh=true +Channel=LUMI_23 , ADC= 358, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 316, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 342, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 254, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 259, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 259, OverTh=false +Channel=MON_03 , ADC= 259, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 259, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 259, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 253, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30178 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 859, OverTh=true +Channel=LUMI_24 , ADC= 823, OverTh=true +Channel=LUMI_01 , ADC= 920, OverTh=true +Channel=LUMI_25 , ADC= 828, OverTh=true +Channel=LUMI_02 , ADC= 906, OverTh=true +Channel=LUMI_26 , ADC= 814, OverTh=true +Channel=LUMI_03 , ADC= 903, OverTh=true +Channel=LUMI_27 , ADC=1039, OverTh=true +Channel=LUMI_04 , ADC= 280, OverTh=true +Channel=LUMI_28 , ADC= 247, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 233, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 246, OverTh=true +Channel=LUMI_14 , ADC= 275, OverTh=true +Channel=LUMI_38 , ADC= 287, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 287, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 317, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 255, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 254, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 254, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 254, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30179 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 758, OverTh=true +Channel=LUMI_24 , ADC=1016, OverTh=true +Channel=LUMI_01 , ADC= 872, OverTh=true +Channel=LUMI_25 , ADC= 868, OverTh=true +Channel=LUMI_02 , ADC= 878, OverTh=true +Channel=LUMI_26 , ADC= 830, OverTh=true +Channel=LUMI_03 , ADC= 885, OverTh=true +Channel=LUMI_27 , ADC= 968, OverTh=true +Channel=LUMI_04 , ADC= 318, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 313, OverTh=true +Channel=LUMI_36 , ADC= 380, OverTh=true +Channel=LUMI_13 , ADC= 256, OverTh=true +Channel=LUMI_37 , ADC= 352, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 313, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 333, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 339, OverTh=true +Channel=PIN_01 , ADC= 325, OverTh=false +Channel=PIN_02 , ADC= 334, OverTh=false +Channel=PIN_03 , ADC= 328, OverTh=false +Channel=PIN_04 , ADC= 343, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 345, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 254, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 254, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 253, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30181 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 787, OverTh=true +Channel=LUMI_24 , ADC=1011, OverTh=true +Channel=LUMI_01 , ADC= 872, OverTh=true +Channel=LUMI_25 , ADC= 960, OverTh=true +Channel=LUMI_02 , ADC= 869, OverTh=true +Channel=LUMI_26 , ADC= 826, OverTh=true +Channel=LUMI_03 , ADC= 908, OverTh=true +Channel=LUMI_27 , ADC=1103, OverTh=true +Channel=LUMI_04 , ADC= 317, OverTh=true +Channel=LUMI_28 , ADC= 366, OverTh=true +Channel=LUMI_12 , ADC= 315, OverTh=true +Channel=LUMI_36 , ADC= 380, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 350, OverTh=true +Channel=LUMI_14 , ADC= 331, OverTh=true +Channel=LUMI_38 , ADC= 312, OverTh=true +Channel=LUMI_15 , ADC= 317, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 359, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 332, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 338, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 255, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 261, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 260, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 259, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30180 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 895, OverTh=true +Channel=LUMI_24 , ADC= 758, OverTh=true +Channel=LUMI_01 , ADC= 815, OverTh=true +Channel=LUMI_25 , ADC= 887, OverTh=true +Channel=LUMI_02 , ADC= 813, OverTh=true +Channel=LUMI_26 , ADC= 728, OverTh=true +Channel=LUMI_03 , ADC= 846, OverTh=true +Channel=LUMI_27 , ADC= 947, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 248, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 275, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 239, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 335, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 340, OverTh=false +Channel=PIN_09 , ADC= 356, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 255, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 254, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 254, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 255, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 259, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 258, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 259, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 259, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 258, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 254, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30182 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 865, OverTh=true +Channel=LUMI_24 , ADC= 923, OverTh=true +Channel=LUMI_01 , ADC= 852, OverTh=true +Channel=LUMI_25 , ADC= 788, OverTh=true +Channel=LUMI_02 , ADC= 886, OverTh=true +Channel=LUMI_26 , ADC= 720, OverTh=true +Channel=LUMI_03 , ADC= 837, OverTh=true +Channel=LUMI_27 , ADC=1052, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 292, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 236, OverTh=true +Channel=LUMI_47 , ADC= 264, OverTh=true +Channel=PIN_01 , ADC= 325, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 354, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 262, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 261, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 260, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 254, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 253, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 258, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 254, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 254, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30183 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 874, OverTh=true +Channel=LUMI_24 , ADC= 984, OverTh=true +Channel=LUMI_01 , ADC= 837, OverTh=true +Channel=LUMI_25 , ADC= 961, OverTh=true +Channel=LUMI_02 , ADC= 885, OverTh=true +Channel=LUMI_26 , ADC= 873, OverTh=true +Channel=LUMI_03 , ADC= 908, OverTh=true +Channel=LUMI_27 , ADC=1023, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 254, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 313, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 371, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 355, OverTh=true +Channel=LUMI_23 , ADC= 355, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 246, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 260, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 261, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 259, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 259, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 259, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 259, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 260, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 255, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 259, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 259, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30184 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 874, OverTh=true +Channel=LUMI_24 , ADC= 796, OverTh=true +Channel=LUMI_01 , ADC= 856, OverTh=true +Channel=LUMI_25 , ADC= 851, OverTh=true +Channel=LUMI_02 , ADC= 902, OverTh=true +Channel=LUMI_26 , ADC= 777, OverTh=true +Channel=LUMI_03 , ADC= 842, OverTh=true +Channel=LUMI_27 , ADC= 989, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 343, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 314, OverTh=false +Channel=PIN_02 , ADC= 338, OverTh=false +Channel=PIN_03 , ADC= 322, OverTh=false +Channel=PIN_04 , ADC= 334, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 354, OverTh=false +Channel=PIN_06 , ADC= 252, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 257, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 259, OverTh=true +Channel=LUMI_19 , ADC= 257, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 255, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 259, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 255, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 260, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 254, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 255, OverTh=false +Channel=TIME_35_09, ADC= 259, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 254, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30187 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 851, OverTh=true +Channel=LUMI_24 , ADC= 935, OverTh=true +Channel=LUMI_01 , ADC= 885, OverTh=true +Channel=LUMI_25 , ADC= 888, OverTh=true +Channel=LUMI_02 , ADC= 893, OverTh=true +Channel=LUMI_26 , ADC= 861, OverTh=true +Channel=LUMI_03 , ADC= 978, OverTh=true +Channel=LUMI_27 , ADC= 985, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 314, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 351, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 309, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 331, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 345, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 342, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 254, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 258, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 254, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 255, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 259, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 255, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 261, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 259, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 254, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 260, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 254, OverTh=false +Channel=TIME_35_07, ADC= 259, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30185 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 865, OverTh=true +Channel=LUMI_24 , ADC=1036, OverTh=true +Channel=LUMI_01 , ADC= 873, OverTh=true +Channel=LUMI_25 , ADC= 901, OverTh=true +Channel=LUMI_02 , ADC= 860, OverTh=true +Channel=LUMI_26 , ADC= 815, OverTh=true +Channel=LUMI_03 , ADC= 933, OverTh=true +Channel=LUMI_27 , ADC=1018, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 329, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 313, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 327, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 337, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 327, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 247, OverTh=false +Channel=PIN_07 , ADC= 255, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 255, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 258, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 254, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 259, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 259, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 254, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30186 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 840, OverTh=true +Channel=LUMI_24 , ADC= 868, OverTh=true +Channel=LUMI_01 , ADC= 849, OverTh=true +Channel=LUMI_25 , ADC= 808, OverTh=true +Channel=LUMI_02 , ADC= 928, OverTh=true +Channel=LUMI_26 , ADC= 692, OverTh=true +Channel=LUMI_03 , ADC= 914, OverTh=true +Channel=LUMI_27 , ADC=1033, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 284, OverTh=true +Channel=LUMI_15 , ADC= 294, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 261, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 329, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 338, OverTh=false +Channel=PIN_06 , ADC= 248, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 254, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 254, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 260, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 255, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30188 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 879, OverTh=true +Channel=LUMI_24 , ADC= 801, OverTh=true +Channel=LUMI_01 , ADC= 904, OverTh=true +Channel=LUMI_25 , ADC= 751, OverTh=true +Channel=LUMI_02 , ADC= 859, OverTh=true +Channel=LUMI_26 , ADC= 754, OverTh=true +Channel=LUMI_03 , ADC= 868, OverTh=true +Channel=LUMI_27 , ADC= 882, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 342, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 233, OverTh=true +Channel=LUMI_16 , ADC= 285, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 323, OverTh=false +Channel=PIN_04 , ADC= 336, OverTh=false +Channel=PIN_08 , ADC= 330, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 261, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 259, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 253, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 254, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 258, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 254, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 255, OverTh=false +Channel=TIME_11_08, ADC= 255, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 260, OverTh=false +Channel=TIME_35_09, ADC= 256, OverTh=false +Channel=TIME_11_02, ADC= 259, OverTh=false +Channel=TIME_11_10, ADC= 259, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 256, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 253, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30189 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 828, OverTh=true +Channel=LUMI_24 , ADC= 984, OverTh=true +Channel=LUMI_01 , ADC= 916, OverTh=true +Channel=LUMI_25 , ADC= 931, OverTh=true +Channel=LUMI_02 , ADC= 876, OverTh=true +Channel=LUMI_26 , ADC= 876, OverTh=true +Channel=LUMI_03 , ADC= 896, OverTh=true +Channel=LUMI_27 , ADC=1043, OverTh=true +Channel=LUMI_04 , ADC= 316, OverTh=true +Channel=LUMI_28 , ADC= 364, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 378, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 327, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 316, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 356, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 320, OverTh=false +Channel=PIN_02 , ADC= 336, OverTh=false +Channel=PIN_03 , ADC= 333, OverTh=false +Channel=PIN_04 , ADC= 331, OverTh=false +Channel=PIN_08 , ADC= 328, OverTh=false +Channel=PIN_09 , ADC= 351, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 260, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 260, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 254, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 254, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 256, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 255, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 256, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 256, OverTh=false +Channel=TIME_11_12, ADC= 259, OverTh=false +Channel=TIME_35_04, ADC= 253, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 254, OverTh=false +Channel=TIME_35_05, ADC= 260, OverTh=false +Channel=TIME_35_13, ADC= 255, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 259, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30190 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 848, OverTh=true +Channel=LUMI_24 , ADC= 839, OverTh=true +Channel=LUMI_01 , ADC= 802, OverTh=true +Channel=LUMI_25 , ADC= 812, OverTh=true +Channel=LUMI_02 , ADC= 879, OverTh=true +Channel=LUMI_26 , ADC= 702, OverTh=true +Channel=LUMI_03 , ADC= 944, OverTh=true +Channel=LUMI_27 , ADC= 953, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 243, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 228, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 243, OverTh=true +Channel=LUMI_14 , ADC= 272, OverTh=true +Channel=LUMI_38 , ADC= 280, OverTh=true +Channel=LUMI_15 , ADC= 295, OverTh=true +Channel=LUMI_39 , ADC= 235, OverTh=true +Channel=LUMI_16 , ADC= 288, OverTh=true +Channel=LUMI_40 , ADC= 262, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 267, OverTh=true +Channel=PIN_01 , ADC= 322, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 335, OverTh=false +Channel=PIN_04 , ADC= 330, OverTh=false +Channel=PIN_08 , ADC= 333, OverTh=false +Channel=PIN_09 , ADC= 343, OverTh=false +Channel=PIN_06 , ADC= 251, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 253, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 258, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 258, OverTh=true +Channel=LUMI_44 , ADC= 257, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 256, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 255, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 258, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 254, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 255, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 259, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 254, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 254, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 256, OverTh=false +Channel=TIME_35_14, ADC= 258, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30191 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 865, OverTh=true +Channel=LUMI_24 , ADC= 994, OverTh=true +Channel=LUMI_01 , ADC= 793, OverTh=true +Channel=LUMI_25 , ADC= 902, OverTh=true +Channel=LUMI_02 , ADC= 857, OverTh=true +Channel=LUMI_26 , ADC= 878, OverTh=true +Channel=LUMI_03 , ADC= 934, OverTh=true +Channel=LUMI_27 , ADC= 961, OverTh=true +Channel=LUMI_04 , ADC= 314, OverTh=true +Channel=LUMI_28 , ADC= 365, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 375, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 347, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 372, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 344, OverTh=false +Channel=PIN_08 , ADC= 339, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 257, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 254, OverTh=true +Channel=LUMI_32 , ADC= 258, OverTh=true +Channel=LUMI_09 , ADC= 256, OverTh=true +Channel=LUMI_33 , ADC= 253, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 259, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 258, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 260, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 255, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 256, OverTh=true +Channel=LUMI_22 , ADC= 259, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 253, OverTh=false +Channel=MON_04 , ADC= 254, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 258, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 259, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 259, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 259, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 259, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 253, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 254, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 254, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 254, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 255, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 256, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 257, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 253, OverTh=false +Channel=TIME_35_15, ADC= 256, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30192 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 804, OverTh=true +Channel=LUMI_24 , ADC= 840, OverTh=true +Channel=LUMI_01 , ADC= 841, OverTh=true +Channel=LUMI_25 , ADC= 793, OverTh=true +Channel=LUMI_02 , ADC= 919, OverTh=true +Channel=LUMI_26 , ADC= 725, OverTh=true +Channel=LUMI_03 , ADC= 864, OverTh=true +Channel=LUMI_27 , ADC= 974, OverTh=true +Channel=LUMI_04 , ADC= 278, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 290, OverTh=true +Channel=LUMI_36 , ADC= 231, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 244, OverTh=true +Channel=LUMI_14 , ADC= 273, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 290, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 263, OverTh=true +Channel=LUMI_23 , ADC= 240, OverTh=true +Channel=LUMI_47 , ADC= 266, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 332, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 256, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 260, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 258, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 259, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 256, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 263, OverTh=true +Channel=LUMI_20 , ADC= 253, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 258, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 257, OverTh=false +Channel=TIME_29_08, ADC= 255, OverTh=false +Channel=TIME_05_01, ADC= 256, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 257, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 255, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 259, OverTh=false +Channel=TIME_05_12, ADC= 258, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 258, OverTh=false +Channel=TIME_05_13, ADC= 254, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 254, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 254, OverTh=false +Channel=TIME_29_14, ADC= 259, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 255, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 258, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 257, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 254, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30193 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 875, OverTh=true +Channel=LUMI_24 , ADC= 966, OverTh=true +Channel=LUMI_01 , ADC= 836, OverTh=true +Channel=LUMI_25 , ADC= 850, OverTh=true +Channel=LUMI_02 , ADC= 903, OverTh=true +Channel=LUMI_26 , ADC= 861, OverTh=true +Channel=LUMI_03 , ADC= 948, OverTh=true +Channel=LUMI_27 , ADC= 950, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 379, OverTh=true +Channel=LUMI_13 , ADC= 253, OverTh=true +Channel=LUMI_37 , ADC= 352, OverTh=true +Channel=LUMI_14 , ADC= 330, OverTh=true +Channel=LUMI_38 , ADC= 311, OverTh=true +Channel=LUMI_15 , ADC= 321, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 332, OverTh=true +Channel=LUMI_40 , ADC= 358, OverTh=true +Channel=LUMI_23 , ADC= 359, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 332, OverTh=false +Channel=PIN_03 , ADC= 325, OverTh=false +Channel=PIN_04 , ADC= 340, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 338, OverTh=false +Channel=PIN_06 , ADC= 246, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 253, OverTh=true +Channel=LUMI_07 , ADC= 257, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 254, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 259, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 254, OverTh=true +Channel=LUMI_44 , ADC= 254, OverTh=true +Channel=LUMI_21 , ADC= 261, OverTh=true +Channel=LUMI_45 , ADC= 261, OverTh=true +Channel=LUMI_22 , ADC= 258, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 258, OverTh=false +Channel=TIME_05_00, ADC= 256, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 254, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 259, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 253, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 254, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 254, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 256, OverTh=false +Channel=TIME_05_12, ADC= 255, OverTh=false +Channel=TIME_29_04, ADC= 258, OverTh=false +Channel=TIME_29_12, ADC= 258, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 255, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 255, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 257, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 254, OverTh=false +Channel=TIME_11_01, ADC= 257, OverTh=false +Channel=TIME_11_09, ADC= 256, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 256, OverTh=false +Channel=TIME_35_02, ADC= 258, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 254, OverTh=false +Channel=TIME_35_11, ADC= 259, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 254, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 256, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 256, OverTh=false +Channel=TIME_11_14, ADC= 258, OverTh=false +Channel=TIME_35_06, ADC= 258, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 255, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 252, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30194 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 818, OverTh=true +Channel=LUMI_24 , ADC= 827, OverTh=true +Channel=LUMI_01 , ADC= 899, OverTh=true +Channel=LUMI_25 , ADC= 776, OverTh=true +Channel=LUMI_02 , ADC= 908, OverTh=true +Channel=LUMI_26 , ADC= 674, OverTh=true +Channel=LUMI_03 , ADC= 927, OverTh=true +Channel=LUMI_27 , ADC= 984, OverTh=true +Channel=LUMI_04 , ADC= 279, OverTh=true +Channel=LUMI_28 , ADC= 246, OverTh=true +Channel=LUMI_12 , ADC= 291, OverTh=true +Channel=LUMI_36 , ADC= 232, OverTh=true +Channel=LUMI_13 , ADC= 341, OverTh=true +Channel=LUMI_37 , ADC= 245, OverTh=true +Channel=LUMI_14 , ADC= 274, OverTh=true +Channel=LUMI_38 , ADC= 283, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 234, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 259, OverTh=true +Channel=LUMI_23 , ADC= 237, OverTh=true +Channel=LUMI_47 , ADC= 265, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 351, OverTh=false +Channel=PIN_03 , ADC= 327, OverTh=false +Channel=PIN_04 , ADC= 343, OverTh=false +Channel=PIN_08 , ADC= 331, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 243, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 253, OverTh=true +Channel=LUMI_09 , ADC= 255, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 255, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 254, OverTh=true +Channel=LUMI_41 , ADC= 260, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 255, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 257, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 259, OverTh=true +Channel=MON_01 , ADC= 257, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 255, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 257, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 259, OverTh=false +Channel=TIME_29_02, ADC= 256, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 256, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 256, OverTh=false +Channel=TIME_29_05, ADC= 254, OverTh=false +Channel=TIME_29_13, ADC= 258, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 259, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 256, OverTh=false +Channel=TIME_05_15, ADC= 256, OverTh=false +Channel=TIME_29_07, ADC= 256, OverTh=false +Channel=TIME_29_15, ADC= 257, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 257, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 254, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 255, OverTh=false +Channel=TIME_11_02, ADC= 258, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 260, OverTh=false +Channel=TIME_35_11, ADC= 255, OverTh=false +Channel=TIME_11_04, ADC= 257, OverTh=false +Channel=TIME_11_12, ADC= 255, OverTh=false +Channel=TIME_35_04, ADC= 258, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 255, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 257, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 255, OverTh=false +Channel=TIME_35_15, ADC= 258, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30195 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 838, OverTh=true +Channel=LUMI_24 , ADC= 950, OverTh=true +Channel=LUMI_01 , ADC= 885, OverTh=true +Channel=LUMI_25 , ADC= 886, OverTh=true +Channel=LUMI_02 , ADC= 963, OverTh=true +Channel=LUMI_26 , ADC= 850, OverTh=true +Channel=LUMI_03 , ADC= 945, OverTh=true +Channel=LUMI_27 , ADC=1015, OverTh=true +Channel=LUMI_04 , ADC= 315, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 312, OverTh=true +Channel=LUMI_36 , ADC= 377, OverTh=true +Channel=LUMI_13 , ADC= 252, OverTh=true +Channel=LUMI_37 , ADC= 349, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 314, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 318, OverTh=false +Channel=PIN_02 , ADC= 343, OverTh=false +Channel=PIN_03 , ADC= 330, OverTh=false +Channel=PIN_04 , ADC= 341, OverTh=false +Channel=PIN_08 , ADC= 341, OverTh=false +Channel=PIN_09 , ADC= 347, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 258, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 258, OverTh=true +Channel=LUMI_08 , ADC= 257, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 254, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 255, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 261, OverTh=true +Channel=LUMI_43 , ADC= 258, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 256, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 257, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 254, OverTh=false +Channel=TIME_05_09, ADC= 258, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 258, OverTh=false +Channel=TIME_05_10, ADC= 255, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 259, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 257, OverTh=false +Channel=TIME_29_11, ADC= 255, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 257, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 255, OverTh=false +Channel=TIME_29_05, ADC= 257, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 256, OverTh=false +Channel=TIME_29_14, ADC= 256, OverTh=false +Channel=TIME_05_07, ADC= 255, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 255, OverTh=false +Channel=TIME_29_15, ADC= 255, OverTh=false +Channel=TIME_11_00, ADC= 256, OverTh=false +Channel=TIME_11_08, ADC= 258, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 258, OverTh=false +Channel=TIME_35_09, ADC= 257, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 258, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 257, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 258, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 255, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 256, OverTh=false +Channel=TIME_11_15, ADC= 258, OverTh=false +Channel=TIME_35_07, ADC= 256, OverTh=false +Channel=TIME_35_15, ADC= 259, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30196 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 926, OverTh=true +Channel=LUMI_24 , ADC= 858, OverTh=true +Channel=LUMI_01 , ADC= 792, OverTh=true +Channel=LUMI_25 , ADC= 844, OverTh=true +Channel=LUMI_02 , ADC= 941, OverTh=true +Channel=LUMI_26 , ADC= 696, OverTh=true +Channel=LUMI_03 , ADC= 782, OverTh=true +Channel=LUMI_27 , ADC= 941, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 288, OverTh=true +Channel=LUMI_36 , ADC= 227, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 240, OverTh=true +Channel=LUMI_14 , ADC= 271, OverTh=true +Channel=LUMI_38 , ADC= 280, OverTh=true +Channel=LUMI_15 , ADC= 293, OverTh=true +Channel=LUMI_39 , ADC= 232, OverTh=true +Channel=LUMI_16 , ADC= 286, OverTh=true +Channel=LUMI_40 , ADC= 260, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 333, OverTh=false +Channel=PIN_03 , ADC= 329, OverTh=false +Channel=PIN_04 , ADC= 333, OverTh=false +Channel=PIN_08 , ADC= 335, OverTh=false +Channel=PIN_09 , ADC= 341, OverTh=false +Channel=PIN_06 , ADC= 253, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 259, OverTh=true +Channel=LUMI_30 , ADC= 259, OverTh=true +Channel=LUMI_07 , ADC= 259, OverTh=true +Channel=LUMI_31 , ADC= 257, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 257, OverTh=true +Channel=LUMI_33 , ADC= 257, OverTh=true +Channel=LUMI_10 , ADC= 258, OverTh=true +Channel=LUMI_34 , ADC= 256, OverTh=true +Channel=LUMI_17 , ADC= 256, OverTh=true +Channel=LUMI_41 , ADC= 254, OverTh=true +Channel=LUMI_18 , ADC= 256, OverTh=true +Channel=LUMI_42 , ADC= 256, OverTh=true +Channel=LUMI_19 , ADC= 256, OverTh=true +Channel=LUMI_43 , ADC= 256, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 254, OverTh=true +Channel=LUMI_22 , ADC= 257, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 255, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 256, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 259, OverTh=false +Channel=TIME_05_08, ADC= 256, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 255, OverTh=false +Channel=TIME_29_09, ADC= 256, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 254, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 258, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 255, OverTh=false +Channel=TIME_29_03, ADC= 258, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 257, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 257, OverTh=false +Channel=TIME_05_13, ADC= 258, OverTh=false +Channel=TIME_29_05, ADC= 256, OverTh=false +Channel=TIME_29_13, ADC= 257, OverTh=false +Channel=TIME_05_06, ADC= 254, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 258, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 258, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 256, OverTh=false +Channel=TIME_11_01, ADC= 255, OverTh=false +Channel=TIME_11_09, ADC= 257, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 255, OverTh=false +Channel=TIME_11_10, ADC= 253, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 257, OverTh=false +Channel=TIME_11_03, ADC= 256, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 259, OverTh=false +Channel=TIME_35_11, ADC= 257, OverTh=false +Channel=TIME_11_04, ADC= 259, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 256, OverTh=false +Channel=TIME_11_05, ADC= 254, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 258, OverTh=false +Channel=TIME_11_14, ADC= 257, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 255, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 256, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30197 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 797, OverTh=true +Channel=LUMI_24 , ADC=1036, OverTh=true +Channel=LUMI_01 , ADC= 857, OverTh=true +Channel=LUMI_25 , ADC= 877, OverTh=true +Channel=LUMI_02 , ADC= 794, OverTh=true +Channel=LUMI_26 , ADC= 863, OverTh=true +Channel=LUMI_03 , ADC= 931, OverTh=true +Channel=LUMI_27 , ADC= 977, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 248, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 326, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 315, OverTh=true +Channel=LUMI_39 , ADC= 370, OverTh=true +Channel=LUMI_16 , ADC= 330, OverTh=true +Channel=LUMI_40 , ADC= 357, OverTh=true +Channel=LUMI_23 , ADC= 357, OverTh=true +Channel=LUMI_47 , ADC= 338, OverTh=true +Channel=PIN_01 , ADC= 323, OverTh=false +Channel=PIN_02 , ADC= 339, OverTh=false +Channel=PIN_03 , ADC= 337, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 342, OverTh=false +Channel=PIN_09 , ADC= 354, OverTh=false +Channel=PIN_06 , ADC= 246, OverTh=false +Channel=PIN_07 , ADC= 257, OverTh=false +Channel=LUMI_06 , ADC= 255, OverTh=true +Channel=LUMI_30 , ADC= 257, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 255, OverTh=true +Channel=LUMI_32 , ADC= 257, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 258, OverTh=true +Channel=LUMI_10 , ADC= 259, OverTh=true +Channel=LUMI_34 , ADC= 257, OverTh=true +Channel=LUMI_17 , ADC= 255, OverTh=true +Channel=LUMI_41 , ADC= 259, OverTh=true +Channel=LUMI_18 , ADC= 257, OverTh=true +Channel=LUMI_42 , ADC= 254, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 257, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 260, OverTh=true +Channel=MON_01 , ADC= 258, OverTh=false +Channel=MON_02 , ADC= 256, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 257, OverTh=false +Channel=TIME_05_08, ADC= 257, OverTh=false +Channel=TIME_29_00, ADC= 258, OverTh=false +Channel=TIME_29_08, ADC= 257, OverTh=false +Channel=TIME_05_01, ADC= 258, OverTh=false +Channel=TIME_05_09, ADC= 255, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 257, OverTh=false +Channel=TIME_05_02, ADC= 255, OverTh=false +Channel=TIME_05_10, ADC= 256, OverTh=false +Channel=TIME_29_02, ADC= 260, OverTh=false +Channel=TIME_29_10, ADC= 257, OverTh=false +Channel=TIME_05_03, ADC= 257, OverTh=false +Channel=TIME_05_11, ADC= 258, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 256, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 257, OverTh=false +Channel=TIME_29_04, ADC= 259, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 256, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 258, OverTh=false +Channel=TIME_05_14, ADC= 258, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 257, OverTh=false +Channel=TIME_05_07, ADC= 258, OverTh=false +Channel=TIME_05_15, ADC= 255, OverTh=false +Channel=TIME_29_07, ADC= 254, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 256, OverTh=false +Channel=TIME_35_00, ADC= 258, OverTh=false +Channel=TIME_35_08, ADC= 255, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 259, OverTh=false +Channel=TIME_35_01, ADC= 253, OverTh=false +Channel=TIME_35_09, ADC= 258, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 258, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 255, OverTh=false +Channel=TIME_11_11, ADC= 256, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 252, OverTh=false +Channel=TIME_11_04, ADC= 255, OverTh=false +Channel=TIME_11_12, ADC= 259, OverTh=false +Channel=TIME_35_04, ADC= 255, OverTh=false +Channel=TIME_35_12, ADC= 258, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 258, OverTh=false +Channel=TIME_35_13, ADC= 256, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 254, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 254, OverTh=false +Channel=TIME_35_07, ADC= 257, OverTh=false +Channel=TIME_35_15, ADC= 254, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30198 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 826, OverTh=true +Channel=LUMI_24 , ADC= 807, OverTh=true +Channel=LUMI_01 , ADC= 881, OverTh=true +Channel=LUMI_25 , ADC= 841, OverTh=true +Channel=LUMI_02 , ADC= 822, OverTh=true +Channel=LUMI_26 , ADC= 733, OverTh=true +Channel=LUMI_03 , ADC= 849, OverTh=true +Channel=LUMI_27 , ADC= 978, OverTh=true +Channel=LUMI_04 , ADC= 277, OverTh=true +Channel=LUMI_28 , ADC= 244, OverTh=true +Channel=LUMI_12 , ADC= 289, OverTh=true +Channel=LUMI_36 , ADC= 230, OverTh=true +Channel=LUMI_13 , ADC= 340, OverTh=true +Channel=LUMI_37 , ADC= 241, OverTh=true +Channel=LUMI_14 , ADC= 270, OverTh=true +Channel=LUMI_38 , ADC= 281, OverTh=true +Channel=LUMI_15 , ADC= 296, OverTh=true +Channel=LUMI_39 , ADC= 236, OverTh=true +Channel=LUMI_16 , ADC= 289, OverTh=true +Channel=LUMI_40 , ADC= 264, OverTh=true +Channel=LUMI_23 , ADC= 238, OverTh=true +Channel=LUMI_47 , ADC= 268, OverTh=true +Channel=PIN_01 , ADC= 321, OverTh=false +Channel=PIN_02 , ADC= 337, OverTh=false +Channel=PIN_03 , ADC= 326, OverTh=false +Channel=PIN_04 , ADC= 335, OverTh=false +Channel=PIN_08 , ADC= 337, OverTh=false +Channel=PIN_09 , ADC= 346, OverTh=false +Channel=PIN_06 , ADC= 249, OverTh=false +Channel=PIN_07 , ADC= 256, OverTh=false +Channel=LUMI_06 , ADC= 257, OverTh=true +Channel=LUMI_30 , ADC= 256, OverTh=true +Channel=LUMI_07 , ADC= 255, OverTh=true +Channel=LUMI_31 , ADC= 260, OverTh=true +Channel=LUMI_08 , ADC= 258, OverTh=true +Channel=LUMI_32 , ADC= 255, OverTh=true +Channel=LUMI_09 , ADC= 258, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 254, OverTh=true +Channel=LUMI_34 , ADC= 258, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 258, OverTh=true +Channel=LUMI_42 , ADC= 258, OverTh=true +Channel=LUMI_19 , ADC= 255, OverTh=true +Channel=LUMI_43 , ADC= 259, OverTh=true +Channel=LUMI_20 , ADC= 256, OverTh=true +Channel=LUMI_44 , ADC= 256, OverTh=true +Channel=LUMI_21 , ADC= 258, OverTh=true +Channel=LUMI_45 , ADC= 257, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 255, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 258, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 256, OverTh=false +Channel=TIME_05_00, ADC= 255, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 256, OverTh=false +Channel=TIME_29_08, ADC= 260, OverTh=false +Channel=TIME_05_01, ADC= 257, OverTh=false +Channel=TIME_05_09, ADC= 256, OverTh=false +Channel=TIME_29_01, ADC= 256, OverTh=false +Channel=TIME_29_09, ADC= 255, OverTh=false +Channel=TIME_05_02, ADC= 256, OverTh=false +Channel=TIME_05_10, ADC= 258, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 256, OverTh=false +Channel=TIME_05_11, ADC= 256, OverTh=false +Channel=TIME_29_03, ADC= 255, OverTh=false +Channel=TIME_29_11, ADC= 254, OverTh=false +Channel=TIME_05_04, ADC= 257, OverTh=false +Channel=TIME_05_12, ADC= 256, OverTh=false +Channel=TIME_29_04, ADC= 252, OverTh=false +Channel=TIME_29_12, ADC= 255, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 258, OverTh=false +Channel=TIME_29_13, ADC= 256, OverTh=false +Channel=TIME_05_06, ADC= 257, OverTh=false +Channel=TIME_05_14, ADC= 257, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 255, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 257, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 259, OverTh=false +Channel=TIME_11_00, ADC= 257, OverTh=false +Channel=TIME_11_08, ADC= 259, OverTh=false +Channel=TIME_35_00, ADC= 255, OverTh=false +Channel=TIME_35_08, ADC= 258, OverTh=false +Channel=TIME_11_01, ADC= 258, OverTh=false +Channel=TIME_11_09, ADC= 255, OverTh=false +Channel=TIME_35_01, ADC= 256, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 257, OverTh=false +Channel=TIME_11_10, ADC= 255, OverTh=false +Channel=TIME_35_02, ADC= 257, OverTh=false +Channel=TIME_35_10, ADC= 258, OverTh=false +Channel=TIME_11_03, ADC= 254, OverTh=false +Channel=TIME_11_11, ADC= 255, OverTh=false +Channel=TIME_35_03, ADC= 258, OverTh=false +Channel=TIME_35_11, ADC= 258, OverTh=false +Channel=TIME_11_04, ADC= 258, OverTh=false +Channel=TIME_11_12, ADC= 256, OverTh=false +Channel=TIME_35_04, ADC= 256, OverTh=false +Channel=TIME_35_12, ADC= 255, OverTh=false +Channel=TIME_11_05, ADC= 260, OverTh=false +Channel=TIME_11_13, ADC= 257, OverTh=false +Channel=TIME_35_05, ADC= 256, OverTh=false +Channel=TIME_35_13, ADC= 257, OverTh=false +Channel=TIME_11_06, ADC= 255, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 255, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 253, OverTh=false +Channel=TIME_11_15, ADC= 255, OverTh=false +Channel=TIME_35_07, ADC= 254, OverTh=false +Channel=TIME_35_15, ADC= 255, OverTh=false +PrintHeader_7bb0e124 INFO Run 282822, Event 30199 +PlumeRawToDigits_89428f2d DEBUG Found ADCs: +Channel=LUMI_00 , ADC= 819, OverTh=true +Channel=LUMI_24 , ADC=1005, OverTh=true +Channel=LUMI_01 , ADC= 883, OverTh=true +Channel=LUMI_25 , ADC= 879, OverTh=true +Channel=LUMI_02 , ADC= 870, OverTh=true +Channel=LUMI_26 , ADC= 906, OverTh=true +Channel=LUMI_03 , ADC= 905, OverTh=true +Channel=LUMI_27 , ADC=1069, OverTh=true +Channel=LUMI_04 , ADC= 313, OverTh=true +Channel=LUMI_28 , ADC= 362, OverTh=true +Channel=LUMI_12 , ADC= 311, OverTh=true +Channel=LUMI_36 , ADC= 376, OverTh=true +Channel=LUMI_13 , ADC= 251, OverTh=true +Channel=LUMI_37 , ADC= 348, OverTh=true +Channel=LUMI_14 , ADC= 328, OverTh=true +Channel=LUMI_38 , ADC= 310, OverTh=true +Channel=LUMI_15 , ADC= 321, OverTh=true +Channel=LUMI_39 , ADC= 374, OverTh=true +Channel=LUMI_16 , ADC= 335, OverTh=true +Channel=LUMI_40 , ADC= 362, OverTh=true +Channel=LUMI_23 , ADC= 360, OverTh=true +Channel=LUMI_47 , ADC= 340, OverTh=true +Channel=PIN_01 , ADC= 319, OverTh=false +Channel=PIN_02 , ADC= 345, OverTh=false +Channel=PIN_03 , ADC= 334, OverTh=false +Channel=PIN_04 , ADC= 337, OverTh=false +Channel=PIN_08 , ADC= 336, OverTh=false +Channel=PIN_09 , ADC= 340, OverTh=false +Channel=PIN_06 , ADC= 254, OverTh=false +Channel=PIN_07 , ADC= 258, OverTh=false +Channel=LUMI_06 , ADC= 256, OverTh=true +Channel=LUMI_30 , ADC= 258, OverTh=true +Channel=LUMI_07 , ADC= 256, OverTh=true +Channel=LUMI_31 , ADC= 256, OverTh=true +Channel=LUMI_08 , ADC= 256, OverTh=true +Channel=LUMI_32 , ADC= 256, OverTh=true +Channel=LUMI_09 , ADC= 259, OverTh=true +Channel=LUMI_33 , ADC= 256, OverTh=true +Channel=LUMI_10 , ADC= 257, OverTh=true +Channel=LUMI_34 , ADC= 255, OverTh=true +Channel=LUMI_17 , ADC= 257, OverTh=true +Channel=LUMI_41 , ADC= 256, OverTh=true +Channel=LUMI_18 , ADC= 255, OverTh=true +Channel=LUMI_42 , ADC= 257, OverTh=true +Channel=LUMI_19 , ADC= 259, OverTh=true +Channel=LUMI_43 , ADC= 257, OverTh=true +Channel=LUMI_20 , ADC= 255, OverTh=true +Channel=LUMI_44 , ADC= 258, OverTh=true +Channel=LUMI_21 , ADC= 255, OverTh=true +Channel=LUMI_45 , ADC= 255, OverTh=true +Channel=LUMI_22 , ADC= 256, OverTh=true +Channel=LUMI_46 , ADC= 257, OverTh=true +Channel=MON_01 , ADC= 256, OverTh=false +Channel=MON_02 , ADC= 257, OverTh=false +Channel=MON_03 , ADC= 258, OverTh=false +Channel=MON_04 , ADC= 257, OverTh=false +Channel=TIME_05_00, ADC= 258, OverTh=false +Channel=TIME_05_08, ADC= 255, OverTh=false +Channel=TIME_29_00, ADC= 255, OverTh=false +Channel=TIME_29_08, ADC= 258, OverTh=false +Channel=TIME_05_01, ADC= 259, OverTh=false +Channel=TIME_05_09, ADC= 257, OverTh=false +Channel=TIME_29_01, ADC= 258, OverTh=false +Channel=TIME_29_09, ADC= 258, OverTh=false +Channel=TIME_05_02, ADC= 259, OverTh=false +Channel=TIME_05_10, ADC= 257, OverTh=false +Channel=TIME_29_02, ADC= 257, OverTh=false +Channel=TIME_29_10, ADC= 256, OverTh=false +Channel=TIME_05_03, ADC= 255, OverTh=false +Channel=TIME_05_11, ADC= 257, OverTh=false +Channel=TIME_29_03, ADC= 256, OverTh=false +Channel=TIME_29_11, ADC= 257, OverTh=false +Channel=TIME_05_04, ADC= 258, OverTh=false +Channel=TIME_05_12, ADC= 254, OverTh=false +Channel=TIME_29_04, ADC= 255, OverTh=false +Channel=TIME_29_12, ADC= 256, OverTh=false +Channel=TIME_05_05, ADC= 254, OverTh=false +Channel=TIME_05_13, ADC= 257, OverTh=false +Channel=TIME_29_05, ADC= 259, OverTh=false +Channel=TIME_29_13, ADC= 255, OverTh=false +Channel=TIME_05_06, ADC= 256, OverTh=false +Channel=TIME_05_14, ADC= 256, OverTh=false +Channel=TIME_29_06, ADC= 257, OverTh=false +Channel=TIME_29_14, ADC= 258, OverTh=false +Channel=TIME_05_07, ADC= 257, OverTh=false +Channel=TIME_05_15, ADC= 259, OverTh=false +Channel=TIME_29_07, ADC= 258, OverTh=false +Channel=TIME_29_15, ADC= 256, OverTh=false +Channel=TIME_11_00, ADC= 258, OverTh=false +Channel=TIME_11_08, ADC= 257, OverTh=false +Channel=TIME_35_00, ADC= 256, OverTh=false +Channel=TIME_35_08, ADC= 257, OverTh=false +Channel=TIME_11_01, ADC= 256, OverTh=false +Channel=TIME_11_09, ADC= 258, OverTh=false +Channel=TIME_35_01, ADC= 257, OverTh=false +Channel=TIME_35_09, ADC= 254, OverTh=false +Channel=TIME_11_02, ADC= 256, OverTh=false +Channel=TIME_11_10, ADC= 257, OverTh=false +Channel=TIME_35_02, ADC= 256, OverTh=false +Channel=TIME_35_10, ADC= 259, OverTh=false +Channel=TIME_11_03, ADC= 257, OverTh=false +Channel=TIME_11_11, ADC= 257, OverTh=false +Channel=TIME_35_03, ADC= 257, OverTh=false +Channel=TIME_35_11, ADC= 256, OverTh=false +Channel=TIME_11_04, ADC= 254, OverTh=false +Channel=TIME_11_12, ADC= 257, OverTh=false +Channel=TIME_35_04, ADC= 257, OverTh=false +Channel=TIME_35_12, ADC= 257, OverTh=false +Channel=TIME_11_05, ADC= 255, OverTh=false +Channel=TIME_11_13, ADC= 258, OverTh=false +Channel=TIME_35_05, ADC= 255, OverTh=false +Channel=TIME_35_13, ADC= 259, OverTh=false +Channel=TIME_11_06, ADC= 257, OverTh=false +Channel=TIME_11_14, ADC= 256, OverTh=false +Channel=TIME_35_06, ADC= 257, OverTh=false +Channel=TIME_35_14, ADC= 256, OverTh=false +Channel=TIME_11_07, ADC= 258, OverTh=false +Channel=TIME_11_15, ADC= 257, OverTh=false +Channel=TIME_35_07, ADC= 258, OverTh=false +Channel=TIME_35_15, ADC= 257, OverTh=false ApplicationMgr INFO Application Manager Stopped successfully -PlumeTuple_402ca397 SUCCESS Booked 1 N-Tuples and 0 Event Tag Collections -PlumeTuple_402ca397 SUCCESS List of booked N-Tuples in directory "FILE1/PlumeTuple_402ca397" -PlumeTuple_402ca397 SUCCESS ID=Plume Title="PlumeTuple" #items=188{EventInSequence,RunNumber,EvtNumber,OrbitNumber,gpsTime,bcid,bxType,calibType,adc} +PlumeTuple_d36bf254 SUCCESS Booked 1 N-Tuples and 0 Event Tag Collections +PlumeTuple_d36bf254 SUCCESS List of booked N-Tuples in directory "FILE1/PlumeTuple_d36bf254" +PlumeTuple_d36bf254 SUCCESS ID=Plume Title="PlumeTuple" #items=184{EventInSequence,RunNumber,EvtNumber,OrbitNumber,gpsTime,bcid,bxType,calibType,adc} HLTControlFlowMgr INFO HLTControlFlowMgr INFO StateTree: CFNode #executed #passed LAZY_AND: Top #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| PrintHeader/PrintHeader_7bb0e124 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| - PlumeDigitMonitor/PlumeDigitMonitor_15db6737 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| - PlumeTuple/PlumeTuple_402ca397 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeDigitMonitor/PlumeDigitMonitor_9abf3184 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeTuple/PlumeTuple_d36bf254 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| HLTControlFlowMgr INFO Histograms converted successfully according to request. RFileCnv INFO dumping contents of /NTUPLES/FILE1 TFile: name=plume_decoding_ntuple.root, title=Gaudi Trees, option=CREATE @@ -25447,12 +24445,9 @@ ApplicationMgr INFO Application Manager Terminated succe HLTControlFlowMgr INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Processed events" | 200 | -PlumeDigitMonitor_15db6737 INFO Number of counters : 1 - | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Number of ADC over threshold for LUMI" | 200 | 4 | 0.020000 | 0.28213 | 0.0000 | 4.0000 | -PlumeRawToDigits_14e83b64 INFO Number of counters : 1 +PlumeDigitMonitor_9abf3184 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "Number of PMTs that got hit in event" | 24000 | 0 | 0.0000 | 0.0000 | 1.7977e+308 |-1.7977e+308 | + | "Number of ADC over threshold for LUMI" | 200 | 8800 | 44.000 | 0.0000 | 44.000 | 44.000 | PrintHeader_7bb0e124 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "EventCount" | 200 | diff --git a/Pr/PrAlgorithms/src/PrStoreUTHit.cpp b/Pr/PrAlgorithms/src/PrStoreUTHit.cpp index 7ccac4716270329bece6bfc7e6ff0177aa6438eb..3447eee377266c9ffa0c3dd06ac9a994a69682ac 100644 --- a/Pr/PrAlgorithms/src/PrStoreUTHit.cpp +++ b/Pr/PrAlgorithms/src/PrStoreUTHit.cpp @@ -33,7 +33,7 @@ namespace LHCb::Pr::UT { using Transformer = LHCb::Algorithm::Transformer<HANDLER( const EventContext&, const RawBank::View&, const UTGeomCache& ), LHCb::DetDesc::usesConditions<UTGeomCache>>; - + using PositionMethod = UTDecoder<::UTDAQ::version::v5>::PositionMethod; template <typename HANDLER> class StoreHit : public Transformer<HANDLER> { public: @@ -71,7 +71,7 @@ namespace LHCb::Pr::UT { auto decode = [&hitHandler, geomOffset = UTDAQ::boardIDfromSourceID( bank->sourceID() ) * static_cast<unsigned>( UTInfo::SectorNumbers::MaxSectorsPerBoard ), - &cache]( auto decoder_range ) { + &cache]( auto decoder_range, auto clusterChargeHandler, auto fracStripBitsHandler ) { for ( const auto& aWord : decoder_range ) { const std::size_t geomIdx = geomOffset + ( aWord.channelID() / 512 ); assert( geomIdx < cache.sectors.size() ); @@ -84,29 +84,43 @@ namespace LHCb::Pr::UT { const auto strip = ( aWord.channelID() & 0x1ff ); #ifdef USE_DD4HEP - hitHandler.emplace_back( aSector, fullChan.idx, strip, aWord.fracStripBits(), + hitHandler.emplace_back( aSector, fullChan.idx, strip, fracStripBitsHandler( aWord ), #else - hitHandler.emplace_back( *aSector, fullChan.idx, strip, aWord.fracStripBits(), + hitHandler.emplace_back( *aSector, fullChan.idx, strip, fracStripBitsHandler( aWord ), #endif Detector::UT::ChannelID{fullChan.chanID + strip}, aWord.pseudoSizeBits(), - aWord.hasHighThreshold() ); + aWord.hasHighThreshold(), clusterChargeHandler( aWord ) ); } }; switch ( ::UTDAQ::version{bank->version()} ) { case ::UTDAQ::version::v2: if ( !isCluster ) - decode( UTDecoder<::UTDAQ::version::v2>{*bank}.posRange() ); + decode( + UTDecoder<::UTDAQ::version::v2>{*bank}.posRange(), + []( const auto& aWord ) { return aWord.clusterCharge(); }, + []( const auto& aWord ) { return aWord.fracStripBits(); } ); else - decode( UTDecoder<::UTDAQ::version::v2>{*bank}.posAdcRange( isAdcMax, stripMax ) ); + decode( + UTDecoder<::UTDAQ::version::v2>{*bank}.posAdcRange( positionMethod, stripMax ), + []( const auto& aWord ) { return aWord.clusterCharge(); }, + []( const auto& aWord ) { return aWord.fracStripBits(); } ); break; case ::UTDAQ::version::v5: if ( !isCluster ) - decode( UTDecoder<::UTDAQ::version::v5>{*bank}.posRange() ); + decode( + UTDecoder<::UTDAQ::version::v5>{*bank}.posRange(), + []( const auto& aWord ) { return aWord.clusterCharge(); }, + []( const auto& aWord ) { return aWord.fracStripBits(); } ); else - decode( UTDecoder<::UTDAQ::version::v5>{*bank}.posAdcRange( isAdcMax, stripMax ) ); + decode( + UTDecoder<::UTDAQ::version::v5>{*bank}.posAdcRange( positionMethod, stripMax ), + []( const auto& aWord ) { return aWord.clusterCharge(); }, + []( const auto& aWord ) { return aWord.fracStripBits(); } ); break; case ::UTDAQ::version::v4: - decode( UTDecoder<::UTDAQ::version::v4>{*bank}.posRange() ); + decode( + UTDecoder<::UTDAQ::version::v4>{*bank}.posRange(), [&]( const auto& ) { return 0; }, + []( const auto& aWord ) { return aWord.fracStripBits() / 4; } ); break; default: throw std::runtime_error{"unknown version of the RawBank"}; /* OOPS: unknown format */ @@ -128,10 +142,10 @@ namespace LHCb::Pr::UT { private: //---Properties - Gaudi::Property<bool> isCluster{this, "isCluster", true}; - Gaudi::Property<bool> isAdcMax{this, "isAdcMax", false}; - Gaudi::Property<unsigned int> stripMax{this, "stripMax", 4}; - mutable Gaudi::Accumulators::SummingCounter<> m_nBanks{this, "#banks"}; + Gaudi::Property<bool> isCluster{this, "isCluster", true}; + Gaudi::Property<PositionMethod> positionMethod{this, "positionMethod", PositionMethod::GeoWeighting}; + Gaudi::Property<unsigned int> stripMax{this, "stripMax", 4}; + mutable Gaudi::Accumulators::SummingCounter<> m_nBanks{this, "#banks"}; mutable Gaudi::Accumulators::MsgCounter<MSG::ERROR> m_bad_data{this, "Decoding Error -- dropping all UT hits"}; ToolHandle<IUTReadoutTool> m_readoutTool{this, "ReadoutTool", "UTReadoutTool"}; }; diff --git a/Pr/PrKernel/include/PrKernel/PrChecker.h b/Pr/PrKernel/include/PrKernel/PrChecker.h index d163e5b56b244be4f978661a2037db3c1b420303..2bb5924109c6b00edc98b4e6f2d3da0bf87c7e02 100644 --- a/Pr/PrKernel/include/PrKernel/PrChecker.h +++ b/Pr/PrKernel/include/PrKernel/PrChecker.h @@ -181,71 +181,4 @@ namespace LHCb::Pr::Checker { return std::nullopt; } } - - class isTrack { - public: - isTrack( RecAs kind ) : m_kind{kind} {}; - /// Functor that checks if the MCParticle fulfills certain criteria, e.g. reco'ble as long track, B daughter, ... - bool operator()( MCParticle* mcp, MCTrackInfo* mcInfo, span<const LHCbID> lhcbIds ) const { - if ( auto type = reconstructibleType( mcp, m_kind, *mcInfo ); type.has_value() ) return type.value(); - if ( auto particle = particleType( mcp, m_kind ); particle.has_value() ) return particle.value(); - switch ( m_kind ) { - case RecAs::hasVeloOverlap: { - std::vector<LHCb::LHCbID> vpids{}; - for ( auto const& lhcbid : lhcbIds ) { - if ( lhcbid.isVP() ) { - auto vp_sensor = lhcbid.vpID().sensor(); - auto vp_module = lhcbid.vpID().module(); - for ( auto const& id2 : vpids ) { - // if 2 ids are in the same module but different sensors, there is an overlap - if ( vp_module == id2.vpID().module() && vp_sensor != id2.vpID().sensor() ) return true; - } - vpids.push_back( lhcbid ); - } - } - return false; - } - case RecAs::hasVeloCrossingSide: { - std::vector<LHCb::LHCbID> vpids{}; - for ( auto const& lhcbid : lhcbIds ) { - if ( lhcbid.isVP() ) { - auto vp_station = lhcbid.vpID().station(); - auto vp_module = lhcbid.vpID().module(); - for ( auto const& id2 : vpids ) { - // if 2 ids are in the same station but different modules, the particle is crossing side - if ( vp_station == id2.vpID().station() && vp_module != id2.vpID().module() ) return true; - } - vpids.push_back( lhcbid ); - } - } - return false; - } - case RecAs::muonHitsInAllStations: { - // Check that lhcbIds contains at least one muon hit in each muon station - constexpr auto n_stations = 4; - std::bitset<n_stations> seen; - for ( auto const& lhcbid : lhcbIds ) { - if ( lhcbid.isMuon() ) { seen[lhcbid.muonID().station()] = true; } - } - return seen.all(); - } - case RecAs::muonHitsInAtLeastTwoStations: { - // Check that lhcbIds contains at least one muon hit in at least two muon stations - constexpr auto n_stations = 4; - std::bitset<n_stations> seen; - for ( auto const& lhcbid : lhcbIds ) { - if ( lhcbid.isMuon() ) { seen[lhcbid.muonID().station()] = true; } - } - return ( seen.count() >= 2 ); - } - default:; - } - if ( auto origin = originType( mcp, m_kind ); origin.has_value() ) return origin.value(); - return false; - } - - private: - RecAs m_kind; - }; - } // namespace LHCb::Pr::Checker \ No newline at end of file diff --git a/Pr/PrKernel/include/PrKernel/UTHitHandler.h b/Pr/PrKernel/include/PrKernel/UTHitHandler.h index 57da3c6def28b7b9cb053802750b4cd6df866be2..47adfc7048d22cffcf93c4d8653b7dab3494c660 100644 --- a/Pr/PrKernel/include/PrKernel/UTHitHandler.h +++ b/Pr/PrKernel/include/PrKernel/UTHitHandler.h @@ -58,7 +58,8 @@ namespace UT { HitHandler( allocator_type alloc = {} ) : m_allhits{alloc} {} UT::Hit& emplace_back( const DeUTSector& aSector, unsigned int fullChanIdx, unsigned int strip, double fracStrip, - LHCb::Detector::UT::ChannelID chanID, unsigned int size, bool highThreshold ) { + LHCb::Detector::UT::ChannelID chanID, unsigned int size, bool highThreshold, + unsigned int clusterCharge ) { double dxDy{0}; double dzDy{0}; double xAtYEq0{0}; @@ -66,8 +67,7 @@ namespace UT { double yBegin{0}; double yEnd{0}; //--- this method allow to set the values - const auto fracStripOvfour = fracStrip / 4; - aSector.trajectory( strip, fracStripOvfour, dxDy, dzDy, xAtYEq0, zAtYEq0, yBegin, yEnd ); + aSector.trajectory( strip, fracStrip, dxDy, dzDy, xAtYEq0, zAtYEq0, yBegin, yEnd ); const auto cos = aSector.cosAngle(); const auto error = aSector.pitch() / std::sqrt( 12.0 ); @@ -94,7 +94,7 @@ namespace UT { // add a new hit auto& hit = m_allhits.emplace_back( chanID, size, highThreshold, dxDy, xAtYEq0, zAtYEq0, yBegin, yEnd, cos, error, - strip, fracStripOvfour ); + strip, fracStrip, clusterCharge ); // increment the end index for current range ++indices.second; return hit; diff --git a/Pr/PrMCTools/src/PrChecker.cpp b/Pr/PrMCTools/src/PrChecker.cpp index 04b6a86df6d57c872898f56d8b465616cac4fab2..5db9940b2f0ea186077e28e780acee7e85eefd77 100644 --- a/Pr/PrMCTools/src/PrChecker.cpp +++ b/Pr/PrMCTools/src/PrChecker.cpp @@ -93,6 +93,92 @@ */ namespace LHCb::Pr::Checker { + + namespace { + using Gaudi::Functional::details::zip::range; + class isTrack { + public: + isTrack( RecAs kind ) : m_kind{kind} {}; + /// Functor that checks if the MCParticle fulfills certain criteria, e.g. reco'ble as long track, B daughter, ... + bool operator()( const MCParticle* mcp, const MCTrackInfo& mcInfo, span<const LHCbID> lhcbIds ) const { + if ( auto type = reconstructibleType( mcp, m_kind, mcInfo ); type.has_value() ) return type.value(); + if ( auto particle = particleType( mcp, m_kind ); particle.has_value() ) return particle.value(); + switch ( m_kind ) { + case RecAs::hasVeloOverlap: { + std::vector<LHCb::LHCbID> vpids{}; + for ( auto const& lhcbid : lhcbIds ) { + if ( lhcbid.isVP() ) { + auto vp_sensor = lhcbid.vpID().sensor(); + auto vp_module = lhcbid.vpID().module(); + for ( auto const& id2 : vpids ) { + // if 2 ids are in the same module but different sensors, there is an overlap + if ( vp_module == id2.vpID().module() && vp_sensor != id2.vpID().sensor() ) return true; + } + vpids.push_back( lhcbid ); + } + } + return false; + } + case RecAs::hasVeloCrossingSide: { + std::vector<LHCb::LHCbID> vpids{}; + for ( auto const& lhcbid : lhcbIds ) { + if ( lhcbid.isVP() ) { + auto vp_station = lhcbid.vpID().station(); + auto vp_module = lhcbid.vpID().module(); + for ( auto const& id2 : vpids ) { + // if 2 ids are in the same station but different modules, the particle is crossing side + if ( vp_station == id2.vpID().station() && vp_module != id2.vpID().module() ) return true; + } + vpids.push_back( lhcbid ); + } + } + return false; + } + case RecAs::muonHitsInAllStations: { + // Check that lhcbIds contains at least one muon hit in each muon station + constexpr auto n_stations = 4; + std::bitset<n_stations> seen; + for ( auto const& lhcbid : lhcbIds ) { + if ( lhcbid.isMuon() ) { seen[lhcbid.muonID().station()] = true; } + } + return seen.all(); + } + case RecAs::muonHitsInAtLeastTwoStations: { + // Check that lhcbIds contains at least one muon hit in at least two muon stations + constexpr auto n_stations = 4; + std::bitset<n_stations> seen; + for ( auto const& lhcbid : lhcbIds ) { + if ( lhcbid.isMuon() ) { seen[lhcbid.muonID().station()] = true; } + } + return ( seen.count() >= 2 ); + } + default:; + } + if ( auto origin = originType( mcp, m_kind ); origin.has_value() ) return origin.value(); + return false; + } + + private: + RecAs m_kind; + }; + + /** + * Class that adds selection cuts defined in isTrack to cuts + */ + class RecAsCuts { + std::vector<isTrack> m_cuts; + + public: + void addCut( RecAs cat ) { m_cuts.emplace_back( cat ); } + + /// Functor that evaluates all 'isTrack' cuts + bool operator()( const MCParticle* mcp, const MCTrackInfo& mcInfo, + std::vector<LHCb::LHCbID> const& lhcbIds ) const { + return std::all_of( m_cuts.begin(), m_cuts.end(), + [&]( auto cut ) { return std::invoke( cut, mcp, mcInfo, lhcbIds ); } ); + } + }; + } // namespace template <typename InternalCounter> class PrCheckerAlgorithm : public LHCb::Algorithm::Consumer< @@ -130,54 +216,23 @@ namespace LHCb::Pr::Checker { mutable std::mutex m_counterMutex; // -- histograming options - Gaudi::Property<int> m_writeHistos{this, "WriteHistos", -1}; - - Gaudi::Property<bool> m_eta25cut{this, "Eta25Cut", false}; // to be deprecated, cuts on track properties should be - // done in filters before the algorithm. - Gaudi::Property<bool> m_checkNegEtaPlot{ - this, "CheckNegEtaPlot", false, - "eta plotting range check : plot negative values only if no eta25 cut was applied"}; - Gaudi::Property<bool> m_triggerNumbers{this, "TriggerNumbers", false}; - Gaudi::Property<bool> m_vetoElectrons{this, "VetoElectrons", true}; - Gaudi::Property<bool> m_xyPlots{this, "XYPlots", false}; - Gaudi::Property<float> m_ghostProbCut{this, "GhostProbCut", 1.0}; // to be deprecated, cuts on track properties - // should be done in filters before the algorithm. + Gaudi::Property<int> m_writeHistos{this, "WriteHistos", -1}; + Gaudi::Property<bool> m_triggerNumbers{this, "TriggerNumbers", false}; + Gaudi::Property<bool> m_vetoElectrons{this, "VetoElectrons", true}; + Gaudi::Property<bool> m_xyPlots{this, "XYPlots", false}; Gaudi::Property<bool> m_writetexfile{this, "WriteTexOutput", false}; Gaudi::Property<std::string> m_texfilename{this, "TexOutputName", "efficiencies"}; Gaudi::Property<std::string> m_texfolder{this, "TexOutputFolder", ""}; - - /** - * Class that adds selection cuts defined in isTrack to cuts - */ - class addOtherCuts { - std::vector<isTrack> m_cuts; - - public: - void addCut( RecAs cat ) { m_cuts.emplace_back( cat ); } - - /// Functor that evaluates all 'isTrack' cuts - bool operator()( LHCb::MCParticle* mcp, MCTrackInfo* mcInfo, std::vector<LHCb::LHCbID> const& lhcbIds ) const { - return std::all_of( m_cuts.begin(), m_cuts.end(), [&]( auto cut ) { return cut( mcp, mcInfo, lhcbIds ); } ); - } - }; - // maps for each track container with {cut name,selection cut} - Gaudi::Property<std::map<std::string, std::string>> m_map{this, "MyCuts", {}}; - - /** @brief makes vector of second elements of DefaultCutMap --> needed as input for m_Cuts */ - std::vector<std::string> getMyCut( std::map<std::string, std::string> myCutMap ) { - std::vector<std::string> dummy; - std::transform( myCutMap.begin(), myCutMap.end(), std::back_inserter( dummy ), - []( const auto& p ) { return p.second; } ); - return dummy; - } + Gaudi::Property<std::map<std::string, std::string>> m_cutMap{this, "MyCuts", {}}; ToolHandle<IHistoTool> m_histoTool{this, "HistoTool", "HistoTool/PrCheckerHistos"}; ToolHandle<LoKi::IMCHybridFactory> m_factory{this, "LoKiFactory", "LoKi::Hybrid::MCTool/MCHybridFactory:PUBLIC"}; ToolHandle<ITrackExtrapolator> m_extrapolator{this, "TrackMasterExtrapolator", "TrackMasterExtrapolator"}; - std::vector<LoKi::Types::MCCut> m_MCCuts; - std::vector<addOtherCuts> m_MCCuts2; + + std::vector<LoKi::Types::MCCut> m_MCCuts; + std::vector<RecAsCuts> m_MCRecAsCuts; }; template <typename InternalCounter> @@ -205,43 +260,16 @@ namespace LHCb::Pr::Checker { m_counter.setHitTypesToCheck( m_hitTypesToCheck ); m_counter.setTrackType( m_trackType ); m_counter.setXYPlots( m_xyPlots ); - - for ( auto pair : m_map ) { - if ( m_checkNegEtaPlot ) { - // define eta plotting range: plot negative values only if no eta25 cut was applied - const std::string etaString( "eta25" ); - std::size_t found = pair.second.find( etaString ); - if ( !m_eta25cut && found == std::string::npos ) { - m_counter.addSelection( pair.first, true, true ); - } else { - m_counter.addSelection( pair.first, true ); - } - } else { - m_counter.addSelection( pair.first, true ); - } - } - - m_counter.setUseEta25Cut( m_eta25cut ); - if ( m_eta25cut ) { - warning() << "Property Eta25Cut to be deprecated. Please use dedicated algorithm to filter on track properties. " - "For example see in PrUpgradeChecking.py" - << endmsg; - } - m_counter.setGhostProbCut( m_ghostProbCut ); - if ( !essentiallyEqual( m_ghostProbCut.value(), 1.0f ) ) { - warning() << "Property GhostProbCut to be deprecated. Please use dedicated algorithm to filter on track " - "properties. For example see in PrUpgradeChecking.py" - << endmsg; - } - m_counter.setTriggerNumbers( m_triggerNumbers ); if ( m_writetexfile.value() ) m_counter.setTeXName( m_texfolder, m_texfilename ); - // -- convert all strings into functors - for ( std::string cutString : getMyCut( m_map ) ) { // loop over 2nd element of Cuts = strings of cuts - - m_MCCuts2.emplace_back(); - + // remove all RecAs type cuts from string and fill them into separate object + // after this only LoKi functors are left in the string. The string is then + // converted into a LoKi MCCut by the factory + for ( auto [name, cutString] : m_cutMap ) { + // last arg is true is "eta25" not found which triggers negative eta values to be plotted + m_counter.addSelection( name, true, cutString.find( "eta25" ) == std::string::npos ); + auto& thisRecAsSelection = m_MCRecAsCuts.emplace_back(); // flag to circumvent veto of electrons for selections that only look at elctrons bool ExplicitlyKeepElectrons = cutString.find( "isElectron" ) != std::string::npos; // -- extract aliases from cutString and replace with 'MCTRUE' @@ -249,9 +277,9 @@ namespace LHCb::Pr::Checker { if ( alias == RecAs::Unknown ) continue; // skip unknown std::size_t found = cutString.find( toString( alias ) ); - if ( found != std::string::npos ) { // if found then - m_MCCuts2.back().addCut( alias ); // other components are already filled //add this - // category of cuts to addOtherCuts() + if ( found != std::string::npos ) { // if found then + thisRecAsSelection.addCut( alias ); // other components are already filled //add this + // category of cuts to addOtherCuts() cutString.replace( found, toString( alias ).length(), "MCTRUE" ); // replace found at position found, with length of string // to replace, replace it with string "" (Loki Cut) @@ -260,29 +288,27 @@ namespace LHCb::Pr::Checker { // -- Veto electrons or not if ( m_vetoElectrons && !ExplicitlyKeepElectrons ) { - m_MCCuts2.back().addCut( RecAs::isNotElectron ); + thisRecAsSelection.addCut( RecAs::isNotElectron ); boost::replace_first( cutString, toString( RecAs::isNotElectron ), "MCTRUE" ); } // -- LoKi cuts: define aliases for better use const std::string etaString( "eta25" ); std::size_t found = cutString.find( etaString ); - if ( m_eta25cut && found == std::string::npos ) { - cutString.append( " & eta25" ); - found = cutString.find( etaString ); - } if ( found != std::string::npos ) { cutString.replace( found, etaString.length(), "(MCETA > 2.0) & (MCETA < 5.0)" ); } boost::replace_first( cutString, "over5", "(MCP > 5000)" ); boost::replace_first( cutString, "trigger", "(MCP>3000) & (MCPT>500)" ); + // --------------------------------------------------------------------------------- LoKi::Types::MCCut tmp = LoKi::BasicFunctors<const LHCb::MCParticle*>::BooleanConstant( false ); // - sc = m_factory->get( cutString, tmp ); + if ( m_factory->get( cutString, tmp ).isFailure() ) { + throw GaudiException( "Failed to get LoKi MCCuts.", this->name(), StatusCode::FAILURE ); + } m_MCCuts.push_back( tmp ); - if ( sc.isFailure() ) { return Error( "Error from IMCHybridFactory", sc ); } // RETURN } return StatusCode::SUCCESS; @@ -335,8 +361,8 @@ namespace LHCb::Pr::Checker { auto& ids = idsForParticle.size() > (unsigned int)part->key() ? idsForParticle[part->key()] : noids; // cuts std::vector<bool> flags; - for ( unsigned int i = 0; i < m_MCCuts.size(); ++i ) { - flags.push_back( m_MCCuts[i]( part ) && m_MCCuts2[i]( part, &trackInfo, ids ) ); + for ( const auto& [lokiCut, recAsCut] : range( m_MCCuts, m_MCRecAsCuts ) ) { + flags.push_back( lokiCut( part ) && recAsCut( part, trackInfo, ids ) ); } try { m_counter.countAndPlot( m_histoTool.get(), m_extrapolator.get(), part, flags, ids, nPrim, diff --git a/Pr/PrMCTools/src/PrTrackCounter.cpp b/Pr/PrMCTools/src/PrTrackCounter.cpp index 3156a4ab6eabba0e3ef27da9e1202723d77d7356..4166a54f9593286b55c86cc72ed641c01cc2a821 100644 --- a/Pr/PrMCTools/src/PrTrackCounter.cpp +++ b/Pr/PrMCTools/src/PrTrackCounter.cpp @@ -50,9 +50,6 @@ void PrTrackCounter::initEvent( IHistoTool const* htool, ITrackExtrapolator cons for ( const LHCb::Track* track : tracks ) { if ( track->checkFlag( LHCb::Track::Flags::Invalid ) ) continue; if ( ( m_trackType != LHCb::Track::Types::Unknown ) && ( track->type() != m_trackType ) ) continue; - if ( track->ghostProbability() > m_ghostProbCut && track->ghostProbability() < 999 ) continue; - bool eta25 = !m_eta25cut || ( track->pseudoRapidity() > 2. && track->pseudoRapidity() < 5. ); - if ( !eta25 ) continue; const auto& lhcbIDs = track->lhcbIDs(); // Count the number of hits in each sub-detectors double n_hits_Velo = 0.; @@ -222,7 +219,6 @@ void PrTrackCounter::countAndPlot( IHistoTool const* htool, ITrackExtrapolator c } } else { for ( auto [tr, weight] : trackList ) { - if ( tr->ghostProbability() > m_ghostProbCut && tr->ghostProbability() < 999 ) continue; if ( tr->type() == m_trackType ) { if ( !found ) { found = true; @@ -258,7 +254,6 @@ void PrTrackCounter::countAndPlot( IHistoTool const* htool, ITrackExtrapolator c m_clone[kk] += clone; for ( auto [tr, weight] : trackList ) { if ( ( m_trackType != LHCb::Track::Types::Unknown ) && ( tr->type() != m_trackType ) ) continue; - if ( tr->ghostProbability() > m_ghostProbCut && tr->ghostProbability() < 999 ) continue; m_purity[kk] += weight; unsigned int nbMeas = 0; unsigned int nbMeasFirstVeloHits = 0; diff --git a/Pr/PrMCTools/src/PrTrackCounter.h b/Pr/PrMCTools/src/PrTrackCounter.h index 6db6daeb37713261b699847e5de85a5b4077e526..9fbf7b8b5b7a7888f2da432c5b6accd5f03c6571 100644 --- a/Pr/PrMCTools/src/PrTrackCounter.h +++ b/Pr/PrMCTools/src/PrTrackCounter.h @@ -47,17 +47,11 @@ public: void setTitle( std::string& title ) { m_title = title; } void setFirstNVeloHits( unsigned int firstNVeloHits ) { m_firstNVeloHits = firstNVeloHits; } void setWriteHistos( int write ) { m_writeHistos = write; } - void setUseEta25Cut( bool cut ) { - m_eta25cut = cut; - } // to be deprecated, cuts on track properties should be done in filters before the algorithm. - void setTriggerNumbers( bool numbers ) { m_triggerNumbers = numbers; } - void setXYPlots( bool xyPlots ) { m_xyPlots = xyPlots; }; - void setHitTypesToCheck( int data ) { m_hitTypesToCheck = data; } - void setTrackType( LHCb::Track::Types type ) { m_trackType = type; } - void setGhostProbCut( double cutVal ) { - m_ghostProbCut = cutVal; - } // to be deprecated, cuts on track properties should be done in filters before the algorithm. - void setTeXName( const std::string& directory, const std::string& name ) { + void setTriggerNumbers( bool numbers ) { m_triggerNumbers = numbers; } + void setXYPlots( bool xyPlots ) { m_xyPlots = xyPlots; }; + void setHitTypesToCheck( int data ) { m_hitTypesToCheck = data; } + void setTrackType( LHCb::Track::Types type ) { m_trackType = type; } + void setTeXName( const std::string& directory, const std::string& name ) { m_writetex = true; m_texoutdir = directory; m_texoutname = name; @@ -68,11 +62,9 @@ public: private: int m_writeHistos{-1}; - bool m_eta25cut{false}; bool m_triggerNumbers{false}; bool m_xyPlots{false}; int m_hitTypesToCheck{HitType::Unspecified}; - double m_ghostProbCut{999}; bool m_writetex{false}; std::string m_texoutname; std::string m_texoutdir; diff --git a/Pr/PrMCTools/src/PrUTCounter.h b/Pr/PrMCTools/src/PrUTCounter.h index 1f061ca3745510bc8a8f16a8fa112e0fb06a9a21..cc4139f43c6c351c39c9e589475f63cae72a3925 100644 --- a/Pr/PrMCTools/src/PrUTCounter.h +++ b/Pr/PrMCTools/src/PrUTCounter.h @@ -45,17 +45,14 @@ public: void setTitle( std::string& title ) { m_title = title; } void setFirstNVeloHits( unsigned int ) {} void setWriteHistos( int write ) { m_writeHistos = write; }; - void setUseEta25Cut( bool cut ) { m_eta25cut = cut; }; void setTriggerNumbers( bool numbers ) { m_triggerNumbers = numbers; }; void setXYPlots( bool xyPlots ) { m_xyPlots = xyPlots; }; void setHitTypesToCheck( int ){}; void setTrackType( LHCb::Track::Types ) {} - void setGhostProbCut( double ) {} void setTeXName( const std::string&, const std::string& ) {} private: int m_writeHistos{-1}; - bool m_eta25cut{false}; bool m_triggerNumbers{false}; bool m_xyPlots{false}; diff --git a/Pr/PrMCTools/src/PrUTHitsChecker.cpp b/Pr/PrMCTools/src/PrUTHitsChecker.cpp index 62c79ebbd38f9f111f58f8cbc4ec3fb3c2782661..87159a476f009c9f2598b18b470fc5cbbe073877 100644 --- a/Pr/PrMCTools/src/PrUTHitsChecker.cpp +++ b/Pr/PrMCTools/src/PrUTHitsChecker.cpp @@ -16,9 +16,11 @@ #include "Event/PrHits.h" #include "Event/UTCluster.h" #include "Gaudi/Accumulators/Histogram.h" +#include "Gaudi/Accumulators/HistogramArray.h" #include "GaudiAlg/GaudiHistoAlg.h" #include "GaudiKernel/Vector3DTypes.h" #include "Kernel/LHCbID.h" +#include "Kernel/UTNames.h" #include "LHCbAlgs/Consumer.h" #include "UTDAQ/UTInfo.h" #include "UTDet/DeUTDetector.h" @@ -74,81 +76,98 @@ private: Gaudi::Property<double> m_min{this, "m_min_bin", -1., "Double for left boundary of residuals range"}; Gaudi::Property<double> m_max{this, "m_max_bin", 1., "Double for right boundary of residuals range"}; Gaudi::Property<unsigned int> m_num_bins{this, "m_num_bins", 100, "Int for number of bins"}; - const std::string geom_name = m_isGlobal ? "" : "_local"; + const std::string sensor_types = "ABCD"; + static constexpr const char* layers[4] = {"aX", "aU", "bV", "bX"}; + + mutable Gaudi::Accumulators::Histogram<1> m_cluster_charge{this, "clusterCharge", "clusterCharge", {50, 0, 50}}; + + mutable Gaudi::Accumulators::HistogramArray<Gaudi::Accumulators::Histogram<1>, 4> m_cluster_charge_sensors{ + this, + []( int n ) { return fmt::format( "clusterCharge_Sensor{}", (char)( 'A' + n ) ); }, + []( int n ) { return fmt::format( "clusterCharge_Sensor{}", (char)( 'A' + n ) ); }, + {50, 0, 50}, + }; + + mutable Gaudi::Accumulators::HistogramArray<Gaudi::Accumulators::Histogram<2>, 4> m_cluster_charge_sensors_strips{ + this, + []( int n ) { return fmt::format( "clusterCharge_Sensor{}_byStrips", (char)( 'A' + n ) ); }, + []( int n ) { return fmt::format( "clusterCharge_Sensor{}_byStrips", (char)( 'A' + n ) ); }, + {50, 0, 50}, + {4, 1, 5}, + }; mutable Gaudi::Accumulators::Histogram<1> m_res_x{ - this, "residuals" + geom_name + "_X", "residuals" + geom_name + "_X", {m_num_bins * 10, m_min, m_max}}; + this, "residuals_X", "residuals_X", {m_num_bins * 10, m_min, m_max}}; + + mutable Gaudi::Accumulators::HistogramArray<Gaudi::Accumulators::Histogram<1>, 4> m_res_x_sensors{ + this, + []( int n ) { return fmt::format( "residuals_X_Sensor{}", (char)( 'A' + n ) ); }, + []( int n ) { return fmt::format( "residuals_X_Sensor{}", (char)( 'A' + n ) ); }, + {m_num_bins * 10, m_min, m_max}}; + mutable Gaudi::Accumulators::HistogramArray<Gaudi::Accumulators::Histogram<2>, 4> m_res_x_sensors_strips{ + this, + []( int n ) { return fmt::format( "residuals_X_Sensor{}_byStrips", (char)( 'A' + n ) ); }, + []( int n ) { return fmt::format( "residuals_X_Sensor{}_byStrips", (char)( 'A' + n ) ); }, + {m_num_bins * 10, m_min, m_max}, + {4, 1, 5}}; + mutable Gaudi::Accumulators::HistogramArray<Gaudi::Accumulators::Histogram<1>, 4> m_res_x_layers{ + this, + []( int n ) { return fmt::format( "residuals_X_UT{}", layers[n] ); }, + []( int n ) { return fmt::format( "residuals_X_UT{}", layers[n] ); }, + {m_num_bins * 10, m_min, m_max}}; mutable Gaudi::Accumulators::Histogram<1> m_res_x_zoom{ - this, "residuals" + geom_name + "_X_zoom", "residuals" + geom_name + "_X_zoom", {m_num_bins * 10, -0.5, 0.5}}; - - mutable Gaudi::Accumulators::Histogram<1> m_res_x_0{this, - "residuals" + geom_name + "_X_plane_0", - "residuals" + geom_name + "_X_plane_0", - {m_num_bins * 10, m_min, m_max}}; - mutable Gaudi::Accumulators::Histogram<1> m_res_x_1{this, - "residuals" + geom_name + "_X_plane_1", - "residuals" + geom_name + "_X_plane_1", - {m_num_bins * 10, m_min, m_max}}; - mutable Gaudi::Accumulators::Histogram<1> m_res_x_2{this, - "residuals" + geom_name + "_X_plane_2", - "residuals" + geom_name + "_X_plane_2", - {m_num_bins * 10, m_min, m_max}}; - mutable Gaudi::Accumulators::Histogram<1> m_res_x_3{this, - "residuals" + geom_name + "_X_plane_3", - "residuals" + geom_name + "_X_plane_3", - {m_num_bins * 10, m_min, m_max}}; + this, "residuals_X_zoom", "residuals_X_zoom", {m_num_bins * 10, -0.5, 0.5}}; + + mutable Gaudi::Accumulators::HistogramArray<Gaudi::Accumulators::Histogram<1>, 4> m_res_x_planes{ + this, + []( int n ) { return fmt::format( "residuals_X_plane_{}", n ); }, + []( int n ) { return fmt::format( "residuals_X_plane_{}", n ); }, + {m_num_bins * 10, m_min, m_max}}; mutable Gaudi::Accumulators::Histogram<1> m_res_z{ - this, "residuals" + geom_name + "_Z", "residuals" + geom_name + "_Z", {m_num_bins * 10, m_min * 20, m_max * 20}}; - mutable Gaudi::Accumulators::Histogram<1> m_res_z_0{this, - "residuals" + geom_name + "_Z_plane_0", - "residuals" + geom_name + "_Z_plane_0", - {m_num_bins * 10, m_min, m_max}}; - mutable Gaudi::Accumulators::Histogram<1> m_res_z_1{this, - "residuals" + geom_name + "_Z_plane_1", - "residuals" + geom_name + "_Z_plane_1", - {m_num_bins * 10, m_min, m_max}}; - mutable Gaudi::Accumulators::Histogram<1> m_res_z_2{this, - "residuals" + geom_name + "_Z_plane_2", - "residuals" + geom_name + "_Z_plane_2", - {m_num_bins * 10, m_min, m_max}}; - mutable Gaudi::Accumulators::Histogram<1> m_res_z_3{this, - "residuals" + geom_name + "_Z_plane_3", - "residuals" + geom_name + "_Z_plane_3", - {m_num_bins * 10, m_min, m_max}}; - - mutable Gaudi::Accumulators::Histogram<2> m_res_vs_p_x{this, - "residuals" + geom_name + "_X_VS_slope_dxdz", - "residuals" + geom_name + "_X_VS_slope_dxdz", + this, "residuals_Z", "residuals_Z", {m_num_bins * 10, m_min * 20, m_max * 20}}; + + mutable Gaudi::Accumulators::HistogramArray<Gaudi::Accumulators::Histogram<1>, 4> m_res_z_planes{ + this, + []( int n ) { return fmt::format( "residuals_Z_plane_{}", n ); }, + []( int n ) { return fmt::format( "residuals_Z_plane_{}", n ); }, + {m_num_bins * 10, m_min, m_max}}; + + mutable Gaudi::Accumulators::Histogram<2> m_res_vs_p_x{this, + "residuals_X_VS_slope_dxdz", + "residuals_X_VS_slope_dxdz", {{m_num_bins, m_min, m_max}, {m_num_bins, -1., 1.}}}; + mutable Gaudi::Accumulators::HistogramArray<Gaudi::Accumulators::Histogram<2>, 3> m_fracStrip{ + this, + []( int n ) { return fmt::format( "fracStrip_reco_vs_truth_{}strip", n + 2 ); }, + []( int n ) { return fmt::format( "fracStrip_reco_vs_truth_{}strip", n + 2 ); }, + {100, -1.0, 1.0}, + {100, -1.0, 1.0}}; + mutable Gaudi::Accumulators::Histogram<1> m_cluster{ this, "cluster_size", "cluster_size; cluster size; counts", {11, -0.5, 10.5}}; mutable Gaudi::Accumulators::ProfileHistogram<1> m_tprof_res_x_vs_slope_dxdz{ - this, - "profile_res" + geom_name + "_X_VS_slope_dxdz", - "profile_res" + geom_name + "_X_VS_slope_dxdz", - {m_num_bins, m_min, m_max}}; + this, "profile_res_X_VS_slope_dxdz", "profile_res_X_VS_slope_dxdz", {m_num_bins, m_min, m_max}}; mutable Gaudi::Accumulators::Histogram<2> m_res_x_vs_cluster_size{this, - "residuals" + geom_name + "_X_VS_cluster_size", - "residuals" + geom_name + "_X_VS_cluster_size", + "residuals_X_VS_cluster_size", + "residuals_X_VS_cluster_size", {{m_num_bins, m_min, m_max}, {11, -0.5, 10.5}}}; mutable Gaudi::Accumulators::Histogram<2> m_res_z_vs_cluster_size{this, - "residuals" + geom_name + "_Z_VS_cluster_size", - "residuals" + geom_name + "_Z_VS_cluster_size", + "residuals_Z_VS_cluster_size", + "residuals_Z_VS_cluster_size", {{m_num_bins, m_min, m_max}, {11, -0.5, 10.5}}}; }; DECLARE_COMPONENT( PrUTHitsChecker ) -void PrUTHitsChecker::operator()( const UTHits&, const LHCb::LinksByKey& links, const MCHits& mchits, - const MCParticles&, const DeUTDetector& ) const { +void PrUTHitsChecker::operator()( const UTHits& UThits, const LHCb::LinksByKey& links, const MCHits& mchits, + const MCParticles&, const DeUTDetector& deUT ) const { std::map<const unsigned int, std::vector<LHCb::MCHit const*>> mcHitForId; links.applyToAllLinks( [&mcHitForId, &mchits]( unsigned int id, unsigned int mcHitKey, float ) { mcHitForId[id].emplace_back( mchits[mcHitKey] ); } ); -#if 0 // Map for MCHits and keys if ( !m_performStudy ) { const int fullChanIdx = @@ -188,14 +207,15 @@ void PrUTHitsChecker::operator()( const UTHits&, const LHCb::LinksByKey& links, const auto hit = UThits.scalar()[i]; const simd::int_v simd_chid = hit.get<LHCb::Pr::UT::UTHitsTag::channelID>().cast(); const int unwrapped_num = simd_chid.cast(); - auto sector = DeUT.findSector( LHCb::Detector::UT::ChannelID( unwrapped_num ) ); + auto sector = deUT.findSector( LHCb::Detector::UT::ChannelID( unwrapped_num ) ); auto result = ( mcHitForId.find( unwrapped_num ) ); if ( result == mcHitForId.end() ) continue; for ( auto& mcHit : ( *result ).second ) { const auto hit_x = hit.get<LHCb::Pr::UT::UTHitsTag::xAtYEq0>().cast() + mcHit->midPoint().Y() * hit.get<LHCb::Pr::UT::UTHitsTag::dxDy>().cast(); Gaudi::XYZPoint UThit = Gaudi::XYZPoint( hit_x, 0, hit.get<LHCb::Pr::UT::UTHitsTag::zAtYEq0>().cast() ); - LHCb::Detector::UT::ChannelID utid = LHCb::Detector::UT::ChannelID( (unsigned int)unwrapped_num ); + LHCb::Detector::UT::ChannelID utid = LHCb::Detector::UT::ChannelID( (unsigned int)unwrapped_num ); + const unsigned int clusterSize = hit.get<LHCb::Pr::UT::UTHitsTag::clusterSize>().cast(); if ( !sector ) error() << "No sector is found for " << "(" << hit.get<LHCb::Pr::UT::UTHitsTag::xAtYEq0>().cast() << ", 0, " @@ -203,31 +223,42 @@ void PrUTHitsChecker::operator()( const UTHits&, const LHCb::LinksByKey& links, const auto UThit_local = sector->toLocal( UThit ); const auto mcHit_local = sector->toLocal( mcHit->midPoint() ); - const int plane = 2 * ( utid.station() - 1 ) + ( utid.layer() - 1 ) % 2; - Gaudi::XYZVector residual = m_isGlobal ? UThit - ( mcHit->midPoint() ) : UThit_local - ( mcHit_local ); - ++m_res_x[residual.X()]; - ++m_res_z[residual.Z()]; + const int plane = 2 * ( utid.station() - 1 ) + ( utid.layer() - 1 ) % 2; - ++m_res_x_zoom[residual.X()]; + // obtain fracStrip for reco and MC + if ( clusterSize >= 2 && clusterSize <= 4 ) { +#if USE_DD4HEP + LHCb::Detector::LineTraj traj = sector.trajectory( utid, 0 ); +#else + LHCb::LineTraj traj = sector->trajectory( utid, 0 ); +#endif + double trajPosition = ( traj.beginPoint().x() + traj.endPoint().x() ) / 2; + double fracStrip = hit.get<LHCb::Pr::UT::UTHitsTag::fracStrip>().cast(); - switch ( plane ) { - case 0: - ++m_res_x_0[residual.X()]; - ++m_res_z_0[residual.Z()]; - return; - case 1: - ++m_res_x_1[residual.X()]; - ++m_res_z_1[residual.Z()]; - return; - case 2: - ++m_res_x_2[residual.X()]; - ++m_res_z_2[residual.Z()]; - return; - case 3: - ++m_res_x_3[residual.X()]; - ++m_res_z_3[residual.Z()]; - return; +#if USE_DD4HEP + double fracStripMC = ( mcHit->midPoint().x() - trajPosition ) / sector.sensor().pitch(); +#else + double fracStripMC = ( mcHit->midPoint().x() - trajPosition ) / sector->sensor( 0 ).pitch(); +#endif + ++( m_fracStrip[clusterSize - 2] )[{fracStrip, fracStripMC}]; } + Gaudi::XYZVector residual = m_isGlobal ? UThit - ( mcHit->midPoint() ) : UThit_local - ( mcHit_local ); + const auto clusterCharge = hit.get<LHCb::Pr::UT::UTHitsTag::clusterCharge>().cast(); + ++m_res_x[residual.X()]; + ++m_cluster_charge[clusterCharge]; + ++( m_res_x_layers[utid.layer()] )[residual.X()]; +#if USE_DD4HEP + unsigned int sensor_type = sensor_types.find( sector.sensor().sensorType() ); + ++( m_res_x_sensors[sensor_type] )[residual.X()]; + ++( m_res_x_sensors_strips[sensor_type] )[{residual.X(), clusterSize}]; + ++( m_cluster_charge_sensors[sensor_type] )[clusterCharge]; + ++( m_cluster_charge_sensors_strips[sensor_type] )[{clusterCharge, clusterSize}]; +#endif + ++m_res_x_zoom[residual.X()]; + ++m_res_z[residual.Z()]; + ++( m_res_x_planes[plane] )[residual.X()]; + ++( m_res_z_planes[plane] )[residual.Z()]; + auto MCparticle = mcHit->mcParticle(); const auto momentum = MCparticle->momentum(); if ( momentum.Z() != 0 ) { @@ -242,5 +273,4 @@ void PrUTHitsChecker::operator()( const UTHits&, const LHCb::LinksByKey& links, } // loop indices } // loop over channels } // if performStudy -#endif } diff --git a/Pr/PrPixel/src/VeloHeavyFlavourTracking.cpp b/Pr/PrPixel/src/VeloHeavyFlavourTracking.cpp index 1edec3bb1b0b68c00f99c6b2bec17d6c78bf3dce..6ca36675399c53309a159b72db3b9da4543f4db5 100644 --- a/Pr/PrPixel/src/VeloHeavyFlavourTracking.cpp +++ b/Pr/PrPixel/src/VeloHeavyFlavourTracking.cpp @@ -131,6 +131,19 @@ namespace LHCb::Pr::Velo { return poshits; } + HitInfos getUniqueHitsPerZ( HitInfos const& all_hits ) { + HitInfos hits; + float z = -std::numeric_limits<float>::max(); + // assumes sorted in z then distance to PV-SV line + for ( auto const hit : all_hits ) { + if ( hit.position.z() > z ) { + hits.push_back( hit ); + z = hit.position.z(); + } + } + return hits; + } + } // namespace /** @@ -159,6 +172,8 @@ namespace LHCb::Pr::Velo { // properties Gaudi::Property<float> m_max_distance{this, "MaxDistanceFromPVSV", 0.5 * Gaudi::Units::mm, "maximum hit distance from PV-SV line (search window)"}; + Gaudi::Property<bool> m_unique_hits{this, "UniqueHitsPerZ", true, + "Make sure only the closest hit to PV-SV line per z value is used"}; Gaudi::Property<bool> m_revert_charge{this, "RevertCharge", false, "Revert charge with respect to composite"}; // statistics monitoring @@ -216,7 +231,10 @@ namespace LHCb::Pr::Velo { track->addInfo( AdditionalInfo::nPRVelo3DExpect, crossedSensors.size() ); // look for hits in relevant sensors (duplicates removed and sorted in z and distance to search window) - auto found_hits = getHitsForCrossedSensors( crossedSensors, velohits, pv, slopes, m_max_distance.value() ); + auto all_found_hits = getHitsForCrossedSensors( crossedSensors, velohits, pv, slopes, m_max_distance.value() ); + auto unique_hits = getUniqueHitsPerZ( all_found_hits ); + + auto found_hits = m_unique_hits ? unique_hits : all_found_hits; auto nhits = found_hits.size(); // store sorted hits @@ -245,9 +263,9 @@ namespace LHCb::Pr::Velo { fm_state.setY( fh.position.y() ); track->addToStates( fm_state ); - // in case more hits, add last measurement state - if ( nhits > 1 ) { - auto lh = found_hits.back(); + // in case more unique hits, add last measurement state + if ( unique_hits.size() > 1 ) { + auto lh = unique_hits.back(); auto lh_direction = lh.position - pv; auto last_state = LHCb::State(); last_state.setState( lh.position.x(), lh.position.y(), lh.position.z(), lh_direction.x() / lh_direction.z(), diff --git a/ReleaseNotes/v36r2.md b/ReleaseNotes/v36r2.md new file mode 100644 index 0000000000000000000000000000000000000000..fb1af70ec9f69a572f0b6b3aef976dea25d9666b --- /dev/null +++ b/ReleaseNotes/v36r2.md @@ -0,0 +1,54 @@ +2024-03-05 Rec v36r2 +=== + +This version uses +Lbcom [v35r2](../../../../Lbcom/-/tags/v35r2), +LHCb [v55r2](../../../../LHCb/-/tags/v55r2), +Detector [v1r27](../../../../Detector/-/tags/v1r27), +Gaudi [v38r0](../../../../Gaudi/-/tags/v38r0) and +LCG [105a](http://lcginfo.cern.ch/release/105a/) . + +This version is released on the `master` branch. +Built relative to Rec [v36r1](/../../tags/v36r1), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + +- Fix NDOF of tracks with no momentum information in PrKalmanFilter, !3759 (@ausachov) +- Hotfix: Check particle and protoparticle existance in Projection, !3773 (@tfulghes) + + +### Enhancements ~enhancement + + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + +- ~Functors | HasT/Velo/UT functors prefer central definition, !3777 (@gunther) +- ~"Flavour tagging" | Remove obsolete sspion decision functor, !3778 (@cprouve) +- Make PrChecker code easier to understand, !3779 (@gunther) +- Adapt to changes in LHCb!4192, !3606 (@rmatev) + + +### Documentation ~Documentation + +- [Docs] Update ElectronShowerDLL docs, !3767 (@alopezhu) + +### Other + +- ~Decoding ~Monitoring | Updated PLUME decoding in HLT2, !3748 (@fferrari) +- ~Muon | Update for muon alignment, !3484 (@wouter) [#529] +- ~Calo ~Functors | Add HasBremAdded functor and change name of Brem functor, !3775 (@alopezhu) +- ~RICH | RICH Add detector regions to pixel objects, !3753 (@jonrob) +- ~Functors ~"Flavour tagging" | Add new functors for getting flavour tagging decision and mistag rate, !3453 (@yihou) +- ~Monitoring | RecoMon: more correlationhists recomon, configurable for pp vs PbPb, !3615 (@tmombach) +- Update References for: LHCb!4435, Rec!3748, MooreOnline!332 based on lhcb-master-mr/10859, !3790 (@lhcbsoft) +- Fix RICH detdesc-mc-dst refs, !3766 (@lhcbsoft) +- Relation table maker and options for heavy flavour tracks, !3742 (@mveghel) +- UThit position methods, !3559 (@hawu) +- Update References for: Rec!3751, Moore!2925 based on lhcb-master-mr/10585, !3764 (@lhcbsoft) +- Remove duplicates saved in TES location of extra particle before data-taking period, !3751 (@tfulghes) +- Monitor algorithm for event variables, !3555 (@sstahl) diff --git a/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-fake-mchits-4D.ref.x86_64_v3-detdesc-opt b/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-fake-mchits-4D.ref.x86_64_v3-detdesc-opt index 29cee24e42e4978533006e43ff555b67a56b647d..05683e58546e989335bed4a5a33a1b3205594b7a 100644 --- a/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-fake-mchits-4D.ref.x86_64_v3-detdesc-opt +++ b/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-fake-mchits-4D.ref.x86_64_v3-detdesc-opt @@ -12,40 +12,40 @@ RichPixels INFO Member list: Rich::Future::SmartIDClusteri RichPixClustering INFO Hit times enabled for Rich1 | Window = 12.03 to n ns RichPixClustering INFO Hit times enabled for Rich2 | Window = 51.94 to n ns ToolSvc.RichPartProp INFO Particle types considered = [electron, muon, pion, kaon, proton, deuteron, below_threshold] -RichSIMDPixels INFO 4D pixels enabled for Rich1 | Window = 12.03 to n ns -RichSIMDPixels INFO 4D pixels enabled for Rich2 | Window = 51.94 to n ns +RichSIMDPixels INFO 4D enabled for Rich1 | Course 12.03 to n ns Fine (Inner/Outer) Window 0.5/n ns +RichSIMDPixels INFO 4D enabled for Rich2 | Course 51.94 to n ns Fine (Inner/Outer) Window 0.5/n ns RichDownReco INFO Member list: GaudiSequencer/RichTracksDown, GaudiSequencer/RichPhotonsDown, Rich::Future::Rec::SIMDRecoSummary/RichRecSummaryDown, GaudiSequencer/RichPIDDown RichTracksDown INFO Member list: Rich::Future::Rec::DetailedTrSegMakerFromTracks/RichTrackSegmentsDown, Rich::Future::Rec::MC::RichSegmentAddTimeFromMC/RichAddSegTimeFromMCDown, Rich::Future::Rec::RayTraceTrackGlobalPoints/RichTrackGloPointsDown, Rich::Future::Rec::RayTraceTrackLocalPoints/RichTrackLocPointsDown, Rich::Future::Rec::EmittedPhotonYields/RichEmittedYieldsDown, Rich::Future::Rec::TrackEmittedCherenkovAngles/RichEmittedCKAnglesDown, Rich::Future::Rec::RayTraceCherenkovCones/RichMassConesDown, Rich::Future::Rec::AverageDetectablePhotonYields/RichDetectableYieldsDown, Rich::Future::Rec::GeomEffCKMassRings/RichGeomEffDown, Rich::Future::Rec::SelectTrackSegments/RichTkSegmentSelDown, Rich::Future::Rec::SignalPhotonYields/RichSignalYieldsDown, Rich::Future::Rec::TrackSignalCherenkovAngles/RichSignalCKAnglesDown, Rich::Future::Rec::TrackParameterisedCherenkovResolutions/RichCKResolutionsDown RichPhotonsDown INFO Member list: Rich::Future::Rec::SIMDQuarticPhotonReco/RichPhotonRecoDown, Rich::Future::Rec::SIMDPhotonPredictedPixelSignal/RichPredPixelSignalDown -RichPhotonRecoDown INFO 4D photons enabled for Rich1 | Window = n ns -RichPhotonRecoDown INFO 4D photons enabled for Rich2 | Window = n ns -RichPredPixelSignalDown INFO 4D signals enabled for Rich1 | Window = n ns -RichPredPixelSignalDown INFO 4D signals enabled for Rich2 | Window = n ns +RichPhotonRecoDown INFO 4D photons enabled for Rich1 +RichPhotonRecoDown INFO 4D photons enabled for Rich2 +RichPredPixelSignalDown INFO 4D signals enabled for Rich1 +RichPredPixelSignalDown INFO 4D signals enabled for Rich2 RichPIDDown INFO Member list: Rich::Future::Rec::GlobalPID::InitialisePIDInfo/RichGPIDInitDown, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt0Down, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt0Down, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt1Down, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt1Down, Rich::Future::Rec::GlobalPID::WriteRichPIDs/RichGPIDWriteRichPIDsDown -RichPixBackgroundsIt0Down INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt0Down INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 -RichPixBackgroundsIt1Down INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt1Down INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 +RichPixBackgroundsIt0Down INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt0Down INFO 4D Photon Time Window Scale Factor enabled for Rich2 +RichPixBackgroundsIt1Down INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt1Down INFO 4D Photon Time Window Scale Factor enabled for Rich2 RichLongReco INFO Member list: GaudiSequencer/RichTracksLong, GaudiSequencer/RichPhotonsLong, Rich::Future::Rec::SIMDRecoSummary/RichRecSummaryLong, GaudiSequencer/RichPIDLong RichTracksLong INFO Member list: Rich::Future::Rec::DetailedTrSegMakerFromTracks/RichTrackSegmentsLong, Rich::Future::Rec::MC::RichSegmentAddTimeFromMC/RichAddSegTimeFromMCLong, Rich::Future::Rec::RayTraceTrackGlobalPoints/RichTrackGloPointsLong, Rich::Future::Rec::RayTraceTrackLocalPoints/RichTrackLocPointsLong, Rich::Future::Rec::EmittedPhotonYields/RichEmittedYieldsLong, Rich::Future::Rec::TrackEmittedCherenkovAngles/RichEmittedCKAnglesLong, Rich::Future::Rec::RayTraceCherenkovCones/RichMassConesLong, Rich::Future::Rec::AverageDetectablePhotonYields/RichDetectableYieldsLong, Rich::Future::Rec::GeomEffCKMassRings/RichGeomEffLong, Rich::Future::Rec::SelectTrackSegments/RichTkSegmentSelLong, Rich::Future::Rec::SignalPhotonYields/RichSignalYieldsLong, Rich::Future::Rec::TrackSignalCherenkovAngles/RichSignalCKAnglesLong, Rich::Future::Rec::TrackParameterisedCherenkovResolutions/RichCKResolutionsLong RichPhotonsLong INFO Member list: Rich::Future::Rec::SIMDQuarticPhotonReco/RichPhotonRecoLong, Rich::Future::Rec::SIMDPhotonPredictedPixelSignal/RichPredPixelSignalLong -RichPhotonRecoLong INFO 4D photons enabled for Rich1 | Window = n ns -RichPhotonRecoLong INFO 4D photons enabled for Rich2 | Window = n ns -RichPredPixelSignalLong INFO 4D signals enabled for Rich1 | Window = n ns -RichPredPixelSignalLong INFO 4D signals enabled for Rich2 | Window = n ns +RichPhotonRecoLong INFO 4D photons enabled for Rich1 +RichPhotonRecoLong INFO 4D photons enabled for Rich2 +RichPredPixelSignalLong INFO 4D signals enabled for Rich1 +RichPredPixelSignalLong INFO 4D signals enabled for Rich2 RichPIDLong INFO Member list: Rich::Future::Rec::GlobalPID::InitialisePIDInfo/RichGPIDInitLong, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt0Long, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt0Long, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt1Long, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt1Long, Rich::Future::Rec::GlobalPID::WriteRichPIDs/RichGPIDWriteRichPIDsLong -RichPixBackgroundsIt0Long INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt0Long INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 -RichPixBackgroundsIt1Long INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt1Long INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 +RichPixBackgroundsIt0Long INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt0Long INFO 4D Photon Time Window Scale Factor enabled for Rich2 +RichPixBackgroundsIt1Long INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt1Long INFO 4D Photon Time Window Scale Factor enabled for Rich2 RichUpReco INFO Member list: GaudiSequencer/RichTracksUp, GaudiSequencer/RichPhotonsUp, Rich::Future::Rec::SIMDRecoSummary/RichRecSummaryUp, GaudiSequencer/RichPIDUp RichTracksUp INFO Member list: Rich::Future::Rec::DetailedTrSegMakerFromTracks/RichTrackSegmentsUp, Rich::Future::Rec::MC::RichSegmentAddTimeFromMC/RichAddSegTimeFromMCUp, Rich::Future::Rec::RayTraceTrackGlobalPoints/RichTrackGloPointsUp, Rich::Future::Rec::RayTraceTrackLocalPoints/RichTrackLocPointsUp, Rich::Future::Rec::EmittedPhotonYields/RichEmittedYieldsUp, Rich::Future::Rec::TrackEmittedCherenkovAngles/RichEmittedCKAnglesUp, Rich::Future::Rec::RayTraceCherenkovCones/RichMassConesUp, Rich::Future::Rec::AverageDetectablePhotonYields/RichDetectableYieldsUp, Rich::Future::Rec::GeomEffCKMassRings/RichGeomEffUp, Rich::Future::Rec::SelectTrackSegments/RichTkSegmentSelUp, Rich::Future::Rec::SignalPhotonYields/RichSignalYieldsUp, Rich::Future::Rec::TrackSignalCherenkovAngles/RichSignalCKAnglesUp, Rich::Future::Rec::TrackParameterisedCherenkovResolutions/RichCKResolutionsUp RichPhotonsUp INFO Member list: Rich::Future::Rec::SIMDQuarticPhotonReco/RichPhotonRecoUp, Rich::Future::Rec::SIMDPhotonPredictedPixelSignal/RichPredPixelSignalUp -RichPhotonRecoUp INFO 4D photons enabled for Rich1 | Window = n ns -RichPredPixelSignalUp INFO 4D signals enabled for Rich1 | Window = n ns +RichPhotonRecoUp INFO 4D photons enabled for Rich1 +RichPredPixelSignalUp INFO 4D signals enabled for Rich1 RichPIDUp INFO Member list: Rich::Future::Rec::GlobalPID::InitialisePIDInfo/RichGPIDInitUp, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt0Up, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt0Up, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt1Up, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt1Up, Rich::Future::Rec::GlobalPID::WriteRichPIDs/RichGPIDWriteRichPIDsUp -RichPixBackgroundsIt0Up INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt1Up INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 +RichPixBackgroundsIt0Up INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt1Up INFO 4D Photon Time Window Scale Factor enabled for Rich1 RichMoni INFO Member list: Rich::Future::Rec::Moni::DetectorHits/RichRecPixelQC, Rich::Future::SmartIDClustering/RichFutureMoniClustering, Rich::Future::Rec::Moni::PixelClusters/RichRecPixelClusters, GaudiSequencer/RichMoniDown, GaudiSequencer/RichMoniLong, GaudiSequencer/RichMoniUp RichMoniDown INFO Member list: Rich::Future::Rec::Moni::SIMDRecoStats/RichRecoStatsDown, Rich::Future::Rec::Moni::TrackSelEff/RiDownTrkEff, Rich::Future::Rec::Moni::TrackGeometry/RiDownTrkGeom, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResDown, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResDownTight, Rich::Future::Rec::Moni::PhotonYield/RiTkEmittedYieldsDown, Rich::Future::Rec::Moni::PhotonYield/RiTkDetectableYieldsDown, Rich::Future::Rec::Moni::PhotonYield/RiTkSignalYieldsDown, Rich::Future::Rec::Moni::GeometricalEfficiencies/RiTkGeomEffsDown, Rich::Future::Rec::Moni::MassHypoRings/RichMassRingsDown, Rich::Future::Rec::Moni::TrackRadiatorMaterial/RiTkMaterialDown, Rich::Future::Rec::Moni::PixelBackgrounds/RichRecPixBkgsDown, Rich::Future::Rec::Moni::DLLs/RichDLLsDown RichMoniLong INFO Member list: Rich::Future::Rec::Moni::SIMDRecoStats/RichRecoStatsLong, Rich::Future::Rec::Moni::TrackSelEff/RiLongTrkEff, Rich::Future::Rec::Moni::TrackGeometry/RiLongTrkGeom, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResLong, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResLongTight, Rich::Future::Rec::Moni::PhotonYield/RiTkEmittedYieldsLong, Rich::Future::Rec::Moni::PhotonYield/RiTkDetectableYieldsLong, Rich::Future::Rec::Moni::PhotonYield/RiTkSignalYieldsLong, Rich::Future::Rec::Moni::GeometricalEfficiencies/RiTkGeomEffsLong, Rich::Future::Rec::Moni::MassHypoRings/RichMassRingsLong, Rich::Future::Rec::Moni::TrackRadiatorMaterial/RiTkMaterialLong, Rich::Future::Rec::Moni::PixelBackgrounds/RichRecPixBkgsLong, Rich::Future::Rec::Moni::DLLs/RichDLLsLong @@ -180,7 +180,7 @@ ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully MCRichHitUnpacker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# UnPackedData" | 1000 | 8228812 | 8228.8 | 4751.6 | 0.0000 | 28267.0 | + | "# UnPackedData" | 1000 | 8228812 | 8228.8 | 4751.6 | 0.0000 | 28267. | RichDLLsDown INFO Number of counters : 10 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# PIDs" | 1000 | 9741 | 9.7410 | 6.8150 | 0.0000 | 44.000 | @@ -364,8 +364,8 @@ RichPIDMonUp70to100 INFO Number of counters : 10 |*"Used RICH2 only" | 38 | 0 |( 0.000000 +- 0.000000)% | RichRecoStatsDown INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 1000 | 1433081 | 1433.1 | 1651.2 | 0.0000 | 12611.0 | - | "# Rich1Gas Pixels" | 1000 | 3642422 | 3642.4 | 2020.1 | 0.0000 | 11770.0 | + | "# Rich1Gas Photons" | 1000 | 1433081 | 1433.1 | 1651.2 | 0.0000 | 12611. | + | "# Rich1Gas Pixels" | 1000 | 3642422 | 3642.4 | 2020.1 | 0.0000 | 11770. | | "# Rich1Gas Segments" | 1000 | 8737 | 8.7370 | 6.1343 | 0.0000 | 39.000 | | "# Rich2Gas Photons" | 1000 | 156482 | 156.48 | 219.40 | 0.0000 | 2064.0 | | "# Rich2Gas Pixels" | 1000 | 1708052 | 1708.1 | 966.11 | 0.0000 | 6116.0 | @@ -374,18 +374,18 @@ RichRecoStatsDown INFO Number of counters : 8 |*"RICH selection efficiency" | 13719 | 9741 |( 71.00372 +- 0.3873918)% | RichRecoStatsLong INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 1000 | 7589810 | 7589.8 | 7879.7 | 0.0000 | 57084.0 | - | "# Rich1Gas Pixels" | 1000 | 3642422 | 3642.4 | 2020.1 | 0.0000 | 11770.0 | + | "# Rich1Gas Photons" | 1000 | 7589810 | 7589.8 | 7879.7 | 0.0000 | 57084. | + | "# Rich1Gas Pixels" | 1000 | 3642422 | 3642.4 | 2020.1 | 0.0000 | 11770. | | "# Rich1Gas Segments" | 1000 | 51526 | 51.526 | 32.164 | 0.0000 | 207.00 | - | "# Rich2Gas Photons" | 1000 | 2041158 | 2041.2 | 2200.6 | 0.0000 | 20261.0 | + | "# Rich2Gas Photons" | 1000 | 2041158 | 2041.2 | 2200.6 | 0.0000 | 20261. | | "# Rich2Gas Pixels" | 1000 | 1708052 | 1708.1 | 966.11 | 0.0000 | 6116.0 | | "# Rich2Gas Segments" | 1000 | 32733 | 32.733 | 21.018 | 0.0000 | 138.00 | | "# Selected Tracks" | 1000 | 64165 | 64.165 | 39.596 | 0.0000 | 253.00 | |*"RICH selection efficiency" | 69863 | 64165 |( 91.84404 +- 0.1035475)% | RichRecoStatsUp INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 1000 | 1296675 | 1296.7 | 1617.6 | 0.0000 | 12681.0 | - | "# Rich1Gas Pixels" | 1000 | 3642422 | 3642.4 | 2020.1 | 0.0000 | 11770.0 | + | "# Rich1Gas Photons" | 1000 | 1296675 | 1296.7 | 1617.6 | 0.0000 | 12681. | + | "# Rich1Gas Pixels" | 1000 | 3642422 | 3642.4 | 2020.1 | 0.0000 | 11770. | | "# Rich1Gas Segments" | 1000 | 6964 | 6.9640 | 5.3888 | 0.0000 | 36.000 | | "# Rich2Gas Photons" | 1000 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "# Rich2Gas Pixels" | 1000 | 1708052 | 1708.1 | 966.11 | 0.0000 | 6116.0 | diff --git a/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-fake-mctracks-mchits-4D.ref.x86_64_v3-detdesc-opt b/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-fake-mctracks-mchits-4D.ref.x86_64_v3-detdesc-opt index 242ad071a08a4aae5f8c0ab2844626ae7862d8bc..f1736ad5d4739e9628407ba2e13f5191d6f5ef76 100644 --- a/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-fake-mctracks-mchits-4D.ref.x86_64_v3-detdesc-opt +++ b/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-fake-mctracks-mchits-4D.ref.x86_64_v3-detdesc-opt @@ -12,20 +12,20 @@ RichPixels INFO Member list: Rich::Future::SmartIDClusteri RichPixClustering INFO Hit times enabled for Rich1 | Window = 12.03 to n ns RichPixClustering INFO Hit times enabled for Rich2 | Window = 51.94 to n ns ToolSvc.RichPartProp INFO Particle types considered = [electron, muon, pion, kaon, proton, deuteron, below_threshold] -RichSIMDPixels INFO 4D pixels enabled for Rich1 | Window = 12.03 to n ns -RichSIMDPixels INFO 4D pixels enabled for Rich2 | Window = 51.94 to n ns +RichSIMDPixels INFO 4D enabled for Rich1 | Course 12.03 to n ns Fine (Inner/Outer) Window 0.5/n ns +RichSIMDPixels INFO 4D enabled for Rich2 | Course 51.94 to n ns Fine (Inner/Outer) Window 0.5/n ns RichMCReco INFO Member list: GaudiSequencer/RichTracksMC, GaudiSequencer/RichPhotonsMC, Rich::Future::Rec::SIMDRecoSummary/RichRecSummaryMC, GaudiSequencer/RichPIDMC RichTracksMC INFO Member list: Rich::Future::Rec::MC::TrSegMakerFromMCRichTracks/RichTrackSegmentsMC, Rich::Future::Rec::RayTraceTrackGlobalPoints/RichTrackGloPointsMC, Rich::Future::Rec::RayTraceTrackLocalPoints/RichTrackLocPointsMC, Rich::Future::Rec::EmittedPhotonYields/RichEmittedYieldsMC, Rich::Future::Rec::TrackEmittedCherenkovAngles/RichEmittedCKAnglesMC, Rich::Future::Rec::RayTraceCherenkovCones/RichMassConesMC, Rich::Future::Rec::AverageDetectablePhotonYields/RichDetectableYieldsMC, Rich::Future::Rec::GeomEffCKMassRings/RichGeomEffMC, Rich::Future::Rec::SelectTrackSegments/RichTkSegmentSelMC, Rich::Future::Rec::SignalPhotonYields/RichSignalYieldsMC, Rich::Future::Rec::TrackSignalCherenkovAngles/RichSignalCKAnglesMC, Rich::Future::Rec::TrackParameterisedCherenkovResolutions/RichCKResolutionsMC RichPhotonsMC INFO Member list: Rich::Future::Rec::SIMDQuarticPhotonReco/RichPhotonRecoMC, Rich::Future::Rec::SIMDPhotonPredictedPixelSignal/RichPredPixelSignalMC -RichPhotonRecoMC INFO 4D photons enabled for Rich1 | Window = n ns -RichPhotonRecoMC INFO 4D photons enabled for Rich2 | Window = n ns -RichPredPixelSignalMC INFO 4D signals enabled for Rich1 | Window = n ns -RichPredPixelSignalMC INFO 4D signals enabled for Rich2 | Window = n ns +RichPhotonRecoMC INFO 4D photons enabled for Rich1 +RichPhotonRecoMC INFO 4D photons enabled for Rich2 +RichPredPixelSignalMC INFO 4D signals enabled for Rich1 +RichPredPixelSignalMC INFO 4D signals enabled for Rich2 RichPIDMC INFO Member list: Rich::Future::Rec::GlobalPID::InitialisePIDInfo/RichGPIDInitMC, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt0MC, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt0MC, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt1MC, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt1MC, Rich::Future::Rec::GlobalPID::WriteRichPIDs/RichGPIDWriteRichPIDsMC -RichPixBackgroundsIt0MC INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt0MC INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 -RichPixBackgroundsIt1MC INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt1MC INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 +RichPixBackgroundsIt0MC INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt0MC INFO 4D Photon Time Window Scale Factor enabled for Rich2 +RichPixBackgroundsIt1MC INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt1MC INFO 4D Photon Time Window Scale Factor enabled for Rich2 RichMoni INFO Member list: Rich::Future::Rec::Moni::DetectorHits/RichRecPixelQC, Rich::Future::SmartIDClustering/RichFutureMoniClustering, Rich::Future::Rec::Moni::PixelClusters/RichRecPixelClusters, GaudiSequencer/RichMoniMC RichMoniMC INFO Member list: Rich::Future::Rec::Moni::SIMDRecoStats/RichRecoStatsMC, Rich::Future::Rec::Moni::TrackSelEff/RiMCTrkEff, Rich::Future::Rec::Moni::TrackGeometry/RiMCTrkGeom, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResMC, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResMCTight, Rich::Future::Rec::Moni::PhotonYield/RiTkEmittedYieldsMC, Rich::Future::Rec::Moni::PhotonYield/RiTkDetectableYieldsMC, Rich::Future::Rec::Moni::PhotonYield/RiTkSignalYieldsMC, Rich::Future::Rec::Moni::GeometricalEfficiencies/RiTkGeomEffsMC, Rich::Future::Rec::Moni::MassHypoRings/RichMassRingsMC, Rich::Future::Rec::Moni::TrackRadiatorMaterial/RiTkMaterialMC, Rich::Future::Rec::Moni::PixelBackgrounds/RichRecPixBkgsMC, Rich::Future::Rec::Moni::DLLs/RichDLLsMC PostUnpackSeq INFO Member list: UnpackMCVertex, UnpackMCParticle @@ -157,13 +157,13 @@ ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully MCFTHitUnpacker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# UnPackedData" | 1000 | 3279895 | 3279.9 | 1884.0 | 0.0000 | 11760.0 | + | "# UnPackedData" | 1000 | 3279895 | 3279.9 | 1884.0 | 0.0000 | 11760. | MCRichHitUnpacker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# UnPackedData" | 1000 | 8228812 | 8228.8 | 4751.6 | 0.0000 | 28267.0 | + | "# UnPackedData" | 1000 | 8228812 | 8228.8 | 4751.6 | 0.0000 | 28267. | MCRichOpticalPhotonUnpacker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# UnPackedData" | 1000 | 8207857 | 8207.9 | 4739.6 | 0.0000 | 28195.0 | + | "# UnPackedData" | 1000 | 8207857 | 8207.9 | 4739.6 | 0.0000 | 28195. | MCRichSegmentUnpacker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# UnPackedData" | 1000 | 413565 | 413.56 | 236.66 | 0.0000 | 1475.0 | @@ -241,10 +241,10 @@ RichPIDMonMC70to100 INFO Number of counters : 10 |*"Used RICH2 only" | 346 | 334 |( 96.53179 +- 0.9836706)% | RichRecoStatsMC INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 1000 | 2899260 | 2899.3 | 3009.7 | 0.0000 | 21333.0 | - | "# Rich1Gas Pixels" | 1000 | 3642305 | 3642.3 | 2019.7 | 0.0000 | 11757.0 | + | "# Rich1Gas Photons" | 1000 | 2899260 | 2899.3 | 3009.7 | 0.0000 | 21333. | + | "# Rich1Gas Pixels" | 1000 | 3642305 | 3642.3 | 2019.7 | 0.0000 | 11757. | | "# Rich1Gas Segments" | 1000 | 23106 | 23.106 | 14.923 | 0.0000 | 92.000 | - | "# Rich2Gas Photons" | 1000 | 1564106 | 1564.1 | 1569.5 | 0.0000 | 13570.0 | + | "# Rich2Gas Photons" | 1000 | 1564106 | 1564.1 | 1569.5 | 0.0000 | 13570. | | "# Rich2Gas Pixels" | 1000 | 1707842 | 1707.8 | 965.85 | 0.0000 | 6122.0 | | "# Rich2Gas Segments" | 1000 | 22994 | 22.994 | 14.245 | 0.0000 | 93.000 | | "# Selected Tracks" | 1000 | 41574 | 41.574 | 25.146 | 0.0000 | 156.00 | diff --git a/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-pixmctime-4D.ref.x86_64_v3-detdesc-opt b/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-pixmctime-4D.ref.x86_64_v3-detdesc-opt index 16bd814b1a4e11856e8c6b6c4d40c3c2b1ae4155..89a954e6c679b0e3f33a94c8751440baf1a20466 100644 --- a/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-pixmctime-4D.ref.x86_64_v3-detdesc-opt +++ b/Rich/RichFutureRecSys/tests/refs/reco-from-detdesc-mc-dst-pixmctime-4D.ref.x86_64_v3-detdesc-opt @@ -12,40 +12,40 @@ RichPixels INFO Member list: Rich::Future::SmartIDClusteri RichPixClustering INFO Hit times enabled for Rich1 | Window = 12.03 to n ns RichPixClustering INFO Hit times enabled for Rich2 | Window = 51.94 to n ns ToolSvc.RichPartProp INFO Particle types considered = [electron, muon, pion, kaon, proton, deuteron, below_threshold] -RichSIMDPixels INFO 4D pixels enabled for Rich1 | Window = 12.03 to n ns -RichSIMDPixels INFO 4D pixels enabled for Rich2 | Window = 51.94 to n ns +RichSIMDPixels INFO 4D enabled for Rich1 | Course 12.03 to n ns Fine (Inner/Outer) Window 0.5/n ns +RichSIMDPixels INFO 4D enabled for Rich2 | Course 51.94 to n ns Fine (Inner/Outer) Window 0.5/n ns RichDownReco INFO Member list: GaudiSequencer/RichTracksDown, GaudiSequencer/RichPhotonsDown, Rich::Future::Rec::SIMDRecoSummary/RichRecSummaryDown, GaudiSequencer/RichPIDDown RichTracksDown INFO Member list: Rich::Future::Rec::DetailedTrSegMakerFromTracks/RichTrackSegmentsDown, Rich::Future::Rec::MC::RichSegmentAddTimeFromMC/RichAddSegTimeFromMCDown, Rich::Future::Rec::RayTraceTrackGlobalPoints/RichTrackGloPointsDown, Rich::Future::Rec::RayTraceTrackLocalPoints/RichTrackLocPointsDown, Rich::Future::Rec::EmittedPhotonYields/RichEmittedYieldsDown, Rich::Future::Rec::TrackEmittedCherenkovAngles/RichEmittedCKAnglesDown, Rich::Future::Rec::RayTraceCherenkovCones/RichMassConesDown, Rich::Future::Rec::AverageDetectablePhotonYields/RichDetectableYieldsDown, Rich::Future::Rec::GeomEffCKMassRings/RichGeomEffDown, Rich::Future::Rec::SelectTrackSegments/RichTkSegmentSelDown, Rich::Future::Rec::SignalPhotonYields/RichSignalYieldsDown, Rich::Future::Rec::TrackSignalCherenkovAngles/RichSignalCKAnglesDown, Rich::Future::Rec::TrackParameterisedCherenkovResolutions/RichCKResolutionsDown RichPhotonsDown INFO Member list: Rich::Future::Rec::SIMDQuarticPhotonReco/RichPhotonRecoDown, Rich::Future::Rec::SIMDPhotonPredictedPixelSignal/RichPredPixelSignalDown -RichPhotonRecoDown INFO 4D photons enabled for Rich1 | Window = n ns -RichPhotonRecoDown INFO 4D photons enabled for Rich2 | Window = n ns -RichPredPixelSignalDown INFO 4D signals enabled for Rich1 | Window = n ns -RichPredPixelSignalDown INFO 4D signals enabled for Rich2 | Window = n ns +RichPhotonRecoDown INFO 4D photons enabled for Rich1 +RichPhotonRecoDown INFO 4D photons enabled for Rich2 +RichPredPixelSignalDown INFO 4D signals enabled for Rich1 +RichPredPixelSignalDown INFO 4D signals enabled for Rich2 RichPIDDown INFO Member list: Rich::Future::Rec::GlobalPID::InitialisePIDInfo/RichGPIDInitDown, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt0Down, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt0Down, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt1Down, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt1Down, Rich::Future::Rec::GlobalPID::WriteRichPIDs/RichGPIDWriteRichPIDsDown -RichPixBackgroundsIt0Down INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt0Down INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 -RichPixBackgroundsIt1Down INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt1Down INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 +RichPixBackgroundsIt0Down INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt0Down INFO 4D Photon Time Window Scale Factor enabled for Rich2 +RichPixBackgroundsIt1Down INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt1Down INFO 4D Photon Time Window Scale Factor enabled for Rich2 RichLongReco INFO Member list: GaudiSequencer/RichTracksLong, GaudiSequencer/RichPhotonsLong, Rich::Future::Rec::SIMDRecoSummary/RichRecSummaryLong, GaudiSequencer/RichPIDLong RichTracksLong INFO Member list: Rich::Future::Rec::DetailedTrSegMakerFromTracks/RichTrackSegmentsLong, Rich::Future::Rec::MC::RichSegmentAddTimeFromMC/RichAddSegTimeFromMCLong, Rich::Future::Rec::RayTraceTrackGlobalPoints/RichTrackGloPointsLong, Rich::Future::Rec::RayTraceTrackLocalPoints/RichTrackLocPointsLong, Rich::Future::Rec::EmittedPhotonYields/RichEmittedYieldsLong, Rich::Future::Rec::TrackEmittedCherenkovAngles/RichEmittedCKAnglesLong, Rich::Future::Rec::RayTraceCherenkovCones/RichMassConesLong, Rich::Future::Rec::AverageDetectablePhotonYields/RichDetectableYieldsLong, Rich::Future::Rec::GeomEffCKMassRings/RichGeomEffLong, Rich::Future::Rec::SelectTrackSegments/RichTkSegmentSelLong, Rich::Future::Rec::SignalPhotonYields/RichSignalYieldsLong, Rich::Future::Rec::TrackSignalCherenkovAngles/RichSignalCKAnglesLong, Rich::Future::Rec::TrackParameterisedCherenkovResolutions/RichCKResolutionsLong RichPhotonsLong INFO Member list: Rich::Future::Rec::SIMDQuarticPhotonReco/RichPhotonRecoLong, Rich::Future::Rec::SIMDPhotonPredictedPixelSignal/RichPredPixelSignalLong -RichPhotonRecoLong INFO 4D photons enabled for Rich1 | Window = n ns -RichPhotonRecoLong INFO 4D photons enabled for Rich2 | Window = n ns -RichPredPixelSignalLong INFO 4D signals enabled for Rich1 | Window = n ns -RichPredPixelSignalLong INFO 4D signals enabled for Rich2 | Window = n ns +RichPhotonRecoLong INFO 4D photons enabled for Rich1 +RichPhotonRecoLong INFO 4D photons enabled for Rich2 +RichPredPixelSignalLong INFO 4D signals enabled for Rich1 +RichPredPixelSignalLong INFO 4D signals enabled for Rich2 RichPIDLong INFO Member list: Rich::Future::Rec::GlobalPID::InitialisePIDInfo/RichGPIDInitLong, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt0Long, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt0Long, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt1Long, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt1Long, Rich::Future::Rec::GlobalPID::WriteRichPIDs/RichGPIDWriteRichPIDsLong -RichPixBackgroundsIt0Long INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt0Long INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 -RichPixBackgroundsIt1Long INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt1Long INFO 4D Photon Time Window Scale Factor for Rich2 = 0.5 +RichPixBackgroundsIt0Long INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt0Long INFO 4D Photon Time Window Scale Factor enabled for Rich2 +RichPixBackgroundsIt1Long INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt1Long INFO 4D Photon Time Window Scale Factor enabled for Rich2 RichUpReco INFO Member list: GaudiSequencer/RichTracksUp, GaudiSequencer/RichPhotonsUp, Rich::Future::Rec::SIMDRecoSummary/RichRecSummaryUp, GaudiSequencer/RichPIDUp RichTracksUp INFO Member list: Rich::Future::Rec::DetailedTrSegMakerFromTracks/RichTrackSegmentsUp, Rich::Future::Rec::MC::RichSegmentAddTimeFromMC/RichAddSegTimeFromMCUp, Rich::Future::Rec::RayTraceTrackGlobalPoints/RichTrackGloPointsUp, Rich::Future::Rec::RayTraceTrackLocalPoints/RichTrackLocPointsUp, Rich::Future::Rec::EmittedPhotonYields/RichEmittedYieldsUp, Rich::Future::Rec::TrackEmittedCherenkovAngles/RichEmittedCKAnglesUp, Rich::Future::Rec::RayTraceCherenkovCones/RichMassConesUp, Rich::Future::Rec::AverageDetectablePhotonYields/RichDetectableYieldsUp, Rich::Future::Rec::GeomEffCKMassRings/RichGeomEffUp, Rich::Future::Rec::SelectTrackSegments/RichTkSegmentSelUp, Rich::Future::Rec::SignalPhotonYields/RichSignalYieldsUp, Rich::Future::Rec::TrackSignalCherenkovAngles/RichSignalCKAnglesUp, Rich::Future::Rec::TrackParameterisedCherenkovResolutions/RichCKResolutionsUp RichPhotonsUp INFO Member list: Rich::Future::Rec::SIMDQuarticPhotonReco/RichPhotonRecoUp, Rich::Future::Rec::SIMDPhotonPredictedPixelSignal/RichPredPixelSignalUp -RichPhotonRecoUp INFO 4D photons enabled for Rich1 | Window = n ns -RichPredPixelSignalUp INFO 4D signals enabled for Rich1 | Window = n ns +RichPhotonRecoUp INFO 4D photons enabled for Rich1 +RichPredPixelSignalUp INFO 4D signals enabled for Rich1 RichPIDUp INFO Member list: Rich::Future::Rec::GlobalPID::InitialisePIDInfo/RichGPIDInitUp, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt0Up, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt0Up, Rich::Future::Rec::SIMDPixelBackgroundsEstiAvHPD/RichPixBackgroundsIt1Up, Rich::Future::Rec::GlobalPID::SIMDLikelihoodMinimiser/RichGPIDLikelihoodIt1Up, Rich::Future::Rec::GlobalPID::WriteRichPIDs/RichGPIDWriteRichPIDsUp -RichPixBackgroundsIt0Up INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 -RichPixBackgroundsIt1Up INFO 4D Photon Time Window Scale Factor for Rich1 = 0.5 +RichPixBackgroundsIt0Up INFO 4D Photon Time Window Scale Factor enabled for Rich1 +RichPixBackgroundsIt1Up INFO 4D Photon Time Window Scale Factor enabled for Rich1 RichMoni INFO Member list: Rich::Future::Rec::Moni::DetectorHits/RichRecPixelQC, Rich::Future::SmartIDClustering/RichFutureMoniClustering, Rich::Future::Rec::Moni::PixelClusters/RichRecPixelClusters, GaudiSequencer/RichMoniDown, GaudiSequencer/RichMoniLong, GaudiSequencer/RichMoniUp RichMoniDown INFO Member list: Rich::Future::Rec::Moni::SIMDRecoStats/RichRecoStatsDown, Rich::Future::Rec::Moni::TrackSelEff/RiDownTrkEff, Rich::Future::Rec::Moni::TrackGeometry/RiDownTrkGeom, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResDown, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResDownTight, Rich::Future::Rec::Moni::PhotonYield/RiTkEmittedYieldsDown, Rich::Future::Rec::Moni::PhotonYield/RiTkDetectableYieldsDown, Rich::Future::Rec::Moni::PhotonYield/RiTkSignalYieldsDown, Rich::Future::Rec::Moni::GeometricalEfficiencies/RiTkGeomEffsDown, Rich::Future::Rec::Moni::MassHypoRings/RichMassRingsDown, Rich::Future::Rec::Moni::TrackRadiatorMaterial/RiTkMaterialDown, Rich::Future::Rec::Moni::PixelBackgrounds/RichRecPixBkgsDown, Rich::Future::Rec::Moni::DLLs/RichDLLsDown RichMoniLong INFO Member list: Rich::Future::Rec::Moni::SIMDRecoStats/RichRecoStatsLong, Rich::Future::Rec::Moni::TrackSelEff/RiLongTrkEff, Rich::Future::Rec::Moni::TrackGeometry/RiLongTrkGeom, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResLong, Rich::Future::Rec::Moni::SIMDPhotonCherenkovAngles/RiCKResLongTight, Rich::Future::Rec::Moni::PhotonYield/RiTkEmittedYieldsLong, Rich::Future::Rec::Moni::PhotonYield/RiTkDetectableYieldsLong, Rich::Future::Rec::Moni::PhotonYield/RiTkSignalYieldsLong, Rich::Future::Rec::Moni::GeometricalEfficiencies/RiTkGeomEffsLong, Rich::Future::Rec::Moni::MassHypoRings/RichMassRingsLong, Rich::Future::Rec::Moni::TrackRadiatorMaterial/RiTkMaterialLong, Rich::Future::Rec::Moni::PixelBackgrounds/RichRecPixBkgsLong, Rich::Future::Rec::Moni::DLLs/RichDLLsLong @@ -180,7 +180,7 @@ ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully MCRichHitUnpacker INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# UnPackedData" | 1000 | 8228812 | 8228.8 | 4751.6 | 0.0000 | 28267.0 | + | "# UnPackedData" | 1000 | 8228812 | 8228.8 | 4751.6 | 0.0000 | 28267. | RichDLLsDown INFO Number of counters : 10 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# PIDs" | 1000 | 9741 | 9.7410 | 6.8150 | 0.0000 | 44.000 | @@ -360,8 +360,8 @@ RichPIDMonUp70to100 INFO Number of counters : 10 |*"Used RICH2 only" | 38 | 0 |( 0.000000 +- 0.000000)% | RichRecoStatsDown INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 1000 | 1537366 | 1537.4 | 1793.1 | 0.0000 | 13462.0 | - | "# Rich1Gas Pixels" | 1000 | 3850323 | 3850.3 | 2142.8 | 0.0000 | 12501.0 | + | "# Rich1Gas Photons" | 1000 | 1537366 | 1537.4 | 1793.1 | 0.0000 | 13462. | + | "# Rich1Gas Pixels" | 1000 | 3850323 | 3850.3 | 2142.8 | 0.0000 | 12501. | | "# Rich1Gas Segments" | 1000 | 8737 | 8.7370 | 6.1343 | 0.0000 | 39.000 | | "# Rich2Gas Photons" | 1000 | 166159 | 166.16 | 233.61 | 0.0000 | 2188.0 | | "# Rich2Gas Pixels" | 1000 | 1807982 | 1808.0 | 1027.7 | 0.0000 | 6506.0 | @@ -370,18 +370,18 @@ RichRecoStatsDown INFO Number of counters : 8 |*"RICH selection efficiency" | 13719 | 9741 |( 71.00372 +- 0.3873918)% | RichRecoStatsLong INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 1000 | 8106804 | 8106.8 | 8497.4 | 0.0000 | 62011.0 | - | "# Rich1Gas Pixels" | 1000 | 3850323 | 3850.3 | 2142.8 | 0.0000 | 12501.0 | + | "# Rich1Gas Photons" | 1000 | 8106804 | 8106.8 | 8497.4 | 0.0000 | 62011. | + | "# Rich1Gas Pixels" | 1000 | 3850323 | 3850.3 | 2142.8 | 0.0000 | 12501. | | "# Rich1Gas Segments" | 1000 | 51526 | 51.526 | 32.164 | 0.0000 | 207.00 | - | "# Rich2Gas Photons" | 1000 | 2163906 | 2163.9 | 2342.5 | 0.0000 | 21402.0 | + | "# Rich2Gas Photons" | 1000 | 2163906 | 2163.9 | 2342.5 | 0.0000 | 21402. | | "# Rich2Gas Pixels" | 1000 | 1807982 | 1808.0 | 1027.7 | 0.0000 | 6506.0 | | "# Rich2Gas Segments" | 1000 | 32733 | 32.733 | 21.018 | 0.0000 | 138.00 | | "# Selected Tracks" | 1000 | 64165 | 64.165 | 39.596 | 0.0000 | 253.00 | |*"RICH selection efficiency" | 69863 | 64165 |( 91.84404 +- 0.1035475)% | RichRecoStatsUp INFO Number of counters : 8 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# Rich1Gas Photons" | 1000 | 1375412 | 1375.4 | 1724.4 | 0.0000 | 13442.0 | - | "# Rich1Gas Pixels" | 1000 | 3850323 | 3850.3 | 2142.8 | 0.0000 | 12501.0 | + | "# Rich1Gas Photons" | 1000 | 1375412 | 1375.4 | 1724.4 | 0.0000 | 13442. | + | "# Rich1Gas Pixels" | 1000 | 3850323 | 3850.3 | 2142.8 | 0.0000 | 12501. | | "# Rich1Gas Segments" | 1000 | 6964 | 6.9640 | 5.3888 | 0.0000 | 36.000 | | "# Rich2Gas Photons" | 1000 | 0 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | | "# Rich2Gas Pixels" | 1000 | 1807982 | 1808.0 | 1027.7 | 0.0000 | 6506.0 | @@ -390,7 +390,7 @@ RichRecoStatsUp INFO Number of counters : 8 |*"RICH selection efficiency" | 8188 | 6964 |( 85.05129 +- 0.3940518)% | RichSumUnPack INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | - | "# UnPackedData" | 1000 | 8898772 | 8898.8 | 4654.0 | 839.00 | 28584.0 | + | "# UnPackedData" | 1000 | 8898772 | 8898.8 | 4654.0 | 839.00 | 28584. | UnpackTracks INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "# UnPackedData" | 1000 | 295969 | 295.97 | 180.64 | 0.0000 | 1610.0 | diff --git a/Tr/PrKalmanFilter/include/PrKalmanFilter/KF.h b/Tr/PrKalmanFilter/include/PrKalmanFilter/KF.h index c4bf69cf02835edcc39d5801ab6cd2ea52cb3e1c..85e36cec773b3b250aa3691f87bf6c44b780d16c 100644 --- a/Tr/PrKalmanFilter/include/PrKalmanFilter/KF.h +++ b/Tr/PrKalmanFilter/include/PrKalmanFilter/KF.h @@ -578,13 +578,13 @@ namespace LHCb::Pr::Tracks::Fit { return filter<direction>( node ); } - inline LHCb::ChiSquare fit( LHCb::span<Node> fitnodes ) { + inline LHCb::ChiSquare fit( LHCb::span<Node> fitnodes, int n_track_parameters ) { // not checking that first_hit_node_fwd != end or that I can increment the iterator safely. // But it should be safe since we know our track is made of a couple of hits // and I can't think of a scenario where this could crash. fitnodes.front().predicted_state_vec[Node::forward] = fitnodes.front().ref_vector(); - auto chi2_fwd = filter<Node::forward>( fitnodes.front() ) + LHCb::ChiSquare{0, -5}; + auto chi2_fwd = filter<Node::forward>( fitnodes.front() ) + LHCb::ChiSquare{0, -n_track_parameters}; for ( size_t i{1}; i < fitnodes.size(); ++i ) { chi2_fwd += predict_and_filter<Node::forward>( fitnodes[i - 1], fitnodes[i] ); } @@ -593,7 +593,7 @@ namespace LHCb::Pr::Tracks::Fit { fitnodes.back().predicted_state_vec[Node::backward] = fitnodes.back().filtered_state_vec[Node::forward]; // start independent from ref_vector // fitnodes.back().predicted_state_vec[FitNode::backward] = fitnodes.back().ref_vector(); - auto chi2_bkwd = filter<Node::backward>( fitnodes.back() ) + LHCb::ChiSquare{0, -5}; + auto chi2_bkwd = filter<Node::backward>( fitnodes.back() ) + LHCb::ChiSquare{0, -n_track_parameters}; for ( int i( fitnodes.size() - 2 ); i >= 0; --i ) { chi2_bkwd += predict_and_filter<Node::backward>( fitnodes[i + 1], fitnodes[i] ); } @@ -786,11 +786,11 @@ namespace LHCb::Pr::Tracks::Fit { template <typename Buffer, typename Buffer2> auto iterate_fit( LHCb::span<Node> fitnodes, const FitConfiguration& fit_config, const IGeometryInfo& geo, const ITrackExtrapolator& extrap, Buffer& iter_buffer, Buffer2& pre_outlier_chi2_cut_buffer, - Buffer& transport_failed_buffer ) { + Buffer& transport_failed_buffer, int n_track_parameters ) { pre_fit_init( fitnodes, fit_config ); // first fit execution - auto prev_chi2 = fit( fitnodes ); + auto prev_chi2 = fit( fitnodes, n_track_parameters ); auto const tolerance = prev_chi2.nDoF() * 0.01; // iterate until max iterations or chi2 change below tolerance // iter starts at 2 to align max_fit_iter property with TrackMasterFitter @@ -804,7 +804,7 @@ namespace LHCb::Pr::Tracks::Fit { iter_buffer += ( iter - 1 ); return std::tuple{prev_chi2, false, iter - 1}; } - auto const chi2 = fit( fitnodes ); + auto const chi2 = fit( fitnodes, n_track_parameters ); auto const dchi2 = prev_chi2.chi2() - chi2.chi2(); prev_chi2 = chi2; has_converged = std::abs( dchi2 ) < tolerance; @@ -828,7 +828,7 @@ namespace LHCb::Pr::Tracks::Fit { */ template <typename Buffer, typename Buffer2> auto remove_outliers( LHCb::span<Node> fitnodes, const FitConfiguration& fit_config, LHCb::ChiSquare& prev_chi2, - Buffer& outlier_iter_buffer, Buffer2& chi2_cut_buffer ) { + Buffer& outlier_iter_buffer, Buffer2& chi2_cut_buffer, int n_track_parameters ) { const auto min_hits = std::array<size_t, 4>{fit_config.minNumVPLayers, fit_config.minNumUTLayers, fit_config.minNumFTLayers, fit_config.minNumMuonLayers}; @@ -884,7 +884,7 @@ namespace LHCb::Pr::Tracks::Fit { } outlier->m_is_outlier = true; pattern.remove( outlier->lhcbID ); - prev_chi2 = fit( fitnodes ); + prev_chi2 = fit( fitnodes, n_track_parameters ); } outlier_iter_buffer += outlier_iter; @@ -908,10 +908,10 @@ namespace LHCb::Pr::Tracks::Fit { return z; } - inline auto calc_extra_info( const std::vector<Node>& fitnodes ) { + inline auto calc_extra_info( const std::vector<Node>& fitnodes, int n_track_parameters ) { - auto velo_chi2 = LHCb::ChiSquare{0, -5}; - auto down_chi2 = LHCb::ChiSquare{0, -5}; + auto velo_chi2 = LHCb::ChiSquare{0, -n_track_parameters}; + auto down_chi2 = LHCb::ChiSquare{0, -n_track_parameters}; auto upstream_chi2 = LHCb::ChiSquare{}; auto NUTOutliers = 0; @@ -1215,7 +1215,8 @@ namespace LHCb::Pr::Tracks::Fit { auto make_output_track( const InputTrackType& tracks, const proxy_type<InputTrackType>& track, std::vector<Node>& fitnodes, LHCb::ChiSquare prev_chi2, int nIter, double scatteringMomentum, bool fill_fitresult, bool classic_smoothing_post, const IGeometryInfo& geo, - const ITrackExtrapolator& extrap, bool is_long_in_beam_pipe, Gaudi::XYZPoint beamspot ) { + const ITrackExtrapolator& extrap, bool is_long_in_beam_pipe, Gaudi::XYZPoint beamspot, + int n_track_parameters ) { // // start creating our output track // @@ -1261,7 +1262,7 @@ namespace LHCb::Pr::Tracks::Fit { new_track->setNDoF( prev_chi2.nDoF() ); new_track->setChi2PerDoF( prev_chi2.chi2() / prev_chi2.nDoF() ); - const auto [velo_chi2, upstream_chi2, down_chi2, n_ut_outliers] = calc_extra_info( fitnodes ); + const auto [velo_chi2, upstream_chi2, down_chi2, n_ut_outliers] = calc_extra_info( fitnodes, n_track_parameters ); if constexpr ( isLong<InputTrackType> ) { @@ -1393,11 +1394,12 @@ namespace LHCb::Pr::Tracks::Fit { } inline void add_output_v3_partial_chi2( LHCb::Event::v3::Track::PartialChiSquareds& out_partial_chi2s, - std::vector<Node>& fitnodes, LHCb::ChiSquare prev_chi2 ) { + std::vector<Node>& fitnodes, LHCb::ChiSquare prev_chi2, + int n_track_parameters ) { auto new_partial_chi2 = out_partial_chi2s.emplace_back<SIMDWrapper::InstructionSet::Scalar>(); - const auto [velo_chi2, upstream_chi2, down_chi2, NUTOutliers] = calc_extra_info( fitnodes ); + const auto [velo_chi2, upstream_chi2, down_chi2, NUTOutliers] = calc_extra_info( fitnodes, n_track_parameters ); namespace tag = LHCb::Event::v3::Track::PartialChiSquaredsTag; new_partial_chi2.field<tag::FitVeloChi2>().set( velo_chi2.chi2() ); diff --git a/Tr/PrKalmanFilter/src/KalmanFilter.cpp b/Tr/PrKalmanFilter/src/KalmanFilter.cpp index 1ae502e339aecbabee836e18063daf67b9053aae..c653c4eae4f3d1ecc031a0e51904dfcfdd207f57 100644 --- a/Tr/PrKalmanFilter/src/KalmanFilter.cpp +++ b/Tr/PrKalmanFilter/src/KalmanFilter.cpp @@ -205,16 +205,23 @@ namespace LHCb::Pr { continue; } - auto [chi2, success, nIter] = KF::iterate_fit( fitnodes, fit_config, *lhcb.geometry(), *extrap, iter_buffer, - pre_outlier_chi2_cut_buffer, transport_failed_buffer ); + const auto n_track_parameters = ( isVelo<InputTrackType> || m_mag_off ) ? TrackParameters::nStateParametersNoMag + : TrackParameters::nStateParameters; + + auto [chi2, success, nIter] = + KF::iterate_fit( fitnodes, fit_config, *lhcb.geometry(), *extrap, iter_buffer, pre_outlier_chi2_cut_buffer, + transport_failed_buffer, n_track_parameters ); if ( !success ) { continue; } - if ( !KF::remove_outliers( fitnodes, fit_config, chi2, outlier_iter_buffer, chi2_cut_buffer ) ) { continue; } + if ( !KF::remove_outliers( fitnodes, fit_config, chi2, outlier_iter_buffer, chi2_cut_buffer, + n_track_parameters ) ) { + continue; + } if constexpr ( isV1Tracks<OutputTrackType> ) { auto new_track = make_output_track( tracks, track, fitnodes, chi2, nIter, scatteringMomentum, m_fill_fitresult, m_classic_smoothing_post, *lhcb.geometry(), *extrap, is_long_in_beam_pipe, - deVP.beamSpot() ); + deVP.beamSpot(), n_track_parameters ); if ( !new_track ) { ++states_failed_buffer; continue; @@ -237,7 +244,7 @@ namespace LHCb::Pr { ++states_failed_buffer; continue; } - add_output_v3_partial_chi2( new_partial_chi2s, fitnodes, chi2 ); + add_output_v3_partial_chi2( new_partial_chi2s, fitnodes, chi2, n_track_parameters ); if constexpr ( isV3TracksFull<OutputTrackType> ) { auto& new_fit_results = std::get<std::vector<LHCb::PrKalmanFitResult>>( output ); new_fit_results.emplace_back( diff --git a/Tr/PrKalmanFilter/src/KalmanFilterTool.cpp b/Tr/PrKalmanFilter/src/KalmanFilterTool.cpp index 3cec740fca9cac409277aa249a10fc9380feca2d..b8edff9821ea9ed6579c43408f6969d0954a7d45 100644 --- a/Tr/PrKalmanFilter/src/KalmanFilterTool.cpp +++ b/Tr/PrKalmanFilter/src/KalmanFilterTool.cpp @@ -8,7 +8,6 @@ * granted to it by virtue of its status as an Intergovernmental Organization * * or submit itself to any jurisdiction. * \*****************************************************************************/ - #include "DetDesc/DetectorElement.h" #include "DetDesc/GenericConditionAccessorHolder.h" #include "Event/PrFitNode.h" @@ -84,6 +83,12 @@ namespace LHCb::Pr { } else if constexpr ( has_hit_type<HitType::VP, Types...> && has_hit_type<HitType::FT, Types...> && !has_hit_type<HitType::UT, Types...> && has_hit_type<HitType::Muon, Types...> ) { assert( track.checkType( TrackV1::Types::LongMuon ) ); + } else if constexpr ( !has_hit_type<HitType::VP, Types...> && has_hit_type<HitType::FT, Types...> && + !has_hit_type<HitType::UT, Types...> && has_hit_type<HitType::Muon, Types...> ) { + assert( track.checkType( TrackV1::Types::SeedMuon ) ); + } else if constexpr ( !has_hit_type<HitType::VP, Types...> && !has_hit_type<HitType::FT, Types...> && + !has_hit_type<HitType::UT, Types...> && has_hit_type<HitType::Muon, Types...> ) { + assert( track.checkType( TrackV1::Types::Muon ) ); } else { static_assert( always_false<std::integral_constant<HitType, Types>...>::value, "Hit Containers do not match any supported track type" ); @@ -179,7 +184,8 @@ namespace LHCb::Pr { bool thr_magnet_noUT = [&] { if constexpr ( !has_hit_type<HitType::UT, Types...> ) return !( track.checkType( TrackV1::Types::Velo ) || track.isVeloBackward() || - track.checkType( TrackV1::Types::Ttrack ) ); + track.checkType( TrackV1::Types::Ttrack ) || track.checkType( TrackV1::Types::SeedMuon ) || + track.checkType( TrackV1::Types::Muon ) ); else return false; }(); @@ -205,14 +211,12 @@ namespace LHCb::Pr { * @param geo lhcb * @param extrap track extrapolator * @return TrackV1 if this fails the Invalid flag is set - * @note The current implementation only knows Velo, Downstream and Long tracks but can easily be extended for other - * track types. * */ TrackV1 make_output_track( const TrackV1& track, std::vector<Node>& fitnodes, LHCb::ChiSquare prev_chi2, int nIter, double scatteringMomentum, bool fill_fitresult, bool classic_smoothing_post, const IGeometryInfo& geo, const ITrackExtrapolator& extrap, bool is_long_in_beam_pipe, - Gaudi::XYZPoint beamspot ) { + Gaudi::XYZPoint beamspot, int n_track_parameters ) { // start creating our output track auto new_track = TrackV1{track.history(), track.type(), track.patRecStatus()}; @@ -225,8 +229,8 @@ namespace LHCb::Pr { new_track.setChi2PerDoF( prev_chi2.chi2() / prev_chi2.nDoF() ); auto velo_chi2 = - LHCb::ChiSquare{0, -5}; // initialized with -5 because of the number of free param in the track fit - auto down_chi2 = LHCb::ChiSquare{0, -5}; + LHCb::ChiSquare{0, -n_track_parameters}; // initialized with the number of free param in the track fit + auto down_chi2 = LHCb::ChiSquare{0, -n_track_parameters}; auto upstream_chi2 = LHCb::ChiSquare{}; // not initialized because always used combined with one of the above auto muon_chi2 = LHCb::ChiSquare{}; @@ -279,6 +283,20 @@ namespace LHCb::Pr { return invalid_track( std::move( new_track ) ); } break; + case TrackV1::Types::Muon: { + new_track.addInfo( TrackV1::AdditionalInfo::FitMuonChi2, muon_chi2.chi2() ); + auto const& first_hit = fitnodes.back(); + auto const& last_hit = fitnodes.front(); + auto const fwd = Node::forward; + auto const bkwd = Node::backward; + auto first_meas = LHCb::State{first_hit.filtered_state_vec[fwd], first_hit.filtered_state_cov[fwd], + first_hit.z(), LHCb::State::Location::FirstMeasurement}; + update_state( new_track, first_meas ); + auto last_meas = LHCb::State{last_hit.filtered_state_vec[bkwd], last_hit.filtered_state_cov[bkwd], last_hit.z(), + LHCb::State::Location::LastMeasurement}; + update_state( new_track, last_meas ); + break; + } case TrackV1::Types::Velo: case TrackV1::Types::VeloBackward: new_track.addInfo( TrackV1::AdditionalInfo::FitVeloChi2, velo_chi2.chi2() ); @@ -314,6 +332,17 @@ namespace LHCb::Pr { .isFailure() ) { return invalid_track( std::move( new_track ) ); } + break; + case TrackV1::Types::SeedMuon: + new_track.addInfo( TrackV1::AdditionalInfo::FitTChi2, down_chi2.chi2() ); + new_track.addInfo( TrackV1::AdditionalInfo::FitTNDoF, down_chi2.nDoF() ); + new_track.addInfo( TrackV1::AdditionalInfo::FitMuonChi2, muon_chi2.chi2() ); + // SeedMuon tracks get the same states as plain Seed tracks + if ( add_fitted_states<Seeding::Tracks>( new_track, fitnodes, scatteringMomentum, geo, extrap, false, beamspot ) + .isFailure() ) { + return invalid_track( std::move( new_track ) ); + } + break; default: break; } @@ -402,6 +431,15 @@ namespace LHCb::Pr { return m_parent->fit_v1_tracks( tracks, *m_geometry, *m_deVP, m_extrap, hits_vp, hits_ut, hits_ft, hits_muon ); } + V1Output operator()( const TracksV1& tracks, const Hits<HitType::FT>& hits_ft, + const Hits<HitType::Muon>& hits_muon ) const override { + return m_parent->fit_v1_tracks( tracks, *m_geometry, *m_deVP, m_extrap, hits_ft, hits_muon ); + } + + V1Output operator()( const TracksV1& tracks, const Hits<HitType::Muon>& hits_muon ) const override { + return m_parent->fit_v1_tracks( tracks, *m_geometry, *m_deVP, m_extrap, hits_muon ); + } + V1Output operator()( const TracksV1& tracks, const Hits<HitType::VP>& hits_vp, const Hits<HitType::FT>& hits_ft, const Hits<HitType::Muon>& hits_muon ) const override { return m_parent->fit_v1_tracks( tracks, *m_geometry, *m_deVP, m_extrap, hits_vp, hits_ft, hits_muon ); @@ -469,6 +507,19 @@ namespace LHCb::Pr { hits_muon ); } + TrackV1 operator()( const TrackV1& track, const Hits<HitType::FT>& hits_ft, + const Hits<HitType::Muon>& hits_muon ) const override { + std::vector<Node> fitnodes; + fitnodes.reserve( 50 ); + return m_parent->fit_v1_track( track, fitnodes, *m_geometry, *m_deVP, m_extrap, hits_ft, hits_muon ); + } + + TrackV1 operator()( const TrackV1& track, const Hits<HitType::Muon>& hits_muon ) const override { + std::vector<Node> fitnodes; + fitnodes.reserve( 50 ); + return m_parent->fit_v1_track( track, fitnodes, *m_geometry, *m_deVP, m_extrap, hits_muon ); + } + TrackV1 operator()( const TrackV1& track, const Hits<HitType::FT>& hits_ft ) const override { std::vector<Node> fitnodes; fitnodes.reserve( 50 ); @@ -609,16 +660,23 @@ namespace LHCb::Pr { return invalid_track( TrackV1{} ); } - auto [chi2, success, nIter] = KF::iterate_fit( fitnodes, fit_config, *lhcb.geometry(), extrap, m_counter_iterations, - m_counter_pre_outlier_cut, m_counter_transport_failed ); + const auto n_track_parameters = ( track.checkType( TrackV1::Types::Velo ) || track.isVeloBackward() || + track.checkType( TrackV1::Types::Muon ) || m_mag_off ) + ? TrackParameters::nStateParametersNoMag + : TrackParameters::nStateParameters; + + auto [chi2, success, nIter] = + KF::iterate_fit( fitnodes, fit_config, *lhcb.geometry(), extrap, m_counter_iterations, + m_counter_pre_outlier_cut, m_counter_transport_failed, n_track_parameters ); if ( !success ) { return invalid_track( TrackV1{} ); } - if ( !KF::remove_outliers( fitnodes, fit_config, chi2, m_counter_outlier_iterations, m_counter_cut ) ) { + if ( !KF::remove_outliers( fitnodes, fit_config, chi2, m_counter_outlier_iterations, m_counter_cut, + n_track_parameters ) ) { return invalid_track( TrackV1{} ); } const auto new_track = make_output_track( track, fitnodes, chi2, nIter, scatteringMomentum, m_fill_fitresult, m_classic_smoothing_post, - *lhcb.geometry(), extrap, is_long_in_beam_pipe, deVP.beamSpot() ); + *lhcb.geometry(), extrap, is_long_in_beam_pipe, deVP.beamSpot(), n_track_parameters ); if ( new_track.checkFlag( TrackV1::Flags::Invalid ) ) { ++m_counter_states_failed; } return new_track; } @@ -701,16 +759,23 @@ namespace LHCb::Pr { continue; } - auto [chi2, success, nIter] = KF::iterate_fit( fitnodes, fit_config, *lhcb.geometry(), extrap, iter_buffer, - pre_outlier_chi2_cut_buffer, transport_failed_buffer ); + const int n_track_parameters = ( isVelo<InputTrackType> || m_mag_off ) ? TrackParameters::nStateParametersNoMag + : TrackParameters::nStateParameters; + + auto [chi2, success, nIter] = + KF::iterate_fit( fitnodes, fit_config, *lhcb.geometry(), extrap, iter_buffer, pre_outlier_chi2_cut_buffer, + transport_failed_buffer, n_track_parameters ); if ( !success ) { continue; } - if ( !KF::remove_outliers( fitnodes, fit_config, chi2, outlier_iter_buffer, chi2_cut_buffer ) ) { continue; } + if ( !KF::remove_outliers( fitnodes, fit_config, chi2, outlier_iter_buffer, chi2_cut_buffer, + n_track_parameters ) ) { + continue; + } if constexpr ( isV1Tracks<OutputTrackType> ) { auto new_track = make_output_track( tracks, track, fitnodes, chi2, nIter, scatteringMomentum, m_fill_fitresult, m_classic_smoothing_post, *lhcb.geometry(), extrap, is_long_in_beam_pipe, - deVP.beamSpot() ); + deVP.beamSpot(), n_track_parameters ); if ( !new_track ) { ++states_failed_buffer; continue; @@ -732,7 +797,7 @@ namespace LHCb::Pr { ++states_failed_buffer; continue; } - add_output_v3_partial_chi2( new_partial_chi2s, fitnodes, chi2 ); + add_output_v3_partial_chi2( new_partial_chi2s, fitnodes, chi2, n_track_parameters ); if constexpr ( isV3TracksFull<OutputTrackType> ) { auto& new_fit_results = std::get<TrackFitResults>( output ); new_fit_results.emplace_back( diff --git a/Tr/PrKalmanFilter/src/ToolExample.cpp b/Tr/PrKalmanFilter/src/ToolExample.cpp index 57fb9c46620c69f0932a5ad2834081de6bcbbe47..b363ad2aacfa4f4b363080080fa2101cf3d82553 100644 --- a/Tr/PrKalmanFilter/src/ToolExample.cpp +++ b/Tr/PrKalmanFilter/src/ToolExample.cpp @@ -124,6 +124,8 @@ OutputTrackType KalmanFilterToolExample<InputTrackType, OutputTrackType>:: return fit( tracks, hits_vp, hits_ut ); } else if ( single_track->checkType( TrackV1::Types::LongMuon ) ) { return fit( tracks, hits_vp, hits_ut, hits_ft, hits_muon ); + } else if ( single_track->checkType( TrackV1::Types::SeedMuon ) ) { + return fit( tracks, hits_ft, hits_muon ); } else { // long tracks ... but in principle this operator is as well suitable for velo, downstream and upstream, cool! return fit( tracks, hits_vp, hits_ut, hits_ft ); @@ -142,6 +144,8 @@ OutputTrackType KalmanFilterToolExample<InputTrackType, OutputTrackType>:: return fit( *single_track, hits_vp, hits_ut ); } else if ( single_track->checkType( TrackV1::Types::LongMuon ) ) { return fit( *single_track, hits_vp, hits_ut, hits_ft, hits_muon ); + } else if ( single_track->checkType( TrackV1::Types::SeedMuon ) ) { + return fit( *single_track, hits_ft, hits_muon ); } else { // long tracks ... but in principle this operator is as well suitable for velo, downstream and upstream, cool! return fit( *single_track, hits_vp, hits_ut, hits_ft ); @@ -194,6 +198,8 @@ OutputTrackType KalmanFilterToolExample_noUT<InputTrackType, OutputTrackType>:: return fit( tracks, hits_vp, hits_ft ); } else if ( single_track->checkType( TrackV1::Types::LongMuon ) ) { return fit( tracks, hits_vp, hits_ft, hits_muon ); + } else if ( single_track->checkType( TrackV1::Types::SeedMuon ) ) { + return fit( tracks, hits_ft, hits_muon ); } else { return V1Output{}; } diff --git a/Tr/TrackInterfaces/include/TrackInterfaces/IPrFitterTool.h b/Tr/TrackInterfaces/include/TrackInterfaces/IPrFitterTool.h index da3537071eb8e11d3a8320f7ab87abef99d21e1e..ea4b41cb90d1111dd722b11831ce6ab06e36da3a 100644 --- a/Tr/TrackInterfaces/include/TrackInterfaces/IPrFitterTool.h +++ b/Tr/TrackInterfaces/include/TrackInterfaces/IPrFitterTool.h @@ -85,6 +85,13 @@ struct IPrFitterTool : extend_interfaces<IAlgTool> { const LHCb::Pr::Hits<LHCb::Pr::HitType::VP>&, const LHCb::Pr::Hits<LHCb::Pr::HitType::FT>&, const LHCb::Pr::Hits<LHCb::Pr::HitType::Muon>& ) const = 0; + // fit v1 seedmuon tracks + virtual std::tuple<LHCb::Event::Tracks> operator()( const LHCb::Event::Tracks&, + const LHCb::Pr::Hits<LHCb::Pr::HitType::FT>&, + const LHCb::Pr::Hits<LHCb::Pr::HitType::Muon>& ) const = 0; + // fit v1 muon tracks + virtual std::tuple<LHCb::Event::Tracks> operator()( const LHCb::Event::Tracks&, + const LHCb::Pr::Hits<LHCb::Pr::HitType::Muon>& ) const = 0; // fit v1 Ttrack tracks virtual std::tuple<LHCb::Event::Tracks> operator()( const LHCb::Event::Tracks&, const LHCb::Pr::Hits<LHCb::Pr::HitType::FT>& ) const = 0; @@ -128,6 +135,13 @@ struct IPrFitterTool : extend_interfaces<IAlgTool> { const LHCb::Pr::Hits<LHCb::Pr::HitType::UT>&, const LHCb::Pr::Hits<LHCb::Pr::HitType::FT>&, const LHCb::Pr::Hits<LHCb::Pr::HitType::Muon>& ) const = 0; + // fit v1 seedmuon track + virtual LHCb::Event::Track operator()( const LHCb::Event::Track&, const LHCb::Pr::Hits<LHCb::Pr::HitType::FT>&, + const LHCb::Pr::Hits<LHCb::Pr::HitType::Muon>& ) const = 0; + + // fit v1 muon track + virtual LHCb::Event::Track operator()( const LHCb::Event::Track&, + const LHCb::Pr::Hits<LHCb::Pr::HitType::Muon>& ) const = 0; // fit v1 Ttrack track virtual LHCb::Event::Track operator()( const LHCb::Event::Track&, const LHCb::Pr::Hits<LHCb::Pr::HitType::FT>& ) const = 0; diff --git a/Tr/TrackMonitors/src/TrackMonitor.cpp b/Tr/TrackMonitors/src/TrackMonitor.cpp index 5f82222f62a24918df1074d2c07bf4bf463b50e6..b8b41f82d07dcf68c773a4641a8366e745494dbb 100644 --- a/Tr/TrackMonitors/src/TrackMonitor.cpp +++ b/Tr/TrackMonitors/src/TrackMonitor.cpp @@ -335,10 +335,11 @@ private: // GAUDI PROPERTIES Gaudi::Property<bool> m_splitByType{this, "SplitByType", true}; using Type = LHCb::Event::Enum::Track::Type; - Gaudi::Property<std::vector<Type>> m_typesToMonitor{ - this, - "typesToMonitor", - {Type::Velo, Type::VeloBackward, Type::Long, Type::Upstream, Type::Downstream, Type::Ttrack, Type::Muon}}; + Gaudi::Property<std::vector<Type>> m_typesToMonitor{this, + "typesToMonitor", + {Type::Velo, Type::VeloBackward, Type::Long, Type::Upstream, + Type::Downstream, Type::Ttrack, Type::Muon, Type::LongMuon, + Type::SeedMuon}}; Gaudi::Property<std::vector<std::string>> m_StatesFor2DHits{this, "StatesFor2DHits", {"VELO", "UT", "FT"}}; // HISTOGRAM DEFINITION diff --git a/Tr/TrackTools/CMakeLists.txt b/Tr/TrackTools/CMakeLists.txt index 70526189814c17defebec0bcf2b8a918fbb08f8a..0910ad411910e51ee626e41cf83c2116c15fb4a9 100644 --- a/Tr/TrackTools/CMakeLists.txt +++ b/Tr/TrackTools/CMakeLists.txt @@ -28,6 +28,7 @@ gaudi_add_module(TrackTools src/MuonSeeding.cpp src/MuonTrackSelector.cpp src/MuonUTTracking.cpp + src/MakeMuonTracks.cpp src/PtTransporter.cpp src/SeedMuonBuilder.cpp src/StandaloneMuonRec.cpp diff --git a/Tr/TrackTools/src/MakeMuonTracks.cpp b/Tr/TrackTools/src/MakeMuonTracks.cpp new file mode 100644 index 0000000000000000000000000000000000000000..ee7a492d00bc91676a6964bb2c25313b732e5a85 --- /dev/null +++ b/Tr/TrackTools/src/MakeMuonTracks.cpp @@ -0,0 +1,200 @@ +/*****************************************************************************\ +* (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. * +\*****************************************************************************/ +#include "DetDesc/DetectorElement.h" +#include "MuonDet/MuonNamespace.h" +#include "MuonInterfaces/NNMuonTrack.h" + +#include "Event/PrHits.h" +#include "Event/State.h" +#include "Event/StateVector.h" +#include "Event/Track.h" +#include "Gaudi/Accumulators.h" +#include "Kernel/LHCbID.h" +#include "LHCbAlgs/Transformer.h" +#include "TrackInterfaces/IPrFitterTool.h" +#include "TrackInterfaces/ITrackFitter.h" +#include "TrackInterfaces/ITrackMomentumEstimate.h" +#include <Magnet/DeMagnet.h> + +#include <string> +#include <type_traits> +#include <vector> + +namespace LHCb { + + using MuonHits = Pr::Hits<LHCb::Pr::HitType::Muon>; + + /** + * Simple algorithm to make "LHCb" tracks from MuonNNet tracks + * and to copy them to some location. + * + * @author Stefania Vecchi (alias Jan Amoraal) + * @date 2009-12-03 + */ + struct MakeMuonTracksBase : Gaudi::Algorithm { + using Algorithm::Algorithm; + Event::v1::Tracks executionCore( NNMuonTracks const&, const DeMagnet&, DetectorElement const& lhcb ) const; + + protected: + Gaudi::Property<bool> m_skipBigClusters{this, "SkipBigClusters", false}; + Gaudi::Property<bool> m_Bfield{this, "BField", false}; + Gaudi::Property<unsigned int> m_MaxNTiles{this, "MaxNTiles", 6}; + Gaudi::Property<bool> m_fitTracks{this, "FitTracks", true}; + + ToolHandle<ITrackFitter> m_TrackMasterFitter{this, "Fitter", "TrackMasterFitter/Fitter"}; + ToolHandle<ITrackMomentumEstimate> m_fCalcMomentum{this, "TrackPtKick", "TrackPtKick", "momentum tool"}; + + mutable Gaudi::Accumulators::AveragingCounter<> m_hitsPerTrack{this, "nb MuonHits per track"}; + mutable Gaudi::Accumulators::AveragingCounter<> m_tilesPerTrack{this, "nb tiles used per track"}; + mutable Gaudi::Accumulators::Counter<> m_trackRejecteBigCluster{this, + "nb track not saved due to BIG cluster rejection"}; + mutable Gaudi::Accumulators::Counter<> m_trackFitFailed{this, "nb track with Fit failure"}; + mutable Gaudi::Accumulators::AveragingCounter<> m_nbTracks{this, "nb tracks created"}; + mutable Gaudi::Accumulators::AveragingCounter<> m_nbInputTracks{this, "nb input tracks"}; + + bool m_isTMF{true}; + }; + + struct MakeMuonTracks_TMF + : Algorithm::Transformer< + Event::v1::Tracks( NNMuonTracks const&, DeMagnet const&, DetectorElement const& ), + LHCb::Algorithm::Traits::usesBaseAndConditions<MakeMuonTracksBase, DeMagnet, DetectorElement>> { + MakeMuonTracks_TMF( const std::string& name, ISvcLocator* pSvcLocator ) + : Transformer( name, pSvcLocator, + {KeyValue{"MuonTracksLocation", ""}, KeyValue{"DeMagnet", LHCb::Det::Magnet::det_path}, + KeyValue{"StandardGeometryTop", LHCb::standard_geometry_top}}, + KeyValue{"TracksOutputLocation", TrackLocation::Muon} ) {} + Event::v1::Tracks operator()( NNMuonTracks const& tracks, DeMagnet const& magnet, + DetectorElement const& lhcb ) const override { + return executionCore( tracks, magnet, lhcb ); + } + }; + DECLARE_COMPONENT_WITH_ID( MakeMuonTracks_TMF, "MakeMuonTracks" ) + + struct MakeMuonTracks_PrKF + : Algorithm::Transformer< + Event::v1::Tracks( NNMuonTracks const&, MuonHits const&, IPrFitterTool const&, DeMagnet const&, + DetectorElement const& ), + LHCb::Algorithm::Traits::usesBaseAndConditions<MakeMuonTracksBase, DeMagnet, DetectorElement>> { + MakeMuonTracks_PrKF( const std::string& name, ISvcLocator* pSvcLocator ) + : Transformer( name, pSvcLocator, + {KeyValue{"MuonTracksLocation", ""}, KeyValue{"MuonHitsLocation", ""}, + KeyValue{"KalmanFilterTool", ""}, KeyValue{"DeMagnet", LHCb::Det::Magnet::det_path}, + KeyValue{"StandardGeometryTop", LHCb::standard_geometry_top}}, + KeyValue{"TracksOutputLocation", TrackLocation::Muon} ) { + m_isTMF = false; + } + StatusCode initialize() override { + return Transformer::initialize().andThen( [&] { m_TrackMasterFitter.disable(); } ); + } + Event::v1::Tracks operator()( NNMuonTracks const&, MuonHits const&, IPrFitterTool const&, DeMagnet const&, + DetectorElement const& ) const override; + }; + DECLARE_COMPONENT_WITH_ID( MakeMuonTracks_PrKF, "MakeMuonTracks_PrKF" ) + + Event::v1::Tracks MakeMuonTracksBase::executionCore( NNMuonTracks const& mTracks, const DeMagnet& magnet, + DetectorElement const& lhcb ) const { + // optimize usage of counters + auto hitsPerTrack = m_hitsPerTrack.buffer(); + auto tilesPerTrack = m_tilesPerTrack.buffer(); + auto trackRejecteBigCluster = m_trackRejecteBigCluster.buffer(); + auto trackFitFailed = m_trackFitFailed.buffer(); + + m_nbInputTracks += mTracks.size(); + + LHCb::Event::v1::Tracks tracks{}; + + if ( msgLevel( MSG::DEBUG ) ) { debug() << " # of Muon tracks " << mTracks.size() << endmsg; } + for ( const auto& t : mTracks ) { + auto track = std::make_unique<Track>(); + auto hits = t.getHits(); // std::vector<const MuonCluster*> + if ( msgLevel( MSG::DEBUG ) ) { debug() << " # of Hits " << hits.size() << endmsg; } + + auto firstHit = hits.front(); + auto z_firstHit = firstHit->Z(); + + double qOverP( 1. / 10000. ), sigmaQOverP( 0. ); + Gaudi::XYZPoint trackPos( t.bx() + t.sx() * z_firstHit, t.by() + t.sy() * z_firstHit, z_firstHit ); + LHCb::State state( LHCb::StateVector( trackPos, Gaudi::XYZVector( t.sx(), t.sy(), 1.0 ), 1. / 10000. ) ); + if ( msgLevel( MSG::DEBUG ) ) { + debug() << " State pos " << trackPos << " Slopes bx=" << t.bx() << " sx=" << t.sx() << " by=" << t.by() + << " sy=" << t.sy() << endmsg; + } + if ( m_Bfield.value() ) { + m_fCalcMomentum->calculate( magnet, &state, qOverP, sigmaQOverP ).ignore(); + state.setQOverP( qOverP ); + } + + state.setLocation( State::Location::Muon ); + track->addToStates( state ); + + LHCb::State first_meas_state{state}; + first_meas_state.setLocation( State::Location::FirstMeasurement ); + track->addToStates( first_meas_state ); + + // ======================== + auto lastHit = hits.back(); + auto z_lastHit = lastHit->Z(); + + trackPos = Gaudi::XYZPoint( t.bx() + t.sx() * z_lastHit, t.by() + t.sy() * z_lastHit, z_lastHit ); + LHCb::State laststate( LHCb::StateVector( trackPos, Gaudi::XYZVector( t.sx(), t.sy(), 1.0 ), qOverP ) ); + + laststate.setLocation( State::Location::LastMeasurement ); + track->addToStates( laststate ); + // ======== + + hitsPerTrack += hits.size(); + int ntile = 0; + bool flagBIGcluster = false; // flag to identify tracks with too big clusters + for ( auto const* hit : hits ) { + auto const Tiles = hit->getPadTiles(); + if ( Tiles.size() > m_MaxNTiles ) flagBIGcluster = true; + for ( auto const& tile : Tiles ) { track->addToLhcbIDs( LHCbID( tile ) ); } + ntile += Tiles.size(); + } + tilesPerTrack += ntile; + if ( msgLevel( MSG::DEBUG ) ) { debug() << " Total # of LHCbID " << ntile << endmsg; } + if ( m_skipBigClusters.value() && flagBIGcluster ) { + ++trackRejecteBigCluster; + if ( msgLevel( MSG::DEBUG ) ) { debug() << " Rejected track due to big clusters " << endmsg; } + } else { + if ( m_isTMF && m_fitTracks ) { + // Try and improve the covariance information + auto sc = ( *m_TrackMasterFitter )( *track, *lhcb.geometry(), LHCb::Tr::PID::Muon() ); + if ( sc.isFailure() ) { ++trackFitFailed; } + } + track->setPatRecStatus( Track::PatRecStatus::PatRecIDs ); + track->setType( Track::Types::Muon ); + tracks.insert( track.release() ); + } + } + m_nbTracks += tracks.size(); + if ( msgLevel( MSG::DEBUG ) ) { + debug() << " Saved " << tracks.size() << " Muon tracks of " << mTracks.size() << endmsg; + } + return tracks; + } + + Event::v1::Tracks MakeMuonTracks_PrKF::operator()( NNMuonTracks const& mTracks, MuonHits const& muon_hits, + IPrFitterTool const& fitter, DeMagnet const& magnet, + DetectorElement const& lhcb ) const { + auto tracks = executionCore( mTracks, magnet, lhcb ); + if ( m_fitTracks ) { + auto [out_tracks] = fitter( tracks, muon_hits ); + m_nbTracks += out_tracks.size(); + if ( msgLevel( MSG::DEBUG ) ) { + debug() << " Saved " << out_tracks.size() << " Muon tracks of " << mTracks.size() << endmsg; + } + return std::move( out_tracks ); + } + return tracks; + } +} // namespace LHCb diff --git a/Tr/TrackTools/src/MuonMeasurementProvider.cpp b/Tr/TrackTools/src/MuonMeasurementProvider.cpp index 4f73b91b6a8cef5bfc45e1821778983444619bb8..dd8f8d364eb00c659707c1ab21fdc733c9add9fc 100644 --- a/Tr/TrackTools/src/MuonMeasurementProvider.cpp +++ b/Tr/TrackTools/src/MuonMeasurementProvider.cpp @@ -190,11 +190,13 @@ std::array<LHCb::Measurement, 2> MuonMeasurementProvider::measurement( const DeM } } if ( !Cid.muonID().isValid() ) { - error() << " IMPOSSIBLE to Create muon measurement from a cluster of " << padx.size() << " hits ! " << Cid.muonID() - << endmsg; - error() << " x " << Cx << " +/- " << Cdx << " in the range [" << hit_minx << "," << hit_maxx << "] " << endmsg; - error() << " y " << Cy << " +/- " << Cdy << " in the range [" << hit_miny << "," << hit_maxy << "] " << endmsg; - error() << " z " << Cz << " +/- " << Cdz << " in the range [" << hit_minz << "," << hit_maxz << "] " << endmsg; + if ( msgLevel( MSG::ERROR ) ) { + error() << " IMPOSSIBLE to Create muon measurement from a cluster of " << padx.size() << " hits ! " + << Cid.muonID() << endmsg; + error() << " x " << Cx << " +/- " << Cdx << " in the range [" << hit_minx << "," << hit_maxx << "] " << endmsg; + error() << " y " << Cy << " +/- " << Cdy << " in the range [" << hit_miny << "," << hit_maxy << "] " << endmsg; + error() << " z " << Cz << " +/- " << Cdz << " in the range [" << hit_minz << "," << hit_maxz << "] " << endmsg; + } } if ( msgLevel( MSG::DEBUG ) ) { diff --git a/Tr/TrackTools/src/MuonTrackSelector.cpp b/Tr/TrackTools/src/MuonTrackSelector.cpp index 56f76fc987824a725addd72c67cc9a14b739cec2..1a692dbeb13dddae25fefb9c90e867859f70bb7c 100644 --- a/Tr/TrackTools/src/MuonTrackSelector.cpp +++ b/Tr/TrackTools/src/MuonTrackSelector.cpp @@ -9,14 +9,19 @@ * or submit itself to any jurisdiction. * \*****************************************************************************/ +#include "Detector/Muon/MuonConstants.h" + #include "Event/Track.h" #include "Kernel/LHCbID.h" #include "LHCbAlgs/Transformer.h" #include "Gaudi/Accumulators.h" +#include "GaudiKernel/GaudiException.h" #include "GaudiKernel/SmartIF.h" #include "GaudiKernel/SystemOfUnits.h" +#include <array> +#include <bitset> #include <map> #include <memory> #include <string> @@ -42,7 +47,7 @@ namespace LHCb { LHCb::Tracks operator()( const LHCb::Tracks& inputTracks ) const override; private: - Gaudi::Property<int> m_nStation{this, "minHitStation", 2}; + Gaudi::Property<std::size_t> m_nStation{this, "minHitStation", 2}; Gaudi::Property<int> m_theR{this, "TheRegion", -1}; Gaudi::Property<double> m_pcut{this, "MuonPcut", 0. * Gaudi::Units::GeV}; Gaudi::Property<double> m_muonChisquareCut{this, "MuonChisquareCut", 0.}; @@ -69,52 +74,50 @@ namespace LHCb { DECLARE_COMPONENT_WITH_ID( MuonTrackSelector, "MuonTrackSelector" ) void MuonTrackSelector::filterMuonTrack( Track* track, Tracks& outputContainer ) const { - if ( m_pcut > 0 && track->p() < m_pcut ) { + + if ( track->type() != Track::Types::Muon ) { + throw GaudiException( "Input track type is not Muon", this->name(), StatusCode::FAILURE ); + } + if ( m_pcut > 0. && track->p() < m_pcut ) { ++m_lowMomentum; - debug() << " Discard the track due to the low momentum" << track->p() << endmsg; + if ( msgLevel( MSG::DEBUG ) ) debug() << " Discard the track due to the low momentum" << track->p() << endmsg; return; // select high momentum tracks } - bool ASide = false; - bool CSide = false; - int MA[5] = {0, 0, 0, 0, 0}; - int MC[5] = {0, 0, 0, 0, 0}; - int MR[4] = {0, 0, 0, 0}; - - const std::vector<LHCb::LHCbID>& lhcbids = track->lhcbIDs(); - for ( std::vector<LHCb::LHCbID>::const_iterator id = lhcbids.begin(); id != lhcbids.end(); ++id ) { - if ( id->isMuon() ) { - int iS = id->muonID().station(); - int iR = id->muonID().region(); - int iQ = id->muonID().quarter(); - if ( iQ < 2 ) - MA[iS] = 1; // A-side - else - MC[iS] = 1; - MR[iR]++; + auto MA = std::bitset<Detector::Muon::N_OF_STATIONS>{}; + auto MC = std::bitset<Detector::Muon::N_OF_STATIONS>{}; + auto MR = std::array<int, Detector::Muon::N_OF_REGIONS>{}; + for ( const auto id : track->lhcbIDs() ) { + if ( id.isMuon() ) { + if ( id.muonID().quarter() < 2 ) { + MA.set( id.muonID().station() ); // A-side + } else { + MC.set( id.muonID().station() ); + } + MR.at( id.muonID().region() )++; } } - int MAside = MA[0] + MA[1] + MA[2] + MA[3] + MA[4]; - int MCside = MC[0] + MC[1] + MC[2] + MC[3] + MC[4]; + const auto MAside = MA.count(); + const auto MCside = MC.count(); if ( m_theR > -1 && m_theR < 4 ) { for ( int iR = 0; iR < 4; iR++ ) { if ( iR != m_theR && MR[iR] != 0 ) { - debug() << " Discard the track since it hits unwanted Region" << iR << endmsg; + if ( msgLevel( MSG::DEBUG ) ) debug() << " Discard the track since it hits unwanted Region" << iR << endmsg; ++m_unwantedRegion; return; } } if ( MR[m_theR] == 0 ) { - debug() << " Discard the track since it doesn't hit Region" << m_theR << endmsg; + if ( msgLevel( MSG::DEBUG ) ) debug() << " Discard the track since it doesn't hit Region" << m_theR << endmsg; ++m_doesnothitRegion; return; } } else if ( m_theR > 9 && m_theR < 40 ) { for ( int iR = 0; iR < 4; iR++ ) { if ( iR > int( m_theR / 10 ) && MR[iR] != 0 ) { - debug() << " Discard the track since it hits unwanted Region" << iR << endmsg; + if ( msgLevel( MSG::DEBUG ) ) debug() << " Discard the track since it hits unwanted Region" << iR << endmsg; ++m_unwantedRegion; return; } @@ -125,48 +128,55 @@ namespace LHCb { if ( MR[iR] != 0 ) iMR++; } if ( iMR > 1 ) { - debug() << " Discard the track since it hits more than one region" << iMR << endmsg; + if ( msgLevel( MSG::DEBUG ) ) + debug() << " Discard the track since it hits more than one region" << iMR << endmsg; ++m_moreThanOneRegion; return; } } - + bool ASide = false; + bool CSide = false; if ( MAside != 0 && MCside == 0 ) ASide = true; else if ( MAside == 0 && MCside != 0 ) CSide = true; if ( MAside + MCside < m_nStation ) { - debug() << " Discard the track due to the low number of hit station " << MAside + MCside << endmsg; + if ( msgLevel( MSG::DEBUG ) ) + debug() << " Discard the track due to the low number of hit station " << MAside + MCside << endmsg; ++m_lowNbHits; return; /// requires at least some hits somewhere } if ( m_noOverlap && !( ( ASide || CSide ) && ( MAside > m_nStation || MCside > m_nStation ) ) ) { - debug() << " Discard the track since overlaps hit station Cside " << MCside << " Aside " << MAside << endmsg; + if ( msgLevel( MSG::DEBUG ) ) + debug() << " Discard the track since overlaps hit station Cside " << MCside << " Aside " << MAside << endmsg; ++m_overlapHitStation; return; } else { - debug() << " Track hit station Cside " << MCside << " Aside " << MAside << endmsg; + if ( msgLevel( MSG::DEBUG ) ) debug() << " Track hit station Cside " << MCside << " Aside " << MAside << endmsg; } if ( m_calo ) { State stateAtCALO; if ( fabs( stateAtCALO.x() ) > 3900 && fabs( stateAtCALO.y() ) > 3150 ) { - debug() << " Discard the track since falls off the CALO acceptance x" << fabs( stateAtCALO.x() ) << " y " - << stateAtCALO.y() << endmsg; + if ( msgLevel( MSG::DEBUG ) ) + debug() << " Discard the track since falls off the CALO acceptance x" << fabs( stateAtCALO.x() ) << " y " + << stateAtCALO.y() << endmsg; ++m_offCaloAcceptance; return; // out the calo acceptance } } if ( m_muonChisquareCut > 0 && track->chi2PerDoF() > m_muonChisquareCut ) { - debug() << " Discard the track due to the chisquare " << track->chi2PerDoF() << endmsg; + if ( msgLevel( MSG::DEBUG ) ) + debug() << " Discard the track due to the chisquare " << track->chi2PerDoF() << endmsg; ++m_badChisquare; return; } - debug() << " Track selected " << endmsg; + if ( msgLevel( MSG::DEBUG ) ) debug() << " Track selected " << endmsg; + auto clonedTrack = std::make_unique<Track>( *track, track->key() ); LHCBIDS ids = clonedTrack->lhcbIDs(); outputContainer.add( clonedTrack.release() ); @@ -174,6 +184,7 @@ namespace LHCb { Tracks MuonTrackSelector::operator()( const Tracks& inputTracks ) const { m_nbInputTracks += inputTracks.size(); + Tracks output; for ( Track* t : inputTracks ) { this->filterMuonTrack( t, output ); } m_filteredTracks += output.size(); diff --git a/Tr/TrackTools/src/TrackMuonMatching.cpp b/Tr/TrackTools/src/TrackMuonMatching.cpp index 09710d2201eab0636b0541991aee7c13c4947a85..4a4d60343c8afaf0eb7432fea8b5a0091db12ca6 100644 --- a/Tr/TrackTools/src/TrackMuonMatching.cpp +++ b/Tr/TrackTools/src/TrackMuonMatching.cpp @@ -30,39 +30,51 @@ #include "GaudiKernel/ToolHandle.h" #include "LHCbAlgs/Transformer.h" +#include "TrackInterfaces/ITrackFitter.h" //Stefania + #include <functional> #include <string> #include <vector> +#include "DetDesc/DetectorElement.h" +#include "DetDesc/GenericConditionAccessorHolder.h" + /** * (based on OTMuonMatching by Jan Amoraal) * @author Stefania Vecchi * @date 2010-06-04 */ + +using InputTracks = LHCb::Track::Range; + class TrackMuonMatching : public LHCb::Algorithm::Transformer< - LHCb::Tracks( const LHCb::Tracks&, const LHCb::Tracks&, const DetectorElement&, const DeMuonDetector& ), + LHCb::Tracks( const InputTracks&, const InputTracks&, const DetectorElement&, const DeMuonDetector& ), LHCb::DetDesc::usesBaseAndConditions<GaudiTupleAlg, DetectorElement, DeMuonDetector>> { public: TrackMuonMatching( const std::string& name, ISvcLocator* pSvcLocator ); - LHCb::Tracks operator()( const LHCb::Tracks& longTracks, const LHCb::Tracks& muonTracks, const DetectorElement& geo, + LHCb::Tracks operator()( const InputTracks& tracks, const InputTracks& muonTracks, const DetectorElement& geo, const DeMuonDetector& ) const override; private: - StatusCode matchChi2( LHCb::State& longTrack, LHCb::State& mTrack, const double& atZ, double& chi2, + StatusCode matchChi2( LHCb::State& Track, LHCb::State& mTrack, const double& atZ, double& chi2, DetectorElement const& detelem ) const; StatusCode longTmuonExtrap( LHCb::State* lState, const double& atZ, DetectorElement const& detelem ) const; - auto createMatchedTrack( LHCb::Track& longt, LHCb::Track& muont ) const; + auto createMatchedTrack( const LHCb::Track& longt, const LHCb::Track& muont ) const; Gaudi::Property<double> m_matchAtZ{this, "MatchAtZ", 12500 * Gaudi::Units::mm}; Gaudi::Property<bool> m_matchAtFirstMuonHit{this, "MatchAtFirstMuonHit", false}; Gaudi::Property<double> m_matchChi2Cut{this, "MatchChi2Cut", 100.0}; Gaudi::Property<bool> m_allCombinations{this, "AllCombinations", true}; - Gaudi::Property<bool> m_returnLongMuon{this, "ReturnLongMuon", true}; + Gaudi::Property<bool> m_fitTracks{this, "FitTracks", true}; // Stefania + + using Type = LHCb::Event::Enum::Track::Type; + Gaudi::Property<Type> m_tracktype{this, "trackType", Type::Long}; + ToolHandle<ITrackFitter> m_trackFitter{this, "Fitter", "TrackMasterFitter/Fitter"}; // Stefania ToolHandle<ITrackExtrapolator> m_extrapolator{this, "Extrapolator", "TrackLinearExtrapolator"}; ToolHandle<ITrackChi2Calculator> m_chi2Calculator{this, "Chi2Calculator", "TrackChi2Calculator"}; @@ -74,9 +86,11 @@ using namespace LHCb; // Declaration of the Algorithm Factory DECLARE_COMPONENT( TrackMuonMatching ) -auto TrackMuonMatching::createMatchedTrack( LHCb::Track& longTrack, LHCb::Track& muonTrack ) const { +auto TrackMuonMatching::createMatchedTrack( const LHCb::Track& input_track, const LHCb::Track& muonTrack ) const { auto matchedTrack = std::make_unique<LHCb::Track>(); - matchedTrack->copy( longTrack ); + matchedTrack->copy( input_track ); + if ( msgLevel( MSG::DEBUG ) ) + debug() << " =============== TrackMuonMatching - CreateMatchedTrack BEGIN" << *matchedTrack << endmsg; // Stefania // Remove long track's LastMeasurement state // or convert it in an LastFTHit if there isn't one yet if ( matchedTrack->hasStateAt( LHCb::State::Location::LastFTHit ) ) { @@ -95,112 +109,112 @@ auto TrackMuonMatching::createMatchedTrack( LHCb::Track& longTrack, LHCb::Track& } /// Add muon ids to copied T track for ( LHCbID id : muonTrack.lhcbIDs() ) matchedTrack->addToLhcbIDs( id ); - // FIXME returning LongMuon type should be standard case - if ( m_returnLongMuon.value() ) matchedTrack->setType( LHCb::Track::Types::LongMuon ); + if ( input_track.checkType( LHCb::Track::Types::Long ) ) + matchedTrack->setType( LHCb::Track::Types::LongMuon ); + else if ( input_track.checkType( LHCb::Track::Types::Ttrack ) ) + matchedTrack->setType( LHCb::Track::Types::SeedMuon ); + else + throw GaudiException( "TrackMuonMatching: Track type not recognized", name(), StatusCode::FAILURE ); + + if ( msgLevel( MSG::DEBUG ) ) + debug() << " =============== TrackMuonMatching - CreateMatchedTrack END" << matchedTrack->type() + << endmsg; // Stefania return matchedTrack; } TrackMuonMatching::TrackMuonMatching( const std::string& name, ISvcLocator* pSvcLocator ) : Transformer( name, pSvcLocator, - {KeyValue{"LongTracksLocation", TrackLocation::Default}, - KeyValue{"MuonTracksLocation", TrackLocation::Muon}, + {KeyValue{"TracksLocation", LHCb::TrackLocation::Default}, + KeyValue{"MuonTracksLocation", LHCb::TrackLocation::Muon}, KeyValue{"StandardGeometryTop", LHCb::standard_geometry_top}, KeyValue{"DeMuonDetector", DeMuonLocation::Default}}, KeyValue{"TracksOutputLocation", "Rec/Track/Best/TMuon"} ) {} -Tracks TrackMuonMatching::operator()( const Tracks& longTracks, const Tracks& muonTracks, const DetectorElement& geo, - const DeMuonDetector& ) const { - Tracks matchedTracks; - - bool flaglongT = false; - if ( longTracks.size() != 0 ) flaglongT = true; - - std::vector<int> mStation; - mStation.reserve( muonTracks.size() * longTracks.size() ); - std::vector<int> mRegion; - mRegion.reserve( muonTracks.size() * longTracks.size() ); - std::vector<double> matchChi2s; - matchChi2s.reserve( muonTracks.size() * longTracks.size() ); - std::vector<State> matchedLStates; - matchedLStates.reserve( muonTracks.size() * longTracks.size() ); - std::vector<State> matchedMStates; - matchedMStates.reserve( muonTracks.size() * longTracks.size() ); - std::vector<State*> bestlState; - matchedMStates.reserve( muonTracks.size() ); - std::vector<double> bestchi2; - bestchi2.reserve( muonTracks.size() ); - - int i = -1; - double z = m_matchAtZ; +LHCb::Tracks TrackMuonMatching::operator()( const InputTracks& tracks, const InputTracks& muonTracks, + const DetectorElement& geo, const DeMuonDetector& ) const { + LHCb::Tracks matchedTracks; + bool flaglongT = false; + if ( tracks.size() != 0 ) flaglongT = true; /// Now match this T track to muon tracks - for ( Tracks::const_iterator m = muonTracks.begin(), mEnd = muonTracks.end(); m != mEnd; ++m ) { - debug() << " MuonTrack chi2 " << ( *m )->chi2PerDoF() << endmsg; + for ( InputTracks::const_iterator m = muonTracks.begin(), mEnd = muonTracks.end(); m != mEnd; ++m ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << " MuonTrack chi2 " << ( *m )->chi2PerDoF() << endmsg; if ( ( *m )->chi2PerDoF() > 5. ) continue; - State* lState = 0; - State* mState = 0; - i++; - bestlState.push_back( NULL ); - double minchi2 = 10000; - if ( flaglongT ) { + + double minchi2 = 10000; + double z = m_matchAtZ; if ( m_matchAtFirstMuonHit.value() ) { if ( ( *m )->hasStateAt( State::Location::Muon ) ) - mState = ( *m )->stateAt( State::Location::Muon ); + z = ( *m )->stateAt( State::Location::Muon )->z(); else if ( ( *m )->hasStateAt( State::Location::FirstMeasurement ) ) - mState = ( *m )->stateAt( State::Location::FirstMeasurement ); + z = ( *m )->stateAt( State::Location::FirstMeasurement )->z(); - z = mState->z(); verbose() << "Found muon state. Going to extrapolate to this state with z = " << z << endmsg; } + int goodmatching = 0; /// Matched Muon-T track auto best_matchedTrack = std::make_unique<LHCb::Track>(); - for ( Tracks::const_iterator t = longTracks.begin(), tEnd = longTracks.end(); t != tEnd; ++t ) { + for ( InputTracks::const_iterator t = tracks.begin(), tEnd = tracks.end(); t != tEnd; ++t ) { + if ( !( *t )->checkType( m_tracktype ) ) continue; if ( !( *t )->hasT() ) continue; if ( ( *t )->chi2PerDoF() > 5. ) continue; - if ( ( *t )->ghostProbability() > 0.7 ) continue; - if ( !( *t )->checkType( LHCb::Track::Types::Long ) ) continue; + if ( !( *t )->checkType( LHCb::Track::Types::Long ) && !( *t )->checkType( LHCb::Track::Types::Ttrack ) ) + continue; double chi2 = -9999.0; - /// Get the longTrack state closest to this z - lState = &( *t )->closestState( z ); + /// Get the Track state closest to this z. Make a copy such that it can be changed. + auto lState = ( *t )->closestState( z ); /// Get the Muon state closest to this z - mState = &( *m )->closestState( z ); - // Calculate mach chi2 - StatusCode sc = matchChi2( *lState, *mState, z, chi2, geo ); - - if ( sc.isSuccess() && chi2 > -1.0 && chi2 < m_matchChi2Cut ) { - debug() << "chi2 Matching is " << chi2 << endmsg; - - matchChi2s.push_back( chi2 ); - lState->setLocation( State::Location::Muon ); // Muon state added to long track here - mState->setLocation( State::Location::Muon ); - matchedLStates.push_back( *lState ); - matchedMStates.push_back( *mState ); - mStation.push_back( ( *m )->lhcbIDs().front().muonID().station() ); - mRegion.push_back( ( *m )->lhcbIDs().front().muonID().region() ); - - if ( m_allCombinations.value() ) { matchedTracks.insert( createMatchedTrack( *( *t ), *( *m ) ).release() ); } - - if ( chi2 < minchi2 ) { - bestlState[i] = lState; - minchi2 = chi2; - if ( !m_allCombinations.value() ) { best_matchedTrack = createMatchedTrack( *( *t ), *( *m ) ); } + auto mState = ( *m )->closestState( z ); + // Calculate match chi2 + StatusCode sc = matchChi2( lState, mState, z, chi2, geo ); + + if ( sc.isSuccess() && chi2 > -1.0 && chi2 < m_matchChi2Cut.value() ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << "chi2 Matching is " << chi2 << endmsg; + + // create the matched track object + auto matchtrack = createMatchedTrack( *( *t ), *( *m ) ); + // make sure to add a new state to the track at the match location + lState.setLocation( State::Location::Muon ); + matchtrack->addToStates( lState ); + + if ( m_allCombinations.value() ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << " Insert matchedTrack" << endmsg; + matchedTracks.insert( matchtrack.release() ); + } else { + if ( chi2 < minchi2 ) { + minchi2 = chi2; + best_matchedTrack.reset( matchtrack.release() ); + } } + ++goodmatching; } else { - debug() << "matching failed " << chi2 << endmsg; + if ( msgLevel( MSG::DEBUG ) ) debug() << "matching failed " << chi2 << endmsg; sc = StatusCode::SUCCESS; } } + if ( msgLevel( MSG::DEBUG ) ) debug() << " Good Matching " << goodmatching << "/ " << tracks.size() << endmsg; if ( !m_allCombinations.value() && minchi2 < m_matchChi2Cut.value() ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << " Insert BEST matchedTrack" << endmsg; matchedTracks.insert( best_matchedTrack.release() ); ++m_countMatchedTracks; } - - bestchi2.push_back( minchi2 ); + } + } + if ( msgLevel( MSG::DEBUG ) ) + debug() << " =============== TrackMuonMatching found " << matchedTracks.size() << endmsg; + // Stefania + if ( m_fitTracks ) { + for ( auto& track : matchedTracks ) { + if ( msgLevel( MSG::DEBUG ) ) debug() << "Fit the LongMuon track " << endmsg; + auto sc = ( *m_trackFitter )( *track, *geo.geometry(), LHCb::Tr::PID::Muon() ); // Fit the track + if ( !sc.isSuccess() ) { Warning( "LongMuon track fit FAILED ", StatusCode::FAILURE, 5 ).ignore(); } + if ( msgLevel( MSG::DEBUG ) ) + debug() << "Fit status " << track->fitStatus() << " track type " << track->type() << endmsg; } } return matchedTracks; @@ -208,16 +222,15 @@ Tracks TrackMuonMatching::operator()( const Tracks& longTracks, const Tracks& mu StatusCode TrackMuonMatching::matchChi2( LHCb::State& lState, LHCb::State& mState, const double& atZ, double& chi2, DetectorElement const& detelem ) const { - /// Extrapolate states StatusCode sc = m_extrapolator->propagate( lState, atZ, *detelem.geometry() ); - if ( !sc.isSuccess() ) { return Warning( "Could not propagate longTrack state", StatusCode::FAILURE, 5 ); } + if ( !sc.isSuccess() ) { return Warning( "Could not propagate Track state", StatusCode::FAILURE, 5 ); } sc = m_extrapolator->propagate( mState, atZ, *detelem.geometry() ); if ( !sc.isSuccess() ) { return Warning( "Could not propagate Muon state", StatusCode::FAILURE, 5 ); } - if ( msgLevel( MSG::DEBUG ) ) { - debug() << "Extrapolated longTrack state to z = " << atZ << " is " << lState << endmsg - << "Extrapolated Muon state to z = " << atZ << " is " << mState << endmsg; + if ( msgLevel( MSG::VERBOSE ) ) { + verbose() << "Extrapolated Track state to z = " << atZ << " is " << lState << endmsg + << "Extrapolated Muon state to z = " << atZ << " is " << mState << endmsg; } /// Now calculate the match chi2 @@ -232,9 +245,9 @@ StatusCode TrackMuonMatching::longTmuonExtrap( LHCb::State* lState, const double DetectorElement const& detelem ) const { /// Extrapolate states StatusCode sc = m_extrapolator->propagate( ( *lState ), atZ, *detelem.geometry() ); - if ( !sc.isSuccess() ) Warning( "Could not propagate longTrack state", StatusCode::FAILURE, 5 ).ignore(); - if ( msgLevel( MSG::DEBUG ) ) { - debug() << "Extrapolated longTrack state to z = " << atZ << " is " << ( *lState ) << endmsg; + if ( !sc.isSuccess() ) Warning( "Could not propagate Track state", StatusCode::FAILURE, 5 ).ignore(); + if ( msgLevel( MSG::VERBOSE ) ) { + verbose() << "Extrapolated Track state to z = " << atZ << " is " << ( *lState ) << endmsg; } return sc; }