diff --git a/CaloFuture/CaloFuturePIDs/src/SelectiveBremMatchAlg.cpp b/CaloFuture/CaloFuturePIDs/src/SelectiveBremMatchAlg.cpp index 1f2389a3a77e63cc8c6fdf9bef15cdf513d03d12..b4a799eb6bebfbde906c61f1b612e95526e78617 100644 --- a/CaloFuture/CaloFuturePIDs/src/SelectiveBremMatchAlg.cpp +++ b/CaloFuture/CaloFuturePIDs/src/SelectiveBremMatchAlg.cpp @@ -295,13 +295,16 @@ namespace LHCb::Calo { } // get energy of closest cells based on track state extrapolation + // take also into account 'gamma' offset used with clusters, only above some threshold energycellids.assign( cellids.begin(), cellids.end() ); getTrackBasedEnergyCells( energycellids, state_first, calo, z_energy_planes ); auto ebrem_trackbased = accumulate( begin( energycellids ), end( energycellids ), 0., [&]( double e, Detector::Calo::CellID ci ) { - if ( const auto digit = digits( ci ); digit ) { e += digit->energy(); } - return ( e > 0. ) ? e : 0.; + auto const digit = digits( ci ); + return ( digit && digit->energy() > 0. ) ? e + digit->energy() : e; } ); + if ( ( ebrem_trackbased * state_first.slopes().unit().rho() ) > m_residualEtCut ) + ebrem_trackbased += calo.getGamma( cellids.front() ); entable.emplace_back().set( track.indices(), ebrem_trackbased ); // monitoring diff --git a/CaloFuture/CaloFuturePIDs/src/TrackBasedElectronShowerAlg.cpp b/CaloFuture/CaloFuturePIDs/src/TrackBasedElectronShowerAlg.cpp index 878da99d46ccdac6461a6af87eddb316fbc130a7..d77718a8e1d57ef4ccecf64a0e1291d4ff112c16 100644 --- a/CaloFuture/CaloFuturePIDs/src/TrackBasedElectronShowerAlg.cpp +++ b/CaloFuture/CaloFuturePIDs/src/TrackBasedElectronShowerAlg.cpp @@ -232,6 +232,8 @@ namespace LHCb::Calo { private: // general algorithm properties Gaudi::Property m_fmin{ this, "minFraction", 0.1, "Minimum expected energy fraction for use in E/p" }; + Gaudi::Property m_maxgammascaling{ this, "maxGammaScaling", 1.5, + "Maximum scaling in E/p by constant gamma energy offset" }; Gaudi::Property m_nzplanes{ this, "nPlanesInZ", 6, "Number of planes in z to scan for track-intersection cells" }; int m_nmaxelements; @@ -377,6 +379,10 @@ namespace LHCb::Calo { // - obtain their neigbours getNeighborCellIDs( cellids, calo, m_nsquares ); + // main cell + Detector::Calo::CellID seed_id; + float seed_energy = 0.f; + // calculate for each cell the expected energy fraction and obtain measured energy (digit) showerentries.clear(); for ( const auto& cellid : cellids ) { @@ -402,6 +408,10 @@ namespace LHCb::Calo { // obtain measured energy auto digit = digits( cellid ); showentry.energy = ( digit ) ? digit->energy() : 0.f; + if ( showentry.energy > seed_energy ) { + seed_id = cellid; + seed_energy = showentry.energy; + } // add to list of checked cells showerentries.push_back( showentry ); } @@ -409,31 +419,38 @@ namespace LHCb::Calo { // calculate relevant variables from energy fractions: // - summed (but selective) energy over momentum (eop) // - summed per-cell eop-DLL - float energy = 0.f; - float dll = 0.f; // some pre-caculation for DLL float logmom = forceinrange( LHCb::Math::Approx::approx_log( showerparam.momentum * Constants::inv_gev ), range_dll[2] ); float invmom = 1.f / showerparam.momentum; // obtain eops and DLL - for ( const auto& se : showerentries ) { - if ( se.fraction >= m_fmin ) energy += se.energy; - if ( se.fraction > range_dll[1].first ) { - dll += m_cellparams->hist( { HistType::DLL, Region::All } ) - ->Interpolate( forceinrange( invmom * se.energy, range_dll[0] ), - forceinrange( se.fraction, range_dll[1] ), logmom ); - } - } + // and make sure 'gamma' energy offset is taken into account with scaling + // but at the same time we won't create artificial deposits and clamp the scaling depending on the estimate of E/p + // itself so a full EM cluster should get the full correction, anything below should go to zero depending on + // roughly the measurement + float energy = std::accumulate( showerentries.begin(), showerentries.end(), 0.f, [&]( auto sum, auto const& se ) { + return sum + ( se.fraction >= m_fmin ? se.energy : 0.f ); + } ); + float gamma = calo.getGamma( seed_id ); + float gamma_corrected = gamma * std::clamp( ( energy + gamma ) / showerparam.momentum, 0.f, 1.f ); + float energy_scaling = + energy > 0. ? std::clamp( 1.f + gamma_corrected / energy, 1.f, m_maxgammascaling.value() ) : 1.f; + float dll = std::accumulate( showerentries.begin(), showerentries.end(), 0.f, [&]( auto sum, auto const& se ) { + return sum + ( ( se.fraction > range_dll[1].first ) + ? ( m_cellparams->hist( { HistType::DLL, Region::All } ) + ->Interpolate( forceinrange( invmom * energy_scaling * se.energy, range_dll[0] ), + forceinrange( se.fraction, range_dll[1] ), logmom ) ) + : 0.f ); + } ); // push results to tables - auto eop = ( energy > 0. ) ? energy / showerparam.momentum : 0.f; + auto eop = ( energy > 0. ) ? ( energy_scaling * energy ) / showerparam.momentum : 0.f; output_table.add( track, eop, dll ); - } - // monitor statistics - const auto nLinks = output_table.size(); - for ( auto const& proxy : output_table.scalar() ) m_eop += proxy.get().cast() / nLinks; - for ( auto const& proxy : output_table.scalar() ) m_dll += proxy.get().cast() / nLinks; + // monitoring + m_eop += eop; + m_dll += dll; + } return output_table; } diff --git a/CaloFuture/CaloFutureReco/src/CaloCorrectionBase.cpp b/CaloFuture/CaloFutureReco/src/CaloCorrectionBase.cpp index d7a9f04a09b885aa562c0ad446242325f07b8349..f2a750e5ce484dc6f2887590e92aade30be0b92f 100644 --- a/CaloFuture/CaloFutureReco/src/CaloCorrectionBase.cpp +++ b/CaloFuture/CaloFutureReco/src/CaloCorrectionBase.cpp @@ -118,6 +118,8 @@ namespace LHCb::Calo::Correction { StatusCode Base::initialize() { return ConditionAccessorHolder::initialize().andThen( [&]() -> StatusCode { + if ( getProperty( "ConditionName" ).toString().empty() ) + error() << "No ConditionName given for ECorrection" << endmsg; if ( m_hypos.empty() ) return Error( "Empty vector of allowed Calorimeter Hypotheses!" ); addConditionDerivation( { m_conditionName }, m_params.key(), [&]( nlohmann::json const& cond ) { Parameters params; diff --git a/CaloFuture/CaloFutureReco/src/CaloCorrectionBase.h b/CaloFuture/CaloFutureReco/src/CaloCorrectionBase.h index cebd8ea3c525dc7ec0ab2147fff33f9fc54715e8..8e910fab86e9566aec7efe1ad3bfb70edfabda01 100644 --- a/CaloFuture/CaloFutureReco/src/CaloCorrectionBase.h +++ b/CaloFuture/CaloFutureReco/src/CaloCorrectionBase.h @@ -221,13 +221,7 @@ namespace LHCb::Calo::Correction { "acceptable hypotheses" }; private: - Gaudi::Property m_conditionName{ this, "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:EcalClusterMasks" -#else - "Conditions/Reco/Calo/EcalClusterMasks" -#endif - }; + Gaudi::Property m_conditionName{ this, "ConditionName", "" }; Gaudi::Property> m_corrections{ this, "Corrections", { "All" } }; std::optional accept( const std::string& name ) const { diff --git a/CaloFuture/CaloFutureReco/src/CaloECorrection.cpp b/CaloFuture/CaloFutureReco/src/CaloECorrection.cpp index a4400fe49ab88a894c5bb8479dd84768d7c37320..04985dd5598e10d1eca27de00a47ffc0a768d576 100644 --- a/CaloFuture/CaloFutureReco/src/CaloECorrection.cpp +++ b/CaloFuture/CaloFutureReco/src/CaloECorrection.cpp @@ -83,7 +83,7 @@ namespace LHCb::Calo { class ECorrection : public extends { public: - ECorrection( const std::string& type, const std::string& name, const IInterface* parent ); + using extends::extends; StatusCode initialize() override; StatusCode process( const DeCalorimeter&, Event::Calo::Hypotheses::Type, Event::Calo::Clusters::reference&, @@ -212,41 +212,6 @@ namespace LHCb::Calo { } } // namespace - ECorrection::ECorrection( const std::string& type, const std::string& name, const IInterface* parent ) - : extends( type, name, parent ) { - - // define conditionName - const std::string uName( CaloFutureAlgUtils::toUpper( name ) ); - if ( uName.find( "ELECTRON" ) != std::string::npos ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:ElectronECorrection" -#else - "Conditions/Reco/Calo/ElectronECorrection" -#endif - ) - .ignore(); - } else if ( uName.find( "MERGED" ) != std::string::npos || uName.find( "SPLITPHOTON" ) != std::string::npos ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:SplitPhotonECorrection" -#else - "Conditions/Reco/Calo/SplitPhotonECorrection" -#endif - ) - .ignore(); - } else if ( uName.find( "PHOTON" ) ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:PhotonECorrection" -#else - "Conditions/Reco/Calo/PhotonECorrection" -#endif - ) - .ignore(); - } - } - StatusCode ECorrection::initialize() { return extends::initialize().andThen( [&] { this->addSharedConditionDerivation( { m_calo.key() }, m_offsets.key(), &createMap ); @@ -504,7 +469,8 @@ namespace LHCb::Calo { // Apply Ecal leakage corrections float alpha = aG * aE * aB * aX * aY; - float eCor = eEcal * alpha * gT + dT + offset; + float gamma = calo.getGamma( cellID ); + float eCor = eEcal * alpha * gT + dT + offset + gamma; /* DG,20190421: derivative calculation simplified by removal of SPD and PRS * diff --git a/CaloFuture/CaloFutureReco/src/CaloLCorrection.cpp b/CaloFuture/CaloFutureReco/src/CaloLCorrection.cpp index cfdc9df0360ad7dbc904baf81052e8c00e2392aa..cc2e38e945fb10501fb4c30ba027622c692b6147 100644 --- a/CaloFuture/CaloFutureReco/src/CaloLCorrection.cpp +++ b/CaloFuture/CaloFutureReco/src/CaloLCorrection.cpp @@ -28,7 +28,7 @@ namespace LHCb::Calo { */ class LCorrection : public extends { public: - LCorrection( const std::string& type, const std::string& name, const IInterface* parent ); + using extends::extends; using Interfaces::IProcessHypos::process; StatusCode process( const DeCalorimeter& calo, Event::Calo::Hypotheses::Type, Event::Calo::Clusters::reference&, @@ -84,40 +84,6 @@ namespace LHCb::Calo { DECLARE_COMPONENT_WITH_ID( LCorrection, "CaloFutureLCorrection" ) - LCorrection::LCorrection( const std::string& type, const std::string& name, const IInterface* parent ) - : extends( type, name, parent ) { - // define conditionName - const std::string uName( CaloFutureAlgUtils::toUpper( name ) ); - if ( uName.find( "ELECTRON" ) != std::string::npos ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:ElectronLCorrection" -#else - "Conditions/Reco/Calo/ElectronLCorrection" -#endif - ) - .ignore(); - } else if ( uName.find( "MERGED" ) != std::string::npos || uName.find( "SPLITPHOTON" ) != std::string::npos ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:SplitPhotonLCorrection" -#else - "Conditions/Reco/Calo/SplitPhotonLCorrection" -#endif - ) - .ignore(); - } else if ( uName.find( "PHOTON" ) ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:PhotonLCorrection" -#else - "Conditions/Reco/Calo/PhotonLCorrection" -#endif - ) - .ignore(); - } - } - StatusCode LCorrection::process( const DeCalorimeter& calo, Event::Calo::Hypotheses::Type hypo, Event::Calo::Clusters::reference& cluster, diff --git a/CaloFuture/CaloFutureReco/src/CaloSCorrection.cpp b/CaloFuture/CaloFutureReco/src/CaloSCorrection.cpp index 46025460d70cc540f02bc3618d75df8081679e48..de197adc57ca40729b24458dd1a01a63d6187b7d 100644 --- a/CaloFuture/CaloFutureReco/src/CaloSCorrection.cpp +++ b/CaloFuture/CaloFutureReco/src/CaloSCorrection.cpp @@ -62,8 +62,7 @@ namespace LHCb::Calo { class SCorrection : public extends { public: - SCorrection( const std::string& type, const std::string& name, const IInterface* parent ); - + using extends::extends; using LHCb::Calo::Interfaces::IProcessHypos::process; StatusCode process( const DeCalorimeter& calo, LHCb::Event::Calo::Hypotheses::Type, @@ -137,40 +136,6 @@ namespace LHCb::Calo { DECLARE_COMPONENT_WITH_ID( SCorrection, "CaloFutureSCorrection" ) - SCorrection::SCorrection( const std::string& type, const std::string& name, const IInterface* parent ) - : extends( type, name, parent ) { - - // define conditionName - const std::string uName( LHCb::CaloFutureAlgUtils::toUpper( name ) ); - if ( uName.find( "ELECTRON" ) != std::string::npos ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:ElectronSCorrection" -#else - "Conditions/Reco/Calo/ElectronSCorrection" -#endif - ) - .ignore(); - } else if ( uName.find( "MERGED" ) != std::string::npos || uName.find( "SPLITPHOTON" ) != std::string::npos ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:SplitPhotonSCorrection" -#else - "Conditions/Reco/Calo/SplitPhotonSCorrection" -#endif - ) - .ignore(); - } else if ( uName.find( "PHOTON" ) ) { - setProperty( "ConditionName", -#ifdef USE_DD4HEP - "/world/DownstreamRegion/Ecal:PhotonSCorrection" -#else - "Conditions/Reco/Calo/PhotonSCorrection" -#endif - ) - .ignore(); - } - } // ============================================================================ StatusCode SCorrection::process( diff --git a/Muon/MuonMonitors/src/MuonChamberMonitor.cpp b/Muon/MuonMonitors/src/MuonChamberMonitor.cpp index db5052f6c2b3d633f80198f93f3b9ee417178c9c..8f6085fc5c5f26b4ceb2156aff89b48edcaeefcc 100644 --- a/Muon/MuonMonitors/src/MuonChamberMonitor.cpp +++ b/Muon/MuonMonitors/src/MuonChamberMonitor.cpp @@ -173,18 +173,18 @@ namespace LHCb { const MuonHitContainer& muonhits ) const override; private: - void fillHistograms( const DeMuonDetector& det, const DetectorElement& lhcb, const GeomCache& geometryinfo, - const LHCb::Particle::Range& probes, const LHCb::Particle::Range& tags, - const MuonHitContainer& muonhits ) const; - // The track extrapolator ToolHandle m_extrapolator = { this, "ReferenceExtrapolator", "TrackMasterExtrapolator" }; - std::tuple computeChi2( const GeomCache& geometryinfo, const xy_t& ext, - const xy_t& extMS, - const CommonMuonHitRange& hitContainer ) const; + struct chi2Result_t { + CommonMuonHit hit; + double chi2X; + double chi2Y; + }; + std::optional computeChi2( const GeomCache& geometryinfo, const xy_t& ext, const xy_t& extMS2, + const CommonMuonHitRange& hitContainer ) const; - int HitsInChi2( const GeomCache& geometryinfo, const xy_t& ext, const xy_t& extMS, + int HitsInChi2( const GeomCache& geometryinfo, const xy_t& ext, const xy_t& extMS2, const CommonMuonHitRange& hitContainer, int sign ) const; int xy2Chamber( const GeomCache& geometryinfo, const double x, const double y, unsigned int station, @@ -205,9 +205,12 @@ namespace LHCb { const LHCb::Track* m_track = nullptr; const LHCb::State* m_state = nullptr; - double m_probeP{ 0. }; - std::array m_probeChi2StX{ { 0., 0., 0., 0. } }; - std::array m_probeChi2StY{ { 0., 0., 0., 0. } }; + double m_probeP{ 0. }; + std::array m_probeChi2StX{ { 0., 0., 0., 0. } }; + std::array m_probeChi2StY{ { 0., 0., 0., 0. } }; + std::array m_constantsMS{ + { 220000., 377000., 565000., 785000. } }; // linear (X or Y) MS deviations times track momentum obtained from + // MC ArrayPairSt m_trackExt{ { { 0., 0. }, { 0., 0. }, { 0., 0. }, { 0., 0. } } }; ArrayPairSt m_trackMS{ { { 0., 0. }, { 0., 0. }, { 0., 0. }, { 0., 0. } } }; ArrayPairSt m_chit_XY{ { { 0., 0. }, { 0., 0. }, { 0., 0. }, { 0., 0. } } }; @@ -410,12 +413,6 @@ namespace LHCb { void MuonChamberMonitor::operator()( const DeMuonDetector& det, const DetectorElement& lhcb, const GeomCache& geometryinfo, const LHCb::Particle::Range& probes, const LHCb::Particle::Range& tags, const MuonHitContainer& muonhits ) const { - fillHistograms( det, lhcb, geometryinfo, probes, tags, muonhits ); - } - - void MuonChamberMonitor::fillHistograms( const DeMuonDetector& det, const DetectorElement& lhcb, - const GeomCache& geometryinfo, const LHCb::Particle::Range& probes, - const LHCb::Particle::Range& tags, const MuonHitContainer& muonhits ) const { auto daqHelper = det.getUpgradeDAQInfo(); auto& geometry = *lhcb.geometry(); unsigned int ntags = 0; @@ -438,8 +435,7 @@ namespace LHCb { candMuon.m_proto = probe->proto(); candMuon.m_track = probe->proto()->track(); candMuon.m_state = probe->proto()->track()->stateAt( LHCb::State::Location::LastMeasurement ); - // if (!candMuon.m_state) { continue; } - State trackState = closestState( *probe->proto()->track(), candMuon.m_state->z() ); + State trackState = closestState( *probe->proto()->track(), candMuon.m_state->z() ); // Match region of extrapolation for ( unsigned int s = 0; s != nMuonStations; ++s ) { StatusCode sc = m_extrapolator->propagate( trackState, geometryinfo.m_stationZ[s], geometry ); @@ -447,6 +443,8 @@ namespace LHCb { warning() << fmt::format( "Something went wrong in track extrapolation in station M{}", s + 2 ) << endmsg; candMuon.m_trackExt[s] = { trackState.x(), trackState.y() }; candMuon.m_trackMS[s] = { trackState.errX2(), trackState.errY2() }; + auto ms_error_sqared = pow( candMuon.m_constantsMS[s] / candMuon.m_probeP, 2 ); + candMuon.m_trackMS[s] = { ms_error_sqared, ms_error_sqared }; int region = 0; while ( region < 3 ) { if ( fabs( candMuon.m_trackExt[s].first ) < ( geometryinfo.m_regionOuterX[s][region] ) && @@ -457,23 +455,27 @@ namespace LHCb { candMuon.m_extrapReg[s] = region; candMuon.m_idReg[s] = s * nMuonStations + region; } + bool outOfAcceptance = false; for ( unsigned int s = 0; s != nMuonStations; ++s ) { - ++m_histos->m_probeExtrap[{ candMuon.m_trackExt[s].first, candMuon.m_trackExt[s].second }]; - auto [chit, chi2X, chi2Y] = + auto chi2_result = computeChi2( geometryinfo, candMuon.m_trackExt[s], candMuon.m_trackMS[s], muonhits.station( s ).hits() ); + if ( !chi2_result ) { + outOfAcceptance = true; + break; + } - candMuon.m_chitReg[s] = chit.region(); - candMuon.m_chit[s] = chit; - candMuon.m_chit_XY[s] = { chit.x(), chit.y() }; - candMuon.m_probeChi2StX[s] = chi2X; - candMuon.m_probeChi2StY[s] = chi2Y; - ++m_histos->m_Chi2StationX[s][candMuon.m_probeChi2StX[s]]; - ++m_histos->m_Chi2StationY[s][candMuon.m_probeChi2StY[s]]; + candMuon.m_chitReg[s] = chi2_result->hit.region(); + candMuon.m_chit[s] = chi2_result->hit; + candMuon.m_chit_XY[s] = { chi2_result->hit.x(), chi2_result->hit.y() }; + candMuon.m_probeChi2StX[s] = chi2_result->chi2X; + candMuon.m_probeChi2StY[s] = chi2_result->chi2Y; + ++m_histos->m_Chi2StationX[s][candMuon.m_probeChi2StX[s]]; // Chi2 histograms are filled for all the hits + ++m_histos->m_Chi2StationY[s][candMuon.m_probeChi2StY[s]]; // within acceptance, for debug purposes. }; + if ( outOfAcceptance ) continue; for ( unsigned int s = 0; s != nMuonStations; ++s ) { - bool otherStationsMatched = true; for ( unsigned ss = 0; ss != nMuonStations; ++ss ) { if ( ss == s ) continue; // Ignore the station we are looking at @@ -548,43 +550,51 @@ namespace LHCb { } // Compute chi2, note: we're using all hits (no crossed/uncrossed distinction) - std::tuple - MuonChamberMonitor::computeChi2( const GeomCache& geometryinfo, const xy_t& ext, const xy_t& extMS, - const CommonMuonHitRange& hitContainer ) const { + std::optional + LHCb::MuonChamberMonitor::computeChi2( const GeomCache& geometryinfo, const xy_t& ext, const xy_t& extMS2, + const CommonMuonHitRange& hitContainer ) const { - if ( hitContainer.size() == 0 ) return std::tuple( CommonMuonHit(), m_chi2bad, m_chi2bad ); // assign bad chi2 + if ( hitContainer.size() == 0 ) return chi2Result_t{ CommonMuonHit(), m_chi2bad, m_chi2bad }; // assign bad chi2 // take the hit with smallest chi2 assert( hitContainer.begin() != hitContainer.end() ); const auto chit = *std::min_element( hitContainer.begin(), hitContainer.end(), - [geometryinfo, ext, extMS]( const CommonMuonHit& hit1, const CommonMuonHit& hit2 ) { + [geometryinfo, ext, extMS2]( const CommonMuonHit& hit1, const CommonMuonHit& hit2 ) { auto dr2 = [&]( CommonMuonHit const& h ) { return pow( ( h.x() - ext.first ), 2 ) / - ( pow( geometryinfo.m_sigmapadX[h.station()][h.region()], 2 ) + extMS.first ) + + ( pow( geometryinfo.m_sigmapadX[h.station()][h.region()], 2 ) + extMS2.first ) + pow( ( h.y() - ext.second ), 2 ) / - ( pow( geometryinfo.m_sigmapadY[h.station()][h.region()], 2 ) + extMS.second ); + ( pow( geometryinfo.m_sigmapadY[h.station()][h.region()], 2 ) + extMS2.second ); }; return dr2( hit1 ) < dr2( hit2 ); } ); double chi2X = pow( ( chit.x() - ext.first ), 2 ) / - ( pow( geometryinfo.m_sigmapadX[chit.station()][chit.region()], 2 ) + extMS.first ); + ( pow( geometryinfo.m_sigmapadX[chit.station()][chit.region()], 2 ) + extMS2.first ); double chi2Y = pow( ( chit.y() - ext.second ), 2 ) / - ( pow( geometryinfo.m_sigmapadY[chit.station()][chit.region()], 2 ) + extMS.second ); - - return std::tuple( chit, chi2X, chi2Y ); + ( pow( geometryinfo.m_sigmapadY[chit.station()][chit.region()], 2 ) + extMS2.second ); + double winX = n_chi2cut * ( pow( geometryinfo.m_sigmapadX[chit.station()][chit.region()], 2 ) + extMS2.first ); + double winY = n_chi2cut * ( pow( geometryinfo.m_sigmapadY[chit.station()][chit.region()], 2 ) + extMS2.second ); + bool out_inner_acceptance = ( fabs( ext.first ) - sqrt( winX ) < geometryinfo.m_stationInnerX[chit.station()] ) && + ( fabs( ext.second ) - sqrt( winY ) < geometryinfo.m_stationInnerY[chit.station()] ); + bool out_outer_acceptance = ( fabs( ext.first ) + sqrt( winX ) > geometryinfo.m_stationOuterX[chit.station()] ) || + ( fabs( ext.second ) + sqrt( winY ) > geometryinfo.m_stationOuterY[chit.station()] ); + bool out_of_acceptance = out_inner_acceptance || out_outer_acceptance; + + return out_of_acceptance ? std::optional{} + : std::optional{ chi2Result_t{ chit, chi2X, chi2Y } }; } - int MuonChamberMonitor::HitsInChi2( const GeomCache& geometryinfo, const xy_t& ext, const xy_t& extMS, + int MuonChamberMonitor::HitsInChi2( const GeomCache& geometryinfo, const xy_t& ext, const xy_t& extMS2, const CommonMuonHitRange& hitContainer, int sign ) const { if ( hitContainer.size() == 0 ) return 0; int nhits = 0; for ( auto& hit : hitContainer ) { double chi2 = pow( ( hit.x() - sign * ext.first ), 2 ) / - ( pow( geometryinfo.m_sigmapadX[hit.station()][hit.region()], 2 ) + extMS.first ) + + ( pow( geometryinfo.m_sigmapadX[hit.station()][hit.region()], 2 ) + extMS2.first ) + pow( ( hit.y() - sign * ext.second ), 2 ) / - ( pow( geometryinfo.m_sigmapadY[hit.station()][hit.region()], 2 ) + extMS.second ); + ( pow( geometryinfo.m_sigmapadY[hit.station()][hit.region()], 2 ) + extMS2.second ); if ( chi2 < n_chi2cut ) { nhits++; } } return nhits; diff --git a/Phys/DaVinciFilters/CMakeLists.txt b/Phys/DaVinciFilters/CMakeLists.txt index f19defcb751911ab8020b9f86bc4e3dccb6d0447..c11375e90dda9c36d3cd4d16350c54f389571253 100644 --- a/Phys/DaVinciFilters/CMakeLists.txt +++ b/Phys/DaVinciFilters/CMakeLists.txt @@ -17,6 +17,7 @@ gaudi_add_module(DaVinciFilters SOURCES src/Velo2LongB2jpsiKTrackEff_VeloTrackEffFilter.cpp src/Velo2Long_Ds2PhiPi_TrackEffFilter.cpp + src/Velo2Long_L2ProtonPi_TrackEffFilter.cpp src/KSLongVeloFilter.cpp LINK Boost::headers diff --git a/Phys/DaVinciFilters/src/Velo2Long_L2ProtonPi_TrackEffFilter.cpp b/Phys/DaVinciFilters/src/Velo2Long_L2ProtonPi_TrackEffFilter.cpp new file mode 100644 index 0000000000000000000000000000000000000000..d5a2b21ebe4d9d7b6c5edf39b3244be271b21717 --- /dev/null +++ b/Phys/DaVinciFilters/src/Velo2Long_L2ProtonPi_TrackEffFilter.cpp @@ -0,0 +1,263 @@ +/*****************************************************************************\ +* (c) Copyright 2023 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 "Core/FloatComparison.h" +#include "Event/Particle.h" +#include "Event/RecVertex.h" +#include "Kernel/IParticleDescendants.h" +#include "LHCbAlgs/Transformer.h" +#include "LHCbMath/GeomFun.h" +#include "LHCbMath/Line.h" +#include "LHCbMath/MatrixTransforms.h" +#include "LHCbMath/MatrixUtils.h" + +#include "Kernel/IParticle2State.h" +#include "Kernel/IParticleCombiner.h" + +#include "DetDesc/DetectorElement.h" +#include "DetDesc/GenericConditionAccessorHolder.h" + +#include +#include + +namespace { + constexpr double protonMass = 938.272 * Gaudi::Units::MeV; + constexpr double protonMass2 = protonMass * protonMass; + constexpr double LMass2 = 1115.683 * 1115.683 * Gaudi::Units::MeV * Gaudi::Units::MeV; + + using in_pv = LHCb::RecVertex::Range; + using in_parts = LHCb::Particle::Range; + using output_t = std::tuple; + using filter_output_t = std::tuple; + using base_t = + LHCb::Algorithm::MultiTransformerFilter>; + + double impactParameterSquared( const Gaudi::XYZPoint& vertex, const Gaudi::XYZPoint& point, + const Gaudi::XYZVector& dir ) { + // Direction does not need to be normalised. + const auto distance = point - vertex; + return ( distance - dir * 1. / dir.Mag2() * ( distance.Dot( dir ) ) ).Mag2(); + } + + auto bpvAndMinImpactParameterSquared( const in_pv& pvs, const int nTracksMin, const Gaudi::XYZPoint& point, + const Gaudi::XYZVector& dir ) { + // Direction does not need to be normalised. + return std::accumulate( pvs.begin(), pvs.end(), std::pair{ nullptr, -1 }, + [&]( auto r, const auto& pv ) { + if ( ( pv->nDoF() + 3 ) > 2 * nTracksMin ) { + double ip2 = impactParameterSquared( pv->position(), point, dir ); + if ( !r.first || ip2 < r.second ) return std::pair{ pv, ip2 }; + } + return r; + } ); + } + + double transverseMomentumDir( const Gaudi::XYZVector& mom, const Gaudi::XYZVector& dir ) { + const double dmag2 = dir.Mag2(); + if ( LHCb::essentiallyZero( dmag2 ) ) { return mom.R(); } + const Gaudi::XYZVector perp = mom - dir * ( mom.Dot( dir ) / dmag2 ); + return perp.R(); + } + + Gaudi::XYZVector get_ip_vector( const Gaudi::XYZPoint& vertex_point, const Gaudi::XYZPoint& point, + const Gaudi::XYZVector& direction ) { + const Gaudi::Math::Line my_line( point, direction ); + return Gaudi::Math::closestPoint( vertex_point, my_line ) - vertex_point; + } + + double get_ip_perp( const Gaudi::XYZPoint& vertex_point, const Gaudi::XYZPoint& point, + const Gaudi::XYZVector& direction, const Gaudi::XYZVector& momentum_vector_A, + const Gaudi::XYZVector& momentum_vector_B ) { + const auto& ipVector = get_ip_vector( vertex_point, point, direction ); + Gaudi::XYZVector perp = momentum_vector_A.Unit().Cross( momentum_vector_B.Unit() ); + return perp.Dot( ipVector ); + } + +} // namespace + +/* + + using output_t = std::tupledaughters().size() < 2 ) continue; + + const LHCb::Particle* orig_probe_particle = ( orig_p->daughters() ).at( m_probe_index ); + const LHCb::Particle* orig_tag_particle = ( orig_p->daughters() ).at( m_tag_index ); + + if ( orig_probe_particle == nullptr || orig_tag_particle == nullptr ) continue; + if ( orig_p->endVertex() == nullptr ) continue; + + auto my_probe_momentum = orig_probe_particle->momentum(); + auto mass_constrained_probe_momentum = orig_probe_particle->momentum(); + + const auto Etag = orig_tag_particle->momentum().E(); + const auto pprobe = std::sqrt( orig_probe_particle->momentum().Vect().Mag2() ); + const auto ptagcostheta = + orig_tag_particle->momentum().Vect().Dot( orig_probe_particle->momentum().Vect() ) / pprobe; + const auto DeltaMSquared = LMass2 - protonMass2 - orig_tag_particle->momentum().M2(); + + auto my_new_momentum = 0.5 * ( DeltaMSquared ) / ( Etag - ptagcostheta ); + + auto Eprobe = std::sqrt( 1. + ( protonMass / my_new_momentum ) * ( protonMass / my_new_momentum ) ); + my_new_momentum = DeltaMSquared / ( 2.0 * ( Etag * Eprobe - ptagcostheta ) ); + Eprobe = std::sqrt( 1. + ( protonMass / my_new_momentum ) * ( protonMass / my_new_momentum ) ); + my_new_momentum = DeltaMSquared / ( 2.0 * ( Etag * Eprobe - ptagcostheta ) ); + Eprobe = std::sqrt( 1. + ( protonMass / my_new_momentum ) * ( protonMass / my_new_momentum ) ); + my_new_momentum = DeltaMSquared / ( 2.0 * ( Etag * Eprobe - ptagcostheta ) ); + + const auto scale_MConstr = my_new_momentum / pprobe; + + mass_constrained_probe_momentum.SetPxPyPzE( + scale_MConstr * mass_constrained_probe_momentum.x(), scale_MConstr * mass_constrained_probe_momentum.y(), + scale_MConstr * mass_constrained_probe_momentum.z(), + std::sqrt( protonMass2 + scale_MConstr * scale_MConstr * mass_constrained_probe_momentum.P2() ) ); + + auto [bpv, ip2] = bpvAndMinImpactParameterSquared( + vertices, 3, orig_p->endVertex()->position(), + ( orig_p->momentum() - my_probe_momentum + mass_constrained_probe_momentum ).Vect() ); + if ( bpv == nullptr ) { + ++m_noBPVfound; + continue; + } + + const double ip_perp = + get_ip_perp( bpv->position(), orig_p->endVertex()->position(), + ( orig_p->momentum() - my_probe_momentum + mass_constrained_probe_momentum ).Vect(), + mass_constrained_probe_momentum.Vect(), orig_tag_particle->momentum().Vect() ); + + Gaudi::LorentzVector PV_constrained_probe_momentum( orig_p->momentum() ); + + const LHCb::VertexBase* vx = orig_p->endVertex(); + const Gaudi::XYZVector dir = vx->position() - bpv->position(); + auto prb_p_PERP = transverseMomentumDir( orig_probe_particle->momentum().Vect(), dir ); + auto tag_p_perp = transverseMomentumDir( orig_tag_particle->momentum().Vect(), dir ); + + if ( std::abs( prb_p_PERP ) < 1 ) continue; + + // protect against corrupt data + if ( orig_probe_particle->proto() == nullptr || orig_probe_particle->proto()->track() == nullptr ) continue; + + const auto scalePVConst = std::abs( ( tag_p_perp ) / ( prb_p_PERP ) ); + PV_constrained_probe_momentum.SetPxPyPzE( + scalePVConst * my_probe_momentum.x(), scalePVConst * my_probe_momentum.y(), + scalePVConst * my_probe_momentum.z(), + std::sqrt( protonMass2 + scalePVConst * scalePVConst * my_probe_momentum.P2() ) ); + Gaudi::LorentzVector PV_constrained_total_momentum = + PV_constrained_probe_momentum + orig_tag_particle->momentum(); + + if ( PV_constrained_total_momentum.M() > m_pvconstr_mass_min && + PV_constrained_total_momentum.M() < m_pvconstr_mass_max && + PV_constrained_probe_momentum.P() > m_probe_p_min && PV_constrained_probe_momentum.Pt() > m_probe_pt_min && + PV_constrained_probe_momentum.Pt() < m_probe_pt_max && std::abs( ip_perp ) < ip_perp_max && + std::sqrt( ip2 ) < ip_max ) { + + auto new_probe_track = std::make_unique( *( orig_probe_particle->proto()->track() ) ); + double qop = -1. * (double)( orig_tag_particle->charge() ) / PV_constrained_probe_momentum.P(); + new_probe_track->firstState().setQOverP( qop ); + + // assume a generous 30% uncertainty on the momentum + new_probe_track->firstState().setErrQOverP2( std::pow( 0.30 * qop, 2 ) ); + + auto new_probe_proto = std::unique_ptr( orig_probe_particle->proto()->clone() ); + new_probe_proto->setTrack( new_probe_track.get() ); + + auto new_probe_particle = std::unique_ptr( orig_probe_particle->clone() ); + new_probe_particle->setProto( new_probe_proto.get() ); + m_p2s->state2Particle( new_probe_track->firstState(), *new_probe_particle ).ignore(); + + LHCb::Particle::ConstVector children; + children.reserve( 2 ); // Reserve space for 2 children + children.push_back( orig_tag_particle ); + children.push_back( new_probe_particle.get() ); + + auto vtx = std::unique_ptr( orig_p->endVertex()->clone() ); + auto new_part = std::make_unique( orig_p->particleID() ); + auto combSc = m_combiner->combine( children, *new_part, *vtx, *lhcb.geometry() ); + if ( !( combSc.isSuccess() ) ) { + ++m_msg_fit_failure; + continue; // all new objects should be unique_ptrs and cleaned up + } + + new_part->setPV( bpv ); + + out_heads.insert( new_part.release() ); + out_vertices.insert( vtx.release() ); + out_probe_particles.insert( new_probe_particle.release() ); + out_probe_protos.insert( new_probe_proto.release() ); + out_probe_tracks.insert( new_probe_track.release() ); + + ++m_newpartCounts; + } + } + + event_accepted = !( out_heads.empty() ); + + return all_output; + }; + +private: + // cuts + Gaudi::Property m_probe_p_min{ this, "PVConstrainedProbePMin", 9000. * Gaudi::Units::MeV }; + Gaudi::Property m_probe_pt_min{ this, "PVConstrainedProbePtMin", 300. * Gaudi::Units::MeV }; + Gaudi::Property m_probe_pt_max{ this, "PVConstrainedProbePtMax", 100000. * Gaudi::Units::MeV }; + + Gaudi::Property m_pvconstr_mass_min{ this, "PVConstrainedMassMin", 965 * Gaudi::Units::MeV }; + Gaudi::Property m_pvconstr_mass_max{ this, "PVConstrainedMassMax", 1225 * Gaudi::Units::MeV }; + + Gaudi::Property ip_perp_max{ this, "IPperpendicularMax", 2 * Gaudi::Units::mm }; + Gaudi::Property ip_max{ this, "IPMax", 10 * Gaudi::Units::mm }; + + Gaudi::Property m_probe_index{ this, "ProbeIndex", 1 }; + Gaudi::Property m_tag_index{ this, "TagIndex", 0 }; + + ToolHandle m_combiner{ this, "ParticleCombiner", "ParticleVertexFitter" }; + ToolHandle m_p2s{ this, "Particle2State", "Particle2State" }; + + mutable Gaudi::Accumulators::Counter<> m_eventCount{ this, "Events" }; + mutable Gaudi::Accumulators::Counter<> m_candidateCount{ this, "Input Particles" }; + mutable Gaudi::Accumulators::Counter<> m_newpartCounts{ this, "Accepted Particles" }; + mutable Gaudi::Accumulators::Counter<> m_noBPVfound{ this, "Particles without BPV" }; + mutable Gaudi::Accumulators::Counter<> m_msg_fit_failure{ this, "Failed vertex fit" }; +}; + +DECLARE_COMPONENT( Velo2Long_L2ProtonPi_TrackEffFilter ) diff --git a/Phys/DaVinciMCTools/python/DaVinciMCTools/MCTruthAndBkgCat.py b/Phys/DaVinciMCTools/python/DaVinciMCTools/MCTruthAndBkgCat.py index 839901bb44789f20adb2aeec0c1fb0e436ae7efd..e683541752a811c674ec2495de7e58ce0f948d5c 100644 --- a/Phys/DaVinciMCTools/python/DaVinciMCTools/MCTruthAndBkgCat.py +++ b/Phys/DaVinciMCTools/python/DaVinciMCTools/MCTruthAndBkgCat.py @@ -8,7 +8,6 @@ # granted to it by virtue of its status as an Intergovernmental Organization # # or submit itself to any jurisdiction. # ############################################################################### - from typing import Optional import Functors as F # type: ignore[import] @@ -120,9 +119,7 @@ class MCTruthAndBkgCat: root_in_tes = "/Event" relations = relations_locs - mc_parts = get_mc_particles( - root_in_tes + "/MC/Particles" # type: ignore[operator] - ) + mc_parts = get_mc_particles() # Tool used by DaVinciSmartAssociator p2mctool = P2MCPFromProtoP( diff --git a/Phys/FunctorCore/include/Functors/Combination.h b/Phys/FunctorCore/include/Functors/Combination.h index 401dff518437b83d0d96e2412429573a407e50a4..4c7e1f28b08f5171837837e9bc855624edf09bdc 100644 --- a/Phys/FunctorCore/include/Functors/Combination.h +++ b/Phys/FunctorCore/include/Functors/Combination.h @@ -19,8 +19,12 @@ #include "GaudiKernel/GaudiException.h" #include "GaudiKernel/System.h" #include "Kernel/IDistanceCalculator.h" +#include "Kernel/ITrajPoca.h" #include "Kernel/STLExtensions.h" +#include "LHCbMath/GoldenSectionMinimizer.h" #include "SelTools/DistanceCalculator.h" +#include "TrackInterfaces/ITrackStateProvider.h" +#include "TrackKernel/TrackTraj.h" /** @file Combination.h * @brief Definitions of functors for tuple-likes of track-like objects. @@ -363,6 +367,116 @@ namespace Functors::detail { float m_thresh; }; + class INonlinearPOCAProvider { + + class Geometry { + const void* m_geom = nullptr; + const LHCb::DetDesc::ConditionContext& ( *m_cond )( void const*, EventContext const& ) = nullptr; + MsgStream& ( *m_get_warning )( void const* ) = nullptr; + LHCb::DetDesc::ConditionAccessor m_det; + + public: + template + Geometry( T* ptr, const std::string& geom_name ) + : m_geom{ ptr } + , m_cond{ []( const void* geom, const EventContext& ctx ) -> decltype( auto ) { + return static_cast( geom )->getConditionContext( ctx ); + } } + , m_get_warning{ []( const void* geom ) -> decltype( auto ) { + return static_cast( geom )->warning(); + } } + , m_det( ptr, geom_name ) {} + + MsgStream& warning() const { return ( *m_get_warning )( m_geom ); } + + auto* geometry( EventContext const& ctx ) const { return m_det.get( ( *m_cond )( m_geom, ctx ) ).geometry(); } + }; + + std::string m_tool_name, m_trajpoca_name, m_geom_name; + bool m_allow_default_tool_creation = false; + std::optional m_det; + std::optional> m_stateProvider; + std::optional> m_trajpoca; + + public: + INonlinearPOCAProvider( std::string tool_name, std::string trajpoca_name, bool allow_default_tool_creation = false, + std::string geom_name = LHCb::standard_geometry_top ) + : m_tool_name{ std::move( tool_name ) } + , m_trajpoca_name{ std::move( trajpoca_name ) } + , m_geom_name{ std::move( geom_name ) } + , m_allow_default_tool_creation{ allow_default_tool_creation } {} + + INonlinearPOCAProvider( INonlinearPOCAProvider&& rhs ) + : m_tool_name{ std::move( rhs.m_tool_name ) } + , m_trajpoca_name{ std::move( rhs.m_trajpoca_name ) } + , m_geom_name{ std::move( rhs.m_geom_name ) } + , m_allow_default_tool_creation{ rhs.m_allow_default_tool_creation } {} + + INonlinearPOCAProvider& operator=( INonlinearPOCAProvider&& rhs ) { + m_tool_name = std::move( rhs.m_tool_name ); + m_trajpoca_name = std::move( rhs.m_trajpoca_name ); + m_geom_name = std::move( rhs.m_geom_name ); + m_allow_default_tool_creation = rhs.m_allow_default_tool_creation; + return *this; + } + + void emplace( TopLevelInfo& top_level ) { + m_stateProvider.emplace( m_tool_name, m_allow_default_tool_creation ); + m_trajpoca.emplace( m_trajpoca_name, m_allow_default_tool_creation ); + + constexpr auto check_tool = []( const StatusCode code ) { + if ( code.isFailure() ) { + throw GaudiException{ "INonlinearPOCAProvider::bind", + "failed to retrieve tools. Please, ensure the tools are properly instantiated (for " + "example with ForceToolInstantiation algorithm) and check the spelling of the tool " + "names! This exception might be disabled by setting allow_default_tool_creation=True", + StatusCode::FAILURE }; + } + }; + + auto try_emplace = [&]( auto* det ) { + if ( det ) { + m_det.emplace( det, m_geom_name ); + check_tool( m_stateProvider->retrieve() ); + check_tool( m_trajpoca->retrieve() ); + } + return det; + }; + + if ( try_emplace( dynamic_cast*>( top_level.algorithm() ) ) ) return; + if ( try_emplace( dynamic_cast*>( top_level.algorithm() ) ) ) + return; + + throw GaudiException{ "INonlinearPOCAProvider::bind", + "attempting to bind an alorithm which is not a condition holder", StatusCode::FAILURE }; + } + auto prepare( EventContext const& ctx ) const { + assert( m_stateProvider.has_value() ); + assert( m_det.has_value() ); + if ( !m_stateProvider->get() ) { m_det.value().warning() << "retrieval of extrapolator too late!!!" << endmsg; } + return [trajpoca = m_trajpoca->get(), geom = m_det->geometry( ctx ), det = LHCb::get_pointer( m_det ), + stateProvider = m_stateProvider->get()]( auto const& trA, auto const& trB ) -> std::optional { + auto const* trackA = &Sel::Utils::deref_if_ptr( trA ); + auto const* trackB = &Sel::Utils::deref_if_ptr( trB ); + + if constexpr ( requires { + Sel::NonlinearDistanceCalculator::findPOCA( + *( stateProvider->trajectory( *( trackA ), *geom ) ), + *( stateProvider->trajectory( *( trackB ), *geom ) ), *trajpoca ); + } ) { + return Sel::NonlinearDistanceCalculator::findPOCA( *( stateProvider->trajectory( *( trackA ), *geom ) ), + *( stateProvider->trajectory( *( trackB ), *geom ) ), + *trajpoca ); + } else { + det->warning() << " requested to use INonlinearPOCAProvider, but that does not support the arguments -- " + << System::typeinfoName( typeid( trackA ) ) << " " << System::typeinfoName( typeid( trackB ) ) + << endmsg; + return std::nullopt; + } + }; + } + }; + } // namespace Functors::detail /** @namespace Functors::Combination @@ -416,4 +530,49 @@ namespace Functors::Combination { using LHCb::Event::charge; return charge( item ); } }; + + /** @brief Retrive the distance of closest approach between two tracks using the TrackStateProvider tool for + * extrapolation + */ + struct NonlinearDoca : public Function { + NonlinearDoca( std::string stateprovider_name = "TrackStateProvider", std::string trajpoca_name = "TrajPoca", + bool allow_default_tool_creation = false ) + : m_extrapolator{ std::move( stateprovider_name ), std::move( trajpoca_name ), allow_default_tool_creation } {} + + void bind( TopLevelInfo& top_level ) { m_extrapolator.emplace( top_level ); } + + auto prepare( EventContext const& evtCtx, TopLevelInfo const& ) const { + return [extrapolate = m_extrapolator.prepare( evtCtx )]( const auto& trA, + const auto& trB ) -> Functors::Optional { + if ( const auto res = extrapolate( trA, trB ); res.has_value() ) { return res->doca; } + return std::nullopt; + }; + } + + private: + detail::INonlinearPOCAProvider m_extrapolator; + }; + + /** @brief Retrive the point of closest approach between two tracks using the TrackStateProvider tool for + * extrapolation + */ + struct NonlinearPoca : public Function { + NonlinearPoca( std::string stateprovider_name = "TrackStateProvider", std::string trajpoca_name = "TrajPoca", + bool allow_default_tool_creation = false ) + : m_extrapolator{ std::move( stateprovider_name ), std::move( trajpoca_name ), allow_default_tool_creation } {} + + void bind( TopLevelInfo& top_level ) { m_extrapolator.emplace( top_level ); } + + auto prepare( EventContext const& evtCtx, TopLevelInfo const& ) const { + return [extrapolate = m_extrapolator.prepare( evtCtx )]( + const auto& trA, const auto& trB ) -> Functors::Optional { + if ( const auto res = extrapolate( trA, trB ); res.has_value() ) { return res->poca; } + return std::nullopt; + }; + }; + + private: + detail::INonlinearPOCAProvider m_extrapolator; + }; + } // namespace Functors::Combination diff --git a/Phys/FunctorCore/include/Functors/Composite.h b/Phys/FunctorCore/include/Functors/Composite.h index 37ba8b8ce8aeb48282fbe99abfa82ba46b6336c1..28a21d6094284449ed309a215934ca66c365a111 100644 --- a/Phys/FunctorCore/include/Functors/Composite.h +++ b/Phys/FunctorCore/include/Functors/Composite.h @@ -268,8 +268,7 @@ namespace Functors::Composite { template auto operator()( Vertex_t const& vertex, Composite const& composite ) const { - return std::get<0>( - m_lifetime_calc.Lifetime( Sel::Utils::deref_if_ptr( vertex ), Sel::Utils::deref_if_ptr( composite ) ) ); + return m_lifetime_calc.Lifetime( Sel::Utils::deref_if_ptr( vertex ), Sel::Utils::deref_if_ptr( composite ) ).tau; } private: diff --git a/Phys/FunctorCore/include/Functors/TrackLike.h b/Phys/FunctorCore/include/Functors/TrackLike.h index da48f7343b2f4aa3e0177568a76cdc799b1d260b..be4a375da52580739a681f9a7bf32955a201d8dd 100644 --- a/Phys/FunctorCore/include/Functors/TrackLike.h +++ b/Phys/FunctorCore/include/Functors/TrackLike.h @@ -30,10 +30,12 @@ #include "GaudiKernel/System.h" #include "GaudiKernel/Vector4DTypes.h" #include "Kernel/HitPattern.h" +#include "LHCbMath/GoldenSectionMinimizer.h" #include "MCInterfaces/IMCReconstructed.h" #include "SelKernel/Utilities.h" #include "SelKernel/VertexRelation.h" #include "TrackInterfaces/ITrackExtrapolator.h" +#include "TrackInterfaces/ITrackStateProvider.h" #include #include @@ -158,6 +160,119 @@ namespace Functors::Track::detail { } }; + /** + * @brief helper for ExtrapolateToPoca functor + */ + class ITrackExtrapolatorToPocaHolder { + + class Geometry { + const void* m_geom = nullptr; + const LHCb::DetDesc::ConditionContext& ( *m_cond )( void const*, EventContext const& ) = nullptr; + MsgStream& ( *m_get_warning )( void const* ) = nullptr; + LHCb::DetDesc::ConditionAccessor m_det; + + public: + template + Geometry( T* ptr, const std::string& geom_name ) + : m_geom{ ptr } + , m_cond{ []( const void* geom, const EventContext& ctx ) -> decltype( auto ) { + return static_cast( geom )->getConditionContext( ctx ); + } } + , m_get_warning{ []( const void* geom ) -> decltype( auto ) { + return static_cast( geom )->warning(); + } } + , m_det( ptr, geom_name ) {} + + MsgStream& warning() const { return ( *m_get_warning )( m_geom ); } + + auto* geometry( EventContext const& ctx ) const { return m_det.get( ( *m_cond )( m_geom, ctx ) ).geometry(); } + }; + + typedef LHCb::Math::GoldenSectionMinimizer GoldenSectionMinimizer; + + Gaudi::XYZPointF m_pos; + GoldenSectionMinimizer m_minimizer; + std::optional m_det; + std::string m_tool_name, m_geom_name; + bool m_allow_default_tool_creation = false; + std::optional> m_stateProvider; + + public: + ITrackExtrapolatorToPocaHolder( Gaudi::XYZPointF pos, std::string tool_name, float zmin, float zmax, + float tolerance, unsigned maxiter, bool allow_default_tool_creation = false, + std::string geom_name = LHCb::standard_geometry_top ) + : m_pos( pos ) + , m_minimizer{ zmin, zmax, tolerance, maxiter } + , m_tool_name{ std::move( tool_name ) } + , m_geom_name{ std::move( geom_name ) } + , m_allow_default_tool_creation{ allow_default_tool_creation } {} + + ITrackExtrapolatorToPocaHolder( ITrackExtrapolatorToPocaHolder&& rhs ) + : m_pos( rhs.m_pos ) + , m_minimizer{ std::move( rhs.m_minimizer ) } + , m_tool_name{ std::move( rhs.m_tool_name ) } + , m_geom_name{ std::move( rhs.m_geom_name ) } + , m_allow_default_tool_creation{ rhs.m_allow_default_tool_creation } {} + + ITrackExtrapolatorToPocaHolder& operator=( ITrackExtrapolatorToPocaHolder&& rhs ) { + m_pos = std::move( rhs.m_pos ); + m_minimizer = std::move( rhs.m_minimizer ); + m_tool_name = std::move( rhs.m_tool_name ); + m_geom_name = std::move( rhs.m_geom_name ); + m_allow_default_tool_creation = rhs.m_allow_default_tool_creation; + return *this; + } + + void emplace( TopLevelInfo& top_level ) { + m_stateProvider.emplace( m_tool_name, m_allow_default_tool_creation ); + + auto try_emplace = [&]( auto* det ) { + if ( det ) { + m_det.emplace( det, m_geom_name ); + if ( m_stateProvider->retrieve().isFailure() ) { + throw GaudiException{ "TrackExtrapolatorToPoca::bind", + "failed to retrieve tools. Please, ensure the tools are properly instantiated (for " + "example with ForceToolInstantiation algorithm) and check the spelling of the tool " + "names! This exception might be disabled by setting allow_default_tool_creation=True", + StatusCode::FAILURE }; + } + } + return det; + }; + + if ( try_emplace( dynamic_cast*>( top_level.algorithm() ) ) ) return; + if ( try_emplace( dynamic_cast*>( top_level.algorithm() ) ) ) + return; + + throw GaudiException{ "TrackExtrapolatorToPoca::bind", + "attempting to bind an alorithm which is not a condition holder", StatusCode::FAILURE }; + } + auto prepare( EventContext const& ctx ) const { + assert( m_stateProvider.has_value() ); + assert( m_det.has_value() ); + if ( !m_stateProvider->get() ) { m_det.value().warning() << "retrieval of extrapolator too late!!!" << endmsg; } + return [geom = m_det->geometry( ctx ), det = LHCb::get_pointer( m_det ), pos = m_pos, minimizer = m_minimizer, + stateProvider = m_stateProvider->get()]( auto const& tr ) -> Functors::Optional { + auto const* track = &Sel::Utils::deref_if_ptr( tr ); + if constexpr ( requires { + Sel::GSDistanceCalculator::findClosestStateToPoint( + pos, *stateProvider->trajectory( *track, *geom ), minimizer ); + } ) { + const auto res = Sel::GSDistanceCalculator::findClosestStateToPoint( + pos, *stateProvider->trajectory( *track, *geom ), minimizer ); + if ( res ) + return res.value(); + else + return std::nullopt; + } else { + det->warning() << " requested to use ITrackExtrapolator, but that does not support the argument -- " + << System::typeinfoName( typeid( decltype( track ) ) ) << " " << endmsg; + return std::nullopt; + } + }; + } + }; + } // namespace Functors::Track::detail namespace Functors::Track { @@ -213,6 +328,23 @@ namespace Functors::Track { detail::ITrackExtrapolatorHolder m_extrapolator; }; + /** @brief Retrieve state of track extrapolated to the POCA to a given position + */ + struct ExtrapolateToPoca : public Function { + ExtrapolateToPoca( float x, float y, float z, std::string tool_name = "TrackStateProvider", float zmin = 1.f, + float zmax = 10000.f, float tolerance = 0.01f, unsigned maxiter = 50, + bool allow_default_tool_creation = false ) + : m_extrapolator{ Gaudi::XYZPointF( x, y, z ), std::move( tool_name ), zmin, zmax, tolerance, maxiter, + allow_default_tool_creation } {} + + void bind( TopLevelInfo& top_level ) { m_extrapolator.emplace( top_level ); } + + auto prepare( EventContext const& evtCtx, TopLevelInfo const& ) const { return m_extrapolator.prepare( evtCtx ); } + + private: + detail::ITrackExtrapolatorToPocaHolder m_extrapolator; + }; + /** * @brief Retrieve const Container with pointers to all the states */ diff --git a/Phys/FunctorCore/python/Functors/__init__.py b/Phys/FunctorCore/python/Functors/__init__.py index 88ed4c4eaee0a175ccd0c739635720c1a42275b2..ff1654506aaf26bab4dcef856ee9eff68b79b6e7 100644 --- a/Phys/FunctorCore/python/Functors/__init__.py +++ b/Phys/FunctorCore/python/Functors/__init__.py @@ -414,6 +414,100 @@ EXTRAPOLATE_TRACK = Functor( Params=[("z", "z coordinate to which the track is extrapolated", float)], ) + +def EXTRAPOLATE_TRACK_TO_POCA( + x: float, + y: float, + z: float, + tool_name: str = "TrackStateProvider", + zmin: float = 1.0, + zmax: float = 10000.0, + tolerance: float = 0.01, + maxiter: int = 50, + allow_default_tool_creation: bool = False, +): + """Get the track state at the closest position to the given point (x,y,z) using the used-provided TrackStateProvider. + This algorithm uses golden-section minimisation algorithm. + """ + return EXTRAPOLATE_TRACK_TO_POCA._F( + x=x, + y=y, + z=z, + tool_name=tool_name, + zmin=zmin, + zmax=zmax, + tolerance=tolerance, + maxiter=maxiter, + allow_default_tool_creation=allow_default_tool_creation, + ) + + +EXTRAPOLATE_TRACK_TO_POCA._F = Functor( + "EXTRAPOLATE_TRACK_TO_POCA", + "Track::ExtrapolateToPoca", + "Get the track state at the closest position to the given point (x,y,z)", + Params=[ + ("x", "x coordinate of target point", float), + ("y", "y coordinate of target point", float), + ("z", "z coordinate of target point", float), + ("tool_name", "TrackStateProvider tool to be used", str), + ("zmin", "Minimum z of the search range", float), + ("zmax", "Maximum z of the search range", float), + ("tolerance", "Tolerance of the minimisation", float), + ("maxiter", "Maximum number of iterations", int), + ( + "allow_default_tool_creation", + "Allow creation of default tool if not found in ToolSvc", + bool, + ), + ], +) + + +def GSIP( + pvs, + tool_name="TrackStateProvider", + zmin=-1000.0, + zmax=10000.0, + tolerance=0.01, + maxiter=50, + allow_default_tool_creation=False, +): + """ + Calculates the impact parameter (IP) of a track with respect to a best primary vertex (see BPV definition). + The best primary vertex is choosen using a closest track state to point (0,0,0). + + Args: + pvs: The event primary vertices. + tool_name (str, optional): The name of the track state provider tool to use for extrapolation. + zmin (float, optional): Minimum z of the search range. + zmax (float, optional): Maximum z of the search range. + tolerance (float, optional): Tolerance of the minimisation. + maxiter (int, optional): Maximum number of iterations. + allow_default_tool_creation (bool, optional): Allow the creation of default tools if the provided ones are not found. Defaults to False. + + CAUTION: + If allow_default_tool_creation is set to False (default), please, make sure a tool with the provided name exist and is used by any other GaudiAlgorithm that is executed BEFORE the one using this functor. + + One should be very careful if allow_default_tool_creation is set to True, since if either + - a tool with provided name doesn't exist + - it wasn't included in the public_tools list of the top configure call + the DEFAULT version of the corresponding tool will be created instead! + """ + closest_state = EXTRAPOLATE_TRACK_TO_POCA( + x=0.0, + y=0.0, + z=0.0, + tool_name=tool_name, + zmin=zmin, + zmax=zmax, + tolerance=tolerance, + maxiter=maxiter, + allow_default_tool_creation=allow_default_tool_creation, + ) + return IP.bind(TOLINALG @ POSITION @ BPV(pvs) @ closest_state, closest_state) + + # PHI already has the meaning of phi(slopes) so for now we use PHI_COORDINATE PHI_COORDINATE = Functor( "PHI_COORDINATE", @@ -2151,6 +2245,105 @@ DOCA = __create_doca_functor( ) +def NONLINEAR_DOCA( + child1: int, + child2: int, + stateprovider_name: str = "TrackStateProvider", + trajpoca_name: str = "TrajPoca", + allow_default_tool_creation: bool = False, +): + """Compute the distance of closest approach between two track-like objects using the TrajPoca algorithm with a user-defined TrackStateProvider tool. + The starting point for the minimisation z_init is computed as y-z interception. In case, if the computed z_init is outside of the range [StateParameters::ZEndVelo, StateParameters::ZEndRich2], the StateParameters::ZMidMag is used instead. + + Args: + stateprovider_name (str, optional): TrackStateProvider tool to be used. Defaults to "TrackStateProvider". + trajpoca_name (str, optional): ITrajPoca tool to be used. Defaults to "TrajPoca". + allow_default_tool_creation (bool, optional): Allow the creation of default tools if the provided ones are not found. Defaults to False. + + CAUTION: + If allow_default_tool_creation is set to False (default), please, make sure a tool with the provided name exist and is used by any other GaudiAlgorithm that is executed BEFORE the one using this functor. + + One should be very careful if allow_default_tool_creation is set to True, since if either + - a tool with provided name doesn't exist + - it wasn't included in the public_tools list of the top configure call + the DEFAULT version of the corresponding tool will be created instead! + """ + return NONLINEAR_DOCA._F( + stateprovider_name=stateprovider_name, + trajpoca_name=trajpoca_name, + allow_default_tool_creation=allow_default_tool_creation, + ).bind( + TRACK @ CHILD(child1), + TRACK @ CHILD(child2), + ) + + +NONLINEAR_DOCA._F = Functor( + "_NONLINEAR_DOCA", + "Combination::NonlinearDoca", + """Compute the distance of closest approach between two track-like objects using the TrajPoca algorithm with a user-defined TrackStateProvider tool. + """, + Params=[ + ("stateprovider_name", "TrackStateProvider tool to be used", str), + ("trajpoca_name", "ITrajPoca tool to be used", str), + ( + "allow_default_tool_creation", + "Allow the creation of default tools if the provided ones are not found", + bool, + ), + ], +) + + +def NONLINEAR_POCA( + child1: int, + child2: int, + stateprovider_name: str = "TrackStateProvider", + trajpoca_name: str = "TrajPoca", + allow_default_tool_creation: bool = False, +): + """Compute the position of closest approach between two track-like objects using the TrajPoca with a user-defined TrackStateProvider tool. + The starting point for the minimisation z_init is computed as y-z interception. In case, if the computed z_init is outside of the range [StateParameters::ZEndVelo, StateParameters::ZEndRich2], the StateParameters::ZMidMag is used instead. + + Args: + stateprovider_name (str, optional): TrackStateProvider tool to be used. Defaults to "TrackStateProvider". + trajpoca_name (str, optional): ITrajPoca tool to be used. Defaults to "TrajPoca". + allow_default_tool_creation (bool, optional): Allow the creation of default tools if the provided ones are not found. Defaults to False. + + CAUTION: + If allow_default_tool_creation is set to False (default), please, make sure a tool with the provided name exist and is used by any other GaudiAlgorithm that is executed BEFORE the one using this functor. + + One should be very careful if allow_default_tool_creation is set to True, since if either + - a tool with provided name doesn't exist + - it wasn't included in the public_tools list of the top configure call + the DEFAULT version of the corresponding tool will be created instead! + """ + return NONLINEAR_POCA._F( + stateprovider_name=stateprovider_name, + trajpoca_name=trajpoca_name, + allow_default_tool_creation=allow_default_tool_creation, + ).bind( + TRACK @ CHILD(child1), + TRACK @ CHILD(child2), + ) + + +NONLINEAR_POCA._F = Functor( + "_NONLINEAR_POCA", + "Combination::NonlinearPoca", + """Compute the position of closest approach between two track-like objects using a user-defined TrackStateProvider tool.""", + Params=[ + ("stateprovider_name", "TrackStateProvider tool to be used", str), + ("trajpoca_name", "ITrajPoca tool to be used", str), + ( + "allow_default_tool_creation", + "Allow the creation of default tools if the provided ones are not found", + bool, + ), + ], +) + + SDOCACHI2 = __create_doca_functor( "SDOCACHI2", "Combination::SDistanceOfClosestApproachChi2", diff --git a/Phys/FunctorCore/python/Functors/functor_jitter_base.py b/Phys/FunctorCore/python/Functors/functor_jitter_base.py index 14ea6e55e7d583f3df26192154bca68f97c4b26a..7942b4e125c4311a30fe9c8517367195b4bfb5be 100644 --- a/Phys/FunctorCore/python/Functors/functor_jitter_base.py +++ b/Phys/FunctorCore/python/Functors/functor_jitter_base.py @@ -48,7 +48,7 @@ def compileFunctorCache(buildCmd, linkCmd): # Specify the libraries a JIT compiled functor library will link against. The # list here is defined based upon the includes present in JIT_includes.h - libraries = "-lFunctorCoreLib -lTrackEvent -lPhysEvent -lMCEvent -lRecEvent -lHltEvent -lTMVA -lGaudiKernel" + libraries = "-lFunctorCoreLib -lTrackEvent -lPhysEvent -lMCEvent -lRecEvent -lHltEvent -lTMVA -lTrackKernel -lSelToolsLib -lGaudiKernel" # build all files potentially concurrently according to the number of jobs requested my_pool = Pool(n_jobs) diff --git a/Phys/FunctorCore/src/Components/Factory.cpp b/Phys/FunctorCore/src/Components/Factory.cpp index 9a25e409de309a5abab452dfab58d4ff5d87c0b9..54a6e448f1f7d06df1f8cc10604a1631b8c4e883 100644 --- a/Phys/FunctorCore/src/Components/Factory.cpp +++ b/Phys/FunctorCore/src/Components/Factory.cpp @@ -558,7 +558,9 @@ functor_{0}{{ // functor_jitter is a shell script generated by cmake to invoke the // correct compiler with the correct flags see: // Phys/FunctorCore/CMakeLists.txt - auto cmd = fmt::format( "functor_jitter {} {} {}", m_jit_n_jobs.value(), tmp_dir.string(), lib_filename ); + // LD_PRELOAD= is needed to make sure the sanitizers don't run for the python wrapper and gcc + auto cmd = + fmt::format( "LD_PRELOAD= functor_jitter {} {} {}", m_jit_n_jobs.value(), tmp_dir.string(), lib_filename ); if ( msgLevel( MSG::VERBOSE ) ) { verbose() << "Command that will be executed:\n" << cmd << endmsg; } diff --git a/Phys/FunctorCore/tests/src/InstantiateFunctors.cpp b/Phys/FunctorCore/tests/src/InstantiateFunctors.cpp index 9d9435fe8841784ea1c21c00585fabbd571f519b..f356277f21c8ab503ff333a8afe1b201442c870d 100644 --- a/Phys/FunctorCore/tests/src/InstantiateFunctors.cpp +++ b/Phys/FunctorCore/tests/src/InstantiateFunctors.cpp @@ -22,6 +22,7 @@ namespace FPID = Functors::PID; namespace FC = Functors::Common; namespace FF = Functors::Functional; namespace FP = Functors::Particle; +namespace FCMB = Functors::Combination; using mask_arg_t = Functors::mask_arg_t; // @@ -250,9 +251,9 @@ using m_3 = std::invoke_result_t; -using l_1 = std::invoke_result_t; -using l_1 = std::invoke_result_t; +using l_3 = std::invoke_result_t; using dls_1 = std::invoke_result_t; @@ -437,6 +438,31 @@ using test_extrapolate_track_result_type2 = std::invoke_result_t; using test_extrapolate_track_result_type4 = std::invoke_result_t; +auto test_extrapolate_to_poca_track = FT::ExtrapolateToPoca( 0, 0, 0 ); +using test_extrapolate_to_poca_track_type = + decltype( test_extrapolate_to_poca_track.prepare( EventContext{}, Functors::TopLevelInfo{} ) ); +using test_extrapolate_to_poca_track_result_type = std::invoke_result_t; +using test_extrapolate_to_poca_track_result_type2 = + std::invoke_result_t; +using test_extrapolate_to_poca_track_result_type3 = + std::invoke_result_t; +using test_extrapolate_to_poca_track_result_type4 = + std::invoke_result_t; + +auto rkdoca = FCMB::NonlinearDoca(); +using rkdoca_type = decltype( rkdoca.prepare( EventContext{}, Functors::TopLevelInfo{} ) ); +using rkdoca_result_type = std::invoke_result_t; +using rkdoca_result_type2 = std::invoke_result_t; +using rkdoca_result_type3 = std::invoke_result_t; +using rkdoca_result_type4 = std::invoke_result_t; + +auto rkpoca = FCMB::NonlinearPoca(); +using rkpoca_type = decltype( rkpoca.prepare( EventContext{}, Functors::TopLevelInfo{} ) ); +using rkpoca_result_type = std::invoke_result_t; +using rkpoca_result_type2 = std::invoke_result_t; +using rkpoca_result_type3 = std::invoke_result_t; +using rkpoca_result_type4 = std::invoke_result_t; + BOOST_AUTO_TEST_CASE( instantiate_all ) { // empty on purpose -- just need to compile and instantiate... } diff --git a/Phys/ParticleCombiners/include/CombKernel/ParticleCombiner.h b/Phys/ParticleCombiners/include/CombKernel/ParticleCombiner.h index 658fa19b7879011287e09e248d7ed4ea98fbe394..b04321fa555965875a33a65971a59eae8d6fad24 100644 --- a/Phys/ParticleCombiners/include/CombKernel/ParticleCombiner.h +++ b/Phys/ParticleCombiners/include/CombKernel/ParticleCombiner.h @@ -150,6 +150,7 @@ namespace Combiner { using base_t = typename base_helper::type; } // namespace types + template class CheckOverlap { public: /** @@ -169,50 +170,54 @@ namespace Combiner { * @return true if overlapping * @return false if no common ancestors */ - bool findOverlap( const LHCb::Particle* particle1, const LHCb::Particle* particle2 ) { + bool findOverlap( const LHCb::Particle* particle1, const LHCb::Particle* particle2, const unsigned cont1, + const unsigned cont2, const unsigned idx1, const unsigned idx2 ) { if ( !particle1 || !particle2 ) { throw GaudiException( "Particle is nullptr.", __PRETTY_FUNCTION__, StatusCode::FAILURE ); } if ( m_tool ) { return m_tool->foundOverlap( particle1, particle2 ); } - return findOverlapImpl( particle1, particle2 ); + return findOverlapImpl( cont1, cont2, idx1, idx2 ); + } + + template + void prepare( const std::tuple& inputs ) { + if ( m_tool ) return; + std::apply( + [&]( auto&&... input ) { + unsigned i = 0; + ( prepare( i++, input ), ... ); + }, + inputs ); + } + + template + void prepare( unsigned i, const InputT& input ) { + m_protos_range[i].reserve( input.size() ); + for ( const auto& p : input ) { + unsigned start = m_protos.size(); + collectAllProtos( p ); + unsigned end = m_protos.size(); + m_protos_range[i].emplace_back( start, end ); + } } private: /** * @brief Search for common ancestors among all the two particles' proto particles. */ - bool findOverlapImpl( const LHCb::Particle* particle1, const LHCb::Particle* particle2 ) { - - if ( particle1->isBasicParticle() && particle2->isBasicParticle() ) { - return findOverlapBasics( particle1->proto(), particle2->proto() ); - } - - m_protos.clear(); - collectAllProtos( particle1 ); - collectAllProtos( particle2 ); - - for ( auto proto1 = m_protos.begin(); proto1 != m_protos.end(); ++proto1 ) { - for ( auto proto2 = std::next( proto1 ); proto2 != m_protos.end(); ++proto2 ) { - if ( findOverlapBasics( *proto1, *proto2 ) ) { return true; } + bool findOverlapImpl( const unsigned container1, const unsigned container2, const unsigned particle1, + const unsigned particle2 ) { + const auto& range_p1 = m_protos_range[container1][particle1]; + const auto& range_p2 = m_protos_range[container2][particle2]; + for ( unsigned i = range_p1.first; i < range_p1.second; i++ ) { + const auto& proto1 = m_protos[i]; + for ( unsigned j = range_p2.first; j < range_p2.second; j++ ) { + if ( proto1 == m_protos[j] ) { return true; } } } return false; } - /** - * @brief Check if basic proto particles overlap. - * - * @return true if pointer to protoparticle is same or underlying track is same - * @return false else - */ - bool findOverlapBasics( const LHCb::ProtoParticle* proto1, const LHCb::ProtoParticle* proto2 ) const { - // We should only perform a track comparison with non-null track pointers, - // else we will determine neutrals to overlap with each other (they have nullptr tracks) - // to avoid this it's enough to check one proto for nullptr track - return ( proto1 == proto2 ) || ( proto1->track() && ( proto1->track() == proto2->track() ) ) || - ( proto1->neutralPID() && ( proto1->neutralPID() == proto2->neutralPID() ) ); - } - /** * @brief Recursively get all leaves (proto particles) from particle's ancestors. * @@ -220,7 +225,16 @@ namespace Combiner { void collectAllProtos( const LHCb::Particle* particle ) { if ( particle->isBasicParticle() ) { assert( particle->proto() ); - m_protos.push_back( particle->proto() ); + const auto* proto = particle->proto(); + // Select correct pointer depending on the type, and encode the type + // in the unused lower bits of the pointer + uintptr_t ptr = reinterpret_cast( proto ); + if ( proto->track() ) { + ptr = ( reinterpret_cast( proto->track() ) & ~3 ) | 1; + } else if ( proto->neutralPID() ) { + ptr = ( reinterpret_cast( proto->neutralPID() ) & ~3 ) | 2; + } + m_protos.push_back( ptr ); } else { for ( const auto& p : particle->daughters() ) { collectAllProtos( p ); } } @@ -231,9 +245,9 @@ namespace Combiner { // storage for all proto particles related to the particles // one goal of this implementation is to reuse this memory instead of // allocating at every overlap check like the CheckOverlap tool - std::vector m_protos{}; + std::vector m_protos{}; + std::array>, NBody> m_protos_range{}; }; - } // namespace Combiner template @@ -377,10 +391,10 @@ private: template void process_decays( InputContainer const&... particles, Combiner::types::Output_t& storage, - CombinationCuts combination_cuts, CompositeCut composite_cut, IGeometryInfo const& geometry, - LHCb::PrimaryVertices const& pvs, Counters npassed_combination_cuts, Counter npassed_vertex_fit, - Counter npassed_composite_cut, std::index_sequence, - std::index_sequence ) const { + CombinationCuts const& combination_cuts, CompositeCut const& composite_cut, + IGeometryInfo const& geometry, LHCb::PrimaryVertices const& pvs, + Counters npassed_combination_cuts, Counter npassed_vertex_fit, Counter npassed_composite_cut, + std::index_sequence, std::index_sequence ) const { // Cannot use a structured binding (auto& [ps, vs] = storage) because Clang // cannot compile the vertex fit lambda when it uses a variable from a // structured binding (see LLVM bug #39963) @@ -498,9 +512,9 @@ private: IGeometryInfo const& geometry, std::index_sequence, std::index_sequence, combinatorics& /* has to be passed by reference! */ per_event ) const { - // Indicies into the first container + // Indices into the first container auto const& indices0 = matching_indices[0].second.get(); - // Indicies into the second container + // Indices into the second container auto const& indices1 = matching_indices[1].second.get(); // Whether we should do a 'triangle loop' to generate all 2-body combinations of the above indicies bool const do_triangle_loop = matching_indices[1].first; @@ -511,7 +525,7 @@ private: this->debug() << "indices0.size() == " << indices0.size() << ", indices1.size() == " << indices1.size() << ", do_triangle_loop == " << do_triangle_loop << endmsg; } - auto check_overlap = Combiner::CheckOverlap{ m_check_overlap.get() }; + auto check_overlap = Combiner::CheckOverlap{ m_check_overlap.get() }; // We will need these objects for all combinations passing the overlap cut, // which is likely to be most combinations, so create them once outside the // loop @@ -519,6 +533,7 @@ private: auto& npassed_comb_cut = std::get<0>( npassed_combination_cuts ); auto const inputs = std::tuple{ particles... }; + check_overlap.prepare( inputs ); for ( auto i0 = 0u; i0 < indices0.size(); ++i0 ) { // Load the particles matching the first child of the current decay // descriptor from the first container @@ -532,7 +547,7 @@ private: this->debug() << "Processing 2-body combination; indices = " << combination_indices << endmsg; } - const auto has_overlap = check_overlap.findOverlap( p0, p1 ); + const auto has_overlap = check_overlap.findOverlap( p0, p1, 0, 1, p0_index, p1_index ); if ( this->msgLevel( MSG::DEBUG ) ) { this->debug() << "Overlap check " << ( has_overlap ? "failed" : "passed" ) << endmsg; @@ -588,7 +603,7 @@ private: std::array const& current_combination_indices, VertexFit const& do_vertex_fit, CombinationCuts const& combination_cuts, CombinationCutCounters& npassed_combination_cuts, IGeometryInfo const& geometry, std::index_sequence, - combinatorics& /*by ref!*/ per_event, Combiner::CheckOverlap& check_overlap ) const { + combinatorics& /*by ref!*/ per_event, Combiner::CheckOverlap& check_overlap ) const { // Combination indices are the indices into input containers of the elements // of the current combination // NBodies is the size of the combination we've been given and that we will @@ -650,7 +665,14 @@ private: // We only need to check the overlap between each child in the current // N-body object and the current particle (i.e. we don't need to check // the overlap *within* the N-body object; that has already been done) - const auto has_overlap = ( check_overlap.findOverlap( &combination.template get(), pN1 ) || ... ); + const auto has_overlap = ( [&]() -> bool { + for ( unsigned c = 0; c < extended_combination_indices.size() - 1; c++ ) { + if ( check_overlap.findOverlap( &combination[c], pN1, c, NBodies, extended_combination_indices[c], + pN1_index ) ) + return true; + } + return false; + } )(); if ( this->msgLevel( MSG::DEBUG ) ) { this->debug() << "Overlap check " << ( has_overlap ? "failed" : "passed" ) << endmsg; diff --git a/Phys/ParticleMatching/src/MassConstrainedVeloTrack.cpp b/Phys/ParticleMatching/src/MassConstrainedVeloTrack.cpp index c3748f396e02b34969a596961cb1bb808cdc78a3..9a042d1a3a3c3f8dfdbdee71622470086d2c7a6b 100644 --- a/Phys/ParticleMatching/src/MassConstrainedVeloTrack.cpp +++ b/Phys/ParticleMatching/src/MassConstrainedVeloTrack.cpp @@ -18,7 +18,7 @@ #include "TrackInterfaces/ITrackFitter.h" namespace { - using output_t = std::tuple; + using output_t = std::tuple; } // Given a decay chain, the Algorithm applies a mass constraint to the head of the chain // to infer the momentum of one of the children which is a Velo track. @@ -35,7 +35,7 @@ public: pSvcLocator, { KeyValue{ "InputParticles", "" }, KeyValue{ "StandardGeometryTop", LHCb::standard_geometry_top } }, { KeyValue{ "OutputParticles", "" }, KeyValue{ "OutputVeloParticles", "" }, KeyValue{ "VeloProtos", "" }, - KeyValue{ "FittedVeloTracks", "" } } } {} + KeyValue{ "FittedVeloTracks", "" }, KeyValue{ "OutputVertices", "" } } } {} output_t operator()( const LHCb::Particle::Range&, const DetectorElement& ) const override; @@ -58,7 +58,7 @@ output_t MassConstrainedVeloTrack::operator()( const LHCb::Particle::Range& comp const DetectorElement& lhcb ) const { output_t ret{}; - auto& [output, velo_output, pp_output, track_output] = ret; + auto& [output, velo_output, pp_output, track_output, vertices_output] = ret; m_nIn += composites.size(); for ( const auto composite : composites ) { @@ -123,8 +123,9 @@ output_t MassConstrainedVeloTrack::operator()( const LHCb::Particle::Range& comp auto velo_track_minus = std::make_unique( *velo_particle_minus->proto()->track() ); // function that handles fitting and output for both solutions - auto refit_track_and_add_outputs = [this, &track_output, &pp_output, &velo_output, &output, &track_pid, &lhcb]( - auto velo_track, auto velo_particle, auto outp, auto p_probe, auto vtx ) { + auto refit_track_and_add_outputs = [this, &track_output, &pp_output, &velo_output, &output, &vertices_output, + &track_pid, &lhcb]( auto velo_track, auto velo_particle, auto outp, + auto p_probe, auto vtx ) { for ( auto state : velo_track->states() ) { auto qop = velo_particle->charge() / p_probe; state->setQOverP( qop ); @@ -139,9 +140,10 @@ output_t MassConstrainedVeloTrack::operator()( const LHCb::Particle::Range& comp pp_output.insert( velo_proto.release() ); outp->addToDaughters( velo_particle.get() ); vtx->addToOutgoingParticles( velo_particle.get() ); - outp->setEndVertex( vtx.release() ); + outp->setEndVertex( vtx.get() ); velo_output.insert( velo_particle.release() ); output.insert( outp.release() ); + vertices_output.insert( vtx.release() ); }; // Tests that these are the only relevant inefficiencies that the algorithm might introduce. I.e. the fraction of // failing fits is essentially 0. diff --git a/Phys/SelTools/CMakeLists.txt b/Phys/SelTools/CMakeLists.txt index 1ea77c2f554e19ca23d0df9f4de70c73f1c0b3e8..b780d326a6ddf669b722a78d534f0722bf9c9d29 100644 --- a/Phys/SelTools/CMakeLists.txt +++ b/Phys/SelTools/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# (c) Copyright 2000-2021 CERN for the benefit of the LHCb Collaboration # +# (c) Copyright 2000-2025 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". # @@ -16,6 +16,7 @@ Phys/SelTools gaudi_add_library(SelToolsLib SOURCES src/Utilities.cpp + src/DistanceCalculator.cpp LINK Gaudi::GaudiKernel LHCb::EventBase @@ -25,4 +26,9 @@ gaudi_add_library(SelToolsLib Rec::SelKernelLib BLAS::BLAS # needed because ROOT::TMVA does not link correctly ROOT::TMVA + Rec::TrackInterfacesLib ) + +# FIXME This is needed to be able to find SelToolsLib when building functor caches. +# We need a better way to handle this, possibly relying on PUBLIC links of FunctorCoreLib. +lhcb_env(PRIVATE PREPEND LD_LIBRARY_PATH ${CMAKE_CURRENT_BINARY_DIR}) diff --git a/Phys/SelTools/include/SelTools/DistanceCalculator.h b/Phys/SelTools/include/SelTools/DistanceCalculator.h index 2d3c139b448cd3db79634c071d14a075100030a7..fe341e2db47a8a628d368393b7f5003d8980928c 100644 --- a/Phys/SelTools/include/SelTools/DistanceCalculator.h +++ b/Phys/SelTools/include/SelTools/DistanceCalculator.h @@ -17,6 +17,8 @@ #include "LHCbMath/MatrixUtils.h" #include "LHCbMath/SIMDWrapper.h" +#include "TrackInterfaces/ITrackStateProvider.h" + #include "Gaudi/Accumulators.h" #include "Gaudi/Algorithm.h" #include "GaudiKernel/GenericMatrixTypes.h" @@ -27,6 +29,18 @@ #include "GaudiKernel/Vector3DTypes.h" #include "GaudiKernel/Vector4DTypes.h" +#include "Kernel/ITrajPoca.h" +#include "TrackKernel/TrackTraj.h" + +namespace LHCb { + namespace Math { + + template + class GoldenSectionMinimizer; + + } +} // namespace LHCb + namespace { /** Extract a new_dim x new_dim symmetric matrix from another symmetric @@ -175,6 +189,24 @@ namespace Sel { } }; + struct POCA { + Gaudi::XYZPoint poca; + double doca; + }; + + namespace GSDistanceCalculator { + std::optional findClosestStateToPoint( const Gaudi::XYZPointF& pos, const LHCb::TrackTraj& track, + const LHCb::Math::GoldenSectionMinimizer& minimizer ); + }; + + namespace NonlinearDistanceCalculator { + + typedef std::array TrackStates; + + std::optional findPOCA( const LHCb::Trajectory& trajA, const LHCb::Trajectory& trajB, + const ITrajPoca& trajpoca ); + }; // namespace NonlinearDistanceCalculator + namespace helper { // FIXME: we should _not_ need this version... @@ -191,6 +223,213 @@ namespace Sel { } } // end of namespace helper +} // namespace Sel + +namespace Sel { + + namespace details { + + // The following functions provide the four-vector in TxTyPzM representation, which is useful for the decay length + // fit. The computation of the 'mass row' of the covariance matrix needs to be done in double precision. Therefore, + // at the moment this actually only works properly for LHCb::Particle. + // using LHCb::Event::threeMomentum ; + // using LHCb::Event::mass2 ; + + template + auto fourMomentumTPM( const Particle& p ) { + const auto mom = threeMomentum( p ); + using float_v = std::decay_t; + return LHCb::LinAlg::Vec{ mom( 0 ) / mom( 2 ), mom( 1 ) / mom( 2 ), mom( 2 ), sqrt( mass2( p ) ) }; + } + + template + auto dTPMdPE( const auto px, const auto py, const auto pz, const auto m ) { + const auto e = sqrt( px * px + py * py + pz * pz + m * m ); + const auto pzinv = 1 / pz; + const auto minv = 1 / m; + MatrixType J; + J( 0, 0 ) = J( 1, 1 ) = pzinv; + J( 0, 2 ) = -px * pzinv * pzinv; + J( 1, 2 ) = -py * pzinv * pzinv; + J( 2, 2 ) = 1; + J( 3, 0 ) = -px * minv; + J( 3, 1 ) = -py * minv; + J( 3, 2 ) = -pz * minv; + J( 3, 3 ) = e * minv; + return J; + } + + template + auto dTPMdPE( const Particle& p ) { + const auto mom = threeMomentum( p ); + const auto m = sqrt( mass2( p ) ); + using float_v = std::decay_t; + return dTPMdPE>( mom( 0 ), mom( 1 ), mom( 2 ), m ); + } + + template + auto momTPMCovMatrix( const Particle& p ) { + return similarity( dTPMdPE( p ), momCovMatrix( p ) ); + } + + template + auto momTPMPosCovMatrix( const Particle& p ) { + return dTPMdPE( p ) * momPosCovMatrix( p ); + } + + // Specialization for LHCb::Particle in double precision + inline auto dTPMdPE( const LHCb::Particle& p ) { + const auto mom = p.momentum(); + const auto m = mom.M(); + return dTPMdPE>( mom.Px(), mom.Py(), mom.Pz(), m ); + } + + inline auto momTPMCovMatrix( const LHCb::Particle& p ) { + const Gaudi::SymMatrix4x4 c = ROOT::Math::Similarity( dTPMdPE( p ), p.momCovMatrix() ); + return LHCb::LinAlg::convert( c ); // cannot convert expressions + } + inline auto momTPMPosCovMatrix( const LHCb::Particle& p ) { + const ROOT::Math::SMatrix c = dTPMdPE( p ) * p.posMomCovMatrix(); + return LHCb::LinAlg::convert( c ); // cannot convert expressions + } + + // Computes the vector m=(dpos,mom,mass) and matrix V=cov(m) for a Particle and PV. This is the input to the + // decaylength fit. + template + concept HasFourMomentum = requires( T t ) { LHCb::Event::fourMomentum( t ); }; + + template + auto convertToDXYZTxTyPz( VContainer const& primary, Particle const& particle ) { + // invariants that are not changed during iteration + const auto momCov = momTPMCovMatrix( particle ); + const auto posCov = posCovMatrix( particle ); + const auto momPosCov = momTPMPosCovMatrix( particle ); + const auto mom = fourMomentumTPM( particle ); + const auto pos = endVertexPos( particle ); + const auto primaryPosCov = posCovMatrix( primary ); + const auto primaryPos = endVertexPos( primary ); + const auto dpos = pos - primaryPos; + using float_v = std::decay_t; + LHCb::LinAlg::Vec par7 = { dpos( 0 ), dpos( 1 ), dpos( 2 ), mom( 0 ), mom( 1 ), mom( 2 ), mom( 3 ) }; + LHCb::LinAlg::MatSym cov7; + // For some reason, these do not do anything. + // V7x7.template place_at<0,0>( posCov + primaryPosCov ) ; + // V7x7.template place_at<3,3>( momCov) ; + // V7x7.template place_at<3,0>( momPosCov ) ; + for ( int irow = 0; irow < 3; ++irow ) + for ( int icol = 0; icol <= irow; ++icol ) + cov7( irow, icol ) = posCov( irow, icol ) + primaryPosCov( irow, icol ); + for ( int irow = 0; irow < 4; ++irow ) + for ( int icol = 0; icol <= irow; ++icol ) cov7( irow + 3, icol + 3 ) = momCov( irow, icol ); + for ( int irow = 0; irow < 4; ++irow ) + for ( int icol = 0; icol < 3; ++icol ) cov7( irow + 3, icol ) = momPosCov( irow, icol ); + return std::tuple{ par7, cov7 }; + } + + // Same but for objects without a mass. Note: this one does not perform the covariance matrix rotation in double + // precision. + template + requires( !HasFourMomentum ) + auto convertToDXYZTxTyPz( VContainer const& primary, Particle const& particle ) { + // This is only used by FunctorCore tests at the moment. + const auto dpos = endVertexPos( particle ) - endVertexPos( primary ); + const auto mom = threeMomentum( particle ); + const auto vertexCov = posCovMatrix( primary ); + using LHCb::Event::covMatrix; + auto pCov = covMatrix( particle ); + // Add the PV position covariance + for ( int irow = 0; irow < 3; ++irow ) + for ( int icol = 0; icol <= irow; ++icol ) pCov( irow, icol ) += vertexCov( irow, icol ); + // Create the jacobian for the conversion to (x,y,z,Tx,Ty,Pz) + using float_v = std::decay_t; + LHCb::LinAlg::Mat J; + J( 0, 0 ) = J( 1, 1 ) = J( 2, 2 ) = J( 5, 5 ) = 1; + const auto pzinv = 1 / mom( 2 ); + const auto tx = mom( 0 ) * pzinv; + const auto ty = mom( 1 ) * pzinv; + J( 3, 3 ) = J( 4, 4 ) = pzinv; + J( 3, 5 ) = -tx * pzinv; + J( 4, 5 ) = -ty * pzinv; + const LHCb::LinAlg::Vec par{ dpos( 0 ), dpos( 1 ), dpos( 2 ), tx, ty, mom( 2 ) }; + return std::tuple{ par, LHCb::LinAlg::similarity( J, pCov ) }; + } + + // Take a measured displacement vector and direction m=(dx,dy,dz,tx,ty) + // and fits it to the model x=(dz,tx,ty). Used by 'DecayLengthSignificance' (DLS) and 'Lifetime' (LTIME). + // Could be moved to LHCbMath. + template + auto iterateIPconstraintFit( const LHCb::LinAlg::Vec& m, const LHCb::LinAlg::MatSym& V ) { + using Sel::Utils::all; + using std::abs; + // Extract the initial state-vector x={Lz,tx,ty} + const auto x0 = m.template sub, 2>(); + // Compute the covariance matrix as it will be after filtering the state-vector part of m + const auto C0 = V.template sub, 2, 2>(); + // Compute the 2D IP residual using the initial statevecor. + const LHCb::LinAlg::Vec r0{ m( 0 ) - x0( 1 ) * x0( 0 ), m( 1 ) - x0( 2 ) * x0( 0 ) }; + // Initialize the 'running' state-vector + auto x = x0; + // allocate some stuff that we need after the loop to update the covariance matrix + auto converged = float_v{ 1 } < 0; + auto success = float_v{ 1 } > 0; + auto chi2 = std::numeric_limits::max(); + const float_v max_delta_chi2 = 0.001; + const float_v max_reldelta_chi2 = 0.001; + unsigned niter = 0; + LHCb::LinAlg::Mat covCR; + LHCb::LinAlg::MatSym Rinv; + for ( niter = 0; niter < MaxIter && !all( converged ); ++niter ) { + // in every iteration, the current state-vector determines the reference. Use this to compute reference residual + // and jacobian + const auto x_ref = x; + const LHCb::LinAlg::Vec r_ref{ m( 0 ) - x( 1 ) * x( 0 ), m( 1 ) - x( 2 ) * x( 0 ) }; + LHCb::LinAlg::Mat Hm; + Hm( 0, 0 ) = 1; // dIPx/ddxpos + Hm( 1, 1 ) = 1; // dIPx/ddypos + Hm( 0, 2 ) = -x( 1 ); // dIPx/dLz = - tx + Hm( 1, 2 ) = -x( 2 ); // dIPy/dLz = - ty + Hm( 0, 3 ) = -x( 0 ); // dIPx/dtx = - Lz + Hm( 1, 4 ) = -x( 0 ); // dIPy/dty = - Lz + // filter the state-vector part of the input: this is trivial + x = x0; + // compute the linearized residual + const auto Hr = Hm.template sub, 0, 2>(); + const auto r = r_ref + Hr * ( x - x_ref ); + // filter the IP part: compute the covariance of the residual and invert it. + // FIXME: since computing V*Hm is expensive, we may want do cache it. + const auto R = LHCb::LinAlg::similarity( Hm, V ); + const auto [stepsuccess, inv] = R.invChol(); + success = success && stepsuccess; + Rinv = inv; + // Now compute the correlation, needed for the gain matrix. + // Since Hp is trivial, we will not actually declare it, but just take the relevant submatrix + covCR = ( V * Hm.transpose() ).template sub, 2, 0>(); + // Compute the updated state vector and its covariance. Of course we need only part of it, but that's for later. + const auto dx = -1.0 * ( covCR * ( Rinv * r ) ); + x = x + dx; + // Compute the chi2 + const auto chi2prev = chi2; + chi2 = LHCb::LinAlg::similarity( r, Rinv ); + if constexpr ( MaxIter > 0 ) { + // Naive expressions for the dchi2, such as + // dchi2 = - LHCb::LinAlg::similarity( Hr * ( x - x_ref ), Rinv ); + // are not correct. Tried many alternatives, but so far the only that is remotely reliable is the full + // expression: + // dchi2 = - LHCb::LinAlg::similarity( (x-x_rev), Cinv) + // As the computation of Cinv is expensive, we could cache it in the first iteration. + // In the end, the quickest method is just to look at the actual change in the chi2. + if ( niter > 0 ) { + const auto dchi2 = abs( chi2prev - chi2 ); + converged = ( ( dchi2 < max_delta_chi2 ) || ( dchi2 < max_reldelta_chi2 * chi2 ) ); + } + } + } + // once we are done iterating, compute the covariance matrix + const auto C = C0 - LHCb::LinAlg::similarity( covCR, Rinv ); + return std::tuple{ x, C, chi2, success, converged, niter }; + } + + } // namespace details struct LifetimeFitter { // FIXME: remove default argument... @@ -208,273 +447,107 @@ namespace Sel { throw GaudiException( "Calling LifetimeFitter::bind with nullptr makes no sense!", "SelTools::LifetimeFitter", StatusCode::FAILURE ); } + m_fit_failure.emplace( m_owning_algorithm, "Lifetime fit failure." ); + m_dls_failure.emplace( m_owning_algorithm, "DLS failure" ); m_no_convergence.emplace( m_owning_algorithm, "Lifetime fit did not converge. Aborting." ); - m_negative_variance.emplace( m_owning_algorithm, "Negative variance produced in lifetime fit iteration." ); + m_fit_numiter.emplace( m_owning_algorithm, "Lifetime fit number of iterations" ); } private: - Gaudi::Algorithm* m_owning_algorithm{ nullptr }; - mutable std::optional> m_no_convergence; - mutable std::optional> m_negative_variance; + Gaudi::Algorithm* m_owning_algorithm{ nullptr }; + mutable std::optional> m_fit_failure; + mutable std::optional> m_dls_failure; + mutable std::optional> m_no_convergence; + mutable std::optional> m_fit_numiter; - static constexpr float NonPhysicalValue = std::numeric_limits::quiet_NaN(); + static constexpr auto NonPhysicalValue = std::numeric_limits::quiet_NaN(); public: /** @fn DecayLengthSignificance * @brief Calculate the significance of a non-zero decay length. * */ - template auto DecayLengthSignificance( VContainer const& primary, Particle const& particle ) const { - using LHCb::Event::covMatrix; - using LHCb::Event::endVertexPos; - using LHCb::Event::posCovMatrix; - using LHCb::Event::threeMomentum; - using std::sqrt; - - // Calculate the distance between the particle and the vertex we hold. - const auto flight = endVertexPos( particle ) - endVertexPos( primary ); - - // Get the 3 momentum vectors for following calculations. - const auto p3 = threeMomentum( particle ); - const auto dir = p3 / p3.mag(); - - // Get the covariance matrix of the vertex. - const auto vertexCov = posCovMatrix( primary ); - - // Get the fulll particle covariance matrix. - const auto pCov = covMatrix( particle ); - - // Project the momentum of the particle onto its distance to the vertex - const auto a = dot( dir, flight ) / p3.mag(); - - // Update the covariance matrix - std::decay_t W; - for ( size_t row = 0; row < 3; ++row ) { - for ( size_t col = 0; col <= row; ++col ) { - W( row, col ) = vertexCov( row, col ) + pCov( row, col ) + pCov( row + 3, col + 3 ) * a * a - - ( pCov( row, col + 3 ) + pCov( col + 3, row ) ) * a; - } - } - - auto [success, W_Inv] = W.invChol(); - auto halfdChi2dLam2 = similarity( dir, W_Inv ); - auto decayLength = dot( dir, W_Inv * flight ) / halfdChi2dLam2; - auto decayLengthErr = sqrt( 1 / halfdChi2dLam2 ); + // To remain consistent with what was done before, we run a 'single iteration' fit + const auto [par, cov] = details::convertToDXYZTxTyPz( primary, particle ); + using float_v = std::decay_t; + const auto m = par.template sub, 0>(); + const auto V = cov.template sub, 0, 0>(); + auto [x, C, chi2, success, converged, niter] = details::iterateIPconstraintFit<1>( m, V ); + // Count the number of failures + const auto nfailures = popcount( !success ); + if ( m_dls_failure.has_value() && nfailures > 0 ) *m_dls_failure += nfailures; + // Return the Lz significance + const auto dls = x( 0 ) / sqrt( C( 0, 0 ) ); if constexpr ( std::is_arithmetic_v ) { - return success ? decayLength / decayLengthErr : NonPhysicalValue; + return success ? dls : NonPhysicalValue; } else { - return select( success, decayLength / decayLengthErr, NonPhysicalValue ); + return select( success, dls, NonPhysicalValue ); } } /** @fn Lifetime * @brief Calculate the lifetime between the particle and the best PV. * - * The implementation here is a very close reproduction of the one in - * LoKi::DirectionFitBase::iterate, with some condensing of various helper - * functions into three main parts: - * - * 1. The `ctau0` call, which computes a first-order approximation of the - * lifetime. - * 2. The `iterate` call, which refines the approximation based on an - * iterative fit. - * 3. The `ctau_step` call, which is used by `iterate` to compute the - * momentum and position updates made during each fit step. + * This uses an iterative fit: it reasonably closely reproduces the decaytime computed with the decay tree fit. + * It is not suitable for particles that do not originate from the PV (e.g. daughters from secondaries) */ - template + template auto Lifetime( VContainer const& primary, Particle const& particle ) const { - - // LoKi fit runs on a 'transported' particle, transporting p1 to position - // z, saving result to p2; the lifetime fit then acts on p2 - // Transporter is an instance of ParticleTransporter - // LoKi calls the transported particle 'good' - // auto [status, transported] = m_transporter->transport( p1, z, p2 ); - // LoKi fitter defines a 'decay' variable as particle.endVertex - auto ctau = ctau0( primary, particle ); - - using float_v = decltype( ctau ); - float_v error = -1.e+10 * Gaudi::Units::mm; - float_v chi2 = -1.e+10; - iterate( primary, particle, ctau, error, chi2 ); - - auto lifetime = ctau / Gaudi::Units::c_light; - error /= Gaudi::Units::c_light; - return std::tuple{ lifetime, error, chi2 }; - } - - private: - /** @fn iterate - * @brief Calculate the lifetime between the particle and the best PV. - * - */ - - template - auto iterate( VContainer const& primary, Particle const& particle, float_v& ctau, float_v& error, - float_v& chi2 ) const { - - using LHCb::Event::endVertexPos; - using LHCb::Event::fourMomentum; - using Sel::Utils::all; - using std::abs; - using std::sqrt; - - // convergence parameters - const float_v delta_chi2 = 0.001; - const int m_max_iter = 5; - - // invariants which are not changed during iteration - const auto momCov = momCovMatrix( particle ); - const auto posCov = posCovMatrix( particle ); - const auto momPosCov = momPosCovMatrix( particle ); - const auto initMom = fourMomentum( particle ); - const auto initPos = endVertexPos( particle ); - const auto primaryPosCov = posCovMatrix( primary ); - const auto primaryPos = endVertexPos( primary ); - - // Copies which will be modified during the iteration - auto momentum = initMom; - auto decvertex = initPos; - auto primvertex = primaryPos; - - auto converged = false; - for ( auto iter = 0; iter < m_max_iter; iter++ ) { - const auto& [new_ctau, new_chi2, new_error] = - ctau_step( primaryPos, primaryPosCov, initMom, initPos, momCov, posCov, momPosCov, momentum, decvertex, - primvertex, ctau ); - converged = all( abs( chi2 - new_chi2 ) < delta_chi2 ); - ctau = new_ctau; - chi2 = new_chi2; - error = new_error; - if ( converged ) { break; } + // initialize the constraint and fit the model + const auto [par7, cov7] = details::convertToDXYZTxTyPz( primary, particle ); + using float_v = std::decay_t; + const auto m = par7.template sub, 0>(); + const auto V = cov7.template sub, 0, 0>(); + const auto [x, C, chi2, fitsuccess, converged, niter] = details::iterateIPconstraintFit<5>( m, V ); + // compute the covariance of (pos,mom) and (Lz,tx,ty). if we are in the right rep, this is really easy: + const auto covXPX = cov7.template sub, 0, 2>(); + // compute the gain matrix + const auto Vsub = V.template sub, 2, 2>(); + const auto [invsuccess, Vsubinv] = Vsub.invChol(); + const auto K = covXPX * Vsubinv.cast_to_mat(); + // compute the updated parameters (dpos,mom) + const auto dx = x - m.template sub, 2>(); + const auto newpar7 = par7 + K * dx; + // compute ctau and its variance + const auto ctau = newpar7( 2 ) * newpar7( 6 ) / newpar7( 5 ); // Lz * M / Pz + float_v ctauerr{ 0 }; + if constexpr ( ComputeCTauError ) { + // compute the jacobian par -> ctau + LHCb::LinAlg::Vec dctaudpar{ + 0, 0, newpar7( 6 ) / newpar7( 5 ), 0, 0, -ctau / newpar7( 5 ), newpar7( 2 ) / newpar7( 5 ) }; + // compute the updated covariance: we make this a lot more efficient by directly computing the gain matrix for + // ctau, but I'll leave the full expression in case useful for other application: + // const auto newcov7 = cov7 + LHCb::LinAlg::similarity(K,C - Vsub) ; + // const auto ctaucov = LHCb::LinAlg::similarity(dctaudpar,newcov7) ; + const auto ctaucov = + LHCb::LinAlg::similarity( dctaudpar, cov7 ) + + // LHCb::LinAlg::similarity( dctaudpar*K ,C - Vsub) ; // This should compile but it doesn't + LHCb::LinAlg::similarity( K.transpose() * dctaudpar, C - Vsub ); + ctauerr = sqrt( ctaucov ); } - - if ( !converged && m_no_convergence.has_value() ) { ++( *m_no_convergence ); } - } - - /** @fn ctau_step - * @brief Calculate one step of the var-fit. - * - * The `momentum`, `decvertex`, and `primvertex` inputs are mutated by this - * method based on updates computed in a single iteration of the fit. The - * `primary` and `particle` inputs hold the 'reference' points against which - * the updates will be applied, e.g. `momentum = particle.momentum() + - * momentum_update;`. - */ - template - auto ctau_step( Vec3D const& primaryPos, PosCov const& primaryPosCov, Vec4D const& initMom, Vec3D const& initPos, - MomCov const& momCov, PosCov const& posCov, MomPosCov const& momPosCov, Vec4D& momentum, - Vec3D& decvertex, Vec3D& primvertex, float_v const& ctau ) const { - - using std::sqrt; - - auto const px = X( momentum ); - auto const py = Y( momentum ); - auto const pz = Z( momentum ); - auto const e = E( momentum ); - auto const m2 = e * e - ( px * px + py * py + pz * pz ); - auto const m = sqrt( m2 ); - - // LoKi::Fitters::e_ctau - auto const vec_E = LHCb::LinAlg::Vec{ px, py, pz } / m; - - LHCb::LinAlg::Mat mat_W; - mat_W( 0, 0 ) = ( 1.0 + px * px / m2 ); - mat_W( 0, 1 ) = ( px * py / m2 ); - mat_W( 0, 2 ) = ( px * pz / m2 ); - mat_W( 1, 0 ) = mat_W( 0, 1 ); - mat_W( 1, 1 ) = ( 1.0 + py * py / m2 ); - mat_W( 1, 2 ) = ( py * pz / m2 ); - mat_W( 2, 0 ) = mat_W( 0, 2 ); - mat_W( 2, 1 ) = mat_W( 1, 2 ); - mat_W( 2, 2 ) = ( 1.0 + pz * pz / m2 ); - - mat_W( 0, 3 ) = ( -px * e / m2 ); - mat_W( 1, 3 ) = ( -py * e / m2 ); - mat_W( 2, 3 ) = ( -pz * e / m2 ); - mat_W = mat_W * ctau / m; - - auto const m_d = vec_E * ctau + ( primvertex - decvertex ); - auto const mat_VD_part = mat_W * momPosCov; - auto const mat_VD_tmp = similarity( mat_W, momCov ) + posCov + primaryPosCov - - ( mat_VD_part + mat_VD_part.transpose() ).cast_to_sym(); - auto const [success, mat_VD] = mat_VD_tmp.invChol(); - - const auto m_Da0 = mat_W * ( initMom - momentum ) - ( initPos - decvertex ) + ( primaryPos - primvertex ); - - const auto m_l0 = mat_VD * ( m_Da0 + m_d ); - - const auto ctau_variance = 1. / similarity( vec_E, mat_VD ); - if constexpr ( std::is_arithmetic_v ) { - if ( !success ) - return std::tuple{ NonPhysicalValue, NonPhysicalValue, NonPhysicalValue }; - if ( ctau_variance < 0. ) { - if ( m_negative_variance.has_value() ) { ++( *m_negative_variance ); } - return std::tuple{ NonPhysicalValue, NonPhysicalValue, NonPhysicalValue }; - } - } - - const auto delta_ctau = -ctau_variance * dot( vec_E, m_l0 ); - - const auto m_D1 = momCov * mat_W.transpose() - momPosCov; - const auto m_D2 = ( mat_W * momPosCov ).transpose() - posCov; - const auto& m_D3 = primaryPosCov; - - const auto m_l = m_l0 + ( mat_VD * vec_E * delta_ctau ); - - const auto delta_momentum = m_D1 * m_l * -1; - const auto delta_decay_pos = m_D2 * m_l * -1; - const auto delta_primary_pos = m_D3 * m_l * -1; - - // Fill in 'output' values - auto const updated_ctau = ctau + delta_ctau; - auto const chi2 = LHCb::LinAlg::dot( m_l, m_Da0 + m_d ); - auto const error = sqrt( ctau_variance ); - - // Update for the next iteration - momentum = initMom + delta_momentum; - decvertex = initPos + delta_decay_pos; - primvertex = primaryPos + delta_primary_pos; - - if constexpr ( std::is_arithmetic_v ) { - return std::tuple{ updated_ctau, chi2, error }; - } else { - return std::tuple{ select( success, updated_ctau, NonPhysicalValue ), select( success, chi2, NonPhysicalValue ), - select( success, error, NonPhysicalValue ) }; - } - } - - /** @brief Fast, approximate evaluation of c * tau. - * - * This neglects the particle momentum covariance, taking into account only - * the covariances of the primary and secondary vertex positions. - * - * Implementation from LoKi::DirectionFitBase::ctau0. - */ - template - auto ctau0( VContainer const& primary, Particle const& particle ) const { - // Retrieve position and position covariance of the decay and primary vertices - using LHCb::Event::endVertexPos; - using LHCb::Event::mass2; - using LHCb::Event::posCovMatrix; - using LHCb::Event::threeMomentum; - using std::sqrt; - const auto decay_pos = endVertexPos( particle ); - const auto decay_pos_cov = posCovMatrix( particle ); - const auto primary_pos = endVertexPos( primary ); - const auto primary_pos_cov = posCovMatrix( primary ); - const auto mat_VD_tmp = primary_pos_cov + decay_pos_cov; - const auto [success, mat_VD] = mat_VD_tmp.invChol(); - if constexpr ( std::is_arithmetic_v ) { - if ( !success ) return NonPhysicalValue; - } - auto const vec_E = threeMomentum( particle ) / sqrt( mass2( particle ) ); - auto const lam0 = mat_VD * ( primary_pos - decay_pos ); - if constexpr ( std::is_arithmetic_v ) { - return -1.0 * dot( vec_E, lam0 ) / similarity( vec_E, mat_VD ); + const auto success = fitsuccess && invsuccess; + const auto nfailures = popcount( !success ); + if ( m_fit_failure.has_value() ) + for ( int i = 0; i < nfailures; ++i ) ++( *m_fit_failure ); + + const auto nnonconverged = popcount( !converged ); + if ( m_no_convergence.has_value() ) + for ( int i = 0; i < nnonconverged; ++i ) ++( *m_no_convergence ); + + if ( m_fit_numiter.has_value() ) *m_fit_numiter += niter; + + if constexpr ( ComputeCTauError ) { + struct R { + float_v tau, err, chi2; + }; + return R{ ctau / Gaudi::Units::c_light, ctauerr / Gaudi::Units::c_light, chi2 }; } else { - return select( success, -1.0 * dot( vec_E, lam0 ) / similarity( vec_E, mat_VD ), NonPhysicalValue ); + struct R { + float_v tau, chi2; + }; + return R{ ctau / Gaudi::Units::c_light, chi2 }; } } }; diff --git a/Phys/SelTools/include/SelTools/SigmaNet.h b/Phys/SelTools/include/SelTools/SigmaNet.h index a483ae613cadf99ddcdcd018b2cf330d08ed21b0..a37fb161f4ec97fd94a3affd0d54b34b322ead77 100644 --- a/Phys/SelTools/include/SelTools/SigmaNet.h +++ b/Phys/SelTools/include/SelTools/SigmaNet.h @@ -179,7 +179,7 @@ namespace Sel { std::vector m_biases; // Network bias std::vector m_clamp_los; // in case of clamping, clamp to these values (lower) std::vector m_clamp_his; // in case of clamping, clamp to these values (upper) - bool m_min_max; // Apply min-max normalisation using clamping values + bool m_min_max = false; // Apply min-max normalisation using clamping values static constexpr long unsigned int m_size = 128; // maximum width of the network. 128 is enough as the network can alternatively be made deeper. diff --git a/Phys/SelTools/src/DistanceCalculator.cpp b/Phys/SelTools/src/DistanceCalculator.cpp new file mode 100644 index 0000000000000000000000000000000000000000..083df2b116846d61291aa98fb3211f70a841e30e --- /dev/null +++ b/Phys/SelTools/src/DistanceCalculator.cpp @@ -0,0 +1,59 @@ +/*****************************************************************************\ +* (c) Copyright 2025 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 "SelTools/DistanceCalculator.h" +#include "Event/StateParameters.h" +#include "LHCbMath/GoldenSectionMinimizer.h" + +namespace Sel { + + std::optional NonlinearDistanceCalculator::findPOCA( const LHCb::Trajectory& trajA, + const LHCb::Trajectory& trajB, + const ITrajPoca& trajpoca ) { + + Gaudi::XYZVector deltaX; + + const float tyA = trajA.direction( 0 ).Y() / trajA.direction( 0 ).Z(); + const float tyB = trajB.direction( 0 ).Y() / trajB.direction( 0 ).Z(); + const float yAt0A = trajA.position( 0 ).Y() - tyA * trajA.position( 0 ).Z(); + const float yAt0B = trajB.position( 0 ).Y() - tyB * trajB.position( 0 ).Z(); + const float dy = yAt0A - yAt0B; + const float dty = ( tyA - tyB ); + + // First and the last defined states + constexpr auto outside_detector = []( const float z ) { + constexpr auto minZ = -StateParameters::ZEndVelo; + constexpr auto maxZ = StateParameters::ZEndRich2; + return ( z < minZ ) || ( z > maxZ ); + }; + + const auto startZ = + ( LHCb::essentiallyZero( dty ) || outside_detector( -dy / dty ) ) ? StateParameters::ZMidMag : -dy / dty; + + double muA( startZ ), muB( startZ ); + if ( trajpoca.minimize( trajA, muA, trajB, muB, deltaX, 0.1 * Gaudi::Units::mm ).isFailure() ) return std::nullopt; + + const auto pos0 = trajA.position( muA ); + const auto pos1 = trajB.position( muB ); + const auto cntr = pos0 + 0.5 * ( pos1 - pos0 ); + return POCA{ .poca = cntr, .doca = deltaX.R() }; + } + + std::optional + GSDistanceCalculator::findClosestStateToPoint( const Gaudi::XYZPointF& pos, const LHCb::TrackTraj& track, + const LHCb::Math::GoldenSectionMinimizer& minimizer ) { + + const auto result = + minimizer( [pos, &track]( const float zs ) { return ( track.state( zs ).position() - pos ).Mag2(); } ); + if ( !result ) return std::nullopt; + + return track.state( result.value ); + } +} // namespace Sel diff --git a/Phys/VertexFit/CMakeLists.txt b/Phys/VertexFit/CMakeLists.txt index ecb9804f13c40884be7892fe1a552c982b2a4771..edfd88f45dcd662cdbb3b61a98fda1809cd5495b 100644 --- a/Phys/VertexFit/CMakeLists.txt +++ b/Phys/VertexFit/CMakeLists.txt @@ -48,6 +48,7 @@ gaudi_add_module(VertexFit Rec::TrackKernel ROOT::MathCore VertexFitLib + Rec::SelToolsLib ) gaudi_add_tests(QMTest) diff --git a/Phys/VertexFit/src/ParticleVertexFitter.cpp b/Phys/VertexFit/src/ParticleVertexFitter.cpp index 9cc8ea539fd4bec591f3401d6cca7ee928ab0f5a..3b13aee4961bf1f2dfdc7a9edafff2ba878bcb40 100644 --- a/Phys/VertexFit/src/ParticleVertexFitter.cpp +++ b/Phys/VertexFit/src/ParticleVertexFitter.cpp @@ -20,6 +20,7 @@ #include "Kernel/ParticleProperty.h" #include "LHCbMath/MatrixTransforms.h" #include "MassConstrainer.h" +#include "SelTools/DistanceCalculator.h" #include "TrackInterfaces/ITrackStateProvider.h" #include "TrackKernel/TrackTraj.h" #include @@ -99,7 +100,6 @@ private: private: Gaudi::Property m_maxnumiter{ this, "MaxNumIter", 5 }; Gaudi::Property m_maxdchisq{ this, "MaxDeltaChi2", 0.01 }; - Gaudi::Property m_extrapolateTtracks{ this, "extrapolateTtracks", false }; PublicToolHandle m_stateprovider{ this, "StateProvider", "TrackStateProvider" }; ToolHandle m_trajpoca{ "TrajPoca" }; const LHCb::IParticlePropertySvc* m_ppsvc{ nullptr }; @@ -678,6 +678,10 @@ StatusCode ParticleVertexFitter::fit( const LHCb::Particle::ConstVector& origdau // 3. if not, try with downstream tracks and trajpoca bool posinitialized{ false }; + const bool ttracks_only = std::all_of( daughters.begin(), daughters.end(), []( const LHCb::Particle* p ) { + return p && p->proto() && p->proto()->track() && !p->proto()->track()->hasVelo() && !p->proto()->track()->hasUT(); + } ); + Gaudi::XYZPoint position; if ( counttypes[Resonance] > 0 ) { // try 1 @@ -717,43 +721,19 @@ StatusCode ParticleVertexFitter::fit( const LHCb::Particle::ConstVector& origdau } } bool parallelTracks = false; - if ( ntrajs == 2 && m_extrapolateTtracks ) { - // this is NOT default behaviour - // For T-tracks it does not make sense to use 3-D POCA starting position - // Trajectory in YZ plane is approx straight line - // calculate the yz intersection z and extrapolate there - - const float ty0 = daughters[0]->proto()->track()->firstState().ty(); - const float ty1 = daughters[1]->proto()->track()->firstState().ty(); - - if ( LHCb::essentiallyEqual( ty0, ty1 ) ) { - debug() << "tracks are parallel in yz plane. Cannot calculate yz intersection. Default to 3-D POCA starting " - "position. " - << endmsg; - parallelTracks = true; - } else { - const float z0 = daughters[0]->proto()->track()->firstState().z(); - const float z1 = daughters[1]->proto()->track()->firstState().z(); - - const float y0 = daughters[0]->proto()->track()->firstState().y(); - const float y1 = daughters[1]->proto()->track()->firstState().y(); - - // calculate the y-axis intersection of each track - const float c0 = y0 - ty0 * z0; - const float c1 = y1 - ty1 * z1; - - // calculate the point in the yz-plane where the tracks intersect - const float yzIntersectionZ = ( c1 - c0 ) / ( ty0 - ty1 ); - const float yzIntersectionY = ty0 * yzIntersectionZ + c1; - - position.SetZ( yzIntersectionZ ); - position.SetY( yzIntersectionY ); - position.SetX( 0 ); + if ( ntrajs == 2 && ttracks_only ) { + // Calculate the yz intersection and use it as a seed for POCA + // If tracks are essentially parallel in y-z plane (|dty| < m_ttracks_poca_min_dty), use a constant starting point + // (m_ttracks_poca_initial_z) + + const auto poca = Sel::NonlinearDistanceCalculator::findPOCA( *( trajs[0] ), *( trajs[1] ), *m_trajpoca ); + if ( poca.has_value() ) { + position = poca->poca; posinitialized = true; } } - if ( ( ntrajs == 2 && !m_extrapolateTtracks ) || ( ntrajs == 2 && parallelTracks ) ) { + if ( ( ntrajs == 2 && !ttracks_only ) || ( ntrajs == 2 && parallelTracks ) ) { // this is the default behaviour double mu0( 0 ), mu1( 0 ); Gaudi::XYZVector deltaX; @@ -799,7 +779,7 @@ StatusCode ParticleVertexFitter::fit( const LHCb::Particle::ConstVector& origdau } } break; case TrackWithoutVelo: { - if ( !m_extrapolateTtracks ) { + if ( !ttracks_only ) { // this is the default behaviour const LHCb::Track* track = p->proto()->track(); const LHCb::TrackTraj* tracktraj = m_stateprovider->trajectory( *( p->proto()->track() ), geometry ); diff --git a/Plume/PlumeReco/CMakeLists.txt b/Plume/PlumeReco/CMakeLists.txt index 9c755fddd4cc8a2cf770ca606a8460a3ba32ae01..03b06c445f0c4d4bdff57cc67e582c6649a61cef 100644 --- a/Plume/PlumeReco/CMakeLists.txt +++ b/Plume/PlumeReco/CMakeLists.txt @@ -19,6 +19,7 @@ gaudi_add_module(PlumeReco src/PlumeRawToDigits.cpp src/PlumeDigitMonitor.cpp src/PlumeTAEMonitor.cpp + src/PlumeLEDMonitor.cpp src/PlumeTuple.cpp LINK diff --git a/Plume/PlumeReco/src/PlumeDigitMonitor.cpp b/Plume/PlumeReco/src/PlumeDigitMonitor.cpp index acbf5db56370e30a1f83d35d07d008fd93ad8d04..8f492a934d295eb229ea45aa6d181a82334ebdca 100644 --- a/Plume/PlumeReco/src/PlumeDigitMonitor.cpp +++ b/Plume/PlumeReco/src/PlumeDigitMonitor.cpp @@ -86,7 +86,6 @@ public: private: Gaudi::Property m_timing_threshold{ "TimingThreshold", 9.5 }; - // DeCalorimeter* m_calo = nullptr; bool overThreshold( LHCb::PlumeAdc const& adc ) const { return ( adc.channelID().channelType() != ChannelID::ChannelType::TIME ) ? adc.overThreshold() @@ -103,8 +102,6 @@ private: std::unique_ptr m_fit_function_tf1; Gaudi::Property m_threshold_sshape{ this, "ThresholdSShape", 100.5 }; - mutable std::mutex m_lazy_lock; - mutable Gaudi::Accumulators::Histogram<1> m_over_thld_time{ this, "over_threshold_time", "#events OT per channel: TIME", axis1D{ 64, -0.5, 63.5 } }; @@ -112,10 +109,6 @@ private: AxisADC }; mutable Gaudi::Accumulators::Histogram<2> m_bcid_adc_time{ this, "bcid_adc_time", "BCID vs ADC time", AxisBCID, axis1D{ 256, -256, 4096 - 256 } }; - mutable Gaudi::Accumulators::Histogram<2> m_bcid_adc_pin{ this, "bcid_adc_pin", "BCID vs ADC pin", AxisBCID, - axis1D{ 256, -256, 4096 - 256 } }; - mutable Gaudi::Accumulators::Histogram<2> m_bcid_adc_mon{ this, "bcid_adc_mon", "BCID vs ADC mon", AxisBCID, - axis1D{ 256, -256, 4096 - 256 } }; mutable Gaudi::Accumulators::Histogram<2> m_bcid_adc_lumi_coarse{ this, "bcid_adc_coarse", "BCID vs ADC (LUMI)", AxisBCID, axis1D{ 410 + 26, -260, 4100 } }; @@ -192,9 +185,6 @@ private: // (in MONET, "freeze" references for all of the above and compare with current histos) mutable Gaudi::Accumulators::Histogram<1> m_calibType{ this, "odin_calib_type", "ODIN CalibrationType", { 16, -0.5, 15.5 } }; - // ADC histogram per channel type and BX type (only for calib triggers) - mutable std::map> m_mon_bx_adc; - mutable std::map> m_pin_bx_adc; // For physics monitoring // ADC histogram per channel type and BX type (excluding calib triggers) @@ -203,15 +193,12 @@ private: // ADC histogram for every channel per BB/EB/BE/EE (excluding calib triggers) mutable std::map, Gaudi::Accumulators::Histogram<1>> m_channel_bx_adc; - // ADC histogram for every channel per BB/EB/BE/EE (only calib triggers) - mutable std::map, Gaudi::Accumulators::Histogram<1>> m_channel_bx_adc_calib; // ADC vs BCID (TProfile1) for every channel mutable std::map> m_channel_bcid_adc; // Timing data mutable Gaudi::Accumulators::Histogram<1> m_time_adc{ this, "adc_TIME", "ADC for all timing channels", AxisADC }; - mutable std::map> m_channel_time; mutable unsigned long int m_runStartGps = 0; mutable unsigned int m_lastRun = 0; @@ -246,31 +233,24 @@ StatusCode PlumeDigitMonitor::initialize() { } for ( const auto& ch : channels ) { - if ( ch.channelType() != ChannelID::ChannelType::TIME_T ) { + const auto type = ch.channelType(); + if ( type != ChannelID::ChannelType::TIME_T && type != ChannelID::ChannelType::MON && + type != ChannelID::ChannelType::PIN ) { map_emplace( m_channel_bcid_adc, ch, this, "bcid_adc_" + ch.toString(), "ADC vs BCID for " + ch.toString(), AxisBCID ); } 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 && bx == BXTypes::NoBeam ) { - 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 ( type != ChannelID::ChannelType::MON && type != ChannelID::ChannelType::PIN ) { + 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::TIME_T ) { - map_emplace( m_channel_time, ch, this, "time_" + ch.toString(), "Time for " + ch.toString(), - { 4096, 0, 4096 } ); - } } for ( auto bx : { BXTypes::NoBeam, BXTypes::Beam1, BXTypes::Beam2, BXTypes::BeamCrossing } ) { map_emplace( m_lumi_bx_adc, bx, this, "adc_LUMI_" + to_string( bx ), "ADC for LUMI/" + to_string( bx ), AxisADC ); map_emplace( m_time_bx_adc, bx, this, "adc_TIME_" + to_string( bx ), "ADC for TIME/" + to_string( bx ), AxisADC ); - map_emplace( m_mon_bx_adc, bx, this, "adc_MON_" + to_string( bx ), "ADC for MON/" + to_string( bx ), AxisADC ); - map_emplace( m_pin_bx_adc, bx, this, "adc_PIN_" + to_string( bx ), "ADC for PIN/" + to_string( bx ), AxisADC ); } for ( auto tchannel : { 5, 11, 29, 35 } ) { @@ -302,8 +282,6 @@ StatusCode PlumeDigitMonitor::initialize() { // ============================================================================ void PlumeDigitMonitor::operator()( const Input& adcs, const LHCb::ODIN& odin ) const { - // TODO: remove lock after migrating to new histograms - std::lock_guard guard_lock( m_lazy_lock ); if ( odin.runNumber() > m_lastRun ) { m_lastRun = odin.runNumber(); @@ -337,16 +315,11 @@ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) con const auto over_thld = overThreshold( *digit ); const auto key = std::make_pair( digit->channelID(), odin.bunchCrossingType() ); - m_channel_bcid_adc.at( digit->channelID() )[bcid] += adc; // Profile ADC vs BXID for each channel - - if ( calibType == 0 && type == ChannelType::LUMI ) { // lumi PMT, without requiring coincidence - ++m_channel_bx_adc.at( key )[adc]; - } else if ( calibType != 0 && type == ChannelType::LUMI && - bx == BXTypes::NoBeam ) { // lumi PMT, without requiring coincidence, but with the LED signals - ++m_channel_bx_adc_calib.at( key )[adc]; - } else if ( calibType == 0 && type == ChannelType::TIME ) { // timing PMT requires coincidence - ++m_channel_bx_adc.at( key )[adc]; + if ( calibType == 0 && type != ChannelID::ChannelType::MON && type != ChannelID::ChannelType::PIN ) { + m_channel_bcid_adc.at( digit->channelID() )[bcid] += adc; // Profile ADC vs BXID for each channel + ++m_channel_bx_adc.at( key )[adc]; // ADC distribution for each channel and bunch crossing type } + 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 }]; @@ -359,29 +332,11 @@ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) con ++m_sshape_amp_tot.at( channel_id )[sshape_result.at( channel_id )[1].first]; ++m_sshape_amp_err_tot.at( channel_id )[sshape_result.at( channel_id )[1].second]; } - } else if ( type == ChannelType::PIN || type == ChannelType::MON ) { - ++m_channel_bx_adc.at( key )[adc]; - } - - switch ( type ) { - case ChannelType::LUMI: - if ( calibType == 0 ) ++m_lumi_bx_adc.at( bx )[adc]; - break; - case ChannelType::TIME: - if ( calibType == 0 ) ++m_time_bx_adc.at( bx )[adc]; - break; - case ChannelType::PIN: - ++m_pin_bx_adc.at( bx )[adc]; - break; - case ChannelType::MON: - ++m_mon_bx_adc.at( bx )[adc]; - break; - default: - break; } switch ( type ) { case ChannelID::ChannelType::LUMI: { + ++m_lumi_bx_adc.at( bx )[adc]; // ADC distribution for each bunch crossing type, summed over all LUMI channels ++m_bcid_adc_lumi[{ bcid, adc }]; ++m_bcid_adc_lumi_coarse[{ bcid, adc }]; @@ -452,18 +407,11 @@ void PlumeDigitMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) con } case ChannelID::ChannelType::TIME: + ++m_time_bx_adc.at( bx )[adc]; // ADC distribution for each bunch crossing type, summed over all TIME channels ++m_time_adc[adc]; if ( over_thld ) ++m_over_thld_time[channel_id]; ++m_bcid_adc_time[{ bcid, adc }]; break; - case ChannelID::ChannelType::PIN: - ++m_bcid_adc_pin[{ bcid, adc }]; - break; - case ChannelID::ChannelType::MON: - ++m_bcid_adc_mon[{ bcid, adc }]; - break; - case ChannelID::ChannelType::TIME_T: - ++m_channel_time.at( digit->channelID() )[digit->adc()]; default: break; } diff --git a/Plume/PlumeReco/src/PlumeLEDMonitor.cpp b/Plume/PlumeReco/src/PlumeLEDMonitor.cpp new file mode 100644 index 0000000000000000000000000000000000000000..77e2069dcfbc85d8a56b42d9cff678ffcc3f703e --- /dev/null +++ b/Plume/PlumeReco/src/PlumeLEDMonitor.cpp @@ -0,0 +1,120 @@ +/*****************************************************************************\ +* (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. * +\*****************************************************************************/ + +// Event +#include "Event/ODIN.h" +#include "Event/PlumeAdc.h" + +// Gaudi +#include "Gaudi/Accumulators/Histogram.h" +#include "LHCbAlgs/Consumer.h" + +#include + +using LHCb::Detector::Plume::ChannelID; +using Input = LHCb::PlumeAdcs; +using BXTypes = LHCb::ODIN::BXTypes; + +namespace { + template + using axis1D = Gaudi::Accumulators::Axis; + + template + void map_emplace( T& t, K&& key, OWNER* owner, std::string const& name, std::string const& title, + Gaudi::Accumulators::Axis axis1 ) { + t.emplace( std::piecewise_construct, std::forward_as_tuple( key ), + std::forward_as_tuple( owner, name, title, axis1 ) ); + } + template + std::string to_string( const T& streamable ) { + std::ostringstream oss; + oss << streamable; + return oss.str(); + } + + const auto AxisADC = axis1D( 1024 + 256, -256, 1024 ); +} // namespace + +class PlumeLEDMonitor final : public LHCb::Algorithm::Consumer { +public: + // Standart constructor + PlumeLEDMonitor( const std::string& name, ISvcLocator* pSvcLocator ) + : Consumer( name, pSvcLocator, { KeyValue{ "Input", "" }, KeyValue{ "ODIN", "" } } ){}; + + StatusCode initialize() override; + void operator()( const Input&, const LHCb::ODIN& odin ) const override; + +private: + void monitor( const Input& digits, const LHCb::ODIN& odin ) const; + + mutable Gaudi::Accumulators::Histogram<1> m_calibType{ + this, "odin_calib_type", "ODIN CalibrationType", { 16, -0.5, 15.5 } }; + + // ADC histogram for every channel (LUMI/PIN/...) only for calibration trigger (light) + mutable std::map> m_channel_adc_calib; +}; + +// ============================================================================= + +DECLARE_COMPONENT( PlumeLEDMonitor ) + +// ============================================================================= +// standard initialize method +// ============================================================================= + +StatusCode PlumeLEDMonitor::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 channels; + 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 ); + } + + for ( const auto& ch : channels ) { + + map_emplace( m_channel_adc_calib, ch, this, "adc_" + ch.toString(), "ADC for " + ch.toString(), AxisADC ); + } + } ); +} + +// ============================================================================ +// standard execution method +// ============================================================================ + +void PlumeLEDMonitor::operator()( const Input& adcs, const LHCb::ODIN& odin ) const { monitor( adcs, odin ); } + +// ============================================================================ +// Fill histograms +// ============================================================================ +void PlumeLEDMonitor::monitor( const Input& adcs, const LHCb::ODIN& odin ) const { + auto calibType = odin.calibrationType(); + auto bx = odin.bunchCrossingType(); + + if ( calibType != 0 && bx == BXTypes::NoBeam ) { + ++m_calibType[calibType]; + for ( const auto& digit : adcs ) { + const auto adc = digit->adc(); + ++m_channel_adc_calib.at( digit->channelID() )[adc]; + } + } +} diff --git a/Plume/PlumeReco/src/PlumeTAEMonitor.cpp b/Plume/PlumeReco/src/PlumeTAEMonitor.cpp index d5ea2bbadcee265e5268c2a51fc759df0dcfc366..f10396acdc1a1fbf8521209fad0325c15b20856e 100644 --- a/Plume/PlumeReco/src/PlumeTAEMonitor.cpp +++ b/Plume/PlumeReco/src/PlumeTAEMonitor.cpp @@ -1,4 +1,4 @@ -/*****************************************************************************\ +/***************************************************************************** \ * (c) Copyright 2000-2024 CERN for the benefit of the LHCb Collaboration * * * * This software is distributed under the terms of the GNU General Public * @@ -19,7 +19,7 @@ #include "LHCbAlgs/MergingTransformer.h" namespace { - const auto axisADC = Gaudi::Accumulators::Axis( ( 4096 + 256 ) / 16, -256 / 16, 4096 / 16 ); + const auto axisADC = Gaudi::Accumulators::Axis( ( 1024 + 256 ), -256, 1024 ); } using LHCb::Detector::Plume::ChannelID; @@ -41,6 +41,11 @@ private: mutable Gaudi::Accumulators::Histogram<2> m_tae_adc{ this, "tae_adc", "ADC counts in lumi channels vs TAE offset", LHCb::TAE::defaultAxis, axisADC }; + mutable Gaudi::Accumulators::ProfileHistogram<1> m_profile_adc_tae{ + this, "tae_adc_profile", "average of ADC counts in lumi channels vs TAE offset", LHCb::TAE::defaultAxis }; + mutable Gaudi::Accumulators::ProfileHistogram<1> m_profile_adc_tae_zs{ + this, "tae_adc_profile_zs", "average of ADC counts in lumi channels vs TAE offset (zero suppressed)", + LHCb::TAE::defaultAxis }; }; DECLARE_COMPONENT( PlumeTAEMonitor ) @@ -59,9 +64,15 @@ void PlumeTAEMonitor::operator()( ODINVector const& odinVector, InputVector cons for ( const auto& digit : input ) { const auto adc = digit->adc(); const auto type = digit->channelID().channelType(); + if ( offset == 0 || odin.bunchCrossingType() == LHCb::ODIN::BXTypes::NoBeam ) { // one histogram that mixes together all channels and all TAE types (INDIVs and "fake TAEs") - if ( type == ChannelID::ChannelType::LUMI ) { ++m_tae_adc[{ offset, adc }]; } + if ( type == ChannelID::ChannelType::LUMI ) { + ++m_tae_adc[{ offset, adc }]; + m_profile_adc_tae[offset] += adc; + + if ( adc > 50 || offset != 0 ) { m_profile_adc_tae_zs[offset] += adc; } + } } } } diff --git a/Plume/PlumeReco/tests/options/plume_decoding.py b/Plume/PlumeReco/tests/options/plume_decoding.py index 552bedff7e4ecf106694ad1d5c4c3f2303509e5e..ecb3609ada4b15faedd3a91ff8e6c396b507726f 100644 --- a/Plume/PlumeReco/tests/options/plume_decoding.py +++ b/Plume/PlumeReco/tests/options/plume_decoding.py @@ -14,6 +14,7 @@ from Gaudi.Configuration import DEBUG, VERBOSE from PRConfig.TestFileDB import test_file_db from PyConf.Algorithms import ( PlumeDigitMonitor, + PlumeLEDMonitor, PlumeRawToDigits, PlumeTuple, PrintHeader, @@ -40,14 +41,13 @@ options = test_file_db["2024_raw_hlt1_290683"].make_lbexec_options( configure_input(options) # must call this before calling default_raw_event odin = make_odin() -digits = PlumeRawToDigits( - OutputLevel=DEBUG, RawBankLocation=default_raw_banks("Plume") -).Output +digits = PlumeRawToDigits(RawBankLocation=default_raw_banks("Plume")).Output monitor = PlumeDigitMonitor(Input=digits, ODIN=odin) plume_tuple = PlumeTuple(Input=digits, ODIN=odin) print_event = PrintHeader(ODINLocation=odin) +led = PlumeLEDMonitor(Input=digits, ODIN=odin) -top_node = CompositeNode("Top", [print_event, monitor, plume_tuple]) +top_node = CompositeNode("Top", [print_event, monitor, plume_tuple, led]) configure(options, top_node) from Configurables import LHCb__DetDesc__ReserveDetDescForEvent as reserveIOV diff --git a/Plume/PlumeReco/tests/refs/plume_decoding.ref b/Plume/PlumeReco/tests/refs/plume_decoding.ref index 71ad703aeda089c52d138fa2f9bbc0e42fb4e5fd..7a9152c0185d1882d32c89422b114b0d9347136e 100644 --- a/Plume/PlumeReco/tests/refs/plume_decoding.ref +++ b/Plume/PlumeReco/tests/refs/plume_decoding.ref @@ -7,10 +7,6 @@ HLTControlFlowMgr INFO Start initialization HLTControlFlowMgr INFO Will not use an EventSelector. HistogramPersistencySvc INFO Added successfully Conversion service RootHistSvc MDFIOAlg INFO Connected to mdf:root://eoslhcb.cern.ch//eos/lhcb//lhcb/swtest/2024_raw_hlt1_290683/Run_0000290683_20240417-065023-114_UCEB02_0001.mdf, input 1/1 -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 @@ -22,24418 +18,220 @@ ApplicationMgr INFO Application Manager Started successf HLTControlFlowMgr INFO Will measure time between events 20 and 180 (stop might be some events later) HLTControlFlowMgr INFO Starting loop on events PrintHeader_7bb0e124 INFO # 1 Run 290683, Event 7570207 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -8, OverTh=false -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= -4, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 82, OverTh=true -Channel=LUMI_13 , ADC= 885, OverTh=true -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= -7, OverTh=false -Channel=LUMI_39 , ADC= 16, OverTh=false -Channel=LUMI_16 , ADC= 174, OverTh=true -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 59, OverTh=true -Channel=LUMI_47 , ADC= 31, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= -9, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 362, OverTh=true -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= 437, OverTh=true -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 345, OverTh=true -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 17, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 246, OverTh=false -Channel=TIME_29_08, ADC= 384, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 265, OverTh=false -Channel=TIME_29_01, ADC= 247, OverTh=false -Channel=TIME_29_09, ADC= 384, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 248, OverTh=false -Channel=TIME_29_10, ADC= 379, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 263, OverTh=false -Channel=TIME_29_03, ADC= 251, OverTh=false -Channel=TIME_29_11, ADC= 377, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 340, 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= 267, 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= 236, 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= 234, 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= 253, 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= 255, 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 252, 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= 254, 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= 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= 257, 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= 258, OverTh=false -RCWNTupleCnv INFO Booked TTree with ID: Plume "PlumeTuple" in directory plume_decoding_ntuple.root:/PlumeTuple_d36bf254 +RCWNTupleCnv INFO Booked TTree with ID: Plume "PlumeTuple" in directory plume_decoding_ntuple.root:/PlumeTuple_4a35a9a2 PrintHeader_7bb0e124 INFO # 2 Run 290683, Event 7570237 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -6, OverTh=false -Channel=LUMI_14 , ADC= 316, OverTh=true -Channel=LUMI_38 , ADC= 13, 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= 5, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 339, OverTh=true -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 91, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 100, OverTh=true -Channel=LUMI_31 , ADC= 12, OverTh=false -Channel=LUMI_08 , ADC= 305, OverTh=true -Channel=LUMI_32 , ADC= 45, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -10, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 37, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 65, OverTh=true -Channel=LUMI_42 , ADC= 22, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 276, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 273, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 267, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 270, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 270, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 269, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 261, OverTh=false -Channel=TIME_05_13, ADC= 263, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 266, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 269, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 273, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 267, OverTh=false -Channel=TIME_11_00, ADC= 271, 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= 272, 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= 273, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 269, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 268, 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= 263, OverTh=false -Channel=TIME_11_13, ADC= 261, 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= 271, 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= 272, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 3 Run 290683, Event 7570390 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 19, 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= -15, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -10, OverTh=false -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 8, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 6, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= 10, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 265, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 231, OverTh=false -Channel=TIME_29_08, ADC= 625, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 238, OverTh=false -Channel=TIME_29_09, ADC= 611, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 245, OverTh=false -Channel=TIME_29_10, ADC= 615, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 250, OverTh=false -Channel=TIME_29_11, ADC= 588, OverTh=false -Channel=TIME_05_04, ADC= 271, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 453, OverTh=false -Channel=TIME_05_05, ADC= 300, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 289, OverTh=false -Channel=TIME_05_06, ADC= 333, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 193, OverTh=false -Channel=TIME_05_07, ADC= 332, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 198, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 247, OverTh=false -Channel=TIME_35_08, ADC= 320, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 265, OverTh=false -Channel=TIME_35_01, ADC= 250, OverTh=false -Channel=TIME_35_09, ADC= 319, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 252, OverTh=false -Channel=TIME_35_10, ADC= 314, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 263, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 309, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 278, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 252, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 246, 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= 249, OverTh=false PrintHeader_7bb0e124 INFO # 4 Run 290683, Event 7565207 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 256, OverTh=true -Channel=LUMI_24 , ADC= 504, OverTh=true -Channel=LUMI_01 , ADC= 32, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 362, OverTh=true -Channel=LUMI_26 , ADC= 52, OverTh=true -Channel=LUMI_03 , ADC= 98, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 8, OverTh=false -Channel=LUMI_28 , ADC= 18, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 14, OverTh=false -Channel=LUMI_37 , ADC= 366, OverTh=true -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= 0, OverTh=false -Channel=LUMI_16 , ADC= 74, OverTh=true -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 583, OverTh=true -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 15, OverTh=false -Channel=LUMI_30 , ADC= 13, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 7, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 220, OverTh=true -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 161, OverTh=true -Channel=LUMI_17 , ADC= -7, OverTh=false -Channel=LUMI_41 , ADC= 284, OverTh=true -Channel=LUMI_18 , ADC= 346, OverTh=true -Channel=LUMI_42 , ADC= 213, OverTh=true -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 810, OverTh=true -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 395, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 395, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 264, OverTh=false -Channel=TIME_05_10, ADC= 392, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 264, OverTh=false -Channel=TIME_05_11, ADC= 385, 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= 345, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 285, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 248, 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= 251, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 358, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 360, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 357, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 361, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 355, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 359, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 341, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 334, OverTh=false -Channel=TIME_35_11, ADC= 267, OverTh=false -Channel=TIME_11_04, ADC= 296, OverTh=false -Channel=TIME_11_12, ADC= 288, OverTh=false -Channel=TIME_35_04, ADC= 282, OverTh=false -Channel=TIME_35_12, ADC= 309, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 336, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 342, OverTh=false -Channel=TIME_11_06, ADC= 240, OverTh=false -Channel=TIME_11_14, ADC= 379, OverTh=false -Channel=TIME_35_06, ADC= 234, OverTh=false -Channel=TIME_35_14, ADC= 370, OverTh=false -Channel=TIME_11_07, ADC= 242, OverTh=false -Channel=TIME_11_15, ADC= 371, OverTh=false -Channel=TIME_35_07, ADC= 235, OverTh=false -Channel=TIME_35_15, ADC= 373, OverTh=false PrintHeader_7bb0e124 INFO # 5 Run 290683, Event 7565256 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 90, OverTh=true -Channel=LUMI_25 , ADC= 438, OverTh=true -Channel=LUMI_02 , ADC= 118, OverTh=true -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= 4, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 17, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 267, OverTh=true -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 26, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 22, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 135, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= -27, OverTh=false -Channel=LUMI_19 , ADC= 32, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -11, OverTh=false -Channel=LUMI_21 , ADC= 7, OverTh=false -Channel=LUMI_45 , ADC= 13, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 252, OverTh=false -Channel=TIME_05_08, ADC= 357, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 356, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 354, 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= 350, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 248, OverTh=false -Channel=TIME_05_12, ADC= 331, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 231, OverTh=false -Channel=TIME_05_13, ADC= 283, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 214, OverTh=false -Channel=TIME_05_14, ADC= 249, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 212, OverTh=false -Channel=TIME_05_15, ADC= 248, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 298, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 344, OverTh=false -Channel=TIME_11_01, ADC= 294, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 348, OverTh=false -Channel=TIME_11_02, ADC= 294, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 347, OverTh=false -Channel=TIME_11_03, ADC= 293, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 251, OverTh=false -Channel=TIME_35_11, ADC= 336, OverTh=false -Channel=TIME_11_04, ADC= 293, OverTh=false -Channel=TIME_11_12, ADC= 268, OverTh=false -Channel=TIME_35_04, ADC= 216, OverTh=false -Channel=TIME_35_12, ADC= 296, OverTh=false -Channel=TIME_11_05, ADC= 318, OverTh=false -Channel=TIME_11_13, ADC= 294, OverTh=false -Channel=TIME_35_05, ADC= 188, OverTh=false -Channel=TIME_35_13, ADC= 273, OverTh=false -Channel=TIME_11_06, ADC= 332, OverTh=false -Channel=TIME_11_14, ADC= 303, OverTh=false -Channel=TIME_35_06, ADC= 168, OverTh=false -Channel=TIME_35_14, ADC= 250, OverTh=false -Channel=TIME_11_07, ADC= 329, OverTh=false -Channel=TIME_11_15, ADC= 299, OverTh=false -Channel=TIME_35_07, ADC= 167, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 6 Run 290683, Event 7565333 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= -1, 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= -2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -5, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -5, OverTh=false -Channel=LUMI_37 , ADC= -6, 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= 7, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, 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= -4, 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= -3, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= -1, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 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= 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= 257, 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= 259, 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= 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= 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= 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, 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= 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= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 7 Run 290683, Event 7560518 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 64, OverTh=true -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 46, OverTh=false -Channel=LUMI_27 , ADC= 26, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 8, OverTh=false -Channel=LUMI_37 , ADC= 149, OverTh=true -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -8, OverTh=false -Channel=LUMI_39 , ADC= 195, OverTh=true -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= -6, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 20, OverTh=false -Channel=LUMI_17 , ADC= 279, OverTh=true -Channel=LUMI_41 , ADC= 28, OverTh=false -Channel=LUMI_18 , ADC= 18, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -5, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 251, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 253, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 255, 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= 253, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 252, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 250, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 263, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 320, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 418, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 321, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 421, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 320, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 418, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 312, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 386, OverTh=false -Channel=TIME_35_11, ADC= 268, OverTh=false -Channel=TIME_11_04, ADC= 285, OverTh=false -Channel=TIME_11_12, ADC= 269, OverTh=false -Channel=TIME_35_04, ADC= 314, OverTh=false -Channel=TIME_35_12, ADC= 329, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 305, OverTh=false -Channel=TIME_35_05, ADC= 271, OverTh=false -Channel=TIME_35_13, ADC= 373, OverTh=false -Channel=TIME_11_06, ADC= 244, OverTh=false -Channel=TIME_11_14, ADC= 332, OverTh=false -Channel=TIME_35_06, ADC= 231, OverTh=false -Channel=TIME_35_14, ADC= 435, OverTh=false -Channel=TIME_11_07, ADC= 246, OverTh=false -Channel=TIME_11_15, ADC= 332, OverTh=false -Channel=TIME_35_07, ADC= 238, OverTh=false -Channel=TIME_35_15, ADC= 437, OverTh=false PrintHeader_7bb0e124 INFO # 8 Run 290683, Event 7560699 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 39, OverTh=false -Channel=LUMI_24 , ADC= 361, OverTh=true -Channel=LUMI_01 , ADC= 57, OverTh=true -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 122, OverTh=true -Channel=LUMI_26 , ADC= 243, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 12, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 9, 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= 0, 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= 241, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 29, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 706, OverTh=true -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 304, OverTh=true -Channel=LUMI_31 , ADC= 93, OverTh=true -Channel=LUMI_08 , ADC= 222, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 222, OverTh=true -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= 9, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 12, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -5, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 291, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 289, 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= 288, 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= 288, 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= 279, OverTh=false -Channel=TIME_05_12, ADC= 264, 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= 283, 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= 299, 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= 299, 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= 262, 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= 259, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 254, 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= 256, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 279, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 286, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 278, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 282, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 9 Run 290683, Event 7561061 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 8, 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= 5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, 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= 16, 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= 5, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -7, OverTh=false -Channel=LUMI_30 , ADC= 4, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= 11, 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= 1, OverTh=false -Channel=LUMI_42 , ADC= 7, 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= 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= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 270, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 270, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 259, 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= 259, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 264, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 261, OverTh=false -Channel=TIME_29_07, ADC= 264, 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= 269, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 272, 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= 275, 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= 269, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 252, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 10 Run 290683, Event 7561387 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 14, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 12, OverTh=false -Channel=LUMI_25 , ADC= 21, OverTh=false -Channel=LUMI_02 , ADC= 16, OverTh=false -Channel=LUMI_26 , ADC= 244, OverTh=true -Channel=LUMI_03 , ADC= 36, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC=1120, OverTh=true -Channel=LUMI_36 , ADC= 151, OverTh=true -Channel=LUMI_13 , ADC= 198, OverTh=true -Channel=LUMI_37 , ADC= 28, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 394, OverTh=true -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 289, OverTh=true -Channel=LUMI_16 , ADC= 36, OverTh=false -Channel=LUMI_40 , ADC= 37, OverTh=false -Channel=LUMI_23 , ADC= 235, OverTh=true -Channel=LUMI_47 , ADC= 189, OverTh=true -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 11, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 18, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 363, OverTh=true -Channel=LUMI_08 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_34 , ADC= 316, OverTh=true -Channel=LUMI_17 , ADC= 676, OverTh=true -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 224, OverTh=true -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 337, OverTh=true -Channel=LUMI_20 , ADC= 261, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 162, OverTh=true -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 334, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 336, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 336, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 263, OverTh=false -Channel=TIME_05_11, ADC= 332, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 312, 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= 283, 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= 261, 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= 257, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 285, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 285, 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= 285, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 280, 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= 272, OverTh=false -Channel=TIME_35_12, ADC= 263, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 266, OverTh=false -Channel=TIME_35_13, ADC= 272, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 285, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 288, OverTh=false PrintHeader_7bb0e124 INFO # 11 Run 290683, Event 7561447 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -2, 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= 4, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 9, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= 27, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 17, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 23, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 176, OverTh=true -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= 12, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= -7, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= -11, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 8, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 253, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 255, 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= 257, OverTh=false -Channel=TIME_29_03, ADC= 254, 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= 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= 258, OverTh=false -Channel=TIME_29_13, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 253, OverTh=false -Channel=TIME_11_00, ADC= 263, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 263, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 259, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 257, 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= 258, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 12 Run 290683, Event 7561496 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 341, OverTh=true -Channel=LUMI_24 , ADC= 114, OverTh=true -Channel=LUMI_01 , ADC= 448, OverTh=true -Channel=LUMI_25 , ADC= 429, OverTh=true -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 21, 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= 4, OverTh=false -Channel=LUMI_12 , ADC= 305, OverTh=true -Channel=LUMI_36 , ADC= 488, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 456, OverTh=true -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 465, OverTh=true -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 294, OverTh=true -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 303, OverTh=true -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 92, OverTh=true -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 24, OverTh=false -Channel=LUMI_17 , ADC= 668, OverTh=true -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 77, OverTh=true -Channel=LUMI_42 , ADC= 359, OverTh=true -Channel=LUMI_19 , ADC= 355, OverTh=true -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 18, OverTh=false -Channel=LUMI_44 , ADC= 505, OverTh=true -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 280, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, 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= 260, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, 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= 254, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, 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= 258, OverTh=false -Channel=TIME_05_14, ADC= 257, 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= 259, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 239, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 235, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 260, OverTh=false -Channel=TIME_11_10, ADC= 237, 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= 242, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 247, OverTh=false -Channel=TIME_35_04, ADC= 254, 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= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 265, 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= 264, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 13 Run 290683, Event 7561535 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 61, OverTh=true -Channel=LUMI_24 , ADC= 87, OverTh=true -Channel=LUMI_01 , ADC= -14, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 104, OverTh=true -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 22, OverTh=false -Channel=LUMI_13 , ADC= 12, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 12, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -11, OverTh=false -Channel=LUMI_16 , ADC= -6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 233, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 13, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 226, OverTh=true -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= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 196, OverTh=true -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 21, 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= 8, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 282, OverTh=false -Channel=TIME_29_00, ADC= 273, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 284, OverTh=false -Channel=TIME_29_01, ADC= 275, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 286, OverTh=false -Channel=TIME_29_02, ADC= 274, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 282, OverTh=false -Channel=TIME_29_03, ADC= 274, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 249, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 266, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 232, OverTh=false -Channel=TIME_05_13, ADC= 249, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 272, OverTh=false -Channel=TIME_05_06, ADC= 226, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 252, OverTh=false -Channel=TIME_29_14, ADC= 277, OverTh=false -Channel=TIME_05_07, ADC= 224, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 278, OverTh=false -Channel=TIME_11_00, ADC= 255, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 255, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 251, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 14 Run 290683, Event 7561561 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -29, OverTh=false -Channel=LUMI_24 , ADC= -28, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -10, 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= 2, 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= 237, OverTh=true -Channel=LUMI_37 , ADC= 38, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= -5, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 10, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 276, OverTh=true -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, 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= 4, 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= 0, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 284, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 282, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 281, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 282, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 278, 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= 266, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 260, 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= 259, 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= 255, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 254, 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= 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= 256, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 260, 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= 257, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 259, 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 # 15 Run 290683, Event 7561718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 14, OverTh=false -Channel=LUMI_01 , ADC= 297, OverTh=true -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 55, OverTh=true -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= -14, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -5, OverTh=false -Channel=LUMI_36 , ADC= 535, OverTh=true -Channel=LUMI_13 , ADC= 193, OverTh=true -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 615, OverTh=true -Channel=LUMI_30 , ADC= 226, OverTh=true -Channel=LUMI_07 , ADC= 298, OverTh=true -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 123, OverTh=true -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 17, OverTh=false -Channel=LUMI_34 , ADC= 9, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 24, OverTh=false -Channel=LUMI_18 , ADC= 403, OverTh=true -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 318, OverTh=true -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= 277, OverTh=true -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 351, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 349, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 348, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 342, 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= 313, OverTh=false -Channel=TIME_05_12, ADC= 274, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 265, OverTh=false -Channel=TIME_05_13, ADC= 320, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 243, OverTh=false -Channel=TIME_05_14, ADC= 359, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 244, OverTh=false -Channel=TIME_05_15, ADC= 358, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 398, OverTh=false -Channel=TIME_11_08, ADC= 356, OverTh=false -Channel=TIME_35_00, ADC= 574, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 398, OverTh=false -Channel=TIME_11_09, ADC= 354, OverTh=false -Channel=TIME_35_01, ADC= 575, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 398, OverTh=false -Channel=TIME_11_10, ADC= 351, OverTh=false -Channel=TIME_35_02, ADC= 562, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 385, OverTh=false -Channel=TIME_11_11, ADC= 335, OverTh=false -Channel=TIME_35_03, ADC= 505, OverTh=false -Channel=TIME_35_11, ADC= 280, OverTh=false -Channel=TIME_11_04, ADC= 345, OverTh=false -Channel=TIME_11_12, ADC= 325, OverTh=false -Channel=TIME_35_04, ADC= 377, OverTh=false -Channel=TIME_35_12, ADC= 380, OverTh=false -Channel=TIME_11_05, ADC= 296, OverTh=false -Channel=TIME_11_13, ADC= 360, OverTh=false -Channel=TIME_35_05, ADC= 304, OverTh=false -Channel=TIME_35_13, ADC= 466, OverTh=false -Channel=TIME_11_06, ADC= 270, OverTh=false -Channel=TIME_11_14, ADC= 402, OverTh=false -Channel=TIME_35_06, ADC= 199, OverTh=false -Channel=TIME_35_14, ADC= 603, OverTh=false -Channel=TIME_11_07, ADC= 275, OverTh=false -Channel=TIME_11_15, ADC= 402, OverTh=false -Channel=TIME_35_07, ADC= 206, OverTh=false -Channel=TIME_35_15, ADC= 609, OverTh=false PrintHeader_7bb0e124 INFO # 16 Run 290683, Event 7561907 -PlumeRawToDigits_89428f2d 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= 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= 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= -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= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 9, 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= 2, 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= 1, OverTh=false -Channel=LUMI_19 , ADC= 13, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 254, 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= 259, 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= 256, OverTh=false -Channel=TIME_29_04, ADC= 256, 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= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 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= 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= 254, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 255, 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= 260, OverTh=false -Channel=TIME_11_07, ADC= 259, 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 # 17 Run 290683, Event 7564600 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 6, 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= 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= 0, 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= 0, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -10, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, 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= -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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 335, 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= 335, 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= 334, 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= 331, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 307, 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= 271, 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= 246, 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= 248, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 256, 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= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, 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= 257, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 252, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 260, 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= 261, 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 # 18 Run 290683, Event 7564781 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -4, 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= 13, 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= 360, OverTh=true -Channel=LUMI_36 , ADC= 16, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 29, OverTh=false -Channel=LUMI_38 , ADC= 211, OverTh=true -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 15, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, 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= -8, 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= 1, 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= -2, OverTh=false -Channel=LUMI_43 , ADC= 220, OverTh=true -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= 5, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 385, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 246, OverTh=false -Channel=TIME_05_01, ADC= 381, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 250, OverTh=false -Channel=TIME_05_02, ADC= 381, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 378, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 355, OverTh=false -Channel=TIME_05_12, ADC= 278, OverTh=false -Channel=TIME_29_04, ADC= 281, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 323, OverTh=false -Channel=TIME_05_13, ADC= 333, OverTh=false -Channel=TIME_29_05, ADC= 359, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 305, OverTh=false -Channel=TIME_05_14, ADC= 393, OverTh=false -Channel=TIME_29_06, ADC= 424, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 310, OverTh=false -Channel=TIME_05_15, ADC= 399, OverTh=false -Channel=TIME_29_07, ADC= 423, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 252, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 263, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 251, OverTh=false -Channel=TIME_35_10, ADC= 266, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 252, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 271, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 249, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 309, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 249, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 333, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 248, OverTh=false -Channel=TIME_35_14, ADC= 276, OverTh=false -Channel=TIME_11_07, ADC= 330, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 247, OverTh=false -Channel=TIME_35_15, ADC= 275, OverTh=false PrintHeader_7bb0e124 INFO # 19 Run 290683, Event 7567863 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 346, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -8, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 47, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 9, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 13, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 348, OverTh=true -Channel=LUMI_31 , ADC= 375, OverTh=true -Channel=LUMI_08 , ADC= 371, OverTh=true -Channel=LUMI_32 , ADC= 21, OverTh=false -Channel=LUMI_09 , ADC= 29, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 148, OverTh=true -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= 769, OverTh=true -Channel=LUMI_42 , ADC= 55, OverTh=true -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, 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= 257, OverTh=false -Channel=TIME_05_01, ADC= 258, OverTh=false -Channel=TIME_05_09, ADC= 252, 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= 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= 255, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_29_05, ADC= 273, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 282, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 265, OverTh=false -Channel=TIME_29_07, ADC= 282, 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= 257, 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= 256, 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= 258, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 269, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 253, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 251, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 20 Run 290683, Event 7567870 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 446, OverTh=true -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 49, OverTh=false -Channel=LUMI_02 , ADC= 13, 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= 8, OverTh=false -Channel=LUMI_28 , ADC= -7, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 11, OverTh=false -Channel=LUMI_37 , ADC= 6, 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= -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= 2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 16, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 236, OverTh=true -Channel=LUMI_32 , ADC= 142, OverTh=true -Channel=LUMI_09 , ADC= 80, OverTh=true -Channel=LUMI_33 , ADC= 10, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 60, OverTh=true -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 354, OverTh=false -Channel=TIME_29_08, ADC= 246, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 350, OverTh=false -Channel=TIME_29_09, ADC= 249, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 348, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 348, 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= 318, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 278, OverTh=false -Channel=TIME_29_13, ADC= 332, OverTh=false -Channel=TIME_05_06, ADC= 274, OverTh=false -Channel=TIME_05_14, ADC= 253, OverTh=false -Channel=TIME_29_06, ADC= 293, OverTh=false -Channel=TIME_29_14, ADC= 364, OverTh=false -Channel=TIME_05_07, ADC= 275, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 293, OverTh=false -Channel=TIME_29_15, ADC= 364, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 264, OverTh=false -Channel=TIME_11_02, ADC= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 277, 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= 295, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 279, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 293, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 274, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 21 Run 290683, Event 7567921 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 161, OverTh=true -Channel=LUMI_24 , ADC= 40, OverTh=false -Channel=LUMI_01 , ADC= 83, OverTh=true -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= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 72, OverTh=true -Channel=LUMI_13 , ADC= 698, OverTh=true -Channel=LUMI_37 , ADC= 370, OverTh=true -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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 27, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 13, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 393, OverTh=true -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= -16, OverTh=false -Channel=LUMI_08 , ADC= 10, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= 2, 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= 19, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -4, 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= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 353, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 353, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 351, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 340, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 311, OverTh=false -Channel=TIME_05_12, ADC= 281, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 326, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 238, OverTh=false -Channel=TIME_05_14, ADC= 366, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 267, OverTh=false -Channel=TIME_05_07, ADC= 241, OverTh=false -Channel=TIME_05_15, ADC= 364, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 272, 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= 256, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 291, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 350, 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= 374, 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= 367, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 22 Run 290683, Event 7575667 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 251, OverTh=true -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= 2, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 395, OverTh=true -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -15, 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= 7, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 179, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 45, 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= 7, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 5, OverTh=false -Channel=LUMI_33 , ADC= -4, 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= 12, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 23, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 101, OverTh=true -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -5, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 3, OverTh=false -Channel=TIME_05_00, ADC= 278, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 277, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 278, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 277, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 274, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 279, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 280, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 265, 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= 265, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 260, 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= 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= 258, 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= 253, OverTh=false -Channel=TIME_11_06, ADC= 274, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 275, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 23 Run 290683, Event 7572284 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 63, OverTh=true -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= -6, 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= 97, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 434, OverTh=true -Channel=LUMI_14 , ADC= 241, OverTh=true -Channel=LUMI_38 , ADC= 8, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 50, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 374, OverTh=true -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= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 239, OverTh=true -Channel=LUMI_43 , ADC= 20, OverTh=false -Channel=LUMI_20 , ADC= -6, OverTh=false -Channel=LUMI_44 , ADC= 0, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, 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= 254, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 257, 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= 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= 257, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 253, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 465, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 469, 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= 459, 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= 438, OverTh=false -Channel=TIME_11_11, ADC= 263, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 364, OverTh=false -Channel=TIME_11_12, ADC= 309, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 278, OverTh=false -Channel=TIME_11_13, ADC= 404, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 215, OverTh=false -Channel=TIME_11_14, ADC= 500, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 221, OverTh=false -Channel=TIME_11_15, ADC= 494, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 24 Run 290683, Event 7572356 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -21, OverTh=false -Channel=LUMI_24 , ADC= 489, OverTh=true -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -10, OverTh=false -Channel=LUMI_02 , ADC= 178, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 28, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 40, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 228, OverTh=true -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 385, OverTh=true -Channel=LUMI_39 , ADC= 11, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 12, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 9, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 20, 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= 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= 290, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 329, OverTh=true -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 22, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 5, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 190, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 302, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 189, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 299, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 193, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 299, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 195, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 298, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 225, OverTh=false -Channel=TIME_05_12, ADC= 224, OverTh=false -Channel=TIME_29_04, ADC= 282, OverTh=false -Channel=TIME_29_12, ADC= 263, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 198, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 293, OverTh=false -Channel=TIME_05_06, ADC= 281, OverTh=false -Channel=TIME_05_14, ADC= 183, OverTh=false -Channel=TIME_29_06, ADC= 244, OverTh=false -Channel=TIME_29_14, ADC= 308, OverTh=false -Channel=TIME_05_07, ADC= 275, OverTh=false -Channel=TIME_05_15, ADC= 185, OverTh=false -Channel=TIME_29_07, ADC= 245, OverTh=false -Channel=TIME_29_15, ADC= 309, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 252, 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= 256, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 252, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 252, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 269, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 25 Run 290683, Event 7572674 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= 86, OverTh=true -Channel=LUMI_25 , ADC= 407, OverTh=true -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= 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= -3, OverTh=false -Channel=LUMI_13 , ADC= 122, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 324, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 0, 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= -2, 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 22, OverTh=false -Channel=LUMI_42 , ADC= 18, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= -4, OverTh=false -Channel=LUMI_44 , ADC= -6, OverTh=false -Channel=LUMI_21 , ADC= -6, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 265, 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= 264, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 277, 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= 310, OverTh=false -Channel=TIME_05_13, ADC= 266, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 356, OverTh=false -Channel=TIME_05_14, ADC= 269, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 361, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 291, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 290, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 290, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 261, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 285, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 261, OverTh=false -Channel=TIME_11_12, ADC= 275, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 293, OverTh=false -Channel=TIME_35_05, ADC= 263, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 248, OverTh=false -Channel=TIME_11_14, ADC= 297, OverTh=false -Channel=TIME_35_06, ADC= 263, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 295, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 26 Run 290683, Event 7572738 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 781, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= -3, OverTh=false -Channel=LUMI_25 , ADC= 24, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 78, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -9, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -15, 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 169, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= -5, OverTh=false -Channel=LUMI_32 , ADC= -1, 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= 3, 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= -1, OverTh=false -Channel=LUMI_43 , ADC= 184, OverTh=true -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 6, OverTh=false -Channel=LUMI_21 , ADC= 267, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 308, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 275, OverTh=false -Channel=TIME_05_01, ADC= 307, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 270, OverTh=false -Channel=TIME_05_02, ADC= 307, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 265, OverTh=false -Channel=TIME_05_03, ADC= 305, 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= 286, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 291, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 245, OverTh=false -Channel=TIME_05_14, ADC= 317, OverTh=false -Channel=TIME_29_06, ADC= 297, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 247, OverTh=false -Channel=TIME_05_15, ADC= 315, OverTh=false -Channel=TIME_29_07, ADC= 294, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 343, OverTh=false -Channel=TIME_11_08, ADC= 360, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 262, OverTh=false -Channel=TIME_11_01, ADC= 345, OverTh=false -Channel=TIME_11_09, ADC= 358, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 346, OverTh=false -Channel=TIME_11_10, ADC= 356, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 335, OverTh=false -Channel=TIME_11_11, ADC= 345, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 286, OverTh=false -Channel=TIME_11_12, ADC= 323, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 338, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 239, OverTh=false -Channel=TIME_11_14, ADC= 350, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 243, OverTh=false -Channel=TIME_11_15, ADC= 349, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 27 Run 290683, Event 7572977 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_27 , ADC= 4, 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= -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= -4, 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= -1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , 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= 3, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_43 , ADC= -2, 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= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 254, 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= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 260, 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= 257, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, 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= 255, 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= 255, 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= 260, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, 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= 257, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 260, 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 # 28 Run 290683, Event 7569146 -PlumeRawToDigits_89428f2d 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= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -6, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -5, OverTh=false -Channel=LUMI_12 , ADC= -4, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -5, OverTh=false -Channel=LUMI_14 , ADC= -3, 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= -2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 5, 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= 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= 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= -4, OverTh=false -Channel=LUMI_43 , ADC= -3, 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= 4, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 4, 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= 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= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 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= 259, 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= 259, 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= 261, 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= 260, 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= 259, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 254, OverTh=false -Channel=TIME_35_05, ADC= 259, 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= 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= 256, OverTh=false PrintHeader_7bb0e124 INFO # 29 Run 290683, Event 7569197 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 13, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 9, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 9, OverTh=false -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 242, OverTh=true -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= 10, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -11, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 9, 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= 18, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 80, OverTh=true -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 244, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 242, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 243, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 247, 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= 254, OverTh=false -Channel=TIME_05_12, ADC= 250, 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= 248, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 273, OverTh=false -Channel=TIME_05_14, ADC= 242, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 272, OverTh=false -Channel=TIME_05_15, ADC= 240, 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= 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= 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 256, 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= 255, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 253, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 30 Run 290683, Event 7569388 -PlumeRawToDigits_89428f2d 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -2, 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= 3, 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= 3, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, 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= 1, 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= 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= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 9, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 254, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_29_04, ADC= 256, 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= 258, 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= 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= 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= 257, 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= 258, 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= 259, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 252, 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= 256, 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= 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= 257, OverTh=false PrintHeader_7bb0e124 INFO # 31 Run 290683, Event 7569588 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 11, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 0, 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= 0, 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= 0, 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= 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= 1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 3, 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= 0, 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= -4, 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= 6, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, 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= 256, 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= 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= 258, OverTh=false -Channel=TIME_05_04, ADC= 254, 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= 256, 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= 256, OverTh=false -Channel=TIME_29_06, ADC= 255, 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= 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 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= 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= 253, 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 32 Run 290683, Event 7569643 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -7, OverTh=false -Channel=LUMI_02 , ADC= 12, 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= 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= 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -3, 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= -16, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, 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= 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= 260, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 260, 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= 259, 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= 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= 260, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 262, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, 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= 257, 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= 258, 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 # 33 Run 290683, Event 7569752 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 977, OverTh=true -Channel=LUMI_24 , ADC= 652, OverTh=true -Channel=LUMI_01 , ADC= 49, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= 249, OverTh=true -Channel=LUMI_26 , ADC= 19, OverTh=false -Channel=LUMI_03 , ADC= 84, OverTh=true -Channel=LUMI_27 , ADC= 13, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 347, OverTh=true -Channel=LUMI_12 , ADC= 33, OverTh=false -Channel=LUMI_36 , ADC= 97, OverTh=true -Channel=LUMI_13 , ADC= 111, OverTh=true -Channel=LUMI_37 , ADC= 8, OverTh=false -Channel=LUMI_14 , ADC= 295, OverTh=true -Channel=LUMI_38 , ADC= 9, 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= 1, OverTh=false -Channel=LUMI_23 , ADC= 29, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 56, OverTh=true -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 125, OverTh=true -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 69, OverTh=true -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 132, OverTh=true -Channel=LUMI_19 , ADC= 117, OverTh=true -Channel=LUMI_43 , ADC= 271, OverTh=true -Channel=LUMI_20 , ADC= 139, OverTh=true -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 323, 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= 315, 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= 310, 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= 308, 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= 295, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 288, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 251, OverTh=false -Channel=TIME_29_14, ADC= 337, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 246, OverTh=false -Channel=TIME_29_15, ADC= 343, OverTh=false -Channel=TIME_11_00, ADC= 279, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 269, OverTh=false -Channel=TIME_11_01, ADC= 281, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 269, OverTh=false -Channel=TIME_11_02, ADC= 279, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 265, OverTh=false -Channel=TIME_11_03, ADC= 278, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 269, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 281, OverTh=false -Channel=TIME_35_06, ADC= 294, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 280, OverTh=false -Channel=TIME_35_07, ADC= 284, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 34 Run 290683, Event 7569766 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -10, OverTh=false -Channel=LUMI_26 , ADC= 19, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 11, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 109, OverTh=true -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 15, 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= 4, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 53, OverTh=true -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -7, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 274, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 273, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 263, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 272, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 272, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 261, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 253, OverTh=false -Channel=TIME_05_14, ADC= 273, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 273, OverTh=false -Channel=TIME_35_00, ADC= 252, OverTh=false -Channel=TIME_35_08, ADC= 290, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 272, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 291, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 271, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 291, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 271, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 289, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 266, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 282, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 261, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 271, OverTh=false -Channel=TIME_11_06, ADC= 263, OverTh=false -Channel=TIME_11_14, ADC= 252, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 247, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 248, OverTh=false PrintHeader_7bb0e124 INFO # 35 Run 290683, Event 7569897 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 667, OverTh=true -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= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 6, OverTh=false -Channel=LUMI_38 , ADC= 7, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= -5, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 478, OverTh=true -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= 6, OverTh=false -Channel=LUMI_41 , ADC= -18, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 101, OverTh=true -Channel=LUMI_19 , ADC= 31, 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= -1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 296, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 292, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 292, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 288, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 301, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 282, OverTh=false -Channel=TIME_29_12, ADC= 264, OverTh=false -Channel=TIME_05_05, ADC= 367, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 267, OverTh=false -Channel=TIME_29_13, ADC= 278, OverTh=false -Channel=TIME_05_06, ADC= 429, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 267, OverTh=false -Channel=TIME_29_14, ADC= 292, OverTh=false -Channel=TIME_05_07, ADC= 428, OverTh=false -Channel=TIME_05_15, ADC= 261, OverTh=false -Channel=TIME_29_07, ADC= 267, OverTh=false -Channel=TIME_29_15, ADC= 296, OverTh=false -Channel=TIME_11_00, ADC= 281, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 281, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 279, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 279, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 269, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 252, OverTh=false -Channel=TIME_11_13, ADC= 282, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 250, OverTh=false -Channel=TIME_11_14, ADC= 286, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 252, OverTh=false -Channel=TIME_11_15, ADC= 281, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 36 Run 290683, Event 7569909 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 324, OverTh=true -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 11, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 236, OverTh=true -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 136, OverTh=true -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 303, OverTh=true -Channel=LUMI_38 , ADC= -6, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= -12, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 341, OverTh=true -Channel=LUMI_47 , ADC= 26, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 102, OverTh=true -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 110, OverTh=true -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 169, OverTh=true -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 176, OverTh=true -Channel=LUMI_34 , ADC= 6, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 124, OverTh=true -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 63, OverTh=true -Channel=LUMI_43 , ADC= 367, OverTh=true -Channel=LUMI_20 , ADC= 145, OverTh=true -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 276, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 486, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 295, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 489, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 295, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 483, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 293, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 473, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 293, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 412, OverTh=false -Channel=TIME_05_12, ADC= 286, OverTh=false -Channel=TIME_29_04, ADC= 286, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 305, OverTh=false -Channel=TIME_05_13, ADC= 379, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 278, OverTh=false -Channel=TIME_05_06, ADC= 221, OverTh=false -Channel=TIME_05_14, ADC= 497, OverTh=false -Channel=TIME_29_06, ADC= 249, OverTh=false -Channel=TIME_29_14, ADC= 299, OverTh=false -Channel=TIME_05_07, ADC= 221, OverTh=false -Channel=TIME_05_15, ADC= 509, OverTh=false -Channel=TIME_29_07, ADC= 250, OverTh=false -Channel=TIME_29_15, ADC= 302, OverTh=false -Channel=TIME_11_00, ADC= 278, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 280, 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= 278, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 270, OverTh=false -Channel=TIME_11_11, ADC= 260, 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= 273, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 281, 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= 282, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 280, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 37 Run 290683, Event 7569944 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 11, 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= 2, 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= 6, 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= 4, OverTh=false -Channel=LUMI_38 , ADC= -7, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 398, OverTh=true -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 5, 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= 765, OverTh=true -Channel=LUMI_32 , ADC=1015, OverTh=true -Channel=LUMI_09 , ADC= 530, OverTh=true -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= -2, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 12, 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= 4, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 251, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 255, 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= 255, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 253, 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= 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 267, 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= 267, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, 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= 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= 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= 255, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 261, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 262, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 38 Run 290683, Event 7571081 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 86, OverTh=true -Channel=LUMI_24 , ADC= 305, OverTh=true -Channel=LUMI_01 , ADC= 73, OverTh=true -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 244, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= 10, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 25, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 46, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 185, OverTh=true -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 14, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 67, OverTh=true -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= -2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 109, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 101, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 67, OverTh=true -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 10, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 268, OverTh=false -Channel=TIME_05_08, ADC= 271, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 264, OverTh=false -Channel=TIME_05_09, ADC= 267, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 266, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 262, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 253, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 261, 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= 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= 257, 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= 259, OverTh=false -Channel=TIME_11_06, ADC= 268, 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= 264, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 39 Run 290683, Event 7571388 -PlumeRawToDigits_89428f2d 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= -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= 2, 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= 2, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_10 , ADC= 4, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 13, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 258, 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= 256, 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= 257, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 260, 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= 257, 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= 256, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 252, OverTh=false -Channel=TIME_11_04, ADC= 253, OverTh=false -Channel=TIME_11_12, ADC= 262, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 40 Run 290683, Event 7571649 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 163, OverTh=true -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= 0, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= -10, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= -8, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 30, OverTh=false -Channel=LUMI_30 , ADC= 9, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -4, 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= -3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 11, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 282, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 282, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 263, OverTh=false -Channel=TIME_05_02, ADC= 279, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 278, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 271, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 273, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 267, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 265, OverTh=false -Channel=TIME_29_14, ADC= 262, OverTh=false -Channel=TIME_05_07, ADC= 269, OverTh=false -Channel=TIME_05_15, ADC= 281, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 258, 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= 258, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 256, 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= 255, 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= 258, 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= 258, OverTh=false PrintHeader_7bb0e124 INFO # 41 Run 290683, Event 7568028 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 116, OverTh=true -Channel=LUMI_24 , ADC= 31, OverTh=false -Channel=LUMI_01 , ADC= 43, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= 86, OverTh=true -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 388, OverTh=true -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 189, OverTh=true -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= 266, OverTh=true -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 69, OverTh=true -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 346, OverTh=true -Channel=LUMI_33 , ADC= 255, OverTh=true -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 234, OverTh=true -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 612, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 248, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 250, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 269, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 273, 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= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 247, 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= 249, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 261, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 263, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 42 Run 290683, Event 7568133 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= 14, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 83, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_33 , ADC= -14, OverTh=false -Channel=LUMI_10 , ADC= 11, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 263, OverTh=true -Channel=LUMI_41 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -5, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 261, OverTh=false -Channel=TIME_05_10, ADC= 251, 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= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 259, 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= 259, OverTh=false -Channel=TIME_05_14, ADC= 258, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 265, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 264, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 266, 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= 261, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 252, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 43 Run 290683, Event 7568786 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 47, OverTh=false -Channel=LUMI_24 , ADC= 27, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 15, OverTh=false -Channel=LUMI_02 , ADC= 5, 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= 5, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 16, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 10, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 46, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 337, OverTh=true -Channel=LUMI_31 , ADC= -24, OverTh=false -Channel=LUMI_08 , ADC= 25, 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= 9, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 10, 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= 2, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= -8, OverTh=false -Channel=LUMI_22 , ADC= -6, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 253, OverTh=false -Channel=TIME_05_08, ADC= 302, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 265, OverTh=false -Channel=TIME_05_01, ADC= 252, OverTh=false -Channel=TIME_05_09, ADC= 302, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 264, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 301, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 263, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 296, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 265, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 287, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 284, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 339, OverTh=false -Channel=TIME_05_14, ADC= 251, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 346, OverTh=false -Channel=TIME_05_15, ADC= 251, OverTh=false -Channel=TIME_29_07, ADC= 258, 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= 258, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 260, 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= 256, OverTh=false -Channel=TIME_35_03, ADC= 265, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 306, 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= 348, 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= 397, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 399, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 44 Run 290683, Event 7568998 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 11, OverTh=false -Channel=LUMI_25 , ADC= -13, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 8, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 12, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= -5, 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= 7, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 9, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= -11, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= -7, OverTh=false -Channel=LUMI_22 , ADC= -5, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 273, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 258, OverTh=false -Channel=TIME_05_09, ADC= 271, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 269, 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= 268, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 259, 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= 250, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 253, 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= 265, 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= 266, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 267, 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= 262, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 255, 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= 255, OverTh=false -Channel=TIME_35_05, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_14, ADC= 252, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 45 Run 290683, Event 7562149 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 6, 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= 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= 7, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 3, 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= -5, 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=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 3, 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= 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 6, 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= 0, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 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= 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= 257, 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 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= 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= 255, 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= 255, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 259, 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= 254, 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= 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= 259, 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= 256, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 46 Run 290683, Event 7562338 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 10, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= 19, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -10, OverTh=false -Channel=LUMI_12 , ADC= -12, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -11, OverTh=false -Channel=LUMI_37 , ADC= -23, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 282, OverTh=true -Channel=LUMI_15 , ADC= -9, OverTh=false -Channel=LUMI_39 , ADC= -7, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= -9, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 304, OverTh=true -Channel=LUMI_07 , ADC= 11, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 23, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 82, OverTh=true -Channel=LUMI_18 , ADC= 200, OverTh=true -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= -25, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 234, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 269, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 234, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 271, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 234, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 271, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 236, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 276, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 242, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 235, OverTh=false -Channel=TIME_29_13, ADC= 270, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 263, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 267, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 286, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 285, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 286, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 281, 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= 268, 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= 257, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 250, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 47 Run 290683, Event 7562372 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 14, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 9, 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= 8, 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= 2, OverTh=false -Channel=LUMI_37 , ADC= 16, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 271, OverTh=true -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 9, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 247, OverTh=true -Channel=LUMI_30 , ADC= 12, OverTh=false -Channel=LUMI_07 , ADC= 68, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 62, OverTh=true -Channel=LUMI_32 , ADC= 128, OverTh=true -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= -6, OverTh=false -Channel=LUMI_10 , ADC= -4, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 21, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= -5, OverTh=false -Channel=LUMI_42 , ADC= 13, OverTh=false -Channel=LUMI_19 , ADC= 147, OverTh=true -Channel=LUMI_43 , ADC= 311, OverTh=true -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 31, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 313, OverTh=true -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 234, OverTh=false -Channel=TIME_29_00, ADC= 294, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 236, OverTh=false -Channel=TIME_29_01, ADC= 293, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 265, OverTh=false -Channel=TIME_05_10, ADC= 236, OverTh=false -Channel=TIME_29_02, ADC= 290, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 238, OverTh=false -Channel=TIME_29_03, ADC= 291, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 248, OverTh=false -Channel=TIME_29_04, ADC= 286, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 270, OverTh=false -Channel=TIME_29_13, ADC= 272, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 283, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 288, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 278, OverTh=false -Channel=TIME_29_07, ADC= 251, OverTh=false -Channel=TIME_29_15, ADC= 293, OverTh=false -Channel=TIME_11_00, ADC= 250, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 294, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 290, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 248, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 289, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 249, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 283, 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= 271, OverTh=false -Channel=TIME_35_12, ADC= 265, OverTh=false -Channel=TIME_11_05, ADC= 264, OverTh=false -Channel=TIME_11_13, ADC= 250, OverTh=false -Channel=TIME_35_05, ADC= 262, OverTh=false -Channel=TIME_35_13, ADC= 279, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 249, OverTh=false -Channel=TIME_35_06, ADC= 250, OverTh=false -Channel=TIME_35_14, ADC= 296, OverTh=false -Channel=TIME_11_07, ADC= 270, OverTh=false -Channel=TIME_11_15, ADC= 247, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 299, OverTh=false PrintHeader_7bb0e124 INFO # 48 Run 290683, Event 7562396 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -9, OverTh=false -Channel=LUMI_24 , ADC= 136, OverTh=true -Channel=LUMI_01 , ADC= -20, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 14, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 26, OverTh=false -Channel=LUMI_28 , ADC= 9, OverTh=false -Channel=LUMI_12 , ADC= 142, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 156, OverTh=true -Channel=LUMI_37 , ADC= 28, OverTh=false -Channel=LUMI_14 , ADC= 460, OverTh=true -Channel=LUMI_38 , ADC= 327, OverTh=true -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 9, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 360, OverTh=true -Channel=LUMI_30 , ADC= 17, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 7, 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= -16, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 7, OverTh=false -Channel=LUMI_22 , ADC= 260, OverTh=true -Channel=LUMI_46 , ADC= -10, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 272, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 272, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 275, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 271, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 264, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 269, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 272, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 272, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 305, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 305, 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= 304, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 297, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 269, 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= 250, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 250, 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= 251, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 49 Run 290683, Event 7562997 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 229, OverTh=true -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 13, OverTh=false -Channel=LUMI_02 , ADC= -15, 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= 92, OverTh=true -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 71, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= 110, OverTh=true -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= 271, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 11, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 78, OverTh=true -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 17, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 14, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -9, OverTh=false -Channel=LUMI_34 , ADC= 6, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= 409, OverTh=true -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 314, OverTh=true -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 151, OverTh=true -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 360, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 265, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 264, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 269, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 276, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 274, OverTh=false -Channel=TIME_11_00, ADC= 324, 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= 328, 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= 325, 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= 316, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 275, OverTh=false -Channel=TIME_11_12, ADC= 286, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 249, OverTh=false -Channel=TIME_11_13, ADC= 327, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 242, OverTh=false -Channel=TIME_11_14, ADC= 346, OverTh=false -Channel=TIME_35_06, ADC= 253, OverTh=false -Channel=TIME_35_14, ADC= 261, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 339, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 50 Run 290683, Event 7573600 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 339, OverTh=true -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 8, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 14, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -4, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 26, OverTh=false -Channel=LUMI_14 , ADC= 7, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 172, OverTh=true -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 14, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 15, OverTh=false -Channel=LUMI_08 , ADC= 18, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 242, OverTh=false -Channel=TIME_29_00, ADC= 251, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 245, OverTh=false -Channel=TIME_29_01, ADC= 252, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 256, 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= 258, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 270, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 315, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 314, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 365, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 366, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 260, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 364, 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= 351, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 310, OverTh=false -Channel=TIME_35_12, ADC= 290, OverTh=false -Channel=TIME_11_05, ADC= 264, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 283, OverTh=false -Channel=TIME_35_13, ADC= 321, OverTh=false -Channel=TIME_11_06, ADC= 267, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 237, OverTh=false -Channel=TIME_35_14, ADC= 377, OverTh=false -Channel=TIME_11_07, ADC= 267, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 244, OverTh=false -Channel=TIME_35_15, ADC= 381, OverTh=false PrintHeader_7bb0e124 INFO # 51 Run 290683, Event 7573634 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 41, 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= 0, OverTh=false -Channel=LUMI_03 , ADC= -3, 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= -2, 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= -1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -5, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -11, 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= 3, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 89, OverTh=true -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= 11, OverTh=false -Channel=LUMI_43 , ADC= 115, OverTh=true -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_02, ADC= 254, 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= 259, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 252, 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= 255, 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= 254, 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= 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= 261, OverTh=false -Channel=TIME_11_08, ADC= 248, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 264, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 260, OverTh=false -Channel=TIME_11_11, ADC= 252, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 274, 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= 282, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 264, OverTh=false -Channel=TIME_11_07, ADC= 271, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 265, OverTh=false PrintHeader_7bb0e124 INFO # 52 Run 290683, Event 7573928 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 6, 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= 4, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, 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= 3, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -12, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 9, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 10, 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= -1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -7, 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= 1, 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= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 251, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 250, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 252, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 279, 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= 276, 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= 263, 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= 262, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_10, ADC= 256, 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= 256, OverTh=false -Channel=TIME_11_04, ADC= 253, 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= 262, 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= 266, 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= 262, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 53 Run 290683, Event 7573952 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 10, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 20, 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= 4, 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= 3, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -14, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 92, OverTh=true -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= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 89, OverTh=true -Channel=LUMI_41 , ADC= 389, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 286, OverTh=true -Channel=LUMI_43 , ADC= 117, OverTh=true -Channel=LUMI_20 , ADC= 38, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 290, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 290, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 292, 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= 289, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 275, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 262, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 252, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 259, 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= 255, 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= 256, 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= 258, 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= 256, 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= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 267, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 269, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 54 Run 290683, Event 7574023 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 19, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 9, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= -9, OverTh=false -Channel=LUMI_36 , ADC= 52, OverTh=true -Channel=LUMI_13 , ADC= 143, OverTh=true -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= 7, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 8, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -16, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 351, OverTh=true -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= -9, OverTh=false -Channel=LUMI_18 , ADC= -5, 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= 11, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 18, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -8, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 247, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 246, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 248, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 248, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 269, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 273, OverTh=false -Channel=TIME_05_13, ADC= 250, OverTh=false -Channel=TIME_29_05, ADC= 328, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 293, OverTh=false -Channel=TIME_05_14, ADC= 246, OverTh=false -Channel=TIME_29_06, ADC= 379, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 292, OverTh=false -Channel=TIME_05_15, ADC= 248, OverTh=false -Channel=TIME_29_07, ADC= 380, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 246, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 248, OverTh=false -Channel=TIME_35_09, ADC= 250, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 245, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 251, OverTh=false -Channel=TIME_35_03, ADC= 250, OverTh=false -Channel=TIME_35_11, ADC= 250, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 217, OverTh=false -Channel=TIME_35_04, ADC= 267, OverTh=false -Channel=TIME_35_12, ADC= 245, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 249, OverTh=false -Channel=TIME_35_05, ADC= 293, OverTh=false -Channel=TIME_35_13, ADC= 245, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 270, OverTh=false -Channel=TIME_35_06, ADC= 335, OverTh=false -Channel=TIME_35_14, ADC= 246, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 333, OverTh=false -Channel=TIME_35_15, ADC= 243, OverTh=false PrintHeader_7bb0e124 INFO # 55 Run 290683, Event 7574123 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= -8, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 312, OverTh=true -Channel=LUMI_02 , ADC= 21, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= -20, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 13, 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= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 90, OverTh=true -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 9, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 446, OverTh=true -Channel=LUMI_34 , ADC= 353, OverTh=true -Channel=LUMI_17 , ADC= 190, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 109, OverTh=true -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 61, OverTh=true -Channel=LUMI_20 , ADC= 694, OverTh=true -Channel=LUMI_44 , ADC= 91, OverTh=true -Channel=LUMI_21 , ADC= 349, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 37, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 269, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 264, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 266, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 261, 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= 262, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 275, 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= 297, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 273, OverTh=false -Channel=TIME_05_07, ADC= 301, OverTh=false -Channel=TIME_05_15, ADC= 272, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 275, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 253, 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= 254, 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= 253, 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= 254, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 257, 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= 257, OverTh=false -Channel=TIME_11_06, ADC= 255, 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 56 Run 290683, Event 7574149 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 4, 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= -2, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 2, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -5, OverTh=false -Channel=LUMI_40 , ADC= 10, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -11, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 12, 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= 0, OverTh=false -Channel=LUMI_34 , ADC= -13, OverTh=false -Channel=LUMI_17 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -7, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 271, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 266, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 266, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 251, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 249, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 267, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 284, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 286, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 263, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 261, 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= 260, OverTh=false -Channel=TIME_11_04, ADC= 252, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 252, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 269, 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= 267, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 57 Run 290683, Event 7574170 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 12, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 7, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 91, OverTh=true -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 118, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 14, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 17, 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= 9, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -15, OverTh=false -Channel=LUMI_42 , ADC= 15, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 4, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, 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= 253, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 254, 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= 257, 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= 258, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 253, 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= 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= 254, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 267, 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= 265, OverTh=false -Channel=TIME_11_15, ADC= 252, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 58 Run 290683, Event 7574488 -PlumeRawToDigits_89428f2d 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= 2, OverTh=false -Channel=LUMI_02 , ADC= -4, 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= 1, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 11, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 15, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 96, OverTh=true -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 26, 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= 0, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -7, 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= 3, OverTh=false -Channel=LUMI_43 , ADC= 18, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 21, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 9, OverTh=false -Channel=LUMI_46 , ADC= 28, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, 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= 258, 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= 257, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, 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= 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= 253, 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= 255, 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= 257, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 268, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 263, 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= 260, 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= 258, 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= 261, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, 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= 274, 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= 273, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 59 Run 290683, Event 7574509 -PlumeRawToDigits_89428f2d 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= 7, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 121, OverTh=true -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 55, OverTh=true -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 72, OverTh=true -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= -3, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= 115, OverTh=true -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= 3, OverTh=false -Channel=LUMI_10 , ADC= 132, OverTh=true -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 298, OverTh=true -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 25, OverTh=false -Channel=LUMI_42 , ADC= 265, OverTh=true -Channel=LUMI_19 , ADC= 29, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 7, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 306, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 302, 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= 301, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 253, OverTh=false -Channel=TIME_05_11, ADC= 298, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 250, OverTh=false -Channel=TIME_05_12, ADC= 286, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 227, OverTh=false -Channel=TIME_05_13, ADC= 263, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 212, 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= 214, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 471, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 468, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 459, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 440, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 365, OverTh=false -Channel=TIME_11_12, ADC= 308, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 270, OverTh=false -Channel=TIME_11_13, ADC= 409, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 215, OverTh=false -Channel=TIME_11_14, ADC= 495, OverTh=false -Channel=TIME_35_06, ADC= 251, OverTh=false -Channel=TIME_35_14, ADC= 269, OverTh=false -Channel=TIME_11_07, ADC= 225, OverTh=false -Channel=TIME_11_15, ADC= 489, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 266, OverTh=false PrintHeader_7bb0e124 INFO # 60 Run 290683, Event 7574518 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 352, OverTh=true -Channel=LUMI_26 , ADC= 345, OverTh=true -Channel=LUMI_03 , ADC= 11, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 59, OverTh=true -Channel=LUMI_15 , ADC= -6, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= -4, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -5, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= -11, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 5, 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= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 3, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 321, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 319, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 320, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 317, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 297, OverTh=false -Channel=TIME_05_12, ADC= 267, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 264, OverTh=false -Channel=TIME_05_13, ADC= 296, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 324, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 326, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 262, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 252, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 61 Run 290683, Event 7574527 -PlumeRawToDigits_89428f2d 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= 0, 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= 0, 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= -1, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -4, 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= -4, 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= -1, 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= 4, OverTh=false -Channel=LUMI_42 , ADC= 9, 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= -3, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 259, 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= 259, 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= 259, 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= 258, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 256, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 254, 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= 254, 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= 255, 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= 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= 255, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 256, 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= 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= 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= 259, 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 # 62 Run 290683, Event 7574603 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 351, OverTh=true -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= 4, OverTh=false -Channel=LUMI_12 , ADC= 638, OverTh=true -Channel=LUMI_36 , ADC= -6, 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= -11, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 8, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= -9, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= -15, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -2, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 307, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 306, 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= 306, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 302, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 282, 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= 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= 245, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 250, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 306, 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= 306, 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= 304, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 301, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 276, OverTh=false -Channel=TIME_11_12, ADC= 270, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 300, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 249, OverTh=false -Channel=TIME_11_14, ADC= 310, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 249, OverTh=false -Channel=TIME_11_15, ADC= 310, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 63 Run 290683, Event 7574693 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= -10, OverTh=false -Channel=LUMI_26 , ADC= -4, 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= -23, 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= -10, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 105, OverTh=true -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 12, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 271, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 269, 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= 268, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 269, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 266, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 267, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 272, OverTh=false -Channel=TIME_11_00, ADC= 245, OverTh=false -Channel=TIME_11_08, ADC= 378, OverTh=false -Channel=TIME_35_00, ADC= 250, OverTh=false -Channel=TIME_35_08, ADC= 333, OverTh=false -Channel=TIME_11_01, ADC= 248, OverTh=false -Channel=TIME_11_09, ADC= 381, OverTh=false -Channel=TIME_35_01, ADC= 253, OverTh=false -Channel=TIME_35_09, ADC= 339, OverTh=false -Channel=TIME_11_02, ADC= 251, OverTh=false -Channel=TIME_11_10, ADC= 375, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 335, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 362, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 317, OverTh=false -Channel=TIME_11_04, ADC= 263, OverTh=false -Channel=TIME_11_12, ADC= 300, OverTh=false -Channel=TIME_35_04, ADC= 262, OverTh=false -Channel=TIME_35_12, ADC= 275, OverTh=false -Channel=TIME_11_05, ADC= 275, OverTh=false -Channel=TIME_11_13, ADC= 242, OverTh=false -Channel=TIME_35_05, ADC= 263, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 279, OverTh=false -Channel=TIME_11_14, ADC= 229, OverTh=false -Channel=TIME_35_06, ADC= 265, OverTh=false -Channel=TIME_35_14, ADC= 241, OverTh=false -Channel=TIME_11_07, ADC= 277, OverTh=false -Channel=TIME_11_15, ADC= 234, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 245, OverTh=false PrintHeader_7bb0e124 INFO # 64 Run 290683, Event 7566192 -PlumeRawToDigits_89428f2d 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= 255, OverTh=true -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= 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= -11, 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= 9, OverTh=false -Channel=LUMI_40 , ADC= 11, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -6, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -6, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -6, 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= -4, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 261, 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= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 262, 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= 259, 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= 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= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, 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= 265, 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= 264, OverTh=false -Channel=TIME_11_00, ADC= 269, OverTh=false -Channel=TIME_11_08, ADC= 250, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 270, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 269, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 271, 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= 292, OverTh=false -Channel=TIME_11_12, ADC= 250, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 332, OverTh=false -Channel=TIME_11_13, ADC= 264, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 364, OverTh=false -Channel=TIME_11_14, ADC= 272, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 354, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 65 Run 290683, Event 7566266 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 16, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 238, OverTh=true -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 190, OverTh=true -Channel=LUMI_36 , ADC= 27, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= 275, OverTh=true -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 38, OverTh=false -Channel=LUMI_23 , ADC= 618, OverTh=true -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 12, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 12, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 138, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 308, OverTh=false -Channel=TIME_29_08, ADC= 250, OverTh=false -Channel=TIME_05_01, ADC= 137, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 308, OverTh=false -Channel=TIME_29_09, ADC= 250, OverTh=false -Channel=TIME_05_02, ADC= 139, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 307, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 150, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 306, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 184, OverTh=false -Channel=TIME_05_12, ADC= 237, OverTh=false -Channel=TIME_29_04, ADC= 287, OverTh=false -Channel=TIME_29_12, ADC= 263, OverTh=false -Channel=TIME_05_05, ADC= 246, OverTh=false -Channel=TIME_05_13, ADC= 188, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 299, OverTh=false -Channel=TIME_05_06, ADC= 277, OverTh=false -Channel=TIME_05_14, ADC= 129, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 314, OverTh=false -Channel=TIME_05_07, ADC= 276, OverTh=false -Channel=TIME_05_15, ADC= 130, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 311, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 253, 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= 254, 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= 254, 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= 254, 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= 264, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 267, OverTh=false -Channel=TIME_11_07, ADC= 262, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 265, OverTh=false PrintHeader_7bb0e124 INFO # 66 Run 290683, Event 7566875 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 407, OverTh=true -Channel=LUMI_25 , ADC= -2, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 12, OverTh=false -Channel=LUMI_36 , ADC= -8, 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= 2, OverTh=false -Channel=LUMI_15 , ADC= 373, OverTh=true -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= 16, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= 0, 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= -6, 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= -6, OverTh=false -Channel=LUMI_41 , ADC= -2, 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= 11, OverTh=false -Channel=LUMI_20 , ADC= 0, 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= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 259, 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= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, 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= 257, 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= 253, 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= 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= 259, OverTh=false -Channel=TIME_05_15, ADC= 256, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 262, 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= 261, 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= 263, 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= 260, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 256, 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= 254, OverTh=false -Channel=TIME_11_14, ADC= 253, 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= 256, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 67 Run 290683, Event 7566887 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 156, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 72, OverTh=true -Channel=LUMI_25 , ADC= 804, OverTh=true -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= -6, OverTh=false -Channel=LUMI_03 , ADC= 12, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 112, OverTh=true -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 38, OverTh=false -Channel=LUMI_13 , ADC= 49, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 845, OverTh=true -Channel=LUMI_47 , ADC= 13, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 16, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 13, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 7, 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= 10, OverTh=false -Channel=LUMI_42 , ADC= 11, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 7, 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= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 337, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 273, OverTh=false -Channel=TIME_29_08, ADC= 171, OverTh=false -Channel=TIME_05_01, ADC= 337, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 264, OverTh=false -Channel=TIME_29_09, ADC= 172, OverTh=false -Channel=TIME_05_02, ADC= 331, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 172, OverTh=false -Channel=TIME_05_03, ADC= 329, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 172, OverTh=false -Channel=TIME_05_04, ADC= 308, OverTh=false -Channel=TIME_05_12, ADC= 264, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 187, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 295, OverTh=false -Channel=TIME_29_05, ADC= 268, OverTh=false -Channel=TIME_29_13, ADC= 235, OverTh=false -Channel=TIME_05_06, ADC= 246, OverTh=false -Channel=TIME_05_14, ADC= 344, OverTh=false -Channel=TIME_29_06, ADC= 274, OverTh=false -Channel=TIME_29_14, ADC= 277, OverTh=false -Channel=TIME_05_07, ADC= 245, OverTh=false -Channel=TIME_05_15, ADC= 347, OverTh=false -Channel=TIME_29_07, ADC= 273, OverTh=false -Channel=TIME_29_15, ADC= 278, OverTh=false -Channel=TIME_11_00, ADC= 266, 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= 264, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 258, 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 266, 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= 279, 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= 275, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 68 Run 290683, Event 7566925 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 12, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 7, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 427, OverTh=true -Channel=LUMI_37 , ADC= 393, OverTh=true -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 118, OverTh=true -Channel=LUMI_15 , ADC= -4, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -12, OverTh=false -Channel=LUMI_30 , ADC= 139, OverTh=true -Channel=LUMI_07 , ADC= -1, 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= -1, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= -2, 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= -2, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 308, OverTh=false -Channel=TIME_29_00, ADC= 274, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 307, OverTh=false -Channel=TIME_29_01, ADC= 272, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 309, OverTh=false -Channel=TIME_29_02, ADC= 268, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 306, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 251, OverTh=false -Channel=TIME_05_12, ADC= 268, OverTh=false -Channel=TIME_29_04, ADC= 263, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 242, OverTh=false -Channel=TIME_05_13, ADC= 232, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 236, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 291, OverTh=false -Channel=TIME_05_07, ADC= 229, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 290, OverTh=false -Channel=TIME_11_00, ADC= 251, OverTh=false -Channel=TIME_11_08, ADC= 321, OverTh=false -Channel=TIME_35_00, ADC= 275, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 322, OverTh=false -Channel=TIME_35_01, ADC= 277, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 319, OverTh=false -Channel=TIME_35_02, ADC= 277, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 316, OverTh=false -Channel=TIME_35_03, ADC= 273, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 238, OverTh=false -Channel=TIME_11_12, ADC= 286, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 264, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 272, OverTh=false -Channel=TIME_11_06, ADC= 268, OverTh=false -Channel=TIME_11_14, ADC= 244, OverTh=false -Channel=TIME_35_06, ADC= 252, OverTh=false -Channel=TIME_35_14, ADC= 278, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 244, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 275, OverTh=false PrintHeader_7bb0e124 INFO # 69 Run 290683, Event 7602027 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 15, OverTh=false -Channel=LUMI_01 , ADC= 4, 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= 16, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 6, 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= -2, 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= 4, OverTh=false -Channel=LUMI_40 , ADC= 6, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= -7, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 18, OverTh=false -Channel=LUMI_33 , ADC= 12, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 13, 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= -9, OverTh=false -Channel=LUMI_43 , ADC= 10, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 12, OverTh=false -Channel=LUMI_22 , ADC= -10, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 268, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 267, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 300, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 389, 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= 458, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 456, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 262, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 256, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 258, 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= 269, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 321, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 352, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 265, OverTh=false -Channel=TIME_35_06, ADC= 382, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 384, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 70 Run 290683, Event 7602065 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -3, 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= -4, 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= -16, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= -4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -3, 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= -4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , 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= -1, OverTh=false -Channel=LUMI_08 , ADC= 373, OverTh=true -Channel=LUMI_32 , ADC= 416, OverTh=true -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= 374, OverTh=true -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 15, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 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= 254, OverTh=false -Channel=TIME_05_03, ADC= 260, 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= 264, 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= 269, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 281, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 281, 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= 259, 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= 259, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, 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= 255, 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= 254, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 260, 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 71 Run 290683, Event 7602262 -PlumeRawToDigits_89428f2d 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= -2, 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= 6, 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= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, 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= 6, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= -5, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 8, OverTh=false -Channel=LUMI_34 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, 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= 257, OverTh=false -Channel=TIME_29_01, ADC= 255, 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= 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= 253, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 259, 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= 260, 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= 260, OverTh=false -Channel=TIME_29_06, ADC= 253, 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= 256, 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= 259, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 256, OverTh=false -Channel=TIME_35_03, ADC= 258, 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= 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= 257, 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= 257, 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 # 72 Run 290683, Event 7602351 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 411, OverTh=true -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -13, OverTh=false -Channel=LUMI_36 , ADC= 0, 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= -3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 18, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 11, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= -7, 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= -6, 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= -2, OverTh=false -Channel=LUMI_41 , ADC= 28, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -8, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 252, OverTh=false -Channel=TIME_05_08, ADC= 297, OverTh=false -Channel=TIME_29_00, ADC= 252, OverTh=false -Channel=TIME_29_08, ADC= 279, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 302, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 277, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 302, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 280, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 298, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 278, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 272, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 270, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 250, 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= 251, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 257, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 259, 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= 259, 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= 256, 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= 256, OverTh=false -Channel=TIME_35_12, ADC= 255, 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= 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= 256, OverTh=false -Channel=TIME_11_07, ADC= 254, 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 # 73 Run 290683, Event 7602601 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, 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= 1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 6, 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= 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= 7, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 5, 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= 6, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 4, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 260, 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= 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= 259, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 260, 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= 258, 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 254, 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= 256, 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= 252, OverTh=false -Channel=TIME_35_08, ADC= 257, 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= 256, 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 263, 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= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 74 Run 290683, Event 7602839 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 52, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 20, OverTh=false -Channel=LUMI_02 , ADC= 319, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 120, OverTh=true -Channel=LUMI_27 , ADC= 137, OverTh=true -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= 1, OverTh=false -Channel=LUMI_13 , ADC= -12, 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= 7, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 424, OverTh=true -Channel=LUMI_47 , ADC= 40, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 20, OverTh=false -Channel=LUMI_31 , ADC= -6, OverTh=false -Channel=LUMI_08 , ADC= 11, 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= 2, OverTh=false -Channel=LUMI_34 , ADC= 42, OverTh=false -Channel=LUMI_17 , ADC= -7, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 24, OverTh=false -Channel=LUMI_42 , ADC= 20, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 249, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 282, OverTh=false -Channel=TIME_05_12, ADC= 242, OverTh=false -Channel=TIME_29_04, ADC= 263, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 314, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 281, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 355, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 299, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 347, OverTh=false -Channel=TIME_05_15, ADC= 266, OverTh=false -Channel=TIME_29_07, ADC= 297, 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 272, 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= 266, 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= 265, OverTh=false -Channel=TIME_11_03, ADC= 255, 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= 263, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 281, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 292, 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= 293, 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 # 75 Run 290683, Event 7563002 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 16, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 232, OverTh=true -Channel=LUMI_25 , ADC= 125, OverTh=true -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= -5, OverTh=false -Channel=LUMI_04 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= -8, OverTh=false -Channel=LUMI_15 , ADC= -18, 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= 5, OverTh=false -Channel=LUMI_47 , ADC= 648, OverTh=true -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 170, OverTh=true -Channel=LUMI_30 , ADC= 161, OverTh=true -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 46, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 134, OverTh=true -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 38, OverTh=false -Channel=LUMI_41 , ADC= 464, OverTh=true -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 317, OverTh=true -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 509, OverTh=true -Channel=LUMI_45 , ADC= 10, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 260, 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= 257, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 259, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 261, 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= 259, OverTh=false -Channel=TIME_11_00, ADC= 262, 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= 265, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 265, 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= 263, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 264, 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= 266, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 262, 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= 263, 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 # 76 Run 290683, Event 7563301 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 375, OverTh=true -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, 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= -1, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= -2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -7, OverTh=false -Channel=LUMI_39 , ADC= -6, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -5, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 256, OverTh=true -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 4, 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= 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= 1, OverTh=false -Channel=LUMI_18 , ADC= 71, OverTh=true -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 254, 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= 253, 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= 253, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 252, 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= 253, 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= 253, OverTh=false -Channel=TIME_35_00, ADC= 268, 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= 268, 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= 268, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 264, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 260, OverTh=false -Channel=TIME_35_12, ADC= 261, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 266, OverTh=false -Channel=TIME_11_06, ADC= 267, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 271, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 271, OverTh=false PrintHeader_7bb0e124 INFO # 77 Run 290683, Event 7563648 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= -9, 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= 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= 7, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -8, 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=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -9, OverTh=false -Channel=LUMI_07 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= -9, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -7, 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= 2, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -7, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 252, 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= 254, 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= 255, 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 247, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 253, 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= 263, 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= 265, 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= 270, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 269, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 267, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 267, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 266, 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= 261, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 269, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 264, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 269, OverTh=false -Channel=TIME_35_07, ADC= 251, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 78 Run 290683, Event 7563785 -PlumeRawToDigits_89428f2d 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= -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= 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= 3, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 12, 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= -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= -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= -5, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 257, 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= 259, 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= 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 259, 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= 258, 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= 260, 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= 260, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 255, 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= 257, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 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= 260, 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= 260, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 79 Run 290683, Event 7600238 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 19, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 13, OverTh=false -Channel=LUMI_28 , ADC= 11, OverTh=false -Channel=LUMI_12 , ADC= 297, OverTh=true -Channel=LUMI_36 , ADC= 295, OverTh=true -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 291, OverTh=true -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 15, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 438, OverTh=true -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 493, OverTh=true -Channel=LUMI_30 , ADC= 427, OverTh=true -Channel=LUMI_07 , ADC= 26, OverTh=false -Channel=LUMI_31 , ADC= 21, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 71, OverTh=true -Channel=LUMI_33 , ADC= 76, OverTh=true -Channel=LUMI_10 , ADC= 264, OverTh=true -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 28, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 316, OverTh=true -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= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 420, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 248, OverTh=false -Channel=TIME_29_09, ADC= 415, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 250, OverTh=false -Channel=TIME_29_10, ADC= 415, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 250, OverTh=false -Channel=TIME_29_11, ADC= 407, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 249, OverTh=false -Channel=TIME_29_12, ADC= 353, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 249, OverTh=false -Channel=TIME_29_13, ADC= 253, OverTh=false -Channel=TIME_05_06, ADC= 262, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 242, OverTh=false -Channel=TIME_29_14, ADC= 228, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 243, OverTh=false -Channel=TIME_29_15, ADC= 230, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 268, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 271, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 268, 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= 266, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 253, OverTh=false -Channel=TIME_11_12, ADC= 265, OverTh=false -Channel=TIME_35_04, ADC= 281, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 244, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 308, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 241, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 350, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 241, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 347, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 80 Run 290683, Event 7600312 -PlumeRawToDigits_89428f2d 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= 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= 5, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= -3, 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= 0, 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= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_09 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 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=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 262, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 260, 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= 260, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 258, 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= 258, 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= 258, 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= 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= 256, 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= 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 # 81 Run 290683, Event 7600396 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 13, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 133, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 106, OverTh=true -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 69, OverTh=true -Channel=LUMI_13 , ADC= 543, OverTh=true -Channel=LUMI_37 , ADC= 6, OverTh=false -Channel=LUMI_14 , ADC= 267, OverTh=true -Channel=LUMI_38 , ADC= 107, OverTh=true -Channel=LUMI_15 , ADC= 122, OverTh=true -Channel=LUMI_39 , ADC= 193, OverTh=true -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 336, OverTh=true -Channel=LUMI_30 , ADC= 36, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 228, OverTh=true -Channel=LUMI_08 , ADC= 21, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 569, OverTh=true -Channel=LUMI_33 , ADC= 388, OverTh=true -Channel=LUMI_10 , ADC= 434, OverTh=true -Channel=LUMI_34 , ADC= 205, OverTh=true -Channel=LUMI_17 , ADC= 328, OverTh=true -Channel=LUMI_41 , ADC= 481, OverTh=true -Channel=LUMI_18 , ADC= 550, OverTh=true -Channel=LUMI_42 , ADC= 160, OverTh=true -Channel=LUMI_19 , ADC= 16, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= 288, OverTh=true -Channel=LUMI_44 , ADC= 305, OverTh=true -Channel=LUMI_21 , ADC= -7, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 367, OverTh=true -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 293, OverTh=false -Channel=TIME_05_08, ADC= 398, OverTh=false -Channel=TIME_29_00, ADC= 286, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 297, OverTh=false -Channel=TIME_05_09, ADC= 397, OverTh=false -Channel=TIME_29_01, ADC= 284, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 301, OverTh=false -Channel=TIME_05_10, ADC= 393, OverTh=false -Channel=TIME_29_02, ADC= 282, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 298, OverTh=false -Channel=TIME_05_11, ADC= 389, OverTh=false -Channel=TIME_29_03, ADC= 282, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 283, OverTh=false -Channel=TIME_05_12, ADC= 363, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 265, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 316, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 276, OverTh=false -Channel=TIME_05_06, ADC= 248, OverTh=false -Channel=TIME_05_14, ADC= 290, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 286, OverTh=false -Channel=TIME_05_07, ADC= 248, OverTh=false -Channel=TIME_05_15, ADC= 286, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 287, OverTh=false -Channel=TIME_11_00, ADC= 388, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 261, OverTh=false -Channel=TIME_11_01, ADC= 387, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 383, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 363, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 304, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 275, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 367, OverTh=false -Channel=TIME_35_05, ADC= 292, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 237, OverTh=false -Channel=TIME_11_14, ADC= 403, OverTh=false -Channel=TIME_35_06, ADC= 314, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 242, OverTh=false -Channel=TIME_11_15, ADC= 398, OverTh=false -Channel=TIME_35_07, ADC= 317, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 82 Run 290683, Event 7600905 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 55, OverTh=true -Channel=LUMI_24 , ADC= 79, OverTh=true -Channel=LUMI_01 , ADC= 541, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 678, OverTh=true -Channel=LUMI_26 , ADC= 10, OverTh=false -Channel=LUMI_03 , ADC= 238, OverTh=true -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 205, OverTh=true -Channel=LUMI_36 , ADC= 167, OverTh=true -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 18, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 290, OverTh=true -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= 6, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 128, OverTh=true -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= 189, OverTh=true -Channel=LUMI_31 , ADC= 241, OverTh=true -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 22, OverTh=false -Channel=LUMI_34 , ADC= 9, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 11, OverTh=false -Channel=LUMI_19 , ADC= 126, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -9, OverTh=false -Channel=LUMI_21 , ADC= 8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 416, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 279, OverTh=false -Channel=TIME_29_08, ADC= 251, OverTh=false -Channel=TIME_05_01, ADC= 413, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 280, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 406, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 282, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 400, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 279, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 351, OverTh=false -Channel=TIME_05_12, ADC= 285, OverTh=false -Channel=TIME_29_04, ADC= 280, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 363, OverTh=false -Channel=TIME_29_05, ADC= 278, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 228, OverTh=false -Channel=TIME_05_14, ADC= 430, OverTh=false -Channel=TIME_29_06, ADC= 275, OverTh=false -Channel=TIME_29_14, ADC= 270, OverTh=false -Channel=TIME_05_07, ADC= 228, OverTh=false -Channel=TIME_05_15, ADC= 432, OverTh=false -Channel=TIME_29_07, ADC= 268, OverTh=false -Channel=TIME_29_15, ADC= 277, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 399, 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= 403, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 392, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 370, OverTh=false -Channel=TIME_35_11, ADC= 268, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 296, OverTh=false -Channel=TIME_35_12, ADC= 322, 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= 373, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 228, OverTh=false -Channel=TIME_35_14, ADC= 423, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 233, OverTh=false -Channel=TIME_35_15, ADC= 416, OverTh=false PrintHeader_7bb0e124 INFO # 83 Run 290683, Event 7604003 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 91, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 122, OverTh=true -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= 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 385, OverTh=true -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= -5, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 391, OverTh=true -Channel=LUMI_33 , ADC= -5, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 295, OverTh=true -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= 0, OverTh=false -Channel=LUMI_19 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 259, 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= 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= 254, OverTh=false -Channel=TIME_05_11, ADC= 255, 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= 253, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 258, 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= 255, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 255, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 256, 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= 260, 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= 255, 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= 257, 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= 256, 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= 257, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 84 Run 290683, Event 7604102 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= 11, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= 16, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 14, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 15, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= 17, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 9, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 21, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -25, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 12, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 9, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 251, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 249, OverTh=false -Channel=TIME_05_09, ADC= 262, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 265, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 262, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 252, 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= 253, 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= 255, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 252, 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= 260, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 262, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 255, 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= 254, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 262, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 85 Run 290683, Event 7604738 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 71, OverTh=true -Channel=LUMI_24 , ADC= 98, OverTh=true -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 10, OverTh=false -Channel=LUMI_03 , ADC= 23, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= -2, 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= 6, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 45, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= 23, OverTh=false -Channel=LUMI_33 , ADC= -5, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= -12, OverTh=false -Channel=LUMI_42 , ADC= -5, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 92, OverTh=true -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 263, OverTh=false -Channel=TIME_05_08, ADC= 226, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 381, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 225, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 377, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 222, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 376, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 230, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 371, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 243, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 340, 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= 269, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 241, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 266, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 246, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 261, 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= 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, 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= 256, 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= 255, 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= 258, OverTh=false -Channel=TIME_35_14, ADC= 268, 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= 265, OverTh=false PrintHeader_7bb0e124 INFO # 86 Run 290683, Event 7604780 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 19, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= -4, OverTh=false -Channel=LUMI_03 , ADC= 44, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -5, 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= 3, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= 55, OverTh=true -Channel=LUMI_47 , ADC= 210, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -12, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 16, 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= 13, OverTh=false -Channel=LUMI_41 , ADC= 151, OverTh=true -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 333, 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= 336, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 333, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 326, 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= 298, OverTh=false -Channel=TIME_05_12, ADC= 272, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 264, OverTh=false -Channel=TIME_05_13, ADC= 309, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 246, OverTh=false -Channel=TIME_05_14, ADC= 337, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 259, OverTh=false -Channel=TIME_05_07, ADC= 248, OverTh=false -Channel=TIME_05_15, ADC= 338, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 260, 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= 262, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, 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= 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= 254, 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= 258, 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= 258, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 87 Run 290683, Event 7604844 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 168, OverTh=true -Channel=LUMI_24 , ADC= 409, OverTh=true -Channel=LUMI_01 , ADC= -5, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 67, OverTh=true -Channel=LUMI_03 , ADC= 25, OverTh=false -Channel=LUMI_27 , ADC= 80, OverTh=true -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 183, OverTh=true -Channel=LUMI_13 , ADC= 27, OverTh=false -Channel=LUMI_37 , ADC= 17, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 53, OverTh=true -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 23, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -15, OverTh=false -Channel=LUMI_47 , ADC= 32, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= -26, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 41, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 54, OverTh=true -Channel=LUMI_32 , ADC= 10, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 128, OverTh=true -Channel=LUMI_10 , ADC= 13, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 269, OverTh=true -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 444, OverTh=true -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -5, 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= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 245, OverTh=false -Channel=TIME_05_08, ADC= 401, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 402, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 397, OverTh=false -Channel=TIME_29_02, ADC= 267, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 381, OverTh=false -Channel=TIME_29_03, ADC= 263, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 321, OverTh=false -Channel=TIME_29_04, ADC= 264, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 263, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 229, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 268, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 235, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 264, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 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= 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= 257, 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= 260, OverTh=false PrintHeader_7bb0e124 INFO # 88 Run 290683, Event 7596014 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 28, OverTh=false -Channel=LUMI_24 , ADC= 373, OverTh=true -Channel=LUMI_01 , ADC= 47, OverTh=false -Channel=LUMI_25 , ADC= 144, OverTh=true -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= 3, OverTh=false -Channel=LUMI_04 , ADC= 97, OverTh=true -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 612, OverTh=true -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 8, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= 316, OverTh=true -Channel=LUMI_15 , ADC= 89, OverTh=true -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 84, OverTh=true -Channel=LUMI_40 , ADC= 193, OverTh=true -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 256, OverTh=true -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 332, OverTh=true -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 14, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 398, OverTh=true -Channel=LUMI_33 , ADC= 61, OverTh=true -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= 12, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= -2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 347, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 348, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 343, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 335, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 298, OverTh=false -Channel=TIME_05_12, ADC= 282, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 330, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 358, 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= 355, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 264, 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= 262, 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= 260, OverTh=false -Channel=TIME_35_02, ADC= 260, 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= 260, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 263, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 89 Run 290683, Event 7596162 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 12, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 177, OverTh=true -Channel=LUMI_38 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 1, 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= -7, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 256, OverTh=false -Channel=TIME_05_01, ADC= 254, 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= 259, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 268, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 293, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 312, 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= 316, OverTh=false -Channel=TIME_05_15, ADC= 254, 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= 253, 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= 255, 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= 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= 253, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 263, 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= 266, 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= 268, 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= 268, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 90 Run 290683, Event 7596215 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, 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= 2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 309, OverTh=true -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 252, OverTh=true -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 14, OverTh=false -Channel=LUMI_07 , ADC= 5, 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= 7, 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= 34, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= -4, 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= 5, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 9, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 262, 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= 262, 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= 262, 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= 261, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 263, 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= 264, 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= 263, OverTh=false -Channel=TIME_05_15, ADC= 254, 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= 287, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 287, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 288, 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= 286, 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= 275, 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= 258, 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= 253, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 91 Run 290683, Event 7596351 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 13, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 144, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 227, OverTh=true -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 135, OverTh=true -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 14, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= -10, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 12, OverTh=false -Channel=LUMI_42 , ADC= 139, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 15, 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= 298, OverTh=true -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 271, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 270, 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= 270, 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= 270, 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= 264, 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= 254, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 250, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 250, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 293, OverTh=false -Channel=TIME_11_08, ADC= 400, OverTh=false -Channel=TIME_35_00, ADC= 341, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 298, OverTh=false -Channel=TIME_11_09, ADC= 403, OverTh=false -Channel=TIME_35_01, ADC= 348, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 299, OverTh=false -Channel=TIME_11_10, ADC= 396, OverTh=false -Channel=TIME_35_02, ADC= 344, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 297, OverTh=false -Channel=TIME_11_11, ADC= 385, OverTh=false -Channel=TIME_35_03, ADC= 331, OverTh=false -Channel=TIME_35_11, ADC= 251, OverTh=false -Channel=TIME_11_04, ADC= 279, OverTh=false -Channel=TIME_11_12, ADC= 334, OverTh=false -Channel=TIME_35_04, ADC= 285, OverTh=false -Channel=TIME_35_12, ADC= 283, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 294, OverTh=false -Channel=TIME_35_05, ADC= 270, OverTh=false -Channel=TIME_35_13, ADC= 311, OverTh=false -Channel=TIME_11_06, ADC= 229, OverTh=false -Channel=TIME_11_14, ADC= 275, OverTh=false -Channel=TIME_35_06, ADC= 269, OverTh=false -Channel=TIME_35_14, ADC= 335, OverTh=false -Channel=TIME_11_07, ADC= 227, OverTh=false -Channel=TIME_11_15, ADC= 282, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 335, OverTh=false PrintHeader_7bb0e124 INFO # 92 Run 290683, Event 7596432 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= -11, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 3, 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= 1, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= -5, 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= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -5, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -8, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 258, 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= 260, 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= 260, 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= 258, OverTh=false -Channel=TIME_29_12, ADC= 260, 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= 259, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 254, 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= 256, OverTh=false -Channel=TIME_35_06, ADC= 258, 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 # 93 Run 290683, Event 7596687 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 12, 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= 46, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= 14, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 67, OverTh=true -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= 15, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 11, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 225, OverTh=true -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 29, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 287, OverTh=true -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -9, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 343, OverTh=false -Channel=TIME_29_00, ADC= 262, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 341, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 341, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 338, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 240, OverTh=false -Channel=TIME_05_12, ADC= 307, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 205, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 169, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 169, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_11, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, 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= 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 94 Run 290683, Event 7596757 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, 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= 156, OverTh=true -Channel=LUMI_26 , ADC= -3, 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= -2, OverTh=false -Channel=LUMI_12 , ADC= 20, 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= -5, 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= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 500, OverTh=true -Channel=LUMI_41 , ADC= 474, OverTh=true -Channel=LUMI_18 , ADC= 81, OverTh=true -Channel=LUMI_42 , ADC= 230, OverTh=true -Channel=LUMI_19 , ADC= 287, OverTh=true -Channel=LUMI_43 , ADC= 226, OverTh=true -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 60, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 264, 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= 264, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, 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= 254, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 259, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 264, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 274, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 267, 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= 265, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 306, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 300, OverTh=false PrintHeader_7bb0e124 INFO # 95 Run 290683, Event 7596761 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 15, OverTh=false -Channel=LUMI_24 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 135, OverTh=true -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= 0, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 336, OverTh=true -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= -1, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 92, OverTh=true -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 14, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 109, OverTh=true -Channel=LUMI_20 , ADC= 30, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 20, OverTh=false -Channel=LUMI_45 , ADC= 299, OverTh=true -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 260, 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= 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= 257, 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= 259, 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 252, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 261, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 317, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 317, 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= 313, 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= 308, 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= 302, OverTh=false -Channel=TIME_35_12, ADC= 291, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 312, OverTh=false -Channel=TIME_35_13, ADC= 312, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 334, OverTh=false -Channel=TIME_35_14, ADC= 326, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 339, OverTh=false -Channel=TIME_35_15, ADC= 322, OverTh=false PrintHeader_7bb0e124 INFO # 96 Run 290683, Event 7590062 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 4, 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= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 336, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 53, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -8, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 374, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 6, 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= -2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 21, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -4, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 259, 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= 263, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 260, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 249, 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= 255, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 263, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 263, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 252, 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= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 253, 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= 258, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 266, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 262, 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 # 97 Run 290683, Event 7590065 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= 12, 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= 4, OverTh=false -Channel=LUMI_03 , ADC= 25, 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= 4, OverTh=false -Channel=LUMI_36 , ADC= 2, 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= 111, OverTh=true -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 102, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 19, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 412, OverTh=true -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 202, OverTh=true -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 52, OverTh=true -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 25, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 5, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 312, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 267, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 312, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 310, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 309, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 266, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 323, OverTh=false -Channel=TIME_05_12, ADC= 267, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 351, OverTh=false -Channel=TIME_05_13, ADC= 287, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 262, OverTh=false -Channel=TIME_05_06, ADC= 376, OverTh=false -Channel=TIME_05_14, ADC= 314, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 266, OverTh=false -Channel=TIME_05_07, ADC= 376, OverTh=false -Channel=TIME_05_15, ADC= 317, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 268, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 268, 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= 270, 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= 271, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 270, 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= 269, 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= 264, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 251, OverTh=false -Channel=TIME_11_14, ADC= 260, 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 98 Run 290683, Event 7590069 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 694, OverTh=true -Channel=LUMI_24 , ADC= 655, OverTh=true -Channel=LUMI_01 , ADC= 628, OverTh=true -Channel=LUMI_25 , ADC= 703, OverTh=true -Channel=LUMI_02 , ADC= 760, OverTh=true -Channel=LUMI_26 , ADC= 623, OverTh=true -Channel=LUMI_03 , ADC= 709, OverTh=true -Channel=LUMI_27 , ADC= 830, OverTh=true -Channel=LUMI_04 , ADC= 701, OverTh=true -Channel=LUMI_28 , ADC= 757, OverTh=true -Channel=LUMI_12 , ADC= 716, OverTh=true -Channel=LUMI_36 , ADC= 732, OverTh=true -Channel=LUMI_13 , ADC= 766, OverTh=true -Channel=LUMI_37 , ADC= 818, OverTh=true -Channel=LUMI_14 , ADC= 661, OverTh=true -Channel=LUMI_38 , ADC= 711, OverTh=true -Channel=LUMI_15 , ADC= 843, OverTh=true -Channel=LUMI_39 , ADC= 805, OverTh=true -Channel=LUMI_16 , ADC= 637, OverTh=true -Channel=LUMI_40 , ADC= 798, OverTh=true -Channel=LUMI_23 , ADC= 743, OverTh=true -Channel=LUMI_47 , ADC= 707, OverTh=true -Channel=PIN_01 , ADC= 64, OverTh=false -Channel=PIN_02 , ADC= 79, OverTh=false -Channel=PIN_03 , ADC= 68, OverTh=false -Channel=PIN_04 , ADC= 77, OverTh=false -Channel=PIN_08 , ADC= 80, OverTh=false -Channel=PIN_09 , ADC= 88, OverTh=false -Channel=PIN_06 , ADC= 67, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 676, OverTh=true -Channel=LUMI_30 , ADC= 694, OverTh=true -Channel=LUMI_07 , ADC= 781, OverTh=true -Channel=LUMI_31 , ADC= 784, OverTh=true -Channel=LUMI_08 , ADC= 711, OverTh=true -Channel=LUMI_32 , ADC= 692, OverTh=true -Channel=LUMI_09 , ADC= 756, OverTh=true -Channel=LUMI_33 , ADC= 794, OverTh=true -Channel=LUMI_10 , ADC= 853, OverTh=true -Channel=LUMI_34 , ADC= 715, OverTh=true -Channel=LUMI_17 , ADC= 702, OverTh=true -Channel=LUMI_41 , ADC= 716, OverTh=true -Channel=LUMI_18 , ADC= 804, OverTh=true -Channel=LUMI_42 , ADC= 788, OverTh=true -Channel=LUMI_19 , ADC= 726, OverTh=true -Channel=LUMI_43 , ADC= 763, OverTh=true -Channel=LUMI_20 , ADC= 643, OverTh=true -Channel=LUMI_44 , ADC= 868, OverTh=true -Channel=LUMI_21 , ADC= 717, OverTh=true -Channel=LUMI_45 , ADC= 863, OverTh=true -Channel=LUMI_22 , ADC= 820, OverTh=true -Channel=LUMI_46 , ADC= 704, OverTh=true -Channel=MON_01 , ADC= 129, OverTh=false -Channel=MON_02 , ADC= 144, OverTh=false -Channel=MON_03 , ADC= 142, OverTh=false -Channel=MON_04 , ADC= 133, OverTh=false -Channel=TIME_05_00, ADC= 507, OverTh=false -Channel=TIME_05_08, ADC= 265, OverTh=false -Channel=TIME_29_00, ADC= 513, OverTh=false -Channel=TIME_29_08, ADC= 270, OverTh=false -Channel=TIME_05_01, ADC= 476, OverTh=false -Channel=TIME_05_09, ADC= 289, OverTh=false -Channel=TIME_29_01, ADC= 475, OverTh=false -Channel=TIME_29_09, ADC= 292, OverTh=false -Channel=TIME_05_02, ADC= 401, OverTh=false -Channel=TIME_05_10, ADC= 346, OverTh=false -Channel=TIME_29_02, ADC= 404, OverTh=false -Channel=TIME_29_10, ADC= 344, OverTh=false -Channel=TIME_05_03, ADC= 318, OverTh=false -Channel=TIME_05_11, ADC= 429, OverTh=false -Channel=TIME_29_03, ADC= 340, OverTh=false -Channel=TIME_29_11, ADC= 409, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 484, OverTh=false -Channel=TIME_29_04, ADC= 265, OverTh=false -Channel=TIME_29_12, ADC= 487, OverTh=false -Channel=TIME_05_05, ADC= 237, OverTh=false -Channel=TIME_05_13, ADC= 521, OverTh=false -Channel=TIME_29_05, ADC= 229, OverTh=false -Channel=TIME_29_13, ADC= 530, OverTh=false -Channel=TIME_05_06, ADC= 231, OverTh=false -Channel=TIME_05_14, ADC= 542, OverTh=false -Channel=TIME_29_06, ADC= 225, OverTh=false -Channel=TIME_29_14, ADC= 549, OverTh=false -Channel=TIME_05_07, ADC= 238, OverTh=false -Channel=TIME_05_15, ADC= 533, OverTh=false -Channel=TIME_29_07, ADC= 231, OverTh=false -Channel=TIME_29_15, ADC= 543, OverTh=false -Channel=TIME_11_00, ADC= 461, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 383, OverTh=false -Channel=TIME_35_08, ADC= 282, OverTh=false -Channel=TIME_11_01, ADC= 425, OverTh=false -Channel=TIME_11_09, ADC= 293, OverTh=false -Channel=TIME_35_01, ADC= 334, OverTh=false -Channel=TIME_35_09, ADC= 334, OverTh=false -Channel=TIME_11_02, ADC= 354, OverTh=false -Channel=TIME_11_10, ADC= 350, OverTh=false -Channel=TIME_35_02, ADC= 274, OverTh=false -Channel=TIME_35_10, ADC= 392, OverTh=false -Channel=TIME_11_03, ADC= 294, OverTh=false -Channel=TIME_11_11, ADC= 407, OverTh=false -Channel=TIME_35_03, ADC= 239, OverTh=false -Channel=TIME_35_11, ADC= 430, OverTh=false -Channel=TIME_11_04, ADC= 249, OverTh=false -Channel=TIME_11_12, ADC= 452, OverTh=false -Channel=TIME_35_04, ADC= 238, OverTh=false -Channel=TIME_35_12, ADC= 439, OverTh=false -Channel=TIME_11_05, ADC= 229, OverTh=false -Channel=TIME_11_13, ADC= 484, OverTh=false -Channel=TIME_35_05, ADC= 237, OverTh=false -Channel=TIME_35_13, ADC= 439, OverTh=false -Channel=TIME_11_06, ADC= 232, OverTh=false -Channel=TIME_11_14, ADC= 495, OverTh=false -Channel=TIME_35_06, ADC= 244, OverTh=false -Channel=TIME_35_14, ADC= 437, OverTh=false -Channel=TIME_11_07, ADC= 239, OverTh=false -Channel=TIME_11_15, ADC= 484, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 438, OverTh=false PrintHeader_7bb0e124 INFO # 99 Run 290683, Event 7590588 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 4, 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= 6, 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= 6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -15, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 12, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -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= 23, OverTh=false -Channel=LUMI_20 , ADC= 128, OverTh=true -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 35, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 261, 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= 259, 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= 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= 255, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 250, OverTh=false -Channel=TIME_05_15, ADC= 279, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 193, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 193, OverTh=false -Channel=TIME_11_09, ADC= 266, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 198, OverTh=false -Channel=TIME_11_10, ADC= 267, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 204, OverTh=false -Channel=TIME_11_11, ADC= 264, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 263, OverTh=false -Channel=TIME_11_12, ADC= 246, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 333, OverTh=false -Channel=TIME_11_13, ADC= 208, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 358, OverTh=false -Channel=TIME_11_14, ADC= 184, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 352, OverTh=false -Channel=TIME_11_15, ADC= 185, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 100 Run 290683, Event 7590718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 125, OverTh=true -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 22, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 11, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 13, 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= 6, 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= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 330, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -10, OverTh=false -Channel=LUMI_07 , ADC= 0, 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= -8, 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= -7, 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= -18, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -6, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 291, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 296, OverTh=false -Channel=TIME_05_01, ADC= 293, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 299, OverTh=false -Channel=TIME_05_02, ADC= 289, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 296, OverTh=false -Channel=TIME_05_03, ADC= 284, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 294, OverTh=false -Channel=TIME_05_04, ADC= 269, OverTh=false -Channel=TIME_05_12, ADC= 268, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 280, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 285, OverTh=false -Channel=TIME_29_05, ADC= 249, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 250, OverTh=false -Channel=TIME_05_14, ADC= 295, OverTh=false -Channel=TIME_29_06, ADC= 239, OverTh=false -Channel=TIME_29_14, ADC= 251, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 296, OverTh=false -Channel=TIME_29_07, ADC= 238, OverTh=false -Channel=TIME_29_15, ADC= 251, 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= 256, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 266, 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= 267, 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= 263, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 101 Run 290683, Event 7597263 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 13, OverTh=false -Channel=LUMI_37 , ADC= 82, OverTh=true -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 7, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 101, OverTh=true -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -24, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 16, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 14, 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= 2, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 50, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 249, OverTh=false -Channel=TIME_05_08, ADC= 348, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 269, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 347, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 267, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 343, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 339, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 311, 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= 268, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 243, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 243, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 263, 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= 262, 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= 254, 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= 256, OverTh=false -Channel=TIME_35_11, ADC= 258, 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= 254, 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= 256, 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= 256, 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 # 102 Run 290683, Event 7597670 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, 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= 3, 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= 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= -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= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -5, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 12, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 9, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 259, 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= 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= 254, 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= 255, 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= 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= 257, 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= 254, 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= 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= 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= 259, 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= 256, 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= 258, 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= 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= 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= 255, OverTh=false PrintHeader_7bb0e124 INFO # 103 Run 290683, Event 7597742 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 245, OverTh=true -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 168, OverTh=true -Channel=LUMI_02 , ADC= 645, OverTh=true -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 126, OverTh=true -Channel=LUMI_27 , ADC= 374, OverTh=true -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 14, OverTh=false -Channel=LUMI_12 , ADC= 6, OverTh=false -Channel=LUMI_36 , ADC= 15, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= 36, 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= 9, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -13, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 253, OverTh=true -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 266, OverTh=true -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 11, 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= 6, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 262, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 263, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 266, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 265, 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= 263, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 334, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 337, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 331, 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= 314, 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= 273, OverTh=false -Channel=TIME_35_12, ADC= 299, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 319, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 238, OverTh=false -Channel=TIME_35_14, ADC= 345, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 243, OverTh=false -Channel=TIME_35_15, ADC= 344, OverTh=false PrintHeader_7bb0e124 INFO # 104 Run 290683, Event 7597971 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= -20, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 28, OverTh=false -Channel=LUMI_26 , ADC= 2, 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= 7, OverTh=false -Channel=LUMI_12 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= -6, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -3, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 235, OverTh=true -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 12, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, 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= 261, 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= 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= 261, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 295, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 371, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 452, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 264, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 460, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 264, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 262, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 258, 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 # 105 Run 290683, Event 7592297 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -17, 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= 323, OverTh=true -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= 63, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= -7, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 9, 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= 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= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -6, OverTh=false -Channel=LUMI_07 , ADC= 297, OverTh=true -Channel=LUMI_31 , ADC= -6, OverTh=false -Channel=LUMI_08 , ADC= 2, 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= 11, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 64, OverTh=true -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= 11, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -4, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 251, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 247, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 249, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 238, OverTh=false -Channel=TIME_05_05, ADC= 251, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 235, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 278, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 273, OverTh=false -Channel=TIME_29_15, ADC= 267, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 254, 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= 251, 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= 255, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 261, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 278, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 272, OverTh=false PrintHeader_7bb0e124 INFO # 106 Run 290683, Event 7592431 -PlumeRawToDigits_89428f2d 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= 6, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 11, OverTh=false -Channel=LUMI_15 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 9, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 9, OverTh=false -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 10, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 11, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 76, OverTh=true -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 263, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 261, 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= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 260, 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= 262, 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= 264, 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= 263, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 269, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 259, 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= 258, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 272, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 288, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 269, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 284, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 107 Run 290683, Event 7592598 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -6, 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= -1, OverTh=false -Channel=LUMI_04 , ADC= -4, 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= 669, OverTh=true -Channel=LUMI_37 , ADC= 18, OverTh=false -Channel=LUMI_14 , ADC= 6, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -20, OverTh=false -Channel=LUMI_39 , ADC= -12, 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=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 11, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 12, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= 50, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 242, OverTh=true -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -3, 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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 268, OverTh=false -Channel=TIME_05_08, ADC= 144, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 275, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 143, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 273, OverTh=false -Channel=TIME_05_02, ADC= 263, OverTh=false -Channel=TIME_05_10, ADC= 144, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 274, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 152, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 272, OverTh=false -Channel=TIME_05_04, ADC= 261, OverTh=false -Channel=TIME_05_12, ADC= 205, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 270, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 278, OverTh=false -Channel=TIME_29_06, ADC= 268, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 266, 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= 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= 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= 255, 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= 259, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 258, 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= 256, 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= 258, 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= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 108 Run 290683, Event 7592877 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= -6, 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= -3, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= 9, 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= 2, OverTh=false -Channel=LUMI_14 , ADC= 9, 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= 74, OverTh=true -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 9, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 390, OverTh=true -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= -2, 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 52, OverTh=true -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= -3, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 263, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 249, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_11, ADC= 262, 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= 257, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 263, 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= 263, OverTh=false PrintHeader_7bb0e124 INFO # 109 Run 290683, Event 7592982 -PlumeRawToDigits_89428f2d 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= 5, OverTh=false -Channel=LUMI_02 , ADC= -11, OverTh=false -Channel=LUMI_26 , ADC= 2, 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= 0, 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= 1, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= 18, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 290, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -12, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -4, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 12, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= -8, 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= 21, OverTh=false -Channel=LUMI_44 , ADC= 16, OverTh=false -Channel=LUMI_21 , ADC= -13, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, 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= 257, 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= 258, 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= 260, 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 254, 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= 257, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 259, 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= 255, 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= 256, OverTh=false -Channel=TIME_11_09, ADC= 256, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 258, 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= 254, OverTh=false -Channel=TIME_11_04, ADC= 255, 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= 254, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 110 Run 290683, Event 7601112 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 10, 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= 9, OverTh=false -Channel=LUMI_03 , ADC= 13, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= -9, OverTh=false -Channel=LUMI_12 , ADC= 8, OverTh=false -Channel=LUMI_36 , ADC= 7, 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= 6, OverTh=false -Channel=LUMI_15 , ADC= 307, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 11, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , 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= 5, OverTh=false -Channel=LUMI_32 , ADC= 15, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= -5, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 22, OverTh=false -Channel=LUMI_18 , ADC= 13, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 3, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 250, OverTh=false -Channel=TIME_05_08, ADC= 343, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 252, OverTh=false -Channel=TIME_05_09, ADC= 345, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 345, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 333, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 289, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 251, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 239, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 242, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 277, OverTh=false -Channel=TIME_11_08, ADC= 286, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 280, OverTh=false -Channel=TIME_11_09, ADC= 285, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 278, OverTh=false -Channel=TIME_11_10, ADC= 284, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 276, OverTh=false -Channel=TIME_11_11, ADC= 280, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 271, OverTh=false -Channel=TIME_11_12, ADC= 267, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 270, 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= 274, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 111 Run 290683, Event 7601132 -PlumeRawToDigits_89428f2d 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= 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= 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= 145, OverTh=true -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= -5, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 9, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 7, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -5, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= 15, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 618, OverTh=true -Channel=LUMI_19 , ADC= -6, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 258, 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= 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= 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= 259, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 259, 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= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 258, 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= 260, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 259, 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= 260, OverTh=false -Channel=TIME_35_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 261, 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 112 Run 290683, Event 7601185 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, 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= 7, OverTh=false -Channel=LUMI_26 , ADC= 26, OverTh=false -Channel=LUMI_03 , ADC= 13, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 6, 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= -2, OverTh=false -Channel=LUMI_14 , ADC= 308, OverTh=true -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 32, OverTh=false -Channel=LUMI_07 , ADC= 303, OverTh=true -Channel=LUMI_31 , ADC= 300, OverTh=true -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= -4, 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= 47, OverTh=false -Channel=LUMI_42 , ADC= 294, OverTh=true -Channel=LUMI_19 , ADC= 3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 262, OverTh=false -Channel=TIME_05_09, ADC= 260, 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= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 254, 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= 256, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 260, 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= 259, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 269, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 264, OverTh=false -Channel=TIME_11_09, ADC= 268, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 264, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 265, 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= 262, 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= 263, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 261, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 113 Run 290683, Event 7601189 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= -14, 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= 6, 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= -3, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -8, 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= -5, OverTh=false -Channel=LUMI_39 , ADC= -5, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= 29, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -7, OverTh=false -Channel=LUMI_33 , ADC= 16, OverTh=false -Channel=LUMI_10 , ADC= -10, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 44, OverTh=false -Channel=LUMI_41 , ADC= 381, OverTh=true -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 31, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -6, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 232, OverTh=true -Channel=LUMI_22 , ADC= -8, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 258, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 255, 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= 257, OverTh=false -Channel=TIME_29_03, ADC= 259, 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= 255, 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= 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= 259, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 251, 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= 251, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 252, 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= 253, OverTh=false -Channel=TIME_11_11, ADC= 253, 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= 251, 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= 252, 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= 252, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 114 Run 290683, Event 7601492 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 75, OverTh=true -Channel=LUMI_24 , ADC= 308, OverTh=true -Channel=LUMI_01 , ADC= 239, OverTh=true -Channel=LUMI_25 , ADC= 5, 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= 291, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_15 , ADC= 51, OverTh=true -Channel=LUMI_39 , ADC= 12, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 10, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 262, OverTh=true -Channel=LUMI_30 , ADC= 545, OverTh=true -Channel=LUMI_07 , ADC= 61, OverTh=true -Channel=LUMI_31 , ADC= 447, OverTh=true -Channel=LUMI_08 , ADC= 270, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 129, OverTh=true -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 48, 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= -16, 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= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 260, 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= 255, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 350, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 266, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 349, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 263, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 344, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 340, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 306, OverTh=false -Channel=TIME_11_12, ADC= 274, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 323, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 238, OverTh=false -Channel=TIME_11_14, ADC= 359, OverTh=false -Channel=TIME_35_06, ADC= 252, OverTh=false -Channel=TIME_35_14, ADC= 282, OverTh=false -Channel=TIME_11_07, ADC= 241, OverTh=false -Channel=TIME_11_15, ADC= 359, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 277, OverTh=false PrintHeader_7bb0e124 INFO # 115 Run 290683, Event 7601619 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 98, OverTh=true -Channel=LUMI_24 , ADC= 37, OverTh=false -Channel=LUMI_01 , ADC= 322, OverTh=true -Channel=LUMI_25 , ADC= 40, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 199, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 206, OverTh=true -Channel=LUMI_28 , ADC= 111, OverTh=true -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 414, OverTh=true -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 46, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= 8, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 301, OverTh=true -Channel=LUMI_30 , ADC= 64, OverTh=true -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= -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= 365, OverTh=true -Channel=LUMI_17 , ADC= 347, OverTh=true -Channel=LUMI_41 , ADC= 377, OverTh=true -Channel=LUMI_18 , ADC= 569, OverTh=true -Channel=LUMI_42 , ADC= 51, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 253, OverTh=false -Channel=TIME_05_11, ADC= 258, 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= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, 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= 270, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 265, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 331, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 331, 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= 329, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 316, OverTh=false -Channel=TIME_11_11, ADC= 261, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 275, OverTh=false -Channel=TIME_11_12, ADC= 292, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 252, OverTh=false -Channel=TIME_11_13, ADC= 324, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 242, OverTh=false -Channel=TIME_11_14, ADC= 338, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 248, OverTh=false -Channel=TIME_11_15, ADC= 334, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 116 Run 290683, Event 7598139 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 29, OverTh=false -Channel=LUMI_01 , ADC= 15, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 133, OverTh=true -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= -3, OverTh=false -Channel=LUMI_12 , ADC= 633, OverTh=true -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 7, 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= 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=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 31, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= -3, 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= 7, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 533, OverTh=true -Channel=LUMI_18 , ADC= 29, OverTh=false -Channel=LUMI_42 , ADC= 17, OverTh=false -Channel=LUMI_19 , ADC= -11, OverTh=false -Channel=LUMI_43 , ADC= 307, OverTh=true -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= -9, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 373, OverTh=true -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 275, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 250, OverTh=false -Channel=TIME_29_08, ADC= 353, OverTh=false -Channel=TIME_05_01, ADC= 277, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 251, OverTh=false -Channel=TIME_29_09, ADC= 351, OverTh=false -Channel=TIME_05_02, ADC= 273, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 351, OverTh=false -Channel=TIME_05_03, ADC= 275, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 347, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 307, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 272, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 249, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 277, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 239, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 240, OverTh=false -Channel=TIME_11_00, ADC= 337, OverTh=false -Channel=TIME_11_08, ADC= 174, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 268, OverTh=false -Channel=TIME_11_01, ADC= 334, OverTh=false -Channel=TIME_11_09, ADC= 173, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 268, OverTh=false -Channel=TIME_11_02, ADC= 334, OverTh=false -Channel=TIME_11_10, ADC= 173, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 267, OverTh=false -Channel=TIME_11_03, ADC= 319, OverTh=false -Channel=TIME_11_11, ADC= 185, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 267, OverTh=false -Channel=TIME_11_04, ADC= 289, OverTh=false -Channel=TIME_11_12, ADC= 237, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 264, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 325, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 244, OverTh=false -Channel=TIME_11_14, ADC= 362, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 354, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 117 Run 290683, Event 7598150 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 12, OverTh=false -Channel=LUMI_01 , ADC= 86, OverTh=true -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 500, OverTh=true -Channel=LUMI_26 , ADC= 545, OverTh=true -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 16, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 16, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= 13, 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= 43, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 47, OverTh=false -Channel=LUMI_40 , ADC= 9, OverTh=false -Channel=LUMI_23 , ADC= -7, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 16, 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= 17, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 375, OverTh=true -Channel=LUMI_18 , ADC= 74, OverTh=true -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= 17, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 301, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 305, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 306, OverTh=false -Channel=TIME_29_02, ADC= 252, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 263, OverTh=false -Channel=TIME_05_11, ADC= 303, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 269, OverTh=false -Channel=TIME_05_12, ADC= 281, OverTh=false -Channel=TIME_29_04, ADC= 265, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 302, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 276, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 317, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 274, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 311, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 267, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 265, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 261, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, 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= 257, 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= 261, 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= 258, 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 # 118 Run 290683, Event 7598171 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 25, OverTh=false -Channel=LUMI_01 , ADC= -5, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -8, 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= 1, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 7, 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= 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= 2, OverTh=false -Channel=LUMI_23 , ADC= -11, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -9, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 20, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 10, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -4, 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= -4, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -6, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 221, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 221, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 225, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 223, 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= 240, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 263, OverTh=false -Channel=TIME_05_13, ADC= 261, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 265, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 266, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 262, 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= 258, 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= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, 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= 268, 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= 279, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 275, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 119 Run 290683, Event 7598529 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 390, OverTh=true -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 257, OverTh=true -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= 24, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 42, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 284, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 81, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 21, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -6, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -5, OverTh=false -Channel=LUMI_42 , ADC= 15, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -5, 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= 1, OverTh=false -Channel=LUMI_46 , ADC= 341, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 296, 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= 296, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 289, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 289, 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= 283, OverTh=false -Channel=TIME_05_12, ADC= 260, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 268, OverTh=false -Channel=TIME_05_13, ADC= 270, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 252, OverTh=false -Channel=TIME_05_14, ADC= 305, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 250, OverTh=false -Channel=TIME_05_15, ADC= 306, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 280, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 282, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 263, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 284, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 266, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 281, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 273, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 262, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 264, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 263, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 251, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 120 Run 290683, Event 7595051 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 6, 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= 4, 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= -3, 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= 0, 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= 5, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 10, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 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= 260, 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= 258, 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= 259, 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= 254, 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= 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= 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 258, 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= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, 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= 255, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 121 Run 290683, Event 7595508 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -8, 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= -8, 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= 8, OverTh=false -Channel=LUMI_36 , ADC= 29, OverTh=false -Channel=LUMI_13 , ADC= -5, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 18, OverTh=false -Channel=LUMI_38 , ADC= 366, OverTh=true -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= -5, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 8, 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= 393, OverTh=true -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= 5, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 129, OverTh=true -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 143, OverTh=true -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= -6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 263, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 281, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 326, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 360, OverTh=false -Channel=TIME_05_14, ADC= 286, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 359, OverTh=false -Channel=TIME_05_15, ADC= 284, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 245, OverTh=false -Channel=TIME_35_08, ADC= 375, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 251, OverTh=false -Channel=TIME_35_09, ADC= 376, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 371, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 354, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 302, 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= 265, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 230, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 237, OverTh=false PrintHeader_7bb0e124 INFO # 122 Run 290683, Event 7595567 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -15, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 27, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 9, 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= 3, OverTh=false -Channel=LUMI_36 , ADC= 83, OverTh=true -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 26, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 72, OverTh=true -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 55, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 263, OverTh=true -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= 0, OverTh=false -Channel=LUMI_09 , ADC= 80, OverTh=true -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= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 16, OverTh=false -Channel=LUMI_19 , ADC= 244, OverTh=true -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 85, OverTh=true -Channel=LUMI_44 , ADC= 13, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 259, 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= 262, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, 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= 257, 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= 254, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 254, 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= 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 264, 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= 269, 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= 261, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 123 Run 290683, Event 7593083 -PlumeRawToDigits_89428f2d 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= 4, OverTh=false -Channel=LUMI_02 , ADC= 319, OverTh=true -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_13 , ADC= 0, 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= -3, 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=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -6, 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= 10, OverTh=false -Channel=LUMI_33 , ADC= -9, 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= 52, OverTh=true -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 24, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 67, OverTh=true -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 254, 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= 255, OverTh=false -Channel=TIME_05_02, ADC= 252, 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= 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= 257, 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= 260, 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= 261, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 261, 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= 253, 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= 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= 257, 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= 259, 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= 255, OverTh=false -Channel=TIME_11_13, ADC= 260, 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= 271, 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= 267, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 124 Run 290683, Event 7593666 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 102, OverTh=true -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 98, OverTh=true -Channel=LUMI_36 , ADC= 108, OverTh=true -Channel=LUMI_13 , ADC= 179, OverTh=true -Channel=LUMI_37 , ADC= 209, OverTh=true -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= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -11, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -16, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 213, OverTh=true -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 335, OverTh=true -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= -1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 124, OverTh=true -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 253, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 260, 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= 260, 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= 261, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 261, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 267, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 266, 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= 263, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 249, OverTh=false -Channel=TIME_35_08, ADC= 365, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 252, OverTh=false -Channel=TIME_35_09, ADC= 366, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 360, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 335, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 277, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 248, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 232, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 267, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 240, OverTh=false PrintHeader_7bb0e124 INFO # 125 Run 290683, Event 7593996 -PlumeRawToDigits_89428f2d 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= -2, 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= 6, 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= 6, 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= 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -3, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 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= 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= 254, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 256, 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= 256, 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= 258, OverTh=false -Channel=TIME_05_14, ADC= 259, 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= 261, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 261, 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= 255, OverTh=false -Channel=TIME_35_01, ADC= 258, 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= 257, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 257, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 126 Run 290683, Event 7594047 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 457, OverTh=true -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= 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= 3, 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= 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= 30, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , 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= -3, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, 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= 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= 256, 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= 256, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 255, 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= 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= 257, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 259, 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= 260, 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= 261, 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= 259, 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= 260, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 127 Run 290683, Event 7594549 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 4, 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= -1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 126, OverTh=true -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= -5, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -7, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -6, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 5, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -3, OverTh=false -Channel=LUMI_18 , ADC= 20, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 22, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 4, 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= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, 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= 259, 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= 259, 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= 258, 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= 256, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 258, 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= 261, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 260, 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= 261, 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= 259, 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= 264, 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= 275, 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= 271, 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 # 128 Run 290683, Event 7605234 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -5, 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= 1, 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= -4, OverTh=false -Channel=LUMI_14 , ADC= -4, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 13, 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= 9, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 10, OverTh=false -Channel=LUMI_18 , ADC= 10, OverTh=false -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 15, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 340, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 343, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 254, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 339, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 329, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 293, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 241, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 273, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 246, OverTh=false -Channel=TIME_29_07, ADC= 261, OverTh=false -Channel=TIME_29_15, ADC= 274, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 265, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 269, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 264, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 274, OverTh=false -Channel=TIME_11_12, ADC= 261, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 259, OverTh=false -Channel=TIME_11_05, ADC= 311, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 333, OverTh=false -Channel=TIME_11_14, ADC= 252, OverTh=false -Channel=TIME_35_06, ADC= 274, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 327, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 273, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 129 Run 290683, Event 7605350 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 278, OverTh=true -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 245, OverTh=true -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 7, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 62, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 91, OverTh=true -Channel=LUMI_36 , ADC= -6, OverTh=false -Channel=LUMI_13 , ADC= 293, OverTh=true -Channel=LUMI_37 , ADC= 143, OverTh=true -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 17, OverTh=false -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 9, OverTh=false -Channel=LUMI_23 , ADC= 185, OverTh=true -Channel=LUMI_47 , ADC= 75, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 161, OverTh=true -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -6, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 205, OverTh=true -Channel=LUMI_18 , ADC= 157, OverTh=true -Channel=LUMI_42 , ADC= 234, OverTh=true -Channel=LUMI_19 , ADC= -4, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 252, OverTh=true -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 345, 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= 345, 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= 343, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 338, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 298, OverTh=false -Channel=TIME_29_12, ADC= 283, 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= 333, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 245, OverTh=false -Channel=TIME_29_14, ADC= 354, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 247, OverTh=false -Channel=TIME_29_15, ADC= 355, OverTh=false -Channel=TIME_11_00, ADC= 440, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 364, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 437, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 363, OverTh=false -Channel=TIME_35_09, ADC= 251, OverTh=false -Channel=TIME_11_02, ADC= 427, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 357, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 411, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 334, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 342, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 277, OverTh=false -Channel=TIME_35_12, ADC= 310, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 405, OverTh=false -Channel=TIME_35_05, ADC= 251, OverTh=false -Channel=TIME_35_13, ADC= 348, OverTh=false -Channel=TIME_11_06, ADC= 222, OverTh=false -Channel=TIME_11_14, ADC= 474, OverTh=false -Channel=TIME_35_06, ADC= 233, OverTh=false -Channel=TIME_35_14, ADC= 381, OverTh=false -Channel=TIME_11_07, ADC= 227, OverTh=false -Channel=TIME_11_15, ADC= 463, OverTh=false -Channel=TIME_35_07, ADC= 238, OverTh=false -Channel=TIME_35_15, ADC= 379, OverTh=false PrintHeader_7bb0e124 INFO # 130 Run 290683, Event 7605357 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 422, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 15, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 70, OverTh=true -Channel=LUMI_37 , ADC= -5, OverTh=false -Channel=LUMI_14 , ADC= 387, OverTh=true -Channel=LUMI_38 , ADC= -6, OverTh=false -Channel=LUMI_15 , ADC= 151, OverTh=true -Channel=LUMI_39 , ADC= 5, 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= 0, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 385, OverTh=true -Channel=LUMI_30 , ADC= 321, OverTh=true -Channel=LUMI_07 , ADC= 36, 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= 38, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= 18, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 151, OverTh=true -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= -4, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 8, 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= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 323, 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= 323, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 322, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 319, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 303, OverTh=false -Channel=TIME_05_12, ADC= 264, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 287, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 248, OverTh=false -Channel=TIME_05_14, ADC= 323, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 247, OverTh=false -Channel=TIME_05_15, ADC= 330, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 269, 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= 264, 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= 263, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 253, 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= 249, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 261, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 131 Run 290683, Event 7605411 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= 37, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 17, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 286, OverTh=true -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= 2, OverTh=false -Channel=LUMI_13 , ADC= 9, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 277, OverTh=true -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= 10, OverTh=false -Channel=LUMI_40 , ADC= 284, OverTh=true -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 242, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 21, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 7, OverTh=false -Channel=LUMI_09 , ADC= 136, OverTh=true -Channel=LUMI_33 , ADC= 25, OverTh=false -Channel=LUMI_10 , ADC= 234, OverTh=true -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 16, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 184, OverTh=true -Channel=LUMI_42 , ADC= 31, OverTh=false -Channel=LUMI_19 , ADC= 25, OverTh=false -Channel=LUMI_43 , ADC= 625, OverTh=true -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 11, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 12, OverTh=false -Channel=LUMI_22 , ADC= 152, OverTh=true -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 273, OverTh=false -Channel=TIME_05_08, ADC= 265, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 262, OverTh=false -Channel=TIME_05_01, ADC= 271, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 269, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 270, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 292, OverTh=false -Channel=TIME_05_12, ADC= 262, OverTh=false -Channel=TIME_29_04, ADC= 292, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 349, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 350, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 415, OverTh=false -Channel=TIME_05_14, ADC= 274, OverTh=false -Channel=TIME_29_06, ADC= 387, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 424, OverTh=false -Channel=TIME_05_15, ADC= 276, OverTh=false -Channel=TIME_29_07, ADC= 388, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 246, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 247, OverTh=false -Channel=TIME_35_01, ADC= 252, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 251, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 249, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 252, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 252, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 273, 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= 275, 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 # 132 Run 290683, Event 7605676 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, 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= 261, OverTh=true -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= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 92, OverTh=true -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 9, 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= 6, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 8, 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= 10, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -12, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 260, 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= 261, 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= 260, 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= 261, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 260, 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= 263, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 252, OverTh=false -Channel=TIME_29_07, ADC= 262, 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= 255, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 259, 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= 259, 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= 255, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, 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= 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 133 Run 290683, Event 7605770 -PlumeRawToDigits_89428f2d 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= 4, OverTh=false -Channel=LUMI_02 , ADC= 84, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 320, OverTh=true -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= 0, 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= -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= 253, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -7, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 290, OverTh=true -Channel=LUMI_31 , ADC= 318, OverTh=true -Channel=LUMI_08 , ADC= 135, OverTh=true -Channel=LUMI_32 , ADC= 0, 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= 6, 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= 7, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 263, 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= 259, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 263, 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 255, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 258, 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= 255, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 259, 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= 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= 254, 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= 256, 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= 261, 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= 270, 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= 263, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 134 Run 290683, Event 7605840 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 2, 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= 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= -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= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= -9, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -4, 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= -5, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -5, 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= 4, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 2, 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= 258, 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= 259, 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= 257, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 258, 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= 253, 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= 256, 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= 256, OverTh=false -Channel=TIME_05_07, ADC= 258, 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= 257, 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= 258, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 257, 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= 258, 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= 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= 256, 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= 260, 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= 257, OverTh=false PrintHeader_7bb0e124 INFO # 135 Run 290683, Event 7603064 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -4, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 6, OverTh=false -Channel=LUMI_02 , ADC= 2, 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= 10, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 11, 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= -6, 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= 6, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 17, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -19, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 10, 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= 14, OverTh=false -Channel=LUMI_10 , ADC= 6, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 13, OverTh=false -Channel=LUMI_43 , ADC= -13, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 254, 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= 258, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 255, 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= 255, 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= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 253, 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= 254, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 244, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 228, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 245, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 232, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 244, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 241, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 246, OverTh=false -Channel=TIME_35_03, ADC= 249, OverTh=false -Channel=TIME_35_11, ADC= 243, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 194, OverTh=false -Channel=TIME_35_12, ADC= 247, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 242, OverTh=false -Channel=TIME_35_13, ADC= 249, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 264, OverTh=false -Channel=TIME_35_06, ADC= 291, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 282, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 136 Run 290683, Event 7603081 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -10, 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -9, 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= 5, OverTh=false -Channel=LUMI_36 , ADC= -17, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -6, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -6, 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= 63, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 344, OverTh=true -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= -22, 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= 7, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= -12, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= -8, OverTh=false -Channel=LUMI_18 , ADC= -8, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 275, OverTh=false -Channel=TIME_29_08, ADC= 140, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 271, OverTh=false -Channel=TIME_29_09, ADC= 143, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 265, OverTh=false -Channel=TIME_29_10, ADC= 143, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 147, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 177, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 249, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 271, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 296, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 269, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 294, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 258, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_11, ADC= 261, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 261, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 137 Run 290683, Event 7603109 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 5, 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= 58, OverTh=true -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 48, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 19, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 15, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 37, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 13, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 253, 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= 253, 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= 256, 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= 257, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 254, 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= 259, OverTh=false -Channel=TIME_29_06, ADC= 261, 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= 263, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 260, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 248, 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= 251, 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= 251, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 275, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 138 Run 290683, Event 7603681 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -11, OverTh=false -Channel=LUMI_25 , ADC= 279, OverTh=true -Channel=LUMI_02 , ADC= 12, OverTh=false -Channel=LUMI_26 , ADC= 8, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 224, OverTh=true -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 213, OverTh=true -Channel=LUMI_37 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 252, OverTh=true -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 145, OverTh=true -Channel=LUMI_31 , ADC= 158, OverTh=true -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 189, OverTh=true -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 350, OverTh=true -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 244, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 10, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 440, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 769, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 442, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 759, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 435, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 743, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 415, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 728, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 346, OverTh=false -Channel=TIME_05_12, ADC= 313, OverTh=false -Channel=TIME_29_04, ADC= 587, OverTh=false -Channel=TIME_29_12, ADC= 352, OverTh=false -Channel=TIME_05_05, ADC= 287, OverTh=false -Channel=TIME_05_13, ADC= 398, OverTh=false -Channel=TIME_29_05, ADC= 383, OverTh=false -Channel=TIME_29_13, ADC= 540, OverTh=false -Channel=TIME_05_06, ADC= 306, OverTh=false -Channel=TIME_05_14, ADC= 464, OverTh=false -Channel=TIME_29_06, ADC= 226, OverTh=false -Channel=TIME_29_14, ADC= 753, OverTh=false -Channel=TIME_05_07, ADC= 315, OverTh=false -Channel=TIME_05_15, ADC= 458, OverTh=false -Channel=TIME_29_07, ADC= 197, OverTh=false -Channel=TIME_29_15, ADC= 793, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 258, 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= 258, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 255, 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= 254, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 264, 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= 261, 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= 261, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 139 Run 290683, Event 7603699 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 42, 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= -2, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 108, OverTh=true -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 12, OverTh=false -Channel=LUMI_37 , ADC= 6, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 117, OverTh=true -Channel=LUMI_15 , ADC= -8, 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=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , 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= 28, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= -2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -4, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 1, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 274, 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= 272, 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= 277, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 267, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 262, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, 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= 252, 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= 253, 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= 260, 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= 256, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 252, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 252, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 252, OverTh=false -Channel=TIME_11_06, ADC= 262, 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= 260, 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 # 140 Run 290683, Event 7603733 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 15, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 6, OverTh=false -Channel=LUMI_27 , ADC= 12, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -7, 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= 2, 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= 3, OverTh=false -Channel=LUMI_47 , ADC= 13, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, 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= 8, OverTh=false -Channel=LUMI_08 , ADC= -10, 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= 6, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 12, OverTh=false -Channel=LUMI_44 , ADC= 5, 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=MON_01 , ADC= -4, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 255, 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= 257, 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= 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= 257, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 262, 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= 261, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 264, 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= 262, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 262, OverTh=false -Channel=TIME_11_05, ADC= 255, 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= 256, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 252, 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= 253, OverTh=false PrintHeader_7bb0e124 INFO # 141 Run 290683, Event 7603803 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= -5, 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= -4, 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= 0, 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= -2, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -10, 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= 4, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -6, 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= 62, OverTh=true -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= -9, 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= -4, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 254, 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= 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 257, 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= 262, 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= 259, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 261, 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= 261, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 261, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 251, OverTh=false -Channel=TIME_35_02, ADC= 260, OverTh=false -Channel=TIME_35_10, ADC= 258, 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= 255, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 265, 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= 276, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 267, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 142 Run 290683, Event 7599325 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 12, OverTh=false -Channel=LUMI_28 , ADC= 13, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -9, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -10, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , 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= 4, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 17, 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= 7, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 16, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 258, 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= 254, OverTh=false -Channel=TIME_05_04, ADC= 254, 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= 256, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 279, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 270, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 270, OverTh=false -Channel=TIME_11_00, ADC= 262, 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= 260, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 260, 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= 261, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 260, 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= 262, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 266, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 143 Run 290683, Event 7599358 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 612, OverTh=true -Channel=LUMI_24 , ADC= 32, OverTh=false -Channel=LUMI_01 , ADC= 40, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 445, OverTh=true -Channel=LUMI_26 , ADC= 26, OverTh=false -Channel=LUMI_03 , ADC= 153, OverTh=true -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 244, OverTh=true -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= -1, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 4, 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= 132, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 13, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 13, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 497, OverTh=true -Channel=LUMI_08 , ADC= 119, OverTh=true -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= 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= 241, OverTh=true -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 13, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 250, OverTh=false -Channel=TIME_05_08, ADC= 365, OverTh=false -Channel=TIME_29_00, ADC= 252, OverTh=false -Channel=TIME_29_08, ADC= 296, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 362, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 297, OverTh=false -Channel=TIME_05_02, ADC= 251, OverTh=false -Channel=TIME_05_10, ADC= 363, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 296, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 360, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 295, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 333, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 281, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 284, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 283, OverTh=false -Channel=TIME_05_14, ADC= 243, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 245, OverTh=false -Channel=TIME_05_07, ADC= 285, OverTh=false -Channel=TIME_05_15, ADC= 241, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 248, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 259, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 261, 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= 260, 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= 257, 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= 253, OverTh=false -Channel=TIME_11_06, ADC= 256, 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= 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 # 144 Run 290683, Event 7599753 -PlumeRawToDigits_89428f2d 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= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 9, OverTh=false -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 292, OverTh=true -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= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 4, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 18, 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= 3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 53, OverTh=true -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= 0, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_21 , ADC= -6, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 266, 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= 261, 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= 260, OverTh=false -Channel=TIME_05_11, ADC= 253, 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= 241, 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= 237, 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= 274, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 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= 253, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 252, 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= 254, 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= 258, OverTh=false -Channel=TIME_11_06, ADC= 254, 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 145 Run 290683, Event 7583039 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 133, OverTh=true -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 323, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 156, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 15, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 9, 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= 278, OverTh=true -Channel=LUMI_47 , ADC= 70, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 56, OverTh=true -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 120, OverTh=true -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 321, OverTh=true -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= -3, OverTh=false -Channel=LUMI_34 , ADC= 240, OverTh=true -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 59, OverTh=true -Channel=LUMI_19 , ADC= 253, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 9, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= 344, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 334, 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= 337, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 334, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 330, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 299, OverTh=false -Channel=TIME_29_12, ADC= 277, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 324, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 243, OverTh=false -Channel=TIME_29_14, ADC= 348, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 256, OverTh=false -Channel=TIME_29_07, ADC= 243, OverTh=false -Channel=TIME_29_15, ADC= 342, OverTh=false -Channel=TIME_11_00, ADC= 251, OverTh=false -Channel=TIME_11_08, ADC= 359, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 243, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 360, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 246, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 359, OverTh=false -Channel=TIME_35_02, ADC= 261, OverTh=false -Channel=TIME_35_10, ADC= 250, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 349, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 268, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 251, OverTh=false -Channel=TIME_11_05, ADC= 291, OverTh=false -Channel=TIME_11_13, ADC= 251, OverTh=false -Channel=TIME_35_05, ADC= 243, OverTh=false -Channel=TIME_35_13, ADC= 250, OverTh=false -Channel=TIME_11_06, ADC= 304, OverTh=false -Channel=TIME_11_14, ADC= 235, OverTh=false -Channel=TIME_35_06, ADC= 273, OverTh=false -Channel=TIME_35_14, ADC= 251, OverTh=false -Channel=TIME_11_07, ADC= 302, OverTh=false -Channel=TIME_11_15, ADC= 242, OverTh=false -Channel=TIME_35_07, ADC= 279, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 146 Run 290683, Event 7583058 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 77, OverTh=true -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 5, 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= -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= 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= 88, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -5, 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= -3, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= -6, OverTh=false -Channel=LUMI_41 , ADC= -4, OverTh=false -Channel=LUMI_18 , ADC= -7, OverTh=false -Channel=LUMI_42 , ADC= -3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, 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= 251, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 253, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 273, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 305, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 352, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 352, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 255, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, 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= 258, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 260, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 267, 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= 281, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 278, 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 # 147 Run 290683, Event 7583181 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_03 , ADC= 16, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 60, OverTh=true -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 15, OverTh=false -Channel=LUMI_13 , ADC= 327, OverTh=true -Channel=LUMI_37 , ADC= 23, OverTh=false -Channel=LUMI_14 , ADC= 67, OverTh=true -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= 397, OverTh=true -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 199, OverTh=true -Channel=LUMI_47 , ADC= 10, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 18, OverTh=false -Channel=LUMI_09 , ADC= 305, OverTh=true -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= 9, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 12, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 262, 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= 263, 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= 259, 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= 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= 263, 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= 263, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 277, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 275, 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= 273, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 274, 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= 265, OverTh=false -Channel=TIME_11_12, ADC= 261, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 272, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 279, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 251, OverTh=false -Channel=TIME_11_15, ADC= 278, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 148 Run 290683, Event 7583297 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 4, 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= 1, 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= 1, OverTh=false -Channel=LUMI_13 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , 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= 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 4, 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= -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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -4, 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= 258, 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= 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= 255, 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= 257, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 251, 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= 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= 254, 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= 256, OverTh=false -Channel=TIME_35_08, ADC= 253, 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= 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 257, 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= 259, 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= 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= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 149 Run 290683, Event 7583307 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 6, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_12 , ADC= 132, OverTh=true -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 291, OverTh=true -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= 6, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 211, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= 2, 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= 280, OverTh=true -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 11, 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= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 259, 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= 257, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 254, 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= 254, 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= 253, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 267, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 263, 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= 250, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 252, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 259, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 255, 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= 260, OverTh=false -Channel=TIME_11_06, ADC= 271, 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= 269, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 150 Run 290683, Event 7583468 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 8, 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= 6, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 10, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= -7, 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= 13, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -10, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 12, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 5, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 23, OverTh=false -Channel=LUMI_44 , ADC= 3, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 130, OverTh=false -Channel=TIME_29_00, ADC= 264, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 130, OverTh=false -Channel=TIME_29_01, ADC= 264, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 134, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 143, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 184, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 245, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 251, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 279, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 280, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 282, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 261, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, 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= 262, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 260, 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= 261, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 151 Run 290683, Event 7591617 -PlumeRawToDigits_89428f2d 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= 8, 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= 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= -5, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -4, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 15, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, 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= -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= 0, 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= -2, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -5, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 260, 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= 255, 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= 254, 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= 257, OverTh=false -Channel=TIME_05_12, ADC= 258, 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= 259, 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= 257, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 260, 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= 260, 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= 259, 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= 261, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 260, OverTh=false -Channel=TIME_11_06, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 152 Run 290683, Event 7591722 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 399, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 157, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 112, OverTh=true -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= 3, 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= 98, OverTh=true -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 38, OverTh=false -Channel=LUMI_47 , ADC= 43, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 509, OverTh=true -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 644, OverTh=true -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 4, 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= 27, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 56, OverTh=true -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= 4, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 269, 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= 270, 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= 271, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 261, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 271, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 488, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 489, 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= 483, 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= 427, OverTh=false -Channel=TIME_35_11, ADC= 273, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 314, OverTh=false -Channel=TIME_35_12, ADC= 374, 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= 443, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 206, OverTh=false -Channel=TIME_35_14, ADC= 518, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 222, OverTh=false -Channel=TIME_35_15, ADC= 515, OverTh=false PrintHeader_7bb0e124 INFO # 153 Run 290683, Event 7591756 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 9, 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= 5, OverTh=false -Channel=LUMI_13 , ADC= 5, 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= -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= -7, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 7, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -2, 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= -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= 3, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 252, 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= 255, 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= 255, 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= 257, 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= 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= 261, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 257, 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= 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= 254, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 287, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 341, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 372, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 365, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 154 Run 290683, Event 7591857 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -7, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 9, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 6, 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= 0, 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= -13, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 6, 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= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 273, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 272, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 274, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 277, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 275, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 248, OverTh=false -Channel=TIME_05_13, ADC= 275, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 231, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 283, OverTh=false -Channel=TIME_05_07, ADC= 226, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 279, 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= 258, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 252, 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= 253, 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= 255, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 251, 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= 256, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 155 Run 290683, Event 7591867 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 367, OverTh=true -Channel=LUMI_24 , ADC= 5, 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= 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= 8, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= 13, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 7, OverTh=false -Channel=LUMI_09 , ADC= -6, 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= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 273, OverTh=true -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, 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= 254, 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= 260, OverTh=false -Channel=TIME_29_02, ADC= 257, 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= 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= 256, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 260, 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= 261, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 259, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 254, 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= 256, 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= 255, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 156 Run 290683, Event 7580037 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -15, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 14, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 342, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 11, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 12, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -15, OverTh=false -Channel=LUMI_47 , ADC= 17, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 16, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 11, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 13, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 18, OverTh=false -Channel=LUMI_41 , ADC= 12, OverTh=false -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= 141, OverTh=true -Channel=LUMI_19 , ADC= 104, OverTh=true -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= 24, OverTh=false -Channel=LUMI_21 , ADC= 8, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 256, 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= 257, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, 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= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 285, 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= 334, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 365, 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= 367, 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= 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= 257, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 264, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 252, OverTh=false -Channel=TIME_11_04, ADC= 307, 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= 360, 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= 385, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 378, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 157 Run 290683, Event 7580246 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -7, OverTh=false -Channel=LUMI_26 , ADC= 11, OverTh=false -Channel=LUMI_03 , ADC= 9, 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= 4, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 26, 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= 9, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -6, OverTh=false -Channel=LUMI_07 , ADC= -6, OverTh=false -Channel=LUMI_31 , ADC= -5, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 20, OverTh=false -Channel=LUMI_41 , ADC= -17, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 222, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 251, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 251, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 280, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 279, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 252, 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= 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= 259, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 259, 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= 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= 261, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 158 Run 290683, Event 7580678 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 48, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= -11, 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= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 149, OverTh=true -Channel=LUMI_36 , ADC= 24, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 393, OverTh=true -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -7, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 30, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 298, OverTh=true -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 7, 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= 5, OverTh=false -Channel=LUMI_18 , ADC= 49, 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= 10, OverTh=false -Channel=LUMI_44 , ADC= 163, OverTh=true -Channel=LUMI_21 , ADC= 255, OverTh=true -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 258, 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= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, 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= 261, 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= 258, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 253, 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= 261, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 267, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 265, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 264, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 276, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 159 Run 290683, Event 7580768 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 324, OverTh=true -Channel=LUMI_01 , ADC= 48, OverTh=false -Channel=LUMI_25 , ADC= 144, OverTh=true -Channel=LUMI_02 , ADC= 11, OverTh=false -Channel=LUMI_26 , ADC= 102, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 25, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 14, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 31, 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= 1, OverTh=false -Channel=LUMI_16 , ADC= -20, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 8, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 557, OverTh=true -Channel=LUMI_30 , ADC= 473, OverTh=true -Channel=LUMI_07 , ADC= 181, OverTh=true -Channel=LUMI_31 , ADC= 121, OverTh=true -Channel=LUMI_08 , ADC= 363, OverTh=true -Channel=LUMI_32 , ADC= 11, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= 33, OverTh=false -Channel=LUMI_41 , ADC= 22, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 23, OverTh=false -Channel=LUMI_43 , ADC= 93, OverTh=true -Channel=LUMI_20 , ADC= 381, OverTh=true -Channel=LUMI_44 , ADC= 12, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 353, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 404, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 352, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 402, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 351, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 399, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 342, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 398, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 309, OverTh=false -Channel=TIME_05_12, ADC= 279, OverTh=false -Channel=TIME_29_04, ADC= 360, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 322, OverTh=false -Channel=TIME_29_05, ADC= 283, OverTh=false -Channel=TIME_29_13, ADC= 346, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 355, OverTh=false -Channel=TIME_29_06, ADC= 239, OverTh=false -Channel=TIME_29_14, ADC= 413, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 358, OverTh=false -Channel=TIME_29_07, ADC= 235, OverTh=false -Channel=TIME_29_15, ADC= 420, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 272, OverTh=false -Channel=TIME_35_08, ADC= 250, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 267, OverTh=false -Channel=TIME_35_09, ADC= 251, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 262, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 250, OverTh=false -Channel=TIME_11_04, ADC= 284, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 250, OverTh=false -Channel=TIME_11_05, ADC= 325, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 259, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 353, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 291, OverTh=false -Channel=TIME_11_07, ADC= 353, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 286, OverTh=false PrintHeader_7bb0e124 INFO # 160 Run 290683, Event 7581061 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 5, 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= 3, 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= 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 9, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 8, OverTh=false -Channel=LUMI_08 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 11, 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= 4, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, 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= 257, OverTh=false -Channel=TIME_29_02, ADC= 259, 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= 255, 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= 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= 258, 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= 255, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 257, 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= 259, 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= 259, 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= 259, OverTh=false -Channel=TIME_35_04, ADC= 254, 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= 256, 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= 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= 256, OverTh=false PrintHeader_7bb0e124 INFO # 161 Run 290683, Event 7581211 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 212, OverTh=true -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 93, OverTh=true -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 54, OverTh=true -Channel=LUMI_27 , ADC= 10, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= -11, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 51, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -6, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 23, OverTh=false -Channel=LUMI_31 , ADC= 20, OverTh=false -Channel=LUMI_08 , ADC= -14, 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= -3, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= 9, OverTh=false -Channel=LUMI_42 , ADC= 19, OverTh=false -Channel=LUMI_19 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 347, OverTh=false -Channel=TIME_05_08, ADC= 357, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 349, OverTh=false -Channel=TIME_05_09, ADC= 354, OverTh=false -Channel=TIME_29_01, ADC= 241, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 350, OverTh=false -Channel=TIME_05_10, ADC= 352, OverTh=false -Channel=TIME_29_02, ADC= 240, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 342, OverTh=false -Channel=TIME_05_11, ADC= 341, OverTh=false -Channel=TIME_29_03, ADC= 243, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 292, OverTh=false -Channel=TIME_05_12, ADC= 322, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 235, OverTh=false -Channel=TIME_05_13, ADC= 326, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 247, OverTh=false -Channel=TIME_05_06, ADC= 262, OverTh=false -Channel=TIME_05_14, ADC= 345, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 238, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 347, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 239, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, 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= 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 273, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 266, 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 # 162 Run 290683, Event 7581552 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 8, 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= -2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -7, OverTh=false -Channel=LUMI_28 , ADC= -1, 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= -3, 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= 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= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 14, OverTh=false -Channel=LUMI_31 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 7, 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= 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= 1, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 3, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 262, 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= 261, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, 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= 258, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 265, 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= 266, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 267, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 262, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 269, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 252, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 282, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 163 Run 290683, Event 7581586 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 589, OverTh=true -Channel=LUMI_24 , ADC= 35, OverTh=false -Channel=LUMI_01 , ADC= 273, OverTh=true -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 789, OverTh=true -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 26, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 10, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 29, OverTh=false -Channel=LUMI_13 , ADC= 26, OverTh=false -Channel=LUMI_37 , ADC= 10, OverTh=false -Channel=LUMI_14 , ADC= 8, 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= 4, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 11, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 160, OverTh=true -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 223, OverTh=true -Channel=LUMI_32 , ADC= 14, OverTh=false -Channel=LUMI_09 , ADC= -4, OverTh=false -Channel=LUMI_33 , ADC= 9, OverTh=false -Channel=LUMI_10 , ADC= 9, 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= 110, OverTh=true -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 30, OverTh=false -Channel=LUMI_21 , ADC= 179, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 249, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 248, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 252, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 250, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 252, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 264, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 260, 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= 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= 254, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 252, 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= 253, OverTh=false -Channel=TIME_11_04, ADC= 257, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 164 Run 290683, Event 7581718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 22, OverTh=false -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= -19, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 11, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= -7, OverTh=false -Channel=PIN_02 , ADC= -11, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= -3, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 17, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 261, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 15, OverTh=false -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 253, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 260, 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= 260, OverTh=false -Channel=TIME_29_02, ADC= 258, 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= 265, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 280, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 291, 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= 290, 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= 257, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 263, 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= 261, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 261, 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= 313, 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= 399, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 448, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 438, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 165 Run 290683, Event 7581927 -PlumeRawToDigits_89428f2d 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= 87, OverTh=true -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= 4, 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= 1, 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= 5, 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= 91, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 52, OverTh=true -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= 3, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, 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= 256, 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= 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= 257, 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= 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 256, 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= 254, 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 261, 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= 260, 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= 260, 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= 258, 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= 257, 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= 257, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 166 Run 290683, Event 7581965 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 78, OverTh=true -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 475, OverTh=true -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= 12, 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= 2, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 9, 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= 10, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 248, OverTh=false -Channel=TIME_05_08, ADC= 371, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 249, OverTh=false -Channel=TIME_05_09, ADC= 370, 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= 368, 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= 359, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 317, OverTh=false -Channel=TIME_29_04, ADC= 259, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 236, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 239, 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= 287, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 289, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 251, OverTh=false -Channel=TIME_11_10, ADC= 286, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 253, OverTh=false -Channel=TIME_11_11, ADC= 281, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 251, OverTh=false -Channel=TIME_11_12, ADC= 264, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, 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= 252, OverTh=false -Channel=TIME_11_14, ADC= 250, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 250, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 167 Run 290683, Event 7581996 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 15, OverTh=false -Channel=LUMI_24 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 10, OverTh=false -Channel=LUMI_27 , ADC= 9, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 20, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 9, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 11, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 40, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 17, OverTh=false -Channel=LUMI_47 , ADC= 67, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= -14, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 18, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 18, OverTh=false -Channel=LUMI_31 , ADC= 14, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 27, OverTh=false -Channel=LUMI_41 , ADC= 77, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 35, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 9, OverTh=false -Channel=LUMI_21 , ADC= 11, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 254, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 253, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 269, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 269, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 267, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 265, 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= 260, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 271, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 271, OverTh=false -Channel=TIME_35_07, ADC= 262, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 168 Run 290683, Event 7578066 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= -7, 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= 73, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 64, OverTh=true -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= 25, OverTh=false -Channel=LUMI_38 , ADC= 8, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= -9, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 4, 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= -6, 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= -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= -1, OverTh=false -Channel=LUMI_44 , ADC= 0, 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= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 212, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 211, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 215, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 216, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 225, OverTh=false -Channel=TIME_05_12, ADC= 251, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 229, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 280, OverTh=false -Channel=TIME_05_14, ADC= 207, OverTh=false -Channel=TIME_29_06, ADC= 263, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 276, OverTh=false -Channel=TIME_05_15, ADC= 212, OverTh=false -Channel=TIME_29_07, ADC= 263, 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= 255, 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= 259, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 253, 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= 250, OverTh=false -Channel=TIME_11_06, ADC= 261, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 263, OverTh=false -Channel=TIME_35_14, ADC= 250, 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= 252, OverTh=false PrintHeader_7bb0e124 INFO # 169 Run 290683, Event 7578307 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 7, 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= 3, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 7, 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= 5, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -15, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 2, 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= 92, OverTh=true -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 490, OverTh=true -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 52, OverTh=true -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= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 255, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 257, 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= 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= 255, 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= 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= 261, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 260, 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= 260, 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= 257, OverTh=false -Channel=TIME_35_11, ADC= 255, 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= 257, 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= 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= 264, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 170 Run 290683, Event 7578446 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -26, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 0, 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= -2, 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= 16, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 8, OverTh=false -Channel=LUMI_39 , ADC= 218, OverTh=true -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -5, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -11, OverTh=false -Channel=LUMI_09 , ADC= 14, 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= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 322, OverTh=true -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= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 252, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 253, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 248, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 251, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 253, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 252, 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= 254, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 254, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 261, 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= 259, 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= 260, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 261, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 171 Run 290683, Event 7578749 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, 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= 1, OverTh=false -Channel=LUMI_03 , ADC= -2, 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= -2, 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= 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= 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=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 0, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 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= 255, 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= 258, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, 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= 259, 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= 255, 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= 256, 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= 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= 258, OverTh=false -Channel=TIME_35_02, ADC= 255, 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= 256, 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= 257, OverTh=false -Channel=TIME_11_05, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_06, ADC= 259, 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= 255, OverTh=false PrintHeader_7bb0e124 INFO # 172 Run 290683, Event 7578759 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 298, OverTh=true -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= 283, OverTh=true -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= 792, OverTh=true -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= -1, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 98, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 354, OverTh=true -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= 7, OverTh=false -Channel=LUMI_22 , ADC= 325, OverTh=true -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 1, 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= 258, 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= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 270, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 305, 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= 327, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 323, 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= 256, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 256, 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= 255, 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= 257, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 288, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 302, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 312, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 311, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 173 Run 290683, Event 7586234 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 5, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 10, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -14, 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= 4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 15, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -7, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 8, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 267, 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= 272, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 252, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 252, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 252, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 270, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 269, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 174 Run 290683, Event 7586818 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 283, OverTh=true -Channel=LUMI_24 , ADC= 204, OverTh=true -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= 6, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 9, 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= 0, 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= 33, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -9, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 411, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 418, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 410, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 414, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 404, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 411, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 390, OverTh=false -Channel=TIME_05_11, ADC= 263, OverTh=false -Channel=TIME_29_03, ADC= 405, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 325, OverTh=false -Channel=TIME_05_12, ADC= 300, OverTh=false -Channel=TIME_29_04, ADC= 339, OverTh=false -Channel=TIME_29_12, ADC= 297, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 376, OverTh=false -Channel=TIME_29_05, ADC= 248, OverTh=false -Channel=TIME_29_13, ADC= 390, OverTh=false -Channel=TIME_05_06, ADC= 230, OverTh=false -Channel=TIME_05_14, ADC= 426, OverTh=false -Channel=TIME_29_06, ADC= 224, OverTh=false -Channel=TIME_29_14, ADC= 439, OverTh=false -Channel=TIME_05_07, ADC= 232, OverTh=false -Channel=TIME_05_15, ADC= 426, OverTh=false -Channel=TIME_29_07, ADC= 228, OverTh=false -Channel=TIME_29_15, ADC= 437, OverTh=false -Channel=TIME_11_00, ADC= 251, 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= 253, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 249, 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= 252, 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= 252, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 250, OverTh=false -Channel=TIME_35_05, ADC= 257, 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= 256, OverTh=false -Channel=TIME_35_14, ADC= 269, OverTh=false -Channel=TIME_11_07, ADC= 261, OverTh=false -Channel=TIME_11_15, ADC= 252, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 263, OverTh=false PrintHeader_7bb0e124 INFO # 175 Run 290683, Event 7579051 -PlumeRawToDigits_89428f2d 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= 7, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= -2, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 739, OverTh=true -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -7, 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= -4, 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= -2, OverTh=false -Channel=LUMI_18 , ADC= 31, OverTh=false -Channel=LUMI_42 , ADC= 479, OverTh=true -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 9, OverTh=false -Channel=LUMI_20 , ADC= 4, 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= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 376, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 374, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 374, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 369, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 334, OverTh=false -Channel=TIME_05_12, ADC= 274, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 275, OverTh=false -Channel=TIME_05_13, ADC= 330, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 242, OverTh=false -Channel=TIME_05_14, ADC= 380, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 264, OverTh=false -Channel=TIME_05_07, ADC= 241, OverTh=false -Channel=TIME_05_15, ADC= 383, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 261, 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= 257, OverTh=false -Channel=TIME_11_10, ADC= 262, 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= 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 258, 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= 259, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 280, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 275, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 176 Run 290683, Event 7579438 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 81, OverTh=true -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 9, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 96, OverTh=true -Channel=LUMI_26 , ADC= 253, OverTh=true -Channel=LUMI_03 , ADC= 30, 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= -4, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 143, OverTh=true -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= 291, OverTh=true -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 10, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= -7, OverTh=false -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -13, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 81, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 250, OverTh=true -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= 302, OverTh=true -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 58, OverTh=true -Channel=LUMI_44 , ADC= -2, 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= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, 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= 259, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 265, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 292, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 318, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 318, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 261, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 252, OverTh=false -Channel=TIME_11_10, ADC= 263, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 257, 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= 265, 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= 268, 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= 273, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 277, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 177 Run 290683, Event 7579597 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 68, OverTh=true -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 11, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 8, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -9, OverTh=false -Channel=LUMI_12 , ADC= -4, 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= -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= 1, OverTh=false -Channel=LUMI_23 , ADC= 16, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 24, OverTh=false -Channel=LUMI_31 , ADC= 70, OverTh=true -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= -3, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -5, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 23, OverTh=false -Channel=LUMI_42 , ADC= -5, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 260, 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= 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= 255, 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= 253, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 252, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 253, OverTh=false -Channel=TIME_05_06, ADC= 258, 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= 254, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 263, OverTh=false -Channel=TIME_11_08, ADC= 304, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 304, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 266, OverTh=false -Channel=TIME_11_10, ADC= 302, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 264, OverTh=false -Channel=TIME_11_11, ADC= 300, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 278, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 260, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, 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= 256, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 178 Run 290683, Event 7579885 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 135, OverTh=true -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 165, OverTh=true -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 11, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 94, OverTh=true -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= -1, OverTh=false -Channel=LUMI_13 , ADC= -12, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 135, OverTh=true -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 115, OverTh=true -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= 445, OverTh=true -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 15, OverTh=false -Channel=LUMI_31 , ADC= 29, OverTh=false -Channel=LUMI_08 , ADC= 110, OverTh=true -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 255, OverTh=true -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 71, OverTh=true -Channel=LUMI_34 , ADC= 323, OverTh=true -Channel=LUMI_17 , ADC= 24, OverTh=false -Channel=LUMI_41 , ADC= 232, OverTh=true -Channel=LUMI_18 , ADC= 80, OverTh=true -Channel=LUMI_42 , ADC= 315, OverTh=true -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 23, OverTh=false -Channel=LUMI_20 , ADC= 219, OverTh=true -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 30, OverTh=false -Channel=LUMI_22 , ADC= 34, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 256, 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= 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= 253, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, 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= 256, OverTh=false -Channel=TIME_05_05, ADC= 261, 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= 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= 258, OverTh=false -Channel=TIME_05_15, ADC= 252, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 448, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 364, OverTh=false -Channel=TIME_35_08, ADC= 322, OverTh=false -Channel=TIME_11_01, ADC= 443, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 369, OverTh=false -Channel=TIME_35_09, ADC= 321, OverTh=false -Channel=TIME_11_02, ADC= 438, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 363, OverTh=false -Channel=TIME_35_10, ADC= 312, OverTh=false -Channel=TIME_11_03, ADC= 418, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 339, OverTh=false -Channel=TIME_35_11, ADC= 317, OverTh=false -Channel=TIME_11_04, ADC= 330, OverTh=false -Channel=TIME_11_12, ADC= 317, OverTh=false -Channel=TIME_35_04, ADC= 263, OverTh=false -Channel=TIME_35_12, ADC= 338, OverTh=false -Channel=TIME_11_05, ADC= 246, OverTh=false -Channel=TIME_11_13, ADC= 417, OverTh=false -Channel=TIME_35_05, ADC= 251, OverTh=false -Channel=TIME_35_13, ADC= 353, OverTh=false -Channel=TIME_11_06, ADC= 224, OverTh=false -Channel=TIME_11_14, ADC= 473, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 368, OverTh=false -Channel=TIME_11_07, ADC= 232, OverTh=false -Channel=TIME_11_15, ADC= 461, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 369, OverTh=false PrintHeader_7bb0e124 INFO # 179 Run 290683, Event 7584316 -PlumeRawToDigits_89428f2d 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= 0, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , 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= 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= -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= 3, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, 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= 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= 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= 257, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 255, 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= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 261, 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= 256, 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= 255, OverTh=false -Channel=TIME_35_09, ADC= 254, 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= 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= 259, 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= 257, 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= 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= 254, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 180 Run 290683, Event 7584435 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 14, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 13, 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= 11, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 173, OverTh=true -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= 6, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 21, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 7, OverTh=false -Channel=PIN_02 , ADC= -9, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 310, OverTh=true -Channel=LUMI_07 , ADC= 659, OverTh=true -Channel=LUMI_31 , ADC= -3, OverTh=false -Channel=LUMI_08 , ADC= -7, OverTh=false -Channel=LUMI_32 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_17 , ADC= 19, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 283, OverTh=true -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 232, OverTh=true -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 66, OverTh=true -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 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= 255, 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= 260, 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= 256, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 265, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 266, OverTh=false -Channel=TIME_05_15, ADC= 259, 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= 260, 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= 258, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 258, 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= 282, 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= 341, 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= 368, 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= 357, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 181 Run 290683, Event 7584621 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 18, OverTh=false -Channel=LUMI_24 , ADC= 37, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -9, OverTh=false -Channel=LUMI_26 , ADC= 4, 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= 1, 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= 3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 7, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 11, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 23, OverTh=false -Channel=LUMI_30 , ADC= 8, 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= -7, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -6, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, 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= -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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 261, 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= 258, 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= 261, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 262, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 257, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, 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= 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= 256, OverTh=false -Channel=TIME_11_13, ADC= 257, 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= 258, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 182 Run 290683, Event 7584655 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 203, OverTh=true -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= -2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= -8, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= 5, OverTh=false -Channel=LUMI_23 , ADC= 24, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 12, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -21, OverTh=false -Channel=LUMI_07 , ADC= 11, 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= -6, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 8, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -4, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= 3, 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= -2, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 246, OverTh=false -Channel=TIME_29_08, ADC= 371, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 250, OverTh=false -Channel=TIME_29_09, ADC= 370, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 251, OverTh=false -Channel=TIME_29_10, ADC= 368, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 251, OverTh=false -Channel=TIME_29_11, ADC= 362, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 324, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 265, 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= 236, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 234, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 252, 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= 253, OverTh=false -Channel=TIME_35_01, ADC= 254, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 256, 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= 255, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 266, 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= 275, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 266, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 280, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 283, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 183 Run 290683, Event 7585022 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -12, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -23, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= -9, OverTh=false -Channel=LUMI_27 , ADC= -6, OverTh=false -Channel=LUMI_04 , ADC= -4, 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= 4, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -27, OverTh=false -Channel=LUMI_39 , ADC= -9, 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= 15, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -5, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 3, 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= -2, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= -7, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 254, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 253, 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 255, 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= 253, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 251, 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= 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= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 249, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 246, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 249, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 252, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 253, 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= 269, 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= 277, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 278, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 281, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 184 Run 290683, Event 7585140 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 42, 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= 34, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 279, OverTh=true -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 14, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 19, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 136, OverTh=true -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 269, OverTh=true -Channel=LUMI_30 , ADC= -10, 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= -3, OverTh=false -Channel=LUMI_33 , ADC= 108, OverTh=true -Channel=LUMI_10 , ADC= 13, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 59, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 14, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 67, OverTh=true -Channel=LUMI_43 , ADC= -8, OverTh=false -Channel=LUMI_20 , ADC= 329, OverTh=true -Channel=LUMI_44 , ADC= 72, OverTh=true -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 312, OverTh=true -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 271, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 265, OverTh=false -Channel=TIME_05_01, ADC= 272, OverTh=false -Channel=TIME_05_09, ADC= 263, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 272, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 271, 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= 264, OverTh=false -Channel=TIME_05_12, ADC= 263, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 262, OverTh=false -Channel=TIME_05_13, ADC= 266, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 277, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 269, OverTh=false -Channel=TIME_29_07, ADC= 276, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 268, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_04, ADC= 261, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 260, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 271, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 282, OverTh=false -Channel=TIME_35_06, ADC= 286, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 277, OverTh=false -Channel=TIME_35_07, ADC= 291, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 185 Run 290683, Event 7585183 -PlumeRawToDigits_89428f2d 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= -5, OverTh=false -Channel=LUMI_02 , ADC= -6, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= -11, 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= -1, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= -11, 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= 3, OverTh=false -Channel=LUMI_47 , ADC= -10, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 347, OverTh=true -Channel=LUMI_30 , ADC= -9, 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= 4, 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= 3, OverTh=false -Channel=LUMI_41 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -6, 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= 8, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, 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= 261, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 286, 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= 296, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 299, 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= 259, 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= 258, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 259, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 186 Run 290683, Event 7585210 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -11, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 354, OverTh=true -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -7, OverTh=false -Channel=LUMI_03 , ADC= -3, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 16, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 59, OverTh=true -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= 1, OverTh=false -Channel=LUMI_16 , ADC= 9, OverTh=false -Channel=LUMI_40 , ADC= 6, OverTh=false -Channel=LUMI_23 , ADC= -8, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -9, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -11, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 16, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 13, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 16, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 80, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 28, OverTh=false -Channel=LUMI_43 , ADC= 26, OverTh=false -Channel=LUMI_20 , ADC= 146, OverTh=true -Channel=LUMI_44 , ADC= 15, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= 14, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 261, 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= 264, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 261, 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= 259, 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= 259, 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= 255, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 254, OverTh=false -Channel=TIME_05_15, ADC= 260, 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= 259, 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= 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= 257, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 252, 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= 254, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_14, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 187 Run 290683, Event 7585326 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 294, OverTh=true -Channel=LUMI_01 , ADC= 92, OverTh=true -Channel=LUMI_25 , ADC= -7, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 2, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -6, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -4, OverTh=false -Channel=LUMI_38 , ADC= -5, 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= -3, OverTh=false -Channel=LUMI_23 , ADC= 74, OverTh=true -Channel=LUMI_47 , ADC= 294, OverTh=true -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 15, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= -5, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 15, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 16, 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= 80, OverTh=true -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 296, OverTh=true -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 4, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 283, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 279, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 280, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 262, OverTh=false -Channel=TIME_29_03, ADC= 282, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 293, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 354, OverTh=false -Channel=TIME_05_13, ADC= 261, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 280, OverTh=false -Channel=TIME_05_06, ADC= 403, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 286, OverTh=false -Channel=TIME_05_07, ADC= 401, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 287, 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= 257, 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= 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= 258, OverTh=false -Channel=TIME_35_03, ADC= 266, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 315, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 351, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 262, OverTh=false -Channel=TIME_11_14, ADC= 261, OverTh=false -Channel=TIME_35_06, ADC= 377, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 268, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 376, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 188 Run 290683, Event 7585422 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= -5, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -4, 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= -3, 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= -4, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 232, OverTh=true -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -4, 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= -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= 1, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= 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=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 2, 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= 254, 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= 257, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, 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= 257, OverTh=false -Channel=TIME_05_05, ADC= 259, 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= 258, 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= 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= 255, 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= 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= 255, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 259, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 189 Run 290683, Event 7585797 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 30, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 121, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 8, OverTh=false -Channel=LUMI_36 , ADC= 184, OverTh=true -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 612, OverTh=true -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 10, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -18, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -19, OverTh=false -Channel=LUMI_08 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 13, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= -13, OverTh=false -Channel=LUMI_44 , ADC= 8, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 265, 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= 267, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 266, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 267, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 280, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 335, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 382, OverTh=false -Channel=TIME_05_14, ADC= 251, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 377, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 270, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 267, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 266, 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= 263, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 263, 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= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 271, 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= 269, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 190 Run 290683, Event 7587058 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= -12, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 124, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 14, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -15, OverTh=false -Channel=LUMI_39 , ADC= -12, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -10, OverTh=false -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -12, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 21, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 341, OverTh=true -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 8, OverTh=false -Channel=LUMI_17 , ADC= 33, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 45, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 268, OverTh=true -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= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 263, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 263, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 264, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 260, 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= 266, 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= 260, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 262, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 258, 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= 257, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 267, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 264, OverTh=false PrintHeader_7bb0e124 INFO # 191 Run 290683, Event 7587347 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 196, OverTh=true -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 35, OverTh=false -Channel=LUMI_25 , ADC= 128, OverTh=true -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 330, OverTh=true -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 463, OverTh=true -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 448, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 66, OverTh=true -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 772, OverTh=true -Channel=LUMI_15 , ADC= -8, OverTh=false -Channel=LUMI_39 , ADC= 8, OverTh=false -Channel=LUMI_16 , ADC= 18, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 181, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 406, OverTh=true -Channel=LUMI_30 , ADC= 188, OverTh=true -Channel=LUMI_07 , ADC= 121, OverTh=true -Channel=LUMI_31 , ADC= 47, OverTh=false -Channel=LUMI_08 , ADC= 6, OverTh=false -Channel=LUMI_32 , ADC= 12, OverTh=false -Channel=LUMI_09 , ADC= 551, OverTh=true -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 128, OverTh=true -Channel=LUMI_34 , ADC= 242, OverTh=true -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 153, OverTh=true -Channel=LUMI_18 , ADC= 256, OverTh=true -Channel=LUMI_42 , ADC= 425, OverTh=true -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 53, OverTh=true -Channel=LUMI_21 , ADC= 178, OverTh=true -Channel=LUMI_45 , ADC= 465, OverTh=true -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 40, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 361, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 416, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 360, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 413, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 357, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 412, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 351, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 409, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 319, OverTh=false -Channel=TIME_05_12, ADC= 276, OverTh=false -Channel=TIME_29_04, ADC= 359, OverTh=false -Channel=TIME_29_12, ADC= 286, OverTh=false -Channel=TIME_05_05, ADC= 262, OverTh=false -Channel=TIME_05_13, ADC= 327, OverTh=false -Channel=TIME_29_05, ADC= 270, OverTh=false -Channel=TIME_29_13, ADC= 370, OverTh=false -Channel=TIME_05_06, ADC= 242, OverTh=false -Channel=TIME_05_14, ADC= 373, OverTh=false -Channel=TIME_29_06, ADC= 230, OverTh=false -Channel=TIME_29_14, ADC= 430, OverTh=false -Channel=TIME_05_07, ADC= 242, OverTh=false -Channel=TIME_05_15, ADC= 370, OverTh=false -Channel=TIME_29_07, ADC= 232, OverTh=false -Channel=TIME_29_15, ADC= 431, OverTh=false -Channel=TIME_11_00, ADC= 372, OverTh=false -Channel=TIME_11_08, ADC= 270, OverTh=false -Channel=TIME_35_00, ADC= 246, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 373, OverTh=false -Channel=TIME_11_09, ADC= 267, OverTh=false -Channel=TIME_35_01, ADC= 249, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 370, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 248, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 356, OverTh=false -Channel=TIME_11_11, ADC= 265, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 294, OverTh=false -Channel=TIME_11_12, ADC= 307, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 373, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 273, OverTh=false -Channel=TIME_11_14, ADC= 395, OverTh=false -Channel=TIME_35_06, ADC= 271, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 385, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 192 Run 290683, Event 7587379 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -6, OverTh=false -Channel=LUMI_01 , ADC= 27, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= 6, 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= 9, OverTh=false -Channel=LUMI_13 , ADC= -16, 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= -7, OverTh=false -Channel=LUMI_39 , ADC= -6, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -16, OverTh=false -Channel=LUMI_23 , ADC= 80, OverTh=true -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 84, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 14, 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= -16, 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= -6, OverTh=false -Channel=LUMI_43 , ADC= -14, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 298, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 298, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 294, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 296, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 272, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 280, OverTh=false -Channel=TIME_29_12, ADC= 267, OverTh=false -Channel=TIME_05_05, ADC= 308, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 291, OverTh=false -Channel=TIME_05_06, ADC= 331, OverTh=false -Channel=TIME_05_14, ADC= 258, OverTh=false -Channel=TIME_29_06, ADC= 250, OverTh=false -Channel=TIME_29_14, ADC= 303, OverTh=false -Channel=TIME_05_07, ADC= 331, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 249, OverTh=false -Channel=TIME_29_15, ADC= 300, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 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= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 289, 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= 339, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 356, 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= 349, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 193 Run 290683, Event 7587407 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -5, 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= -2, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -5, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -7, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -11, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , 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= 2, OverTh=false -Channel=LUMI_09 , ADC= -4, 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= 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= 2, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 256, 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= 256, 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= 259, 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= 258, 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= 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= 259, 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= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 259, 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= 261, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 194 Run 290683, Event 7587431 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -1, 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= 0, 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= -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= -2, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_33 , ADC= 3, 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= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 258, OverTh=false -Channel=TIME_05_09, ADC= 254, 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= 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= 259, 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= 258, 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= 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 263, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 263, 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= 264, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, 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= 262, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 195 Run 290683, Event 7576026 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 270, OverTh=true -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 24, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 14, OverTh=false -Channel=LUMI_28 , ADC= 124, OverTh=true -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 28, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 11, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= -5, OverTh=false -Channel=LUMI_15 , ADC= 305, OverTh=true -Channel=LUMI_39 , ADC= 45, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 10, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= -14, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 63, OverTh=true -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 8, OverTh=false -Channel=LUMI_10 , ADC= 12, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 521, OverTh=true -Channel=LUMI_42 , ADC= 337, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 184, OverTh=true -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 630, OverTh=true -Channel=LUMI_45 , ADC= -7, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 263, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 262, 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= 261, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 269, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 267, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 255, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 257, 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= 255, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, 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= 255, 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= 256, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 254, 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= 255, 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 # 196 Run 290683, Event 7576329 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 49, OverTh=false -Channel=LUMI_24 , ADC= 68, OverTh=true -Channel=LUMI_01 , ADC= -21, OverTh=false -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= 670, OverTh=true -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 62, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 41, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 10, 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= 6, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 43, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 70, OverTh=true -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 0, 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= 89, OverTh=true -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= -3, 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= -1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 253, 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= 256, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 249, OverTh=false -Channel=TIME_11_08, ADC= 346, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 294, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 345, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 294, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 338, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 292, OverTh=false -Channel=TIME_11_03, ADC= 248, OverTh=false -Channel=TIME_11_11, ADC= 328, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 281, OverTh=false -Channel=TIME_11_04, ADC= 232, OverTh=false -Channel=TIME_11_12, ADC= 299, OverTh=false -Channel=TIME_35_04, ADC= 236, OverTh=false -Channel=TIME_35_12, ADC= 261, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 249, OverTh=false -Channel=TIME_11_06, ADC= 285, OverTh=false -Channel=TIME_11_14, ADC= 241, OverTh=false -Channel=TIME_35_06, ADC= 274, OverTh=false -Channel=TIME_35_14, ADC= 246, OverTh=false -Channel=TIME_11_07, ADC= 278, OverTh=false -Channel=TIME_11_15, ADC= 242, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 247, OverTh=false PrintHeader_7bb0e124 INFO # 197 Run 290683, Event 7576439 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 25, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= -8, OverTh=false -Channel=LUMI_02 , ADC= -6, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -9, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -9, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= -11, OverTh=false -Channel=LUMI_15 , ADC= 277, OverTh=true -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 116, OverTh=true -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 7, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -11, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= -4, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -7, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 16, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= -7, 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= -4, OverTh=false -Channel=LUMI_46 , ADC= 80, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 245, OverTh=false -Channel=TIME_05_08, ADC= 362, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 416, OverTh=false -Channel=TIME_05_01, ADC= 248, OverTh=false -Channel=TIME_05_09, ADC= 362, OverTh=false -Channel=TIME_29_01, ADC= 247, OverTh=false -Channel=TIME_29_09, ADC= 415, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 355, OverTh=false -Channel=TIME_29_02, ADC= 252, OverTh=false -Channel=TIME_29_10, ADC= 411, OverTh=false -Channel=TIME_05_03, ADC= 248, OverTh=false -Channel=TIME_05_11, ADC= 342, OverTh=false -Channel=TIME_29_03, ADC= 252, OverTh=false -Channel=TIME_29_11, ADC= 404, OverTh=false -Channel=TIME_05_04, ADC= 213, OverTh=false -Channel=TIME_05_12, ADC= 290, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 331, OverTh=false -Channel=TIME_05_05, ADC= 249, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 248, OverTh=false -Channel=TIME_05_06, ADC= 268, OverTh=false -Channel=TIME_05_14, ADC= 239, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 219, OverTh=false -Channel=TIME_05_07, ADC= 264, OverTh=false -Channel=TIME_05_15, ADC= 244, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 230, OverTh=false -Channel=TIME_11_00, ADC= 253, 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= 258, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, 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= 259, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 198 Run 290683, Event 7576776 -PlumeRawToDigits_89428f2d 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= 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= -2, OverTh=false -Channel=LUMI_04 , ADC= 0, 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= 2, 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= -5, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 6, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, 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= 259, 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= 254, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 258, 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= 255, 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= 259, 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= 257, 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= 254, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 254, 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= 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= 254, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 253, 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= 258, 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= 259, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 253, 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 # 199 Run 290683, Event 7577028 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 117, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 13, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 161, OverTh=true -Channel=LUMI_04 , ADC= 8, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 465, OverTh=true -Channel=LUMI_13 , ADC= 207, OverTh=true -Channel=LUMI_37 , ADC= 110, OverTh=true -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= 228, OverTh=true -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= 413, OverTh=true -Channel=LUMI_47 , ADC= 15, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -12, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 175, OverTh=true -Channel=LUMI_08 , ADC= 6, OverTh=false -Channel=LUMI_32 , ADC= 253, OverTh=true -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= 284, OverTh=true -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 136, OverTh=true -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 85, OverTh=true -Channel=LUMI_42 , ADC= 304, OverTh=true -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 13, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 301, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 251, OverTh=false -Channel=TIME_05_01, ADC= 300, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 301, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 292, 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= 274, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 252, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 284, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 250, OverTh=false -Channel=TIME_05_06, ADC= 253, OverTh=false -Channel=TIME_05_14, ADC= 311, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 308, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 250, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 261, OverTh=false -Channel=TIME_11_10, ADC= 253, 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= 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= 258, 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= 258, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 272, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 274, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 200 Run 290683, Event 7577151 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 346, OverTh=true -Channel=LUMI_24 , ADC= 242, OverTh=true -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 26, 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= 487, OverTh=true -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 318, OverTh=true -Channel=LUMI_14 , ADC= 473, OverTh=true -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 239, OverTh=true -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 328, OverTh=true -Channel=LUMI_40 , ADC= 49, OverTh=false -Channel=LUMI_23 , ADC= 33, OverTh=false -Channel=LUMI_47 , ADC= 405, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 119, OverTh=true -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 12, OverTh=false -Channel=LUMI_32 , ADC= -4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -4, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 82, OverTh=true -Channel=LUMI_42 , ADC= 119, OverTh=true -Channel=LUMI_19 , ADC= -7, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 308, OverTh=true -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 297, OverTh=false -Channel=TIME_29_08, ADC= 350, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 294, OverTh=false -Channel=TIME_29_09, ADC= 348, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 297, OverTh=false -Channel=TIME_29_10, ADC= 348, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 294, OverTh=false -Channel=TIME_29_11, ADC= 347, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 326, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 247, OverTh=false -Channel=TIME_29_13, ADC= 299, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 236, OverTh=false -Channel=TIME_29_14, ADC= 292, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 236, OverTh=false -Channel=TIME_29_15, ADC= 291, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 291, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 290, 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= 290, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 288, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 244, OverTh=false -Channel=TIME_11_12, ADC= 265, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 241, OverTh=false -Channel=TIME_11_13, ADC= 268, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 252, OverTh=false -Channel=TIME_11_14, ADC= 263, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false -PlumeDigitMonitor_9abf3184 INFO Booked 719 Histogram(s) : 1D=571 2D=23 3D=0 1DProf=125 2DProf=0 3DProf=0 -PlumeRawToDigits_89428f2d INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +PlumeDigitMonitor_b0f85c8c INFO Booked 604 Histogram(s) : 1D=471 2D=21 3D=0 1DProf=112 2DProf=0 3DProf=0 +PlumeLEDMonitor_34b7705b INFO Booked 121 Histogram(s) : 1D=121 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +PlumeRawToDigits_e2724fbc INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 ApplicationMgr INFO Application Manager Stopped successfully -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} +PlumeTuple_4a35a9a2 SUCCESS Booked 1 N-Tuples and 0 Event Tag Collections +PlumeTuple_4a35a9a2 SUCCESS List of booked N-Tuples in directory "FILE1/PlumeTuple_4a35a9a2" +PlumeTuple_4a35a9a2 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_9abf3184 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| - PlumeTuple/PlumeTuple_d36bf254 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeDigitMonitor/PlumeDigitMonitor_b0f85c8c #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeTuple/PlumeTuple_4a35a9a2 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeLEDMonitor/PlumeLEDMonitor_34b7705b #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| HLTControlFlowMgr INFO Histograms converted successfully according to request. NTupleSvc INFO NTuples saved successfully ApplicationMgr INFO Application Manager Finalized successfully @@ -24445,294 +243,194 @@ MDFIOAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks in raw event" | 200 | 126270 | 631.35 | 0.47697 | 631.00 | 632.00 | | "event size statistics (KBytes)" | 306 | 9508 | 31.072 | 6.6638 | 23.000 | 68.000 | -PlumeDigitMonitor_9abf3184 INFO Number of counters : 1 +PlumeDigitMonitor_b0f85c8c INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Number of ADC over threshold for LUMI" | 200 | 792 | 3.9600 | 4.2660 | 0.0000 | 22.000 | PrintHeader_7bb0e124 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "EventCount" | 200 | -PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDigitMonitor_9abf3184" : 571 +PlumeDigitMonitor_b0f85c8c INFO 1D histograms in directory "PlumeDigitMonitor_b0f85c8c" : 471 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | adc_LUMI_00_Beam1 | "ADC for LUMI_00/Beam1" | 15 | 1.1667 | 2.5734 | -0.45032 | -0.64504 | | adc_LUMI_00_Beam2 | "ADC for LUMI_00/Beam2" | 11 | -0.13636 | 2.8690 | 1.4809 | 1.8468 | | adc_LUMI_00_BeamCrossing | "ADC for LUMI_00/BeamCrossing" | 170 | 56.959 | 141.73 | 3.6412 | 15.412 | | adc_LUMI_00_NoBeam | "ADC for LUMI_00/NoBeam" | 3 | 1.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_00_NoBeam_calib_signals | "ADC for LUMI_00/NoBeam/calib signals" | 1 | 694.5 | 0.0000 | 0 | 0 | | adc_LUMI_01_Beam1 | "ADC for LUMI_01/Beam1" | 15 | 1.8333 | 4.2999 | -0.12318 | 1.1403 | | adc_LUMI_01_Beam2 | "ADC for LUMI_01/Beam2" | 11 | -1.5 | 2.4495 | -0.33402 | -1.0455 | | adc_LUMI_01_BeamCrossing | "ADC for LUMI_01/BeamCrossing" | 170 | 37.771 | 99.381 | 3.0913 | 9.0632 | | adc_LUMI_01_NoBeam | "ADC for LUMI_01/NoBeam" | 3 | 1.1667 | 2.4944 | 0.3818 | -1.5 | - | adc_LUMI_01_NoBeam_calib_signals | "ADC for LUMI_01/NoBeam/calib signals" | 1 | 628.5 | 0.0000 | 0 | 0 | | adc_LUMI_02_Beam1 | "ADC for LUMI_02/Beam1" | 15 | 1.8333 | 4.9351 | 1.6701 | 1.4528 | | adc_LUMI_02_Beam2 | "ADC for LUMI_02/Beam2" | 11 | -0.86364 | 1.8227 | 0.36625 | -1.0538 | | adc_LUMI_02_BeamCrossing | "ADC for LUMI_02/BeamCrossing" | 170 | 45.859 | 132.90 | 3.5899 | 13.23 | | adc_LUMI_02_NoBeam | "ADC for LUMI_02/NoBeam" | 3 | -0.83333 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_02_NoBeam_calib_signals | "ADC for LUMI_02/NoBeam/calib signals" | 1 | 760.5 | 0.0000 | 0 | 0 | | adc_LUMI_03_Beam1 | "ADC for LUMI_03/Beam1" | 15 | 0.9 | 2.1541 | -0.043222 | 0.16825 | | adc_LUMI_03_Beam2 | "ADC for LUMI_03/Beam2" | 11 | -0.68182 | 2.4427 | -0.57463 | -0.86042 | | adc_LUMI_03_BeamCrossing | "ADC for LUMI_03/BeamCrossing" | 170 | 14.694 | 43.678 | 4.5186 | 22.414 | | adc_LUMI_03_NoBeam | "ADC for LUMI_03/NoBeam" | 3 | -1.1667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_03_NoBeam_calib_signals | "ADC for LUMI_03/NoBeam/calib signals" | 1 | 709.5 | 0.0000 | 0 | 0 | | adc_LUMI_04_Beam1 | "ADC for LUMI_04/Beam1" | 15 | 1.3 | 4.3848 | 1.8237 | 2.787 | | adc_LUMI_04_Beam2 | "ADC for LUMI_04/Beam2" | 11 | 8.0455 | 26.424 | 2.8326 | 6.0553 | | adc_LUMI_04_BeamCrossing | "ADC for LUMI_04/BeamCrossing" | 170 | 13.365 | 51.878 | 6.3136 | 43.95 | | adc_LUMI_04_NoBeam | "ADC for LUMI_04/NoBeam" | 3 | 2.8333 | 2.6247 | 0.6309 | -1.5 | - | adc_LUMI_04_NoBeam_calib_signals | "ADC for LUMI_04/NoBeam/calib signals" | 1 | 701.5 | 0.0000 | 0 | 0 | | adc_LUMI_06_Beam1 | "ADC for LUMI_06/Beam1" | 15 | 2.1667 | 2.4676 | 1.4771 | 2.7106 | | adc_LUMI_06_Beam2 | "ADC for LUMI_06/Beam2" | 11 | 37.318 | 110.22 | 2.835 | 6.0622 | | adc_LUMI_06_BeamCrossing | "ADC for LUMI_06/BeamCrossing" | 170 | 58.2 | 133.25 | 2.6129 | 6.4811 | | adc_LUMI_06_NoBeam | "ADC for LUMI_06/NoBeam" | 3 | 4.1667 | 3.6818 | -0.13506 | -1.5 | - | adc_LUMI_06_NoBeam_calib_signals | "ADC for LUMI_06/NoBeam/calib signals" | 1 | 676.5 | 0.0000 | 0 | 0 | | adc_LUMI_07_Beam1 | "ADC for LUMI_07/Beam1" | 15 | 3.1667 | 3.8413 | 0.60796 | -0.64217 | | adc_LUMI_07_Beam2 | "ADC for LUMI_07/Beam2" | 11 | 5.5909 | 15.156 | 2.6365 | 5.3691 | | adc_LUMI_07_BeamCrossing | "ADC for LUMI_07/BeamCrossing" | 170 | 35.282 | 90.157 | 3.7114 | 15.947 | | adc_LUMI_07_NoBeam | "ADC for LUMI_07/NoBeam" | 3 | 0.16667 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_07_NoBeam_calib_signals | "ADC for LUMI_07/NoBeam/calib signals" | 1 | 781.5 | 0.0000 | 0 | 0 | | adc_LUMI_08_Beam1 | "ADC for LUMI_08/Beam1" | 15 | 0.43333 | 2.0483 | 0.18301 | -0.47155 | | adc_LUMI_08_Beam2 | "ADC for LUMI_08/Beam2" | 11 | -0.77273 | 1.5428 | 0.31304 | -0.030527 | | adc_LUMI_08_BeamCrossing | "ADC for LUMI_08/BeamCrossing" | 170 | 41.276 | 112.92 | 3.6225 | 14.908 | | adc_LUMI_08_NoBeam | "ADC for LUMI_08/NoBeam" | 3 | 0.83333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_08_NoBeam_calib_signals | "ADC for LUMI_08/NoBeam/calib signals" | 1 | 711.5 | 0.0000 | 0 | 0 | | adc_LUMI_09_Beam1 | "ADC for LUMI_09/Beam1" | 15 | 0.43333 | 2.0806 | -0.35536 | 0.33868 | | adc_LUMI_09_Beam2 | "ADC for LUMI_09/Beam2" | 11 | 34.682 | 112.87 | 2.843 | 6.0896 | | adc_LUMI_09_BeamCrossing | "ADC for LUMI_09/BeamCrossing" | 170 | 37.4 | 105.98 | 3.4152 | 11.443 | | adc_LUMI_09_NoBeam | "ADC for LUMI_09/NoBeam" | 3 | 2.1667 | 0.94281 | 0.70711 | -1.5 | - | adc_LUMI_09_NoBeam_calib_signals | "ADC for LUMI_09/NoBeam/calib signals" | 1 | 756.5 | 0.0000 | 0 | 0 | | adc_LUMI_10_Beam1 | "ADC for LUMI_10/Beam1" | 15 | 3.3 | 2.4819 | 0.51698 | -0.74827 | | adc_LUMI_10_Beam2 | "ADC for LUMI_10/Beam2" | 11 | -0.22727 | 2.3390 | 0.26666 | -0.17812 | | adc_LUMI_10_BeamCrossing | "ADC for LUMI_10/BeamCrossing" | 170 | 18.765 | 69.795 | 4.7644 | 23.309 | | adc_LUMI_10_NoBeam | "ADC for LUMI_10/NoBeam" | 3 | 0.83333 | 3.3993 | 0.528 | -1.5 | - | adc_LUMI_10_NoBeam_calib_signals | "ADC for LUMI_10/NoBeam/calib signals" | 1 | 853.5 | 0.0000 | 0 | 0 | | adc_LUMI_12_Beam1 | "ADC for LUMI_12/Beam1" | 15 | 3.5 | 4.5314 | 1.1478 | 0.84171 | | adc_LUMI_12_Beam2 | "ADC for LUMI_12/Beam2" | 11 | 10.773 | 35.448 | 2.8119 | 5.9846 | | adc_LUMI_12_BeamCrossing | "ADC for LUMI_12/BeamCrossing" | 170 | 51.541 | 144.16 | 4.1625 | 20.921 | | adc_LUMI_12_NoBeam | "ADC for LUMI_12/NoBeam" | 3 | 0.83333 | 2.0548 | 0.23906 | -1.5 | - | adc_LUMI_12_NoBeam_calib_signals | "ADC for LUMI_12/NoBeam/calib signals" | 1 | 716.5 | 0.0000 | 0 | 0 | | adc_LUMI_13_Beam1 | "ADC for LUMI_13/Beam1" | 15 | 1.7 | 2.4000 | 0.053241 | -0.76273 | | adc_LUMI_13_Beam2 | "ADC for LUMI_13/Beam2" | 11 | -1.1364 | 2.3845 | 0.129 | -1.3517 | | adc_LUMI_13_BeamCrossing | "ADC for LUMI_13/BeamCrossing" | 170 | 42.476 | 125.36 | 4.2171 | 19.794 | | adc_LUMI_13_NoBeam | "ADC for LUMI_13/NoBeam" | 3 | 1.8333 | 2.6247 | 0.6309 | -1.5 | - | adc_LUMI_13_NoBeam_calib_signals | "ADC for LUMI_13/NoBeam/calib signals" | 1 | 766.5 | 0.0000 | 0 | 0 | | adc_LUMI_14_Beam1 | "ADC for LUMI_14/Beam1" | 15 | 2.1667 | 1.2472 | -0.17563 | -1.6102 | | adc_LUMI_14_Beam2 | "ADC for LUMI_14/Beam2" | 11 | -1.0455 | 1.6160 | 0.27558 | -1.1385 | | adc_LUMI_14_BeamCrossing | "ADC for LUMI_14/BeamCrossing" | 170 | 33.682 | 94.370 | 3.1071 | 8.8763 | | adc_LUMI_14_NoBeam | "ADC for LUMI_14/NoBeam" | 3 | 2.1667 | 1.2472 | -0.3818 | -1.5 | - | adc_LUMI_14_NoBeam_calib_signals | "ADC for LUMI_14/NoBeam/calib signals" | 1 | 661.5 | 0.0000 | 0 | 0 | | adc_LUMI_15_Beam1 | "ADC for LUMI_15/Beam1" | 15 | -0.43333 | 2.5682 | -0.23926 | -1.3011 | | adc_LUMI_15_Beam2 | "ADC for LUMI_15/Beam2" | 11 | 0.68182 | 2.7574 | 0.35693 | -1.1955 | | adc_LUMI_15_BeamCrossing | "ADC for LUMI_15/BeamCrossing" | 170 | 22.941 | 72.562 | 3.3934 | 10.974 | | adc_LUMI_15_NoBeam | "ADC for LUMI_15/NoBeam" | 3 | -0.5 | 1.4142 | -0.70711 | -1.5 | - | adc_LUMI_15_NoBeam_calib_signals | "ADC for LUMI_15/NoBeam/calib signals" | 1 | 843.5 | 0.0000 | 0 | 0 | | adc_LUMI_16_Beam1 | "ADC for LUMI_16/Beam1" | 15 | 2.5 | 4.9126 | 1.7781 | 3.1195 | | adc_LUMI_16_Beam2 | "ADC for LUMI_16/Beam2" | 11 | 1.2273 | 1.9113 | -0.46747 | -0.73918 | | adc_LUMI_16_BeamCrossing | "ADC for LUMI_16/BeamCrossing" | 170 | 19.806 | 63.059 | 4.4802 | 21.661 | | adc_LUMI_16_NoBeam | "ADC for LUMI_16/NoBeam" | 3 | 0.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_16_NoBeam_calib_signals | "ADC for LUMI_16/NoBeam/calib signals" | 1 | 637.5 | 0.0000 | 0 | 0 | | adc_LUMI_17_Beam1 | "ADC for LUMI_17/Beam1" | 15 | 1.9 | 2.8937 | 0.85383 | 0.29995 | | adc_LUMI_17_Beam2 | "ADC for LUMI_17/Beam2" | 11 | -1.1364 | 1.5535 | -0.90907 | -0.17025 | | adc_LUMI_17_BeamCrossing | "ADC for LUMI_17/BeamCrossing" | 170 | 35.741 | 102.21 | 4.1765 | 19.303 | | adc_LUMI_17_NoBeam | "ADC for LUMI_17/NoBeam" | 3 | 1.5 | 1.4142 | 0.70711 | -1.5 | - | adc_LUMI_17_NoBeam_calib_signals | "ADC for LUMI_17/NoBeam/calib signals" | 1 | 702.5 | 0.0000 | 0 | 0 | | adc_LUMI_18_Beam1 | "ADC for LUMI_18/Beam1" | 15 | 2.7 | 3.7452 | 0.62772 | 0.16913 | | adc_LUMI_18_Beam2 | "ADC for LUMI_18/Beam2" | 11 | 1.4091 | 3.0587 | -0.86708 | -0.0099795 | | adc_LUMI_18_BeamCrossing | "ADC for LUMI_18/BeamCrossing" | 170 | 47.482 | 119.32 | 3.4032 | 12.455 | | adc_LUMI_18_NoBeam | "ADC for LUMI_18/NoBeam" | 3 | 0.83333 | 2.0548 | 0.23906 | -1.5 | - | adc_LUMI_18_NoBeam_calib_signals | "ADC for LUMI_18/NoBeam/calib signals" | 1 | 804.5 | 0.0000 | 0 | 0 | | adc_LUMI_19_Beam1 | "ADC for LUMI_19/Beam1" | 15 | 3.9 | 4.1601 | 0.59402 | -0.11673 | | adc_LUMI_19_Beam2 | "ADC for LUMI_19/Beam2" | 11 | 0.22727 | 3.3054 | 0.0895 | -1.4935 | | adc_LUMI_19_BeamCrossing | "ADC for LUMI_19/BeamCrossing" | 170 | 24.224 | 68.889 | 3.4356 | 11.147 | | adc_LUMI_19_NoBeam | "ADC for LUMI_19/NoBeam" | 3 | 5.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_19_NoBeam_calib_signals | "ADC for LUMI_19/NoBeam/calib signals" | 1 | 726.5 | 0.0000 | 0 | 0 | | adc_LUMI_20_Beam1 | "ADC for LUMI_20/Beam1" | 15 | 2.7 | 3.3705 | 0.65231 | -0.3786 | | adc_LUMI_20_Beam2 | "ADC for LUMI_20/Beam2" | 11 | 0.40909 | 1.5048 | 0.63499 | -0.51055 | | adc_LUMI_20_BeamCrossing | "ADC for LUMI_20/BeamCrossing" | 170 | 37.512 | 108.23 | 4.3595 | 22.619 | | adc_LUMI_20_NoBeam | "ADC for LUMI_20/NoBeam" | 3 | 2.1667 | 2.0548 | -0.23906 | -1.5 | - | adc_LUMI_20_NoBeam_calib_signals | "ADC for LUMI_20/NoBeam/calib signals" | 1 | 643.5 | 0.0000 | 0 | 0 | | adc_LUMI_21_Beam1 | "ADC for LUMI_21/Beam1" | 15 | 1.9 | 2.9620 | 1.0239 | 0.77689 | | adc_LUMI_21_Beam2 | "ADC for LUMI_21/Beam2" | 11 | -0.68182 | 1.9455 | -0.11386 | -0.6204 | | adc_LUMI_21_BeamCrossing | "ADC for LUMI_21/BeamCrossing" | 170 | 23.882 | 84.644 | 4.5703 | 23.081 | | adc_LUMI_21_NoBeam | "ADC for LUMI_21/NoBeam" | 3 | 0.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_21_NoBeam_calib_signals | "ADC for LUMI_21/NoBeam/calib signals" | 1 | 717.5 | 0.0000 | 0 | 0 | | adc_LUMI_22_Beam1 | "ADC for LUMI_22/Beam1" | 15 | -0.43333 | 2.3514 | 0.073889 | -1.0788 | | adc_LUMI_22_Beam2 | "ADC for LUMI_22/Beam2" | 11 | 2.1364 | 2.3845 | 0.75606 | -0.13692 | | adc_LUMI_22_BeamCrossing | "ADC for LUMI_22/BeamCrossing" | 170 | 22.047 | 82.936 | 4.2178 | 19.319 | | adc_LUMI_22_NoBeam | "ADC for LUMI_22/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_22_NoBeam_calib_signals | "ADC for LUMI_22/NoBeam/calib signals" | 1 | 820.5 | 0.0000 | 0 | 0 | | adc_LUMI_23_Beam1 | "ADC for LUMI_23/Beam1" | 15 | 1.0333 | 2.4998 | -0.0010622 | -0.85337 | | adc_LUMI_23_Beam2 | "ADC for LUMI_23/Beam2" | 11 | -1.6818 | 2.1666 | -0.73089 | -0.30075 | | adc_LUMI_23_BeamCrossing | "ADC for LUMI_23/BeamCrossing" | 170 | 41.153 | 115.72 | 3.9306 | 18.043 | | adc_LUMI_23_NoBeam | "ADC for LUMI_23/NoBeam" | 3 | -0.16667 | 1.6997 | -0.528 | -1.5 | - | adc_LUMI_23_NoBeam_calib_signals | "ADC for LUMI_23/NoBeam/calib signals" | 1 | 743.5 | 0.0000 | 0 | 0 | | adc_LUMI_24_Beam1 | "ADC for LUMI_24/Beam1" | 15 | 2.3 | 2.8798 | 0.016078 | -0.8911 | | adc_LUMI_24_Beam2 | "ADC for LUMI_24/Beam2" | 11 | 1.0455 | 3.7017 | -0.015109 | 0.16575 | | adc_LUMI_24_BeamCrossing | "ADC for LUMI_24/BeamCrossing" | 170 | 46.712 | 118.02 | 3.2445 | 10.606 | | adc_LUMI_24_NoBeam | "ADC for LUMI_24/NoBeam" | 3 | 2.1667 | 1.6997 | 0.528 | -1.5 | - | adc_LUMI_24_NoBeam_calib_signals | "ADC for LUMI_24/NoBeam/calib signals" | 1 | 655.5 | 0.0000 | 0 | 0 | | adc_LUMI_25_Beam1 | "ADC for LUMI_25/Beam1" | 15 | 1.0333 | 3.7214 | 1.0366 | 2.4541 | | adc_LUMI_25_Beam2 | "ADC for LUMI_25/Beam2" | 11 | 9.1364 | 24.945 | 2.7795 | 5.87 | | adc_LUMI_25_BeamCrossing | "ADC for LUMI_25/BeamCrossing" | 170 | 26.935 | 95.324 | 5.1029 | 30.275 | | adc_LUMI_25_NoBeam | "ADC for LUMI_25/NoBeam" | 3 | 1.8333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_25_NoBeam_calib_signals | "ADC for LUMI_25/NoBeam/calib signals" | 1 | 703.5 | 0.0000 | 0 | 0 | | adc_LUMI_26_Beam1 | "ADC for LUMI_26/Beam1" | 15 | 2.7 | 4.0365 | 2.4939 | 6.2801 | | adc_LUMI_26_Beam2 | "ADC for LUMI_26/Beam2" | 11 | 1.7727 | 1.5428 | -0.015959 | -1.0109 | | adc_LUMI_26_BeamCrossing | "ADC for LUMI_26/BeamCrossing" | 170 | 25.588 | 72.308 | 4.1331 | 19.767 | | adc_LUMI_26_NoBeam | "ADC for LUMI_26/NoBeam" | 3 | 1.5 | 0.0000 | 0 | 0 | - | adc_LUMI_26_NoBeam_calib_signals | "ADC for LUMI_26/NoBeam/calib signals" | 1 | 623.5 | 0.0000 | 0 | 0 | | adc_LUMI_27_Beam1 | "ADC for LUMI_27/Beam1" | 15 | 1.6333 | 2.6043 | -0.46323 | -0.82515 | | adc_LUMI_27_Beam2 | "ADC for LUMI_27/Beam2" | 11 | -0.22727 | 3.0179 | 0.41282 | -1.1411 | | adc_LUMI_27_BeamCrossing | "ADC for LUMI_27/BeamCrossing" | 170 | 17.129 | 67.633 | 4.8976 | 24.599 | | adc_LUMI_27_NoBeam | "ADC for LUMI_27/NoBeam" | 3 | 0.83333 | 0.94281 | -0.70711 | -1.5 | - | adc_LUMI_27_NoBeam_calib_signals | "ADC for LUMI_27/NoBeam/calib signals" | 1 | 830.5 | 0.0000 | 0 | 0 | | adc_LUMI_28_Beam1 | "ADC for LUMI_28/Beam1" | 15 | 1.4333 | 2.1124 | 1.4032 | 2.0159 | | adc_LUMI_28_Beam2 | "ADC for LUMI_28/Beam2" | 11 | 1.1364 | 2.1856 | -1.2552 | 1.4241 | | adc_LUMI_28_BeamCrossing | "ADC for LUMI_28/BeamCrossing" | 170 | 6.5824 | 30.470 | 9.0592 | 92.197 | | adc_LUMI_28_NoBeam | "ADC for LUMI_28/NoBeam" | 3 | -0.16667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_28_NoBeam_calib_signals | "ADC for LUMI_28/NoBeam/calib signals" | 1 | 757.5 | 0.0000 | 0 | 0 | | adc_LUMI_30_Beam1 | "ADC for LUMI_30/Beam1" | 15 | 1.6333 | 4.2405 | 0.14869 | 0.13345 | | adc_LUMI_30_Beam2 | "ADC for LUMI_30/Beam2" | 11 | 1.2273 | 4.2446 | 0.68874 | -0.19748 | | adc_LUMI_30_BeamCrossing | "ADC for LUMI_30/BeamCrossing" | 170 | 36.341 | 104.20 | 3.9186 | 17.292 | | adc_LUMI_30_NoBeam | "ADC for LUMI_30/NoBeam" | 3 | 0.83333 | 1.8856 | 0.70711 | -1.5 | - | adc_LUMI_30_NoBeam_calib_signals | "ADC for LUMI_30/NoBeam/calib signals" | 1 | 694.5 | 0.0000 | 0 | 0 | | adc_LUMI_31_Beam1 | "ADC for LUMI_31/Beam1" | 15 | 3.8333 | 7.6999 | -0.16515 | 1.6463 | | adc_LUMI_31_Beam2 | "ADC for LUMI_31/Beam2" | 11 | -0.31818 | 1.9917 | -0.87293 | -0.18948 | | adc_LUMI_31_BeamCrossing | "ADC for LUMI_31/BeamCrossing" | 170 | 29.806 | 88.570 | 3.5815 | 12.339 | | adc_LUMI_31_NoBeam | "ADC for LUMI_31/NoBeam" | 3 | 3.1667 | 2.3570 | 0.70711 | -1.5 | - | adc_LUMI_31_NoBeam_calib_signals | "ADC for LUMI_31/NoBeam/calib signals" | 1 | 784.5 | 0.0000 | 0 | 0 | | adc_LUMI_32_Beam1 | "ADC for LUMI_32/Beam1" | 15 | 0.23333 | 1.9137 | 0.72514 | -0.048391 | | adc_LUMI_32_Beam2 | "ADC for LUMI_32/Beam2" | 11 | 0.95455 | 2.0165 | 0.76477 | -0.10956 | | adc_LUMI_32_BeamCrossing | "ADC for LUMI_32/BeamCrossing" | 170 | 16.706 | 89.402 | 9.0461 | 91.897 | | adc_LUMI_32_NoBeam | "ADC for LUMI_32/NoBeam" | 3 | 1.8333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_32_NoBeam_calib_signals | "ADC for LUMI_32/NoBeam/calib signals" | 1 | 692.5 | 0.0000 | 0 | 0 | | adc_LUMI_33_Beam1 | "ADC for LUMI_33/Beam1" | 15 | 0.83333 | 2.4676 | 0.20016 | -0.84978 | | adc_LUMI_33_Beam2 | "ADC for LUMI_33/Beam2" | 11 | 1.3182 | 2.6222 | -0.95131 | -0.05474 | | adc_LUMI_33_BeamCrossing | "ADC for LUMI_33/BeamCrossing" | 170 | 12.682 | 47.349 | 5.3071 | 31.241 | | adc_LUMI_33_NoBeam | "ADC for LUMI_33/NoBeam" | 3 | -0.83333 | 1.2472 | -0.3818 | -1.5 | - | adc_LUMI_33_NoBeam_calib_signals | "ADC for LUMI_33/NoBeam/calib signals" | 1 | 794.5 | 0.0000 | 0 | 0 | | adc_LUMI_34_Beam1 | "ADC for LUMI_34/Beam1" | 15 | 1.8333 | 2.4404 | 0.078488 | -0.70606 | | adc_LUMI_34_Beam2 | "ADC for LUMI_34/Beam2" | 11 | 27.227 | 84.861 | 2.8428 | 6.0891 | | adc_LUMI_34_BeamCrossing | "ADC for LUMI_34/BeamCrossing" | 170 | 19.959 | 71.042 | 3.999 | 14.826 | | adc_LUMI_34_NoBeam | "ADC for LUMI_34/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_34_NoBeam_calib_signals | "ADC for LUMI_34/NoBeam/calib signals" | 1 | 715.5 | 0.0000 | 0 | 0 | | adc_LUMI_36_Beam1 | "ADC for LUMI_36/Beam1" | 15 | 1.3 | 2.3721 | -0.51068 | -0.73647 | | adc_LUMI_36_Beam2 | "ADC for LUMI_36/Beam2" | 11 | -0.40909 | 2.0651 | -0.12183 | -1.1956 | | adc_LUMI_36_BeamCrossing | "ADC for LUMI_36/BeamCrossing" | 170 | 27.241 | 94.976 | 5.447 | 33.082 | | adc_LUMI_36_NoBeam | "ADC for LUMI_36/NoBeam" | 3 | 0.16667 | 0.94281 | 0.70711 | -1.5 | - | adc_LUMI_36_NoBeam_calib_signals | "ADC for LUMI_36/NoBeam/calib signals" | 1 | 732.5 | 0.0000 | 0 | 0 | | adc_LUMI_37_Beam1 | "ADC for LUMI_37/Beam1" | 15 | 1.3667 | 2.6043 | 0.48588 | -0.8379 | | adc_LUMI_37_Beam2 | "ADC for LUMI_37/Beam2" | 11 | -1.2273 | 2.2194 | -0.44535 | -0.50756 | | adc_LUMI_37_BeamCrossing | "ADC for LUMI_37/BeamCrossing" | 170 | 27.088 | 89.324 | 4.0801 | 17.34 | | adc_LUMI_37_NoBeam | "ADC for LUMI_37/NoBeam" | 3 | 1.5 | 3.7417 | 0.3818 | -1.5 | - | adc_LUMI_37_NoBeam_calib_signals | "ADC for LUMI_37/NoBeam/calib signals" | 1 | 818.5 | 0.0000 | 0 | 0 | | adc_LUMI_38_Beam1 | "ADC for LUMI_38/Beam1" | 15 | 1.1 | 2.2450 | 1.0705 | -0.019274 | | adc_LUMI_38_Beam2 | "ADC for LUMI_38/Beam2" | 11 | 1.0455 | 2.8401 | -0.083237 | -1.2529 | | adc_LUMI_38_BeamCrossing | "ADC for LUMI_38/BeamCrossing" | 170 | 21.953 | 86.052 | 5.6367 | 37.44 | | adc_LUMI_38_NoBeam | "ADC for LUMI_38/NoBeam" | 3 | 0.83333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_38_NoBeam_calib_signals | "ADC for LUMI_38/NoBeam/calib signals" | 1 | 711.5 | 0.0000 | 0 | 0 | | adc_LUMI_39_Beam1 | "ADC for LUMI_39/Beam1" | 15 | 1.1667 | 1.8135 | 1.3736 | 2.4839 | | adc_LUMI_39_Beam2 | "ADC for LUMI_39/Beam2" | 11 | 1.1364 | 2.9317 | 0.25135 | 0.38427 | | adc_LUMI_39_BeamCrossing | "ADC for LUMI_39/BeamCrossing" | 170 | 14.824 | 56.937 | 4.5722 | 21.025 | | adc_LUMI_39_NoBeam | "ADC for LUMI_39/NoBeam" | 3 | -0.16667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_39_NoBeam_calib_signals | "ADC for LUMI_39/NoBeam/calib signals" | 1 | 805.5 | 0.0000 | 0 | 0 | | adc_LUMI_40_Beam1 | "ADC for LUMI_40/Beam1" | 15 | 0.7 | 2.5612 | -0.056184 | -0.4304 | | adc_LUMI_40_Beam2 | "ADC for LUMI_40/Beam2" | 11 | -0.31818 | 1.4025 | -0.72065 | 0.0453 | | adc_LUMI_40_BeamCrossing | "ADC for LUMI_40/BeamCrossing" | 170 | 10.229 | 52.728 | 6.8763 | 48.098 | | adc_LUMI_40_NoBeam | "ADC for LUMI_40/NoBeam" | 3 | 1.1667 | 3.0912 | 0.65201 | -1.5 | - | adc_LUMI_40_NoBeam_calib_signals | "ADC for LUMI_40/NoBeam/calib signals" | 1 | 798.5 | 0.0000 | 0 | 0 | | adc_LUMI_41_Beam1 | "ADC for LUMI_41/Beam1" | 15 | 1.2333 | 7.5230 | -2.4543 | 6.3856 | | adc_LUMI_41_Beam2 | "ADC for LUMI_41/Beam2" | 11 | 0.59091 | 2.3142 | -0.066564 | -0.79581 | | adc_LUMI_41_BeamCrossing | "ADC for LUMI_41/BeamCrossing" | 170 | 40.153 | 106.25 | 3.2104 | 9.4665 | | adc_LUMI_41_NoBeam | "ADC for LUMI_41/NoBeam" | 3 | 1.1667 | 2.4944 | 0.3818 | -1.5 | - | adc_LUMI_41_NoBeam_calib_signals | "ADC for LUMI_41/NoBeam/calib signals" | 1 | 716.5 | 0.0000 | 0 | 0 | | adc_LUMI_42_Beam1 | "ADC for LUMI_42/Beam1" | 15 | 3.3 | 3.9362 | 0.63466 | 0.21765 | | adc_LUMI_42_Beam2 | "ADC for LUMI_42/Beam2" | 11 | 2.3182 | 2.9793 | 1.1459 | 0.45829 | | adc_LUMI_42_BeamCrossing | "ADC for LUMI_42/BeamCrossing" | 170 | 41.1 | 103.20 | 3.1221 | 9.8541 | | adc_LUMI_42_NoBeam | "ADC for LUMI_42/NoBeam" | 3 | 4.5 | 4.2426 | 0.70711 | -1.5 | - | adc_LUMI_42_NoBeam_calib_signals | "ADC for LUMI_42/NoBeam/calib signals" | 1 | 788.5 | 0.0000 | 0 | 0 | | adc_LUMI_43_Beam1 | "ADC for LUMI_43/Beam1" | 15 | 3.7667 | 4.4939 | 1.3981 | 1.7906 | | adc_LUMI_43_Beam2 | "ADC for LUMI_43/Beam2" | 11 | 2.4091 | 4.8515 | 0.73849 | 0.16565 | | adc_LUMI_43_BeamCrossing | "ADC for LUMI_43/BeamCrossing" | 170 | 28.041 | 81.494 | 4.2734 | 20.814 | | adc_LUMI_43_NoBeam | "ADC for LUMI_43/NoBeam" | 3 | 1.8333 | 3.2998 | -0.2948 | -1.5 | - | adc_LUMI_43_NoBeam_calib_signals | "ADC for LUMI_43/NoBeam/calib signals" | 1 | 763.5 | 0.0000 | 0 | 0 | | adc_LUMI_44_Beam1 | "ADC for LUMI_44/Beam1" | 15 | -0.033333 | 1.4079 | 0.5697 | 0.61259 | | adc_LUMI_44_Beam2 | "ADC for LUMI_44/Beam2" | 11 | -1.0455 | 1.6713 | 0.5465 | -0.44377 | | adc_LUMI_44_BeamCrossing | "ADC for LUMI_44/BeamCrossing" | 170 | 10.418 | 49.684 | 7.4442 | 63.378 | | adc_LUMI_44_NoBeam | "ADC for LUMI_44/NoBeam" | 3 | -1.5 | 1.4142 | 0.70711 | -1.5 | - | adc_LUMI_44_NoBeam_calib_signals | "ADC for LUMI_44/NoBeam/calib signals" | 1 | 868.5 | 0.0000 | 0 | 0 | | adc_LUMI_45_Beam1 | "ADC for LUMI_45/Beam1" | 15 | 1.7667 | 1.8785 | 0.5166 | 0.66467 | | adc_LUMI_45_Beam2 | "ADC for LUMI_45/Beam2" | 11 | 1.5909 | 2.1086 | 0.054813 | -0.20175 | | adc_LUMI_45_BeamCrossing | "ADC for LUMI_45/BeamCrossing" | 170 | 12.894 | 58.294 | 5.8628 | 35.029 | | adc_LUMI_45_NoBeam | "ADC for LUMI_45/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_45_NoBeam_calib_signals | "ADC for LUMI_45/NoBeam/calib signals" | 1 | 863.5 | 0.0000 | 0 | 0 | | adc_LUMI_46_Beam1 | "ADC for LUMI_46/Beam1" | 15 | 0.5 | 1.4142 | 0 | -0.5 | | adc_LUMI_46_Beam2 | "ADC for LUMI_46/Beam2" | 11 | 0.22727 | 1.5428 | 0.1645 | -1.4835 | | adc_LUMI_46_BeamCrossing | "ADC for LUMI_46/BeamCrossing" | 170 | 7.9118 | 46.417 | 7.026 | 48.579 | | adc_LUMI_46_NoBeam | "ADC for LUMI_46/NoBeam" | 3 | 0.16667 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_46_NoBeam_calib_signals | "ADC for LUMI_46/NoBeam/calib signals" | 1 | 704.5 | 0.0000 | 0 | 0 | | adc_LUMI_47_Beam1 | "ADC for LUMI_47/Beam1" | 15 | 2.3 | 2.9484 | 0.49251 | 0.59839 | | adc_LUMI_47_Beam2 | "ADC for LUMI_47/Beam2" | 11 | 8.2273 | 26.444 | 2.8019 | 5.9541 | | adc_LUMI_47_BeamCrossing | "ADC for LUMI_47/BeamCrossing" | 170 | 31.888 | 91.589 | 4.3611 | 21.037 | | adc_LUMI_47_NoBeam | "ADC for LUMI_47/NoBeam" | 3 | -0.16667 | 0.94281 | -0.70711 | -1.5 | - | adc_LUMI_47_NoBeam_calib_signals | "ADC for LUMI_47/NoBeam/calib signals" | 1 | 707.5 | 0.0000 | 0 | 0 | | adc_LUMI_Beam1 | "ADC for LUMI/Beam1" | 660 | 1.7182 | 3.6006 | 0.46046 | 7.8479 | | adc_LUMI_Beam2 | "ADC for LUMI/Beam2" | 484 | 3.4194 | 29.794 | 11.161 | 132.42 | | adc_LUMI_BeamCrossing | "ADC for LUMI/BeamCrossing" | 7480 | 28.96 | 93.072 | 4.5799 | 25.251 | - | adc_LUMI_NoBeam | "ADC for LUMI/NoBeam" | 132 | 1.1364 | 2.3396 | 1.1337 | 1.7423 | - | adc_MON_01_Beam1 | "ADC for MON_01/Beam1" | 15 | -0.16667 | 1.4453 | 0.068699 | -0.86442 | - | adc_MON_01_Beam2 | "ADC for MON_01/Beam2" | 11 | 0.5 | 1.5374 | -0.45031 | -0.81953 | - | adc_MON_01_BeamCrossing | "ADC for MON_01/BeamCrossing" | 170 | 0.19412 | 1.3977 | 0.38696 | 0.78553 | - | adc_MON_01_NoBeam | "ADC for MON_01/NoBeam" | 4 | 33.25 | 55.571 | 1.1545 | -0.66681 | - | adc_MON_02_Beam1 | "ADC for MON_02/Beam1" | 15 | 0.43333 | 1.2365 | -0.29654 | -1.0564 | - | adc_MON_02_Beam2 | "ADC for MON_02/Beam2" | 11 | 0.31818 | 0.71582 | 0.28268 | -1.0265 | - | adc_MON_02_BeamCrossing | "ADC for MON_02/BeamCrossing" | 170 | 0.16471 | 1.4223 | -0.021838 | 0.35598 | - | adc_MON_02_NoBeam | "ADC for MON_02/NoBeam" | 4 | 36.25 | 62.499 | 1.1546 | -0.66678 | - | adc_MON_03_Beam1 | "ADC for MON_03/Beam1" | 15 | -0.36667 | 1.3597 | 0.076136 | -1.1374 | - | adc_MON_03_Beam2 | "ADC for MON_03/Beam2" | 11 | 0.22727 | 1.5428 | 0.75867 | -0.29311 | - | adc_MON_03_BeamCrossing | "ADC for MON_03/BeamCrossing" | 170 | -0.1 | 1.2291 | -0.034978 | -0.14687 | - | adc_MON_03_NoBeam | "ADC for MON_03/NoBeam" | 4 | 35.75 | 61.633 | 1.1545 | -0.66678 | - | adc_MON_04_Beam1 | "ADC for MON_04/Beam1" | 15 | 0.36667 | 0.88443 | -0.31522 | -0.71204 | - | adc_MON_04_Beam2 | "ADC for MON_04/Beam2" | 11 | 0.77273 | 1.6564 | 0.76174 | -0.10281 | - | adc_MON_04_BeamCrossing | "ADC for MON_04/BeamCrossing" | 170 | 0.035294 | 1.3112 | 0.040558 | -0.35894 | - | adc_MON_04_NoBeam | "ADC for MON_04/NoBeam" | 4 | 32.75 | 58.195 | 1.1515 | -0.66914 | - | adc_MON_Beam1 | "ADC for MON/Beam1" | 60 | 0.066667 | 1.2957 | -0.21578 | -0.82656 | - | adc_MON_Beam2 | "ADC for MON/Beam2" | 44 | 0.45455 | 1.4295 | 0.50003 | 0.22541 | - | adc_MON_BeamCrossing | "ADC for MON/BeamCrossing" | 680 | 0.073529 | 1.3473 | 0.13226 | 0.30626 | - | adc_MON_NoBeam | "ADC for MON/NoBeam" | 16 | 34.5 | 59.559 | 1.1628 | -0.63174 | - | adc_PIN_01_Beam1 | "ADC for PIN_01/Beam1" | 15 | -0.1 | 2.6026 | 0.14795 | -0.43161 | - | adc_PIN_01_Beam2 | "ADC for PIN_01/Beam2" | 11 | 1.0455 | 1.7768 | -0.074738 | -0.071229 | - | adc_PIN_01_BeamCrossing | "ADC for PIN_01/BeamCrossing" | 170 | 0.47059 | 2.5973 | -0.084532 | -0.030407 | - | adc_PIN_01_NoBeam | "ADC for PIN_01/NoBeam" | 4 | 16.25 | 27.914 | 1.1406 | -0.6773 | - | adc_PIN_02_Beam1 | "ADC for PIN_02/Beam1" | 15 | 0.033333 | 4.0144 | 0.42348 | -0.81616 | - | adc_PIN_02_Beam2 | "ADC for PIN_02/Beam2" | 11 | 1.5909 | 3.5021 | 0.5846 | -0.86541 | - | adc_PIN_02_BeamCrossing | "ADC for PIN_02/BeamCrossing" | 170 | 0.72353 | 4.7487 | 0.05457 | -0.19893 | - | adc_PIN_02_NoBeam | "ADC for PIN_02/NoBeam" | 4 | 20.25 | 34.259 | 1.1443 | -0.67434 | - | adc_PIN_03_Beam1 | "ADC for PIN_03/Beam1" | 15 | 0.9 | 4.8415 | -0.35416 | -0.50037 | - | adc_PIN_03_Beam2 | "ADC for PIN_03/Beam2" | 11 | 1.4091 | 5.4848 | -0.45992 | -0.83145 | - | adc_PIN_03_BeamCrossing | "ADC for PIN_03/BeamCrossing" | 170 | 1.0118 | 4.3821 | 0.037908 | 0.44028 | - | adc_PIN_03_NoBeam | "ADC for PIN_03/NoBeam" | 4 | 18 | 29.168 | 1.152 | -0.6688 | - | adc_PIN_04_Beam1 | "ADC for PIN_04/Beam1" | 15 | 1.1 | 3.2000 | 0.4502 | -0.62585 | - | adc_PIN_04_Beam2 | "ADC for PIN_04/Beam2" | 11 | 1.5 | 3.4378 | 0.65785 | -0.58 | - | adc_PIN_04_BeamCrossing | "ADC for PIN_04/BeamCrossing" | 170 | 0.23529 | 4.5717 | 0.19366 | 0.047467 | - | adc_PIN_04_NoBeam | "ADC for PIN_04/NoBeam" | 4 | 23.5 | 31.329 | 1.1206 | -0.69058 | - | adc_PIN_06_Beam1 | "ADC for PIN_06/Beam1" | 15 | -0.7 | 4.2771 | -0.097339 | -1.3223 | - | adc_PIN_06_Beam2 | "ADC for PIN_06/Beam2" | 11 | 1.3182 | 3.3253 | -0.3006 | -1.4138 | - | adc_PIN_06_BeamCrossing | "ADC for PIN_06/BeamCrossing" | 170 | 0.51176 | 4.6552 | 0.040117 | -0.4561 | - | adc_PIN_06_NoBeam | "ADC for PIN_06/NoBeam" | 4 | 16.25 | 29.609 | 1.1501 | -0.67016 | - | adc_PIN_07_Beam1 | "ADC for PIN_07/Beam1" | 15 | 0.033333 | 1.4079 | -0.42637 | -0.6226 | - | adc_PIN_07_Beam2 | "ADC for PIN_07/Beam2" | 11 | 0.22727 | 1.2856 | 0.5176 | -0.6034 | - | adc_PIN_07_BeamCrossing | "ADC for PIN_07/BeamCrossing" | 170 | 0.029412 | 1.2328 | 0.026531 | -0.075352 | - | adc_PIN_07_NoBeam | "ADC for PIN_07/NoBeam" | 4 | 1.25 | 0.82916 | 0.49338 | -1.3719 | - | adc_PIN_08_Beam1 | "ADC for PIN_08/Beam1" | 15 | 1.6333 | 7.0509 | 0.0029804 | -1.2279 | - | adc_PIN_08_Beam2 | "ADC for PIN_08/Beam2" | 11 | 0.5 | 3.7659 | 0.59236 | -0.59714 | - | adc_PIN_08_BeamCrossing | "ADC for PIN_08/BeamCrossing" | 170 | 0.18824 | 4.9065 | -0.31406 | 0.17115 | - | adc_PIN_08_NoBeam | "ADC for PIN_08/NoBeam" | 4 | 19.75 | 35.124 | 1.1448 | -0.67397 | - | adc_PIN_09_Beam1 | "ADC for PIN_09/Beam1" | 15 | 1.3667 | 4.2874 | -0.90313 | 0.080374 | - | adc_PIN_09_Beam2 | "ADC for PIN_09/Beam2" | 11 | -0.77273 | 4.3712 | -0.36442 | 0.54775 | - | adc_PIN_09_BeamCrossing | "ADC for PIN_09/BeamCrossing" | 170 | 0.61765 | 4.7202 | 0.066276 | -0.48337 | - | adc_PIN_09_NoBeam | "ADC for PIN_09/NoBeam" | 4 | 20.75 | 39.334 | 1.1156 | -0.69406 | - | adc_PIN_Beam1 | "ADC for PIN/Beam1" | 120 | 0.53333 | 4.3261 | 0.10945 | 0.10847 | - | adc_PIN_Beam2 | "ADC for PIN/Beam2" | 88 | 0.85227 | 3.6744 | -0.076609 | 0.56582 | - | adc_PIN_BeamCrossing | "ADC for PIN/BeamCrossing" | 1360 | 0.47353 | 4.1781 | 0.038545 | 0.50935 | - | adc_PIN_NoBeam | "ADC for PIN/NoBeam" | 32 | 17 | 31.161 | 1.3825 | 0.045346 | + | adc_LUMI_NoBeam | "ADC for LUMI/NoBeam" | 176 | 186.02 | 321.83 | 1.189 | -0.53281 | | adc_TIME | "ADC for all timing channels" | 12800 | 264.85 | 32.206 | 5.5346 | 49.363 | | adc_TIME_05_00_Beam1 | "ADC for TIME_05_00/Beam1" | 15 | 257.37 | 2.3907 | -0.89611 | 0.091531 | | adc_TIME_05_00_Beam2 | "ADC for TIME_05_00/Beam2" | 11 | 256.68 | 0.93597 | 0.29688 | -0.85244 | @@ -24993,7 +691,7 @@ PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDig | adc_TIME_Beam1 | "ADC for TIME/Beam1" | 960 | 257.22 | 1.7097 | 0.17615 | 1.0854 | | adc_TIME_Beam2 | "ADC for TIME/Beam2" | 704 | 257.18 | 1.7039 | 0.52655 | 0.9005 | | adc_TIME_BeamCrossing | "ADC for TIME/BeamCrossing" | 10880 | 265.56 | 32.944 | 5.2714 | 47.537 | - | adc_TIME_NoBeam | "ADC for TIME/NoBeam" | 192 | 257.33 | 1.6029 | -0.20442 | 0.75859 | + | adc_TIME_NoBeam | "ADC for TIME/NoBeam" | 256 | 284.1 | 70.318 | 2.4317 | 4.6663 | | amp_sshape_err_tot_11 | "S-shape amplitude error for 11" | 5 | 6.475 | 1.0779 | -0.1197 | -1.6519 | | amp_sshape_err_tot_29 | "S-shape amplitude error for 29" | 5 | 6.8167 | 0.12472 | -0.3818 | -1.5 | | amp_sshape_err_tot_35 | "S-shape amplitude error for 35" | 5 | 5.3833 | 1.1557 | -0.70314 | -1.5 | @@ -25024,128 +722,239 @@ PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDig | time_sshape_tot_29 | "Inflection point for 29" | 5 | 4.232 | 0.78969 | -1.3775 | 0.073259 | | time_sshape_tot_35 | "Inflection point for 35" | 5 | 3.416 | 0.94981 | -1.3325 | 0.031746 | | time_sshape_tot_5 | "Inflection point for 5" | 5 | 3.976 | 0.77958 | -1.3945 | 0.098599 | -PlumeRawToDigits_89428f2d INFO 1D histograms in directory "PlumeRawToDigits_89428f2d" : 1 +PlumeLEDMonitor_34b7705b INFO 1D histograms in directory "PlumeLEDMonitor_34b7705b" : 121 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | adc_LUMI_00 | "ADC for LUMI_00" | 1 | 694.5 | 0.0000 | 0 | 0 | + | adc_LUMI_01 | "ADC for LUMI_01" | 1 | 628.5 | 0.0000 | 0 | 0 | + | adc_LUMI_02 | "ADC for LUMI_02" | 1 | 760.5 | 0.0000 | 0 | 0 | + | adc_LUMI_03 | "ADC for LUMI_03" | 1 | 709.5 | 0.0000 | 0 | 0 | + | adc_LUMI_04 | "ADC for LUMI_04" | 1 | 701.5 | 0.0000 | 0 | 0 | + | adc_LUMI_06 | "ADC for LUMI_06" | 1 | 676.5 | 0.0000 | 0 | 0 | + | adc_LUMI_07 | "ADC for LUMI_07" | 1 | 781.5 | 0.0000 | 0 | 0 | + | adc_LUMI_08 | "ADC for LUMI_08" | 1 | 711.5 | 0.0000 | 0 | 0 | + | adc_LUMI_09 | "ADC for LUMI_09" | 1 | 756.5 | 0.0000 | 0 | 0 | + | adc_LUMI_10 | "ADC for LUMI_10" | 1 | 853.5 | 0.0000 | 0 | 0 | + | adc_LUMI_12 | "ADC for LUMI_12" | 1 | 716.5 | 0.0000 | 0 | 0 | + | adc_LUMI_13 | "ADC for LUMI_13" | 1 | 766.5 | 0.0000 | 0 | 0 | + | adc_LUMI_14 | "ADC for LUMI_14" | 1 | 661.5 | 0.0000 | 0 | 0 | + | adc_LUMI_15 | "ADC for LUMI_15" | 1 | 843.5 | 0.0000 | 0 | 0 | + | adc_LUMI_16 | "ADC for LUMI_16" | 1 | 637.5 | 0.0000 | 0 | 0 | + | adc_LUMI_17 | "ADC for LUMI_17" | 1 | 702.5 | 0.0000 | 0 | 0 | + | adc_LUMI_18 | "ADC for LUMI_18" | 1 | 804.5 | 0.0000 | 0 | 0 | + | adc_LUMI_19 | "ADC for LUMI_19" | 1 | 726.5 | 0.0000 | 0 | 0 | + | adc_LUMI_20 | "ADC for LUMI_20" | 1 | 643.5 | 0.0000 | 0 | 0 | + | adc_LUMI_21 | "ADC for LUMI_21" | 1 | 717.5 | 0.0000 | 0 | 0 | + | adc_LUMI_22 | "ADC for LUMI_22" | 1 | 820.5 | 0.0000 | 0 | 0 | + | adc_LUMI_23 | "ADC for LUMI_23" | 1 | 743.5 | 0.0000 | 0 | 0 | + | adc_LUMI_24 | "ADC for LUMI_24" | 1 | 655.5 | 0.0000 | 0 | 0 | + | adc_LUMI_25 | "ADC for LUMI_25" | 1 | 703.5 | 0.0000 | 0 | 0 | + | adc_LUMI_26 | "ADC for LUMI_26" | 1 | 623.5 | 0.0000 | 0 | 0 | + | adc_LUMI_27 | "ADC for LUMI_27" | 1 | 830.5 | 0.0000 | 0 | 0 | + | adc_LUMI_28 | "ADC for LUMI_28" | 1 | 757.5 | 0.0000 | 0 | 0 | + | adc_LUMI_30 | "ADC for LUMI_30" | 1 | 694.5 | 0.0000 | 0 | 0 | + | adc_LUMI_31 | "ADC for LUMI_31" | 1 | 784.5 | 0.0000 | 0 | 0 | + | adc_LUMI_32 | "ADC for LUMI_32" | 1 | 692.5 | 0.0000 | 0 | 0 | + | adc_LUMI_33 | "ADC for LUMI_33" | 1 | 794.5 | 0.0000 | 0 | 0 | + | adc_LUMI_34 | "ADC for LUMI_34" | 1 | 715.5 | 0.0000 | 0 | 0 | + | adc_LUMI_36 | "ADC for LUMI_36" | 1 | 732.5 | 0.0000 | 0 | 0 | + | adc_LUMI_37 | "ADC for LUMI_37" | 1 | 818.5 | 0.0000 | 0 | 0 | + | adc_LUMI_38 | "ADC for LUMI_38" | 1 | 711.5 | 0.0000 | 0 | 0 | + | adc_LUMI_39 | "ADC for LUMI_39" | 1 | 805.5 | 0.0000 | 0 | 0 | + | adc_LUMI_40 | "ADC for LUMI_40" | 1 | 798.5 | 0.0000 | 0 | 0 | + | adc_LUMI_41 | "ADC for LUMI_41" | 1 | 716.5 | 0.0000 | 0 | 0 | + | adc_LUMI_42 | "ADC for LUMI_42" | 1 | 788.5 | 0.0000 | 0 | 0 | + | adc_LUMI_43 | "ADC for LUMI_43" | 1 | 763.5 | 0.0000 | 0 | 0 | + | adc_LUMI_44 | "ADC for LUMI_44" | 1 | 868.5 | 0.0000 | 0 | 0 | + | adc_LUMI_45 | "ADC for LUMI_45" | 1 | 863.5 | 0.0000 | 0 | 0 | + | adc_LUMI_46 | "ADC for LUMI_46" | 1 | 704.5 | 0.0000 | 0 | 0 | + | adc_LUMI_47 | "ADC for LUMI_47" | 1 | 707.5 | 0.0000 | 0 | 0 | + | adc_MON_01 | "ADC for MON_01" | 1 | 129.5 | 0.0000 | 0 | 0 | + | adc_MON_02 | "ADC for MON_02" | 1 | 144.5 | 0.0000 | 0 | 0 | + | adc_MON_03 | "ADC for MON_03" | 1 | 142.5 | 0.0000 | 0 | 0 | + | adc_MON_04 | "ADC for MON_04" | 1 | 133.5 | 0.0000 | 0 | 0 | + | adc_PIN_01 | "ADC for PIN_01" | 1 | 64.5 | 0.0000 | 0 | 0 | + | adc_PIN_02 | "ADC for PIN_02" | 1 | 79.5 | 0.0000 | 0 | 0 | + | adc_PIN_03 | "ADC for PIN_03" | 1 | 68.5 | 0.0000 | 0 | 0 | + | adc_PIN_04 | "ADC for PIN_04" | 1 | 77.5 | 0.0000 | 0 | 0 | + | adc_PIN_06 | "ADC for PIN_06" | 1 | 67.5 | 0.0000 | 0 | 0 | + | adc_PIN_07 | "ADC for PIN_07" | 1 | 0.5 | 0.0000 | 0 | 0 | + | adc_PIN_08 | "ADC for PIN_08" | 1 | 80.5 | 0.0000 | 0 | 0 | + | adc_PIN_09 | "ADC for PIN_09" | 1 | 88.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_00 | "ADC for TIME_05_00" | 1 | 507.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_01 | "ADC for TIME_05_01" | 1 | 476.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_02 | "ADC for TIME_05_02" | 1 | 401.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_03 | "ADC for TIME_05_03" | 1 | 318.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_04 | "ADC for TIME_05_04" | 1 | 266.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_05 | "ADC for TIME_05_05" | 1 | 237.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_06 | "ADC for TIME_05_06" | 1 | 231.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_07 | "ADC for TIME_05_07" | 1 | 238.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_08 | "ADC for TIME_05_08" | 1 | 265.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_09 | "ADC for TIME_05_09" | 1 | 289.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_10 | "ADC for TIME_05_10" | 1 | 346.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_11 | "ADC for TIME_05_11" | 1 | 429.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_12 | "ADC for TIME_05_12" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_13 | "ADC for TIME_05_13" | 1 | 521.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_14 | "ADC for TIME_05_14" | 1 | 542.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_15 | "ADC for TIME_05_15" | 1 | 533.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_00 | "ADC for TIME_11_00" | 1 | 461.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_01 | "ADC for TIME_11_01" | 1 | 425.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_02 | "ADC for TIME_11_02" | 1 | 354.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_03 | "ADC for TIME_11_03" | 1 | 294.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_04 | "ADC for TIME_11_04" | 1 | 249.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_05 | "ADC for TIME_11_05" | 1 | 229.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_06 | "ADC for TIME_11_06" | 1 | 232.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_07 | "ADC for TIME_11_07" | 1 | 239.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_08 | "ADC for TIME_11_08" | 1 | 264.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_09 | "ADC for TIME_11_09" | 1 | 293.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_10 | "ADC for TIME_11_10" | 1 | 350.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_11 | "ADC for TIME_11_11" | 1 | 407.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_12 | "ADC for TIME_11_12" | 1 | 452.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_13 | "ADC for TIME_11_13" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_14 | "ADC for TIME_11_14" | 1 | 495.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_15 | "ADC for TIME_11_15" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_00 | "ADC for TIME_29_00" | 1 | 513.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_01 | "ADC for TIME_29_01" | 1 | 475.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_02 | "ADC for TIME_29_02" | 1 | 404.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_03 | "ADC for TIME_29_03" | 1 | 340.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_04 | "ADC for TIME_29_04" | 1 | 265.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_05 | "ADC for TIME_29_05" | 1 | 229.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_06 | "ADC for TIME_29_06" | 1 | 225.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_07 | "ADC for TIME_29_07" | 1 | 231.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_08 | "ADC for TIME_29_08" | 1 | 270.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_09 | "ADC for TIME_29_09" | 1 | 292.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_10 | "ADC for TIME_29_10" | 1 | 344.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_11 | "ADC for TIME_29_11" | 1 | 409.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_12 | "ADC for TIME_29_12" | 1 | 487.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_13 | "ADC for TIME_29_13" | 1 | 530.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_14 | "ADC for TIME_29_14" | 1 | 549.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_15 | "ADC for TIME_29_15" | 1 | 543.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_00 | "ADC for TIME_35_00" | 1 | 383.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_01 | "ADC for TIME_35_01" | 1 | 334.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_02 | "ADC for TIME_35_02" | 1 | 274.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_03 | "ADC for TIME_35_03" | 1 | 239.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_04 | "ADC for TIME_35_04" | 1 | 238.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_05 | "ADC for TIME_35_05" | 1 | 237.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_06 | "ADC for TIME_35_06" | 1 | 244.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_07 | "ADC for TIME_35_07" | 1 | 250.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_08 | "ADC for TIME_35_08" | 1 | 282.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_09 | "ADC for TIME_35_09" | 1 | 334.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_10 | "ADC for TIME_35_10" | 1 | 392.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_11 | "ADC for TIME_35_11" | 1 | 430.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_12 | "ADC for TIME_35_12" | 1 | 439.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_13 | "ADC for TIME_35_13" | 1 | 439.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_14 | "ADC for TIME_35_14" | 1 | 437.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_15 | "ADC for TIME_35_15" | 1 | 438.5 | 0.0000 | 0 | 0 | + | odin_calib_type | "ODIN CalibrationType" | 1 | 2 | 0.0000 | 0 | 0 | +PlumeRawToDigits_e2724fbc INFO 1D histograms in directory "PlumeRawToDigits_e2724fbc" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | SumADCPerChannel | "Sum of ADCs per channel" | 24800 | 73.931 | 36.095 | -0.42106 | -0.96015 | -PlumeDigitMonitor_9abf3184 INFO 1D profile histograms in directory "PlumeDigitMonitor_9abf3184" : 125 +PlumeDigitMonitor_b0f85c8c INFO 1D profile histograms in directory "PlumeDigitMonitor_b0f85c8c" : 112 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | bcid_adc_LUMI_00 | "ADC vs BCID for LUMI_00" | 200 | 1852.8 | 768.00 | -0.54793 | 0.0045384 | - | bcid_adc_LUMI_01 | "ADC vs BCID for LUMI_01" | 200 | 2030.9 | 749.29 | -0.84935 | 0.12097 | - | bcid_adc_LUMI_02 | "ADC vs BCID for LUMI_02" | 200 | 2012 | 808.72 | -0.52701 | -0.51684 | - | bcid_adc_LUMI_03 | "ADC vs BCID for LUMI_03" | 200 | 1908.3 | 701.62 | -0.17087 | 0.0042769 | - | bcid_adc_LUMI_04 | "ADC vs BCID for LUMI_04" | 200 | 2077.7 | 692.55 | -0.12753 | -0.17315 | - | bcid_adc_LUMI_06 | "ADC vs BCID for LUMI_06" | 200 | 1801.1 | 904.67 | -0.321 | -0.54062 | - | bcid_adc_LUMI_07 | "ADC vs BCID for LUMI_07" | 200 | 1803.2 | 804.62 | -0.47842 | -0.16292 | - | bcid_adc_LUMI_08 | "ADC vs BCID for LUMI_08" | 200 | 1919.9 | 591.46 | 0.10658 | 0.069319 | - | bcid_adc_LUMI_09 | "ADC vs BCID for LUMI_09" | 200 | 2006.9 | 855.63 | -0.49857 | -0.061777 | - | bcid_adc_LUMI_10 | "ADC vs BCID for LUMI_10" | 200 | 1868.1 | 837.89 | -0.57254 | -0.35559 | - | bcid_adc_LUMI_12 | "ADC vs BCID for LUMI_12" | 200 | 2008.1 | 822.96 | -0.76991 | 0.0037367 | - | bcid_adc_LUMI_13 | "ADC vs BCID for LUMI_13" | 200 | 1982.6 | 805.96 | -0.82518 | 0.045741 | - | bcid_adc_LUMI_14 | "ADC vs BCID for LUMI_14" | 200 | 1993.5 | 703.45 | -0.7294 | 0.40349 | - | bcid_adc_LUMI_15 | "ADC vs BCID for LUMI_15" | 200 | 1849.5 | 773.37 | -0.6824 | -0.053441 | - | bcid_adc_LUMI_16 | "ADC vs BCID for LUMI_16" | 200 | 2043.7 | 833.47 | -0.61636 | -0.39803 | - | bcid_adc_LUMI_17 | "ADC vs BCID for LUMI_17" | 200 | 1927.4 | 885.24 | -0.69911 | -0.58496 | - | bcid_adc_LUMI_18 | "ADC vs BCID for LUMI_18" | 200 | 1815.6 | 902.70 | -0.64772 | -0.68462 | - | bcid_adc_LUMI_19 | "ADC vs BCID for LUMI_19" | 200 | 1946.7 | 799.24 | -0.56645 | -0.34988 | - | bcid_adc_LUMI_20 | "ADC vs BCID for LUMI_20" | 200 | 2027.8 | 823.78 | -0.86693 | -0.26631 | - | bcid_adc_LUMI_21 | "ADC vs BCID for LUMI_21" | 200 | 1859.9 | 919.46 | -0.75436 | -0.65839 | - | bcid_adc_LUMI_22 | "ADC vs BCID for LUMI_22" | 200 | 1580.8 | 828.78 | -0.305 | -0.65649 | - | bcid_adc_LUMI_23 | "ADC vs BCID for LUMI_23" | 200 | 1968 | 698.52 | -0.66313 | 0.26485 | - | bcid_adc_LUMI_24 | "ADC vs BCID for LUMI_24" | 200 | 1820 | 714.24 | -0.45285 | 0.32772 | - | bcid_adc_LUMI_25 | "ADC vs BCID for LUMI_25" | 200 | 2173.3 | 866.74 | -1.1377 | 0.38193 | - | bcid_adc_LUMI_26 | "ADC vs BCID for LUMI_26" | 200 | 1922.9 | 954.78 | -0.57253 | -0.84156 | - | bcid_adc_LUMI_27 | "ADC vs BCID for LUMI_27" | 200 | 1508.8 | 882.02 | -0.29287 | -1.0226 | - | bcid_adc_LUMI_28 | "ADC vs BCID for LUMI_28" | 200 | 1851.9 | 591.92 | 0.069391 | 0.37677 | - | bcid_adc_LUMI_30 | "ADC vs BCID for LUMI_30" | 200 | 1934.9 | 742.68 | -0.33003 | -0.040843 | - | bcid_adc_LUMI_31 | "ADC vs BCID for LUMI_31" | 200 | 1900.1 | 737.88 | -0.22526 | -0.20224 | - | bcid_adc_LUMI_32 | "ADC vs BCID for LUMI_32" | 200 | 1790 | 609.19 | 0.52714 | 0.48573 | - | bcid_adc_LUMI_33 | "ADC vs BCID for LUMI_33" | 200 | 1722.9 | 823.66 | -0.32946 | -0.27437 | - | bcid_adc_LUMI_34 | "ADC vs BCID for LUMI_34" | 200 | 2265.6 | 837.04 | -1.0675 | 0.72721 | - | bcid_adc_LUMI_36 | "ADC vs BCID for LUMI_36" | 200 | 1592.2 | 882.04 | 0.032616 | -0.87081 | - | bcid_adc_LUMI_37 | "ADC vs BCID for LUMI_37" | 200 | 1683.8 | 816.08 | -0.082953 | -0.82541 | - | bcid_adc_LUMI_38 | "ADC vs BCID for LUMI_38" | 200 | 2055.8 | 727.39 | -0.30892 | -0.40765 | - | bcid_adc_LUMI_39 | "ADC vs BCID for LUMI_39" | 200 | 1674.3 | 757.48 | -0.45324 | -0.28481 | - | bcid_adc_LUMI_40 | "ADC vs BCID for LUMI_40" | 200 | 2151.9 | 614.40 | -0.47317 | 0.17765 | - | bcid_adc_LUMI_41 | "ADC vs BCID for LUMI_41" | 200 | 1804.4 | 963.69 | -0.67202 | -0.9543 | - | bcid_adc_LUMI_42 | "ADC vs BCID for LUMI_42" | 200 | 1959.6 | 772.29 | -0.27054 | -0.52159 | - | bcid_adc_LUMI_43 | "ADC vs BCID for LUMI_43" | 200 | 1896.4 | 794.93 | -0.82878 | -0.10264 | - | bcid_adc_LUMI_44 | "ADC vs BCID for LUMI_44" | 200 | 1841.8 | 862.82 | -0.50111 | -0.59283 | - | bcid_adc_LUMI_45 | "ADC vs BCID for LUMI_45" | 200 | 1959.3 | 840.54 | -0.48453 | -0.60757 | - | bcid_adc_LUMI_46 | "ADC vs BCID for LUMI_46" | 200 | 1636 | 864.61 | -0.62806 | -0.53632 | - | bcid_adc_LUMI_47 | "ADC vs BCID for LUMI_47" | 200 | 2137.9 | 773.72 | -0.9801 | 0.53769 | - | bcid_adc_MON_01 | "ADC vs BCID for MON_01" | 200 | 1822.1 | 720.46 | 0.036535 | 0.17346 | - | bcid_adc_MON_02 | "ADC vs BCID for MON_02" | 200 | 1781.3 | 658.65 | 0.011034 | 0.48238 | - | bcid_adc_MON_03 | "ADC vs BCID for MON_03" | 200 | 1734.9 | 717.99 | -0.084384 | 0.33338 | - | bcid_adc_MON_04 | "ADC vs BCID for MON_04" | 200 | 1756.9 | 729.22 | -0.1352 | 0.27864 | - | bcid_adc_PIN_01 | "ADC vs BCID for PIN_01" | 200 | 1893.1 | 860.85 | -0.38761 | -0.60828 | - | bcid_adc_PIN_02 | "ADC vs BCID for PIN_02" | 200 | 1872.7 | 875.02 | -0.39385 | -0.61906 | - | bcid_adc_PIN_03 | "ADC vs BCID for PIN_03" | 200 | 1839.4 | 894.06 | -0.33748 | -0.57031 | - | bcid_adc_PIN_04 | "ADC vs BCID for PIN_04" | 200 | 1881.3 | 857.71 | -0.482 | -0.4627 | - | bcid_adc_PIN_06 | "ADC vs BCID for PIN_06" | 200 | 1926.9 | 867.10 | -0.47067 | -0.61624 | - | bcid_adc_PIN_07 | "ADC vs BCID for PIN_07" | 200 | 1989.1 | 871.66 | -0.41374 | -0.61938 | - | bcid_adc_PIN_08 | "ADC vs BCID for PIN_08" | 200 | 1826.2 | 846.63 | -0.33054 | -0.64636 | - | bcid_adc_PIN_09 | "ADC vs BCID for PIN_09" | 200 | 1805.2 | 856.59 | -0.30779 | -0.64535 | - | bcid_adc_TIME_05_00 | "ADC vs BCID for TIME_05_00" | 200 | 1883.9 | 908.34 | -0.45292 | -0.74433 | - | bcid_adc_TIME_05_01 | "ADC vs BCID for TIME_05_01" | 200 | 1884 | 908.40 | -0.45326 | -0.74317 | - | bcid_adc_TIME_05_02 | "ADC vs BCID for TIME_05_02" | 200 | 1883.5 | 909.86 | -0.45285 | -0.74963 | - | bcid_adc_TIME_05_03 | "ADC vs BCID for TIME_05_03" | 200 | 1884.3 | 910.97 | -0.45377 | -0.7535 | - | bcid_adc_TIME_05_04 | "ADC vs BCID for TIME_05_04" | 200 | 1888.5 | 910.84 | -0.45664 | -0.75353 | - | bcid_adc_TIME_05_05 | "ADC vs BCID for TIME_05_05" | 200 | 1894 | 910.66 | -0.46467 | -0.7526 | - | bcid_adc_TIME_05_06 | "ADC vs BCID for TIME_05_06" | 200 | 1900.8 | 907.43 | -0.47623 | -0.73707 | - | bcid_adc_TIME_05_07 | "ADC vs BCID for TIME_05_07" | 200 | 1900.9 | 907.43 | -0.47665 | -0.73662 | - | bcid_adc_TIME_05_08 | "ADC vs BCID for TIME_05_08" | 200 | 1874.9 | 924.24 | -0.4473 | -0.7997 | - | bcid_adc_TIME_05_09 | "ADC vs BCID for TIME_05_09" | 200 | 1875.1 | 923.77 | -0.44793 | -0.79786 | - | bcid_adc_TIME_05_10 | "ADC vs BCID for TIME_05_10" | 200 | 1875.2 | 923.13 | -0.44745 | -0.79562 | - | bcid_adc_TIME_05_11 | "ADC vs BCID for TIME_05_11" | 200 | 1875.1 | 921.71 | -0.44523 | -0.79205 | - | bcid_adc_TIME_05_12 | "ADC vs BCID for TIME_05_12" | 200 | 1879.9 | 917.40 | -0.44834 | -0.77717 | - | bcid_adc_TIME_05_13 | "ADC vs BCID for TIME_05_13" | 200 | 1883.5 | 910.93 | -0.45013 | -0.75486 | - | bcid_adc_TIME_05_14 | "ADC vs BCID for TIME_05_14" | 200 | 1884.2 | 906.80 | -0.45371 | -0.73799 | - | bcid_adc_TIME_05_15 | "ADC vs BCID for TIME_05_15" | 200 | 1884.4 | 906.73 | -0.45372 | -0.73737 | - | bcid_adc_TIME_11_00 | "ADC vs BCID for TIME_11_00" | 200 | 1892.9 | 920.77 | -0.47571 | -0.77202 | - | bcid_adc_TIME_11_01 | "ADC vs BCID for TIME_11_01" | 200 | 1892.3 | 921.08 | -0.47499 | -0.77354 | - | bcid_adc_TIME_11_02 | "ADC vs BCID for TIME_11_02" | 200 | 1892.4 | 922.06 | -0.47542 | -0.77657 | - | bcid_adc_TIME_11_03 | "ADC vs BCID for TIME_11_03" | 200 | 1892.2 | 921.66 | -0.47314 | -0.7772 | - | bcid_adc_TIME_11_04 | "ADC vs BCID for TIME_11_04" | 200 | 1891.4 | 918.07 | -0.46539 | -0.77235 | - | bcid_adc_TIME_11_05 | "ADC vs BCID for TIME_11_05" | 200 | 1891.8 | 912.57 | -0.45631 | -0.76082 | - | bcid_adc_TIME_11_06 | "ADC vs BCID for TIME_11_06" | 200 | 1891.6 | 910.29 | -0.45258 | -0.75691 | - | bcid_adc_TIME_11_07 | "ADC vs BCID for TIME_11_07" | 200 | 1891.5 | 910.99 | -0.45308 | -0.75844 | - | bcid_adc_TIME_11_08 | "ADC vs BCID for TIME_11_08" | 200 | 1879.2 | 921.91 | -0.45167 | -0.79321 | - | bcid_adc_TIME_11_09 | "ADC vs BCID for TIME_11_09" | 200 | 1878.7 | 922.22 | -0.45075 | -0.79462 | - | bcid_adc_TIME_11_10 | "ADC vs BCID for TIME_11_10" | 200 | 1878.6 | 921.50 | -0.45002 | -0.79178 | - | bcid_adc_TIME_11_11 | "ADC vs BCID for TIME_11_11" | 200 | 1879.7 | 920.13 | -0.45081 | -0.78737 | - | bcid_adc_TIME_11_12 | "ADC vs BCID for TIME_11_12" | 200 | 1884.9 | 919.62 | -0.45595 | -0.78215 | - | bcid_adc_TIME_11_13 | "ADC vs BCID for TIME_11_13" | 200 | 1892.3 | 920.13 | -0.47201 | -0.77233 | - | bcid_adc_TIME_11_14 | "ADC vs BCID for TIME_11_14" | 200 | 1896.6 | 920.14 | -0.48203 | -0.76525 | - | bcid_adc_TIME_11_15 | "ADC vs BCID for TIME_11_15" | 200 | 1894.9 | 920.45 | -0.47927 | -0.76874 | - | bcid_adc_TIME_29_00 | "ADC vs BCID for TIME_29_00" | 200 | 1895.3 | 906.91 | -0.46675 | -0.73628 | - | bcid_adc_TIME_29_01 | "ADC vs BCID for TIME_29_01" | 200 | 1895.1 | 907.56 | -0.46646 | -0.73849 | - | bcid_adc_TIME_29_02 | "ADC vs BCID for TIME_29_02" | 200 | 1895.5 | 908.42 | -0.46737 | -0.74093 | - | bcid_adc_TIME_29_03 | "ADC vs BCID for TIME_29_03" | 200 | 1895.1 | 908.97 | -0.46774 | -0.74329 | - | bcid_adc_TIME_29_04 | "ADC vs BCID for TIME_29_04" | 200 | 1894.1 | 911.42 | -0.46621 | -0.75256 | - | bcid_adc_TIME_29_05 | "ADC vs BCID for TIME_29_05" | 200 | 1894.5 | 913.88 | -0.46818 | -0.76079 | - | bcid_adc_TIME_29_06 | "ADC vs BCID for TIME_29_06" | 200 | 1892.4 | 914.60 | -0.46736 | -0.76284 | - | bcid_adc_TIME_29_07 | "ADC vs BCID for TIME_29_07" | 200 | 1892.5 | 914.09 | -0.46714 | -0.76075 | - | bcid_adc_TIME_29_08 | "ADC vs BCID for TIME_29_08" | 200 | 1888.4 | 916.37 | -0.46407 | -0.76556 | - | bcid_adc_TIME_29_09 | "ADC vs BCID for TIME_29_09" | 200 | 1887.6 | 915.91 | -0.46245 | -0.76546 | - | bcid_adc_TIME_29_10 | "ADC vs BCID for TIME_29_10" | 200 | 1887.6 | 915.10 | -0.46188 | -0.7635 | - | bcid_adc_TIME_29_11 | "ADC vs BCID for TIME_29_11" | 200 | 1886.5 | 914.57 | -0.45882 | -0.76336 | - | bcid_adc_TIME_29_12 | "ADC vs BCID for TIME_29_12" | 200 | 1887.9 | 912.54 | -0.45811 | -0.75796 | - | bcid_adc_TIME_29_13 | "ADC vs BCID for TIME_29_13" | 200 | 1891.9 | 909.03 | -0.4602 | -0.74556 | - | bcid_adc_TIME_29_14 | "ADC vs BCID for TIME_29_14" | 200 | 1896 | 905.86 | -0.46647 | -0.73223 | - | bcid_adc_TIME_29_15 | "ADC vs BCID for TIME_29_15" | 200 | 1895.6 | 905.98 | -0.46691 | -0.7336 | - | bcid_adc_TIME_35_00 | "ADC vs BCID for TIME_35_00" | 200 | 1874 | 919.27 | -0.43734 | -0.79575 | - | bcid_adc_TIME_35_01 | "ADC vs BCID for TIME_35_01" | 200 | 1874.5 | 919.43 | -0.43842 | -0.7966 | - | bcid_adc_TIME_35_02 | "ADC vs BCID for TIME_35_02" | 200 | 1875.6 | 919.93 | -0.43968 | -0.79664 | - | bcid_adc_TIME_35_03 | "ADC vs BCID for TIME_35_03" | 200 | 1878.4 | 919.56 | -0.44281 | -0.79481 | - | bcid_adc_TIME_35_04 | "ADC vs BCID for TIME_35_04" | 200 | 1882.8 | 919.06 | -0.4494 | -0.78902 | - | bcid_adc_TIME_35_05 | "ADC vs BCID for TIME_35_05" | 200 | 1886.9 | 918.55 | -0.45556 | -0.78441 | - | bcid_adc_TIME_35_06 | "ADC vs BCID for TIME_35_06" | 200 | 1892.4 | 916.05 | -0.46324 | -0.77229 | - | bcid_adc_TIME_35_07 | "ADC vs BCID for TIME_35_07" | 200 | 1891.6 | 916.06 | -0.46269 | -0.77261 | - | bcid_adc_TIME_35_08 | "ADC vs BCID for TIME_35_08" | 200 | 1886.2 | 916.00 | -0.45094 | -0.77827 | - | bcid_adc_TIME_35_09 | "ADC vs BCID for TIME_35_09" | 200 | 1886 | 915.80 | -0.44958 | -0.77777 | - | bcid_adc_TIME_35_10 | "ADC vs BCID for TIME_35_10" | 200 | 1885.5 | 915.56 | -0.44823 | -0.77642 | - | bcid_adc_TIME_35_11 | "ADC vs BCID for TIME_35_11" | 200 | 1884.6 | 914.89 | -0.44758 | -0.77547 | - | bcid_adc_TIME_35_12 | "ADC vs BCID for TIME_35_12" | 200 | 1881.9 | 916.13 | -0.44489 | -0.78167 | - | bcid_adc_TIME_35_13 | "ADC vs BCID for TIME_35_13" | 200 | 1877.7 | 917.37 | -0.44085 | -0.78893 | - | bcid_adc_TIME_35_14 | "ADC vs BCID for TIME_35_14" | 200 | 1871.6 | 918.83 | -0.43561 | -0.79706 | - | bcid_adc_TIME_35_15 | "ADC vs BCID for TIME_35_15" | 200 | 1872.1 | 918.69 | -0.43548 | -0.79523 | + | bcid_adc_LUMI_00 | "ADC vs BCID for LUMI_00" | 199 | 1870.6 | 790.60 | -0.60177 | -0.09168 | + | bcid_adc_LUMI_01 | "ADC vs BCID for LUMI_01" | 199 | 2070.8 | 770.20 | -0.99161 | 0.22884 | + | bcid_adc_LUMI_02 | "ADC vs BCID for LUMI_02" | 199 | 2050.9 | 834.59 | -0.65176 | -0.5061 | + | bcid_adc_LUMI_03 | "ADC vs BCID for LUMI_03" | 199 | 1990.1 | 765.92 | -0.46886 | -0.21436 | + | bcid_adc_LUMI_04 | "ADC vs BCID for LUMI_04" | 199 | 2210.9 | 726.85 | -0.61433 | 0.16011 | + | bcid_adc_LUMI_06 | "ADC vs BCID for LUMI_06" | 199 | 1814.3 | 931.05 | -0.35473 | -0.65137 | + | bcid_adc_LUMI_07 | "ADC vs BCID for LUMI_07" | 199 | 1829.9 | 849.99 | -0.54918 | -0.37268 | + | bcid_adc_LUMI_08 | "ADC vs BCID for LUMI_08" | 199 | 1951.8 | 610.16 | -0.035557 | -0.04376 | + | bcid_adc_LUMI_09 | "ADC vs BCID for LUMI_09" | 199 | 2051.3 | 888.71 | -0.63142 | -0.099947 | + | bcid_adc_LUMI_10 | "ADC vs BCID for LUMI_10" | 199 | 1935.5 | 921.76 | -0.74785 | -0.57055 | + | bcid_adc_LUMI_12 | "ADC vs BCID for LUMI_12" | 199 | 2040.6 | 845.89 | -0.87066 | 0.021964 | + | bcid_adc_LUMI_13 | "ADC vs BCID for LUMI_13" | 199 | 2022.4 | 835.67 | -0.94776 | 0.064412 | + | bcid_adc_LUMI_14 | "ADC vs BCID for LUMI_14" | 199 | 2038.2 | 727.87 | -0.89717 | 0.48621 | + | bcid_adc_LUMI_15 | "ADC vs BCID for LUMI_15" | 199 | 1897.1 | 832.79 | -0.81295 | -0.24125 | + | bcid_adc_LUMI_16 | "ADC vs BCID for LUMI_16" | 199 | 2125 | 880.93 | -0.86911 | -0.28336 | + | bcid_adc_LUMI_17 | "ADC vs BCID for LUMI_17" | 199 | 1964.7 | 925.44 | -0.79502 | -0.63807 | + | bcid_adc_LUMI_18 | "ADC vs BCID for LUMI_18" | 199 | 1837.4 | 942.56 | -0.69201 | -0.80311 | + | bcid_adc_LUMI_19 | "ADC vs BCID for LUMI_19" | 199 | 2002.8 | 846.37 | -0.73938 | -0.3961 | + | bcid_adc_LUMI_20 | "ADC vs BCID for LUMI_20" | 199 | 2070.5 | 851.21 | -1.0004 | -0.18805 | + | bcid_adc_LUMI_21 | "ADC vs BCID for LUMI_21" | 199 | 1903.2 | 983.88 | -0.84364 | -0.79043 | + | bcid_adc_LUMI_22 | "ADC vs BCID for LUMI_22" | 199 | 1578.8 | 907.36 | -0.27192 | -1.0472 | + | bcid_adc_LUMI_23 | "ADC vs BCID for LUMI_23" | 199 | 2005.8 | 721.92 | -0.80389 | 0.29306 | + | bcid_adc_LUMI_24 | "ADC vs BCID for LUMI_24" | 199 | 1838.2 | 739.10 | -0.51292 | 0.17953 | + | bcid_adc_LUMI_25 | "ADC vs BCID for LUMI_25" | 199 | 2256.9 | 896.32 | -1.4175 | 0.83223 | + | bcid_adc_LUMI_26 | "ADC vs BCID for LUMI_26" | 199 | 1969.2 | 1010.6 | -0.68286 | -0.92945 | + | bcid_adc_LUMI_27 | "ADC vs BCID for LUMI_27" | 199 | 1487.6 | 988.24 | -0.19768 | -1.4411 | + | bcid_adc_LUMI_28 | "ADC vs BCID for LUMI_28" | 199 | 2005.8 | 702.32 | -0.57171 | -0.091479 | + | bcid_adc_LUMI_30 | "ADC vs BCID for LUMI_30" | 199 | 1971.1 | 771.99 | -0.45655 | -0.12947 | + | bcid_adc_LUMI_31 | "ADC vs BCID for LUMI_31" | 199 | 1944 | 778.66 | -0.37937 | -0.36047 | + | bcid_adc_LUMI_32 | "ADC vs BCID for LUMI_32" | 199 | 1835.8 | 667.37 | 0.29304 | -0.13298 | + | bcid_adc_LUMI_33 | "ADC vs BCID for LUMI_33" | 199 | 1766.1 | 945.07 | -0.42592 | -0.84695 | + | bcid_adc_LUMI_34 | "ADC vs BCID for LUMI_34" | 199 | 2390.6 | 854.71 | -1.5394 | 1.7641 | + | bcid_adc_LUMI_36 | "ADC vs BCID for LUMI_36" | 199 | 1592.4 | 945.03 | 0.029865 | -1.1452 | + | bcid_adc_LUMI_37 | "ADC vs BCID for LUMI_37" | 199 | 1699.2 | 880.18 | -0.12931 | -1.1194 | + | bcid_adc_LUMI_38 | "ADC vs BCID for LUMI_38" | 199 | 2139.4 | 760.53 | -0.60891 | -0.27076 | + | bcid_adc_LUMI_39 | "ADC vs BCID for LUMI_39" | 199 | 1698.1 | 857.66 | -0.48489 | -0.82547 | + | bcid_adc_LUMI_40 | "ADC vs BCID for LUMI_40" | 199 | 2386.5 | 590.56 | -1.6517 | 3.5922 | + | bcid_adc_LUMI_41 | "ADC vs BCID for LUMI_41" | 199 | 1826.1 | 1008.9 | -0.70857 | -1.0663 | + | bcid_adc_LUMI_42 | "ADC vs BCID for LUMI_42" | 199 | 1999.7 | 803.06 | -0.40614 | -0.58837 | + | bcid_adc_LUMI_43 | "ADC vs BCID for LUMI_43" | 199 | 1943 | 843.76 | -0.95746 | -0.17841 | + | bcid_adc_LUMI_44 | "ADC vs BCID for LUMI_44" | 199 | 1944.9 | 1006.9 | -0.74659 | -0.92771 | + | bcid_adc_LUMI_45 | "ADC vs BCID for LUMI_45" | 199 | 2095.1 | 947.90 | -0.87342 | -0.60699 | + | bcid_adc_LUMI_46 | "ADC vs BCID for LUMI_46" | 199 | 1656.2 | 1039.7 | -0.58107 | -1.2514 | + | bcid_adc_LUMI_47 | "ADC vs BCID for LUMI_47" | 199 | 2206.5 | 794.67 | -1.2367 | 0.93193 | + | bcid_adc_TIME_05_00 | "ADC vs BCID for TIME_05_00" | 199 | 1886.6 | 912.20 | -0.46031 | -0.75571 | + | bcid_adc_TIME_05_01 | "ADC vs BCID for TIME_05_01" | 199 | 1886.6 | 912.03 | -0.46021 | -0.75387 | + | bcid_adc_TIME_05_02 | "ADC vs BCID for TIME_05_02" | 199 | 1885.7 | 912.93 | -0.45868 | -0.75867 | + | bcid_adc_TIME_05_03 | "ADC vs BCID for TIME_05_03" | 199 | 1886 | 913.42 | -0.45842 | -0.76068 | + | bcid_adc_TIME_05_04 | "ADC vs BCID for TIME_05_04" | 199 | 1890 | 912.89 | -0.46063 | -0.75946 | + | bcid_adc_TIME_05_05 | "ADC vs BCID for TIME_05_05" | 199 | 1895.4 | 912.48 | -0.46831 | -0.75773 | + | bcid_adc_TIME_05_06 | "ADC vs BCID for TIME_05_06" | 199 | 1902.2 | 909.17 | -0.47984 | -0.74181 | + | bcid_adc_TIME_05_07 | "ADC vs BCID for TIME_05_07" | 199 | 1902.3 | 909.23 | -0.48037 | -0.74151 | + | bcid_adc_TIME_05_08 | "ADC vs BCID for TIME_05_08" | 199 | 1876.3 | 926.34 | -0.45098 | -0.80591 | + | bcid_adc_TIME_05_09 | "ADC vs BCID for TIME_05_09" | 199 | 1876.7 | 926.06 | -0.45196 | -0.80464 | + | bcid_adc_TIME_05_10 | "ADC vs BCID for TIME_05_10" | 199 | 1877.1 | 925.87 | -0.45227 | -0.80372 | + | bcid_adc_TIME_05_11 | "ADC vs BCID for TIME_05_11" | 199 | 1877.4 | 925.11 | -0.45123 | -0.80212 | + | bcid_adc_TIME_05_12 | "ADC vs BCID for TIME_05_12" | 199 | 1882.6 | 921.22 | -0.45532 | -0.78836 | + | bcid_adc_TIME_05_13 | "ADC vs BCID for TIME_05_13" | 199 | 1886.4 | 914.96 | -0.45779 | -0.7667 | + | bcid_adc_TIME_05_14 | "ADC vs BCID for TIME_05_14" | 199 | 1887.2 | 910.90 | -0.4616 | -0.75008 | + | bcid_adc_TIME_05_15 | "ADC vs BCID for TIME_05_15" | 199 | 1887.4 | 910.76 | -0.46148 | -0.74925 | + | bcid_adc_TIME_11_00 | "ADC vs BCID for TIME_11_00" | 199 | 1895.5 | 924.33 | -0.48253 | -0.78174 | + | bcid_adc_TIME_11_01 | "ADC vs BCID for TIME_11_01" | 199 | 1894.7 | 924.37 | -0.48126 | -0.78254 | + | bcid_adc_TIME_11_02 | "ADC vs BCID for TIME_11_02" | 199 | 1894.4 | 924.80 | -0.48065 | -0.78409 | + | bcid_adc_TIME_11_03 | "ADC vs BCID for TIME_11_03" | 199 | 1893.9 | 923.94 | -0.4775 | -0.7835 | + | bcid_adc_TIME_11_04 | "ADC vs BCID for TIME_11_04" | 199 | 1892.8 | 920.02 | -0.46914 | -0.7778 | + | bcid_adc_TIME_11_05 | "ADC vs BCID for TIME_11_05" | 199 | 1893.2 | 914.35 | -0.45981 | -0.76588 | + | bcid_adc_TIME_11_06 | "ADC vs BCID for TIME_11_06" | 199 | 1892.9 | 912.08 | -0.45612 | -0.76202 | + | bcid_adc_TIME_11_07 | "ADC vs BCID for TIME_11_07" | 199 | 1892.8 | 912.83 | -0.45671 | -0.76371 | + | bcid_adc_TIME_11_08 | "ADC vs BCID for TIME_11_08" | 199 | 1880.7 | 924.01 | -0.45545 | -0.79934 | + | bcid_adc_TIME_11_09 | "ADC vs BCID for TIME_11_09" | 199 | 1880.3 | 924.56 | -0.45494 | -0.80144 | + | bcid_adc_TIME_11_10 | "ADC vs BCID for TIME_11_10" | 199 | 1880.5 | 924.29 | -0.45503 | -0.79994 | + | bcid_adc_TIME_11_11 | "ADC vs BCID for TIME_11_11" | 199 | 1882 | 923.37 | -0.45668 | -0.79683 | + | bcid_adc_TIME_11_12 | "ADC vs BCID for TIME_11_12" | 199 | 1887.4 | 923.20 | -0.46261 | -0.79237 | + | bcid_adc_TIME_11_13 | "ADC vs BCID for TIME_11_13" | 199 | 1895 | 923.89 | -0.47921 | -0.78266 | + | bcid_adc_TIME_11_14 | "ADC vs BCID for TIME_11_14" | 199 | 1899.5 | 923.91 | -0.4894 | -0.77539 | + | bcid_adc_TIME_11_15 | "ADC vs BCID for TIME_11_15" | 199 | 1897.6 | 924.16 | -0.48645 | -0.77878 | + | bcid_adc_TIME_29_00 | "ADC vs BCID for TIME_29_00" | 199 | 1898.3 | 910.80 | -0.47463 | -0.74715 | + | bcid_adc_TIME_29_01 | "ADC vs BCID for TIME_29_01" | 199 | 1897.8 | 911.17 | -0.47374 | -0.74859 | + | bcid_adc_TIME_29_02 | "ADC vs BCID for TIME_29_02" | 199 | 1897.8 | 911.49 | -0.47357 | -0.74952 | + | bcid_adc_TIME_29_03 | "ADC vs BCID for TIME_29_03" | 199 | 1897.1 | 911.57 | -0.47295 | -0.75054 | + | bcid_adc_TIME_29_04 | "ADC vs BCID for TIME_29_04" | 199 | 1895.7 | 913.47 | -0.47028 | -0.75829 | + | bcid_adc_TIME_29_05 | "ADC vs BCID for TIME_29_05" | 199 | 1895.8 | 915.67 | -0.47172 | -0.76577 | + | bcid_adc_TIME_29_06 | "ADC vs BCID for TIME_29_06" | 199 | 1893.7 | 916.36 | -0.47081 | -0.76778 | + | bcid_adc_TIME_29_07 | "ADC vs BCID for TIME_29_07" | 199 | 1893.9 | 915.91 | -0.47068 | -0.76583 | + | bcid_adc_TIME_29_08 | "ADC vs BCID for TIME_29_08" | 199 | 1889.9 | 918.49 | -0.46809 | -0.77157 | + | bcid_adc_TIME_29_09 | "ADC vs BCID for TIME_29_09" | 199 | 1889.3 | 918.20 | -0.46679 | -0.77198 | + | bcid_adc_TIME_29_10 | "ADC vs BCID for TIME_29_10" | 199 | 1889.6 | 917.79 | -0.46701 | -0.77118 | + | bcid_adc_TIME_29_11 | "ADC vs BCID for TIME_29_11" | 199 | 1888.8 | 917.78 | -0.4649 | -0.77255 | + | bcid_adc_TIME_29_12 | "ADC vs BCID for TIME_29_12" | 199 | 1890.6 | 916.35 | -0.46544 | -0.76886 | + | bcid_adc_TIME_29_13 | "ADC vs BCID for TIME_29_13" | 199 | 1894.9 | 913.12 | -0.46831 | -0.75715 | + | bcid_adc_TIME_29_14 | "ADC vs BCID for TIME_29_14" | 199 | 1899.1 | 910.00 | -0.47491 | -0.7438 | + | bcid_adc_TIME_29_15 | "ADC vs BCID for TIME_29_15" | 199 | 1898.7 | 910.08 | -0.47523 | -0.74504 | + | bcid_adc_TIME_35_00 | "ADC vs BCID for TIME_35_00" | 199 | 1876.1 | 922.29 | -0.4427 | -0.80479 | + | bcid_adc_TIME_35_01 | "ADC vs BCID for TIME_35_01" | 199 | 1876.3 | 922.05 | -0.44309 | -0.80445 | + | bcid_adc_TIME_35_02 | "ADC vs BCID for TIME_35_02" | 199 | 1877.1 | 922.10 | -0.44353 | -0.80308 | + | bcid_adc_TIME_35_03 | "ADC vs BCID for TIME_35_03" | 199 | 1879.7 | 921.46 | -0.44623 | -0.80039 | + | bcid_adc_TIME_35_04 | "ADC vs BCID for TIME_35_04" | 199 | 1884.1 | 920.96 | -0.45291 | -0.79452 | + | bcid_adc_TIME_35_05 | "ADC vs BCID for TIME_35_05" | 199 | 1888.3 | 920.44 | -0.45911 | -0.78978 | + | bcid_adc_TIME_35_06 | "ADC vs BCID for TIME_35_06" | 199 | 1893.8 | 917.96 | -0.46697 | -0.77764 | + | bcid_adc_TIME_35_07 | "ADC vs BCID for TIME_35_07" | 199 | 1893.1 | 918.02 | -0.46651 | -0.77811 | + | bcid_adc_TIME_35_08 | "ADC vs BCID for TIME_35_08" | 199 | 1887.8 | 918.23 | -0.45517 | -0.78469 | + | bcid_adc_TIME_35_09 | "ADC vs BCID for TIME_35_09" | 199 | 1888 | 918.44 | -0.45459 | -0.78538 | + | bcid_adc_TIME_35_10 | "ADC vs BCID for TIME_35_10" | 199 | 1887.7 | 918.66 | -0.4541 | -0.78537 | + | bcid_adc_TIME_35_11 | "ADC vs BCID for TIME_35_11" | 199 | 1887 | 918.29 | -0.45401 | -0.78533 | + | bcid_adc_TIME_35_12 | "ADC vs BCID for TIME_35_12" | 199 | 1884.3 | 919.61 | -0.45134 | -0.79181 | + | bcid_adc_TIME_35_13 | "ADC vs BCID for TIME_35_13" | 199 | 1880.2 | 920.83 | -0.44715 | -0.79919 | + | bcid_adc_TIME_35_14 | "ADC vs BCID for TIME_35_14" | 199 | 1873.9 | 922.25 | -0.44163 | -0.8074 | + | bcid_adc_TIME_35_15 | "ADC vs BCID for TIME_35_15" | 199 | 1874.4 | 922.12 | -0.44152 | -0.80558 | diff --git a/Plume/PlumeReco/tests/refs/plume_decoding.ref.armv8.1_a b/Plume/PlumeReco/tests/refs/plume_decoding.ref.armv8.1_a index 027b80b7bdebff9a265eb923c24ccd9b1a6283db..365bb958a560f441059c7ebdd9366308d9562576 100644 --- a/Plume/PlumeReco/tests/refs/plume_decoding.ref.armv8.1_a +++ b/Plume/PlumeReco/tests/refs/plume_decoding.ref.armv8.1_a @@ -7,10 +7,6 @@ HLTControlFlowMgr INFO Start initialization HLTControlFlowMgr INFO Will not use an EventSelector. HistogramPersistencySvc INFO Added successfully Conversion service RootHistSvc MDFIOAlg INFO Connected to mdf:root://eoslhcb.cern.ch//eos/lhcb//lhcb/swtest/2024_raw_hlt1_290683/Run_0000290683_20240417-065023-114_UCEB02_0001.mdf, input 1/1 -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 @@ -22,24418 +18,220 @@ ApplicationMgr INFO Application Manager Started successf HLTControlFlowMgr INFO Will measure time between events 20 and 180 (stop might be some events later) HLTControlFlowMgr INFO Starting loop on events PrintHeader_7bb0e124 INFO # 1 Run 290683, Event 7570207 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -8, OverTh=false -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= -4, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 82, OverTh=true -Channel=LUMI_13 , ADC= 885, OverTh=true -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= -7, OverTh=false -Channel=LUMI_39 , ADC= 16, OverTh=false -Channel=LUMI_16 , ADC= 174, OverTh=true -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 59, OverTh=true -Channel=LUMI_47 , ADC= 31, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= -9, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 362, OverTh=true -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= 437, OverTh=true -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 345, OverTh=true -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 17, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 246, OverTh=false -Channel=TIME_29_08, ADC= 384, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 265, OverTh=false -Channel=TIME_29_01, ADC= 247, OverTh=false -Channel=TIME_29_09, ADC= 384, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 248, OverTh=false -Channel=TIME_29_10, ADC= 379, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 263, OverTh=false -Channel=TIME_29_03, ADC= 251, OverTh=false -Channel=TIME_29_11, ADC= 377, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 340, 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= 267, 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= 236, 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= 234, 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= 253, 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= 255, 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 252, 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= 254, 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= 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= 257, 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= 258, OverTh=false -RCWNTupleCnv INFO Booked TTree with ID: Plume "PlumeTuple" in directory plume_decoding_ntuple.root:/PlumeTuple_d36bf254 +RCWNTupleCnv INFO Booked TTree with ID: Plume "PlumeTuple" in directory plume_decoding_ntuple.root:/PlumeTuple_4a35a9a2 PrintHeader_7bb0e124 INFO # 2 Run 290683, Event 7570237 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -6, OverTh=false -Channel=LUMI_14 , ADC= 316, OverTh=true -Channel=LUMI_38 , ADC= 13, 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= 5, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 339, OverTh=true -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 91, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 100, OverTh=true -Channel=LUMI_31 , ADC= 12, OverTh=false -Channel=LUMI_08 , ADC= 305, OverTh=true -Channel=LUMI_32 , ADC= 45, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -10, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 37, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 65, OverTh=true -Channel=LUMI_42 , ADC= 22, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 276, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 273, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 267, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 270, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 270, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 269, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 261, OverTh=false -Channel=TIME_05_13, ADC= 263, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 266, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 269, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 273, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 267, OverTh=false -Channel=TIME_11_00, ADC= 271, 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= 272, 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= 273, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 269, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 268, 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= 263, OverTh=false -Channel=TIME_11_13, ADC= 261, 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= 271, 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= 272, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 3 Run 290683, Event 7570390 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 19, 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= -15, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -10, OverTh=false -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 8, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 6, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= 10, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 265, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 231, OverTh=false -Channel=TIME_29_08, ADC= 625, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 238, OverTh=false -Channel=TIME_29_09, ADC= 611, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 245, OverTh=false -Channel=TIME_29_10, ADC= 615, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 250, OverTh=false -Channel=TIME_29_11, ADC= 588, OverTh=false -Channel=TIME_05_04, ADC= 271, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 453, OverTh=false -Channel=TIME_05_05, ADC= 300, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 289, OverTh=false -Channel=TIME_05_06, ADC= 333, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 193, OverTh=false -Channel=TIME_05_07, ADC= 332, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 198, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 247, OverTh=false -Channel=TIME_35_08, ADC= 320, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 265, OverTh=false -Channel=TIME_35_01, ADC= 250, OverTh=false -Channel=TIME_35_09, ADC= 319, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 252, OverTh=false -Channel=TIME_35_10, ADC= 314, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 263, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 309, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 278, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 252, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 246, 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= 249, OverTh=false PrintHeader_7bb0e124 INFO # 4 Run 290683, Event 7565207 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 256, OverTh=true -Channel=LUMI_24 , ADC= 504, OverTh=true -Channel=LUMI_01 , ADC= 32, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 362, OverTh=true -Channel=LUMI_26 , ADC= 52, OverTh=true -Channel=LUMI_03 , ADC= 98, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 8, OverTh=false -Channel=LUMI_28 , ADC= 18, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 14, OverTh=false -Channel=LUMI_37 , ADC= 366, OverTh=true -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= 0, OverTh=false -Channel=LUMI_16 , ADC= 74, OverTh=true -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 583, OverTh=true -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 15, OverTh=false -Channel=LUMI_30 , ADC= 13, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 7, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 220, OverTh=true -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 161, OverTh=true -Channel=LUMI_17 , ADC= -7, OverTh=false -Channel=LUMI_41 , ADC= 284, OverTh=true -Channel=LUMI_18 , ADC= 346, OverTh=true -Channel=LUMI_42 , ADC= 213, OverTh=true -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 810, OverTh=true -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 395, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 395, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 264, OverTh=false -Channel=TIME_05_10, ADC= 392, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 264, OverTh=false -Channel=TIME_05_11, ADC= 385, 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= 345, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 285, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 248, 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= 251, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 358, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 360, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 357, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 361, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 355, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 359, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 341, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 334, OverTh=false -Channel=TIME_35_11, ADC= 267, OverTh=false -Channel=TIME_11_04, ADC= 296, OverTh=false -Channel=TIME_11_12, ADC= 288, OverTh=false -Channel=TIME_35_04, ADC= 282, OverTh=false -Channel=TIME_35_12, ADC= 309, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 336, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 342, OverTh=false -Channel=TIME_11_06, ADC= 240, OverTh=false -Channel=TIME_11_14, ADC= 379, OverTh=false -Channel=TIME_35_06, ADC= 234, OverTh=false -Channel=TIME_35_14, ADC= 370, OverTh=false -Channel=TIME_11_07, ADC= 242, OverTh=false -Channel=TIME_11_15, ADC= 371, OverTh=false -Channel=TIME_35_07, ADC= 235, OverTh=false -Channel=TIME_35_15, ADC= 373, OverTh=false PrintHeader_7bb0e124 INFO # 5 Run 290683, Event 7565256 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 90, OverTh=true -Channel=LUMI_25 , ADC= 438, OverTh=true -Channel=LUMI_02 , ADC= 118, OverTh=true -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= 4, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 17, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 267, OverTh=true -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 26, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 22, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 135, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= -27, OverTh=false -Channel=LUMI_19 , ADC= 32, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -11, OverTh=false -Channel=LUMI_21 , ADC= 7, OverTh=false -Channel=LUMI_45 , ADC= 13, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 252, OverTh=false -Channel=TIME_05_08, ADC= 357, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 356, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 354, 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= 350, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 248, OverTh=false -Channel=TIME_05_12, ADC= 331, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 231, OverTh=false -Channel=TIME_05_13, ADC= 283, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 214, OverTh=false -Channel=TIME_05_14, ADC= 249, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 212, OverTh=false -Channel=TIME_05_15, ADC= 248, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 298, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 344, OverTh=false -Channel=TIME_11_01, ADC= 294, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 348, OverTh=false -Channel=TIME_11_02, ADC= 294, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 347, OverTh=false -Channel=TIME_11_03, ADC= 293, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 251, OverTh=false -Channel=TIME_35_11, ADC= 336, OverTh=false -Channel=TIME_11_04, ADC= 293, OverTh=false -Channel=TIME_11_12, ADC= 268, OverTh=false -Channel=TIME_35_04, ADC= 216, OverTh=false -Channel=TIME_35_12, ADC= 296, OverTh=false -Channel=TIME_11_05, ADC= 318, OverTh=false -Channel=TIME_11_13, ADC= 294, OverTh=false -Channel=TIME_35_05, ADC= 188, OverTh=false -Channel=TIME_35_13, ADC= 273, OverTh=false -Channel=TIME_11_06, ADC= 332, OverTh=false -Channel=TIME_11_14, ADC= 303, OverTh=false -Channel=TIME_35_06, ADC= 168, OverTh=false -Channel=TIME_35_14, ADC= 250, OverTh=false -Channel=TIME_11_07, ADC= 329, OverTh=false -Channel=TIME_11_15, ADC= 299, OverTh=false -Channel=TIME_35_07, ADC= 167, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 6 Run 290683, Event 7565333 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= -1, 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= -2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -5, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -5, OverTh=false -Channel=LUMI_37 , ADC= -6, 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= 7, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, 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= -4, 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= -3, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= -1, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 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= 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= 257, 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= 259, 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= 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= 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= 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, 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= 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= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 7 Run 290683, Event 7560518 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 64, OverTh=true -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 46, OverTh=false -Channel=LUMI_27 , ADC= 26, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 8, OverTh=false -Channel=LUMI_37 , ADC= 149, OverTh=true -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -8, OverTh=false -Channel=LUMI_39 , ADC= 195, OverTh=true -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= -6, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 20, OverTh=false -Channel=LUMI_17 , ADC= 279, OverTh=true -Channel=LUMI_41 , ADC= 28, OverTh=false -Channel=LUMI_18 , ADC= 18, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -5, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 251, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 253, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 255, 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= 253, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 252, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 250, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 263, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 320, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 418, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 321, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 421, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 320, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 418, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 312, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 386, OverTh=false -Channel=TIME_35_11, ADC= 268, OverTh=false -Channel=TIME_11_04, ADC= 285, OverTh=false -Channel=TIME_11_12, ADC= 269, OverTh=false -Channel=TIME_35_04, ADC= 314, OverTh=false -Channel=TIME_35_12, ADC= 329, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 305, OverTh=false -Channel=TIME_35_05, ADC= 271, OverTh=false -Channel=TIME_35_13, ADC= 373, OverTh=false -Channel=TIME_11_06, ADC= 244, OverTh=false -Channel=TIME_11_14, ADC= 332, OverTh=false -Channel=TIME_35_06, ADC= 231, OverTh=false -Channel=TIME_35_14, ADC= 435, OverTh=false -Channel=TIME_11_07, ADC= 246, OverTh=false -Channel=TIME_11_15, ADC= 332, OverTh=false -Channel=TIME_35_07, ADC= 238, OverTh=false -Channel=TIME_35_15, ADC= 437, OverTh=false PrintHeader_7bb0e124 INFO # 8 Run 290683, Event 7560699 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 39, OverTh=false -Channel=LUMI_24 , ADC= 361, OverTh=true -Channel=LUMI_01 , ADC= 57, OverTh=true -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 122, OverTh=true -Channel=LUMI_26 , ADC= 243, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 12, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 9, 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= 0, 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= 241, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 29, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 706, OverTh=true -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 304, OverTh=true -Channel=LUMI_31 , ADC= 93, OverTh=true -Channel=LUMI_08 , ADC= 222, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 222, OverTh=true -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= 9, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 12, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -5, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 291, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 289, 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= 288, 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= 288, 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= 279, OverTh=false -Channel=TIME_05_12, ADC= 264, 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= 283, 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= 299, 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= 299, 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= 262, 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= 259, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 254, 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= 256, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 279, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 286, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 278, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 282, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 9 Run 290683, Event 7561061 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 8, 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= 5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, 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= 16, 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= 5, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -7, OverTh=false -Channel=LUMI_30 , ADC= 4, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= 11, 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= 1, OverTh=false -Channel=LUMI_42 , ADC= 7, 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= 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= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 270, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 270, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 259, 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= 259, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 264, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 261, OverTh=false -Channel=TIME_29_07, ADC= 264, 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= 269, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 272, 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= 275, 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= 269, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 252, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 10 Run 290683, Event 7561387 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 14, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 12, OverTh=false -Channel=LUMI_25 , ADC= 21, OverTh=false -Channel=LUMI_02 , ADC= 16, OverTh=false -Channel=LUMI_26 , ADC= 244, OverTh=true -Channel=LUMI_03 , ADC= 36, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC=1120, OverTh=true -Channel=LUMI_36 , ADC= 151, OverTh=true -Channel=LUMI_13 , ADC= 198, OverTh=true -Channel=LUMI_37 , ADC= 28, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 394, OverTh=true -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 289, OverTh=true -Channel=LUMI_16 , ADC= 36, OverTh=false -Channel=LUMI_40 , ADC= 37, OverTh=false -Channel=LUMI_23 , ADC= 235, OverTh=true -Channel=LUMI_47 , ADC= 189, OverTh=true -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 11, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 18, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 363, OverTh=true -Channel=LUMI_08 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_34 , ADC= 316, OverTh=true -Channel=LUMI_17 , ADC= 676, OverTh=true -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 224, OverTh=true -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 337, OverTh=true -Channel=LUMI_20 , ADC= 261, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 162, OverTh=true -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 334, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 336, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 336, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 263, OverTh=false -Channel=TIME_05_11, ADC= 332, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 312, 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= 283, 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= 261, 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= 257, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 285, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 285, 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= 285, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 280, 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= 272, OverTh=false -Channel=TIME_35_12, ADC= 263, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 266, OverTh=false -Channel=TIME_35_13, ADC= 272, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 285, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 288, OverTh=false PrintHeader_7bb0e124 INFO # 11 Run 290683, Event 7561447 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -2, 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= 4, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 9, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= 27, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 17, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 23, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 176, OverTh=true -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= 12, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= -7, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= -11, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 8, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 253, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 255, 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= 257, OverTh=false -Channel=TIME_29_03, ADC= 254, 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= 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= 258, OverTh=false -Channel=TIME_29_13, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 253, OverTh=false -Channel=TIME_11_00, ADC= 263, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 263, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 259, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 257, 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= 258, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 12 Run 290683, Event 7561496 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 341, OverTh=true -Channel=LUMI_24 , ADC= 114, OverTh=true -Channel=LUMI_01 , ADC= 448, OverTh=true -Channel=LUMI_25 , ADC= 429, OverTh=true -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 21, 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= 4, OverTh=false -Channel=LUMI_12 , ADC= 305, OverTh=true -Channel=LUMI_36 , ADC= 488, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 456, OverTh=true -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 465, OverTh=true -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 294, OverTh=true -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 303, OverTh=true -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 92, OverTh=true -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 24, OverTh=false -Channel=LUMI_17 , ADC= 668, OverTh=true -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 77, OverTh=true -Channel=LUMI_42 , ADC= 359, OverTh=true -Channel=LUMI_19 , ADC= 355, OverTh=true -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 18, OverTh=false -Channel=LUMI_44 , ADC= 505, OverTh=true -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 280, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, 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= 260, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, 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= 254, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, 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= 258, OverTh=false -Channel=TIME_05_14, ADC= 257, 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= 259, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 239, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 235, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 260, OverTh=false -Channel=TIME_11_10, ADC= 237, 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= 242, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 247, OverTh=false -Channel=TIME_35_04, ADC= 254, 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= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 265, 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= 264, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 13 Run 290683, Event 7561535 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 61, OverTh=true -Channel=LUMI_24 , ADC= 87, OverTh=true -Channel=LUMI_01 , ADC= -14, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 104, OverTh=true -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 22, OverTh=false -Channel=LUMI_13 , ADC= 12, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 12, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -11, OverTh=false -Channel=LUMI_16 , ADC= -6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 233, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 13, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 226, OverTh=true -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= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 196, OverTh=true -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 21, 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= 8, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 282, OverTh=false -Channel=TIME_29_00, ADC= 273, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 284, OverTh=false -Channel=TIME_29_01, ADC= 275, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 286, OverTh=false -Channel=TIME_29_02, ADC= 274, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 282, OverTh=false -Channel=TIME_29_03, ADC= 274, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 249, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 266, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 232, OverTh=false -Channel=TIME_05_13, ADC= 249, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 272, OverTh=false -Channel=TIME_05_06, ADC= 226, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 252, OverTh=false -Channel=TIME_29_14, ADC= 277, OverTh=false -Channel=TIME_05_07, ADC= 224, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 278, OverTh=false -Channel=TIME_11_00, ADC= 255, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 255, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 251, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 14 Run 290683, Event 7561561 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -29, OverTh=false -Channel=LUMI_24 , ADC= -28, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -10, 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= 2, 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= 237, OverTh=true -Channel=LUMI_37 , ADC= 38, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= -5, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 10, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 276, OverTh=true -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, 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= 4, 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= 0, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 284, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 282, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 281, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 282, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 278, 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= 266, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 260, 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= 259, 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= 255, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 254, 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= 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= 256, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 260, 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= 257, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 259, 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 # 15 Run 290683, Event 7561718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 14, OverTh=false -Channel=LUMI_01 , ADC= 297, OverTh=true -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 55, OverTh=true -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= -14, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -5, OverTh=false -Channel=LUMI_36 , ADC= 535, OverTh=true -Channel=LUMI_13 , ADC= 193, OverTh=true -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 615, OverTh=true -Channel=LUMI_30 , ADC= 226, OverTh=true -Channel=LUMI_07 , ADC= 298, OverTh=true -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 123, OverTh=true -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 17, OverTh=false -Channel=LUMI_34 , ADC= 9, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 24, OverTh=false -Channel=LUMI_18 , ADC= 403, OverTh=true -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 318, OverTh=true -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= 277, OverTh=true -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 351, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 349, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 348, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 342, 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= 313, OverTh=false -Channel=TIME_05_12, ADC= 274, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 265, OverTh=false -Channel=TIME_05_13, ADC= 320, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 243, OverTh=false -Channel=TIME_05_14, ADC= 359, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 244, OverTh=false -Channel=TIME_05_15, ADC= 358, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 398, OverTh=false -Channel=TIME_11_08, ADC= 356, OverTh=false -Channel=TIME_35_00, ADC= 574, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 398, OverTh=false -Channel=TIME_11_09, ADC= 354, OverTh=false -Channel=TIME_35_01, ADC= 575, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 398, OverTh=false -Channel=TIME_11_10, ADC= 351, OverTh=false -Channel=TIME_35_02, ADC= 562, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 385, OverTh=false -Channel=TIME_11_11, ADC= 335, OverTh=false -Channel=TIME_35_03, ADC= 505, OverTh=false -Channel=TIME_35_11, ADC= 280, OverTh=false -Channel=TIME_11_04, ADC= 345, OverTh=false -Channel=TIME_11_12, ADC= 325, OverTh=false -Channel=TIME_35_04, ADC= 377, OverTh=false -Channel=TIME_35_12, ADC= 380, OverTh=false -Channel=TIME_11_05, ADC= 296, OverTh=false -Channel=TIME_11_13, ADC= 360, OverTh=false -Channel=TIME_35_05, ADC= 304, OverTh=false -Channel=TIME_35_13, ADC= 466, OverTh=false -Channel=TIME_11_06, ADC= 270, OverTh=false -Channel=TIME_11_14, ADC= 402, OverTh=false -Channel=TIME_35_06, ADC= 199, OverTh=false -Channel=TIME_35_14, ADC= 603, OverTh=false -Channel=TIME_11_07, ADC= 275, OverTh=false -Channel=TIME_11_15, ADC= 402, OverTh=false -Channel=TIME_35_07, ADC= 206, OverTh=false -Channel=TIME_35_15, ADC= 609, OverTh=false PrintHeader_7bb0e124 INFO # 16 Run 290683, Event 7561907 -PlumeRawToDigits_89428f2d 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= 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= 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= -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= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 9, 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= 2, 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= 1, OverTh=false -Channel=LUMI_19 , ADC= 13, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 254, 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= 259, 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= 256, OverTh=false -Channel=TIME_29_04, ADC= 256, 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= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 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= 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= 254, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 255, 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= 260, OverTh=false -Channel=TIME_11_07, ADC= 259, 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 # 17 Run 290683, Event 7564600 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 6, 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= 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= 0, 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= 0, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -10, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, 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= -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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 335, 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= 335, 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= 334, 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= 331, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 307, 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= 271, 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= 246, 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= 248, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 256, 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= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, 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= 257, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 252, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 260, 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= 261, 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 # 18 Run 290683, Event 7564781 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -4, 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= 13, 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= 360, OverTh=true -Channel=LUMI_36 , ADC= 16, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 29, OverTh=false -Channel=LUMI_38 , ADC= 211, OverTh=true -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 15, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, 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= -8, 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= 1, 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= -2, OverTh=false -Channel=LUMI_43 , ADC= 220, OverTh=true -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= 5, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 385, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 246, OverTh=false -Channel=TIME_05_01, ADC= 381, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 250, OverTh=false -Channel=TIME_05_02, ADC= 381, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 378, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 355, OverTh=false -Channel=TIME_05_12, ADC= 278, OverTh=false -Channel=TIME_29_04, ADC= 281, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 323, OverTh=false -Channel=TIME_05_13, ADC= 333, OverTh=false -Channel=TIME_29_05, ADC= 359, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 305, OverTh=false -Channel=TIME_05_14, ADC= 393, OverTh=false -Channel=TIME_29_06, ADC= 424, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 310, OverTh=false -Channel=TIME_05_15, ADC= 399, OverTh=false -Channel=TIME_29_07, ADC= 423, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 252, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 263, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 251, OverTh=false -Channel=TIME_35_10, ADC= 266, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 252, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 271, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 249, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 309, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 249, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 333, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 248, OverTh=false -Channel=TIME_35_14, ADC= 276, OverTh=false -Channel=TIME_11_07, ADC= 330, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 247, OverTh=false -Channel=TIME_35_15, ADC= 275, OverTh=false PrintHeader_7bb0e124 INFO # 19 Run 290683, Event 7567863 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 346, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -8, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 47, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 9, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 13, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 348, OverTh=true -Channel=LUMI_31 , ADC= 375, OverTh=true -Channel=LUMI_08 , ADC= 371, OverTh=true -Channel=LUMI_32 , ADC= 21, OverTh=false -Channel=LUMI_09 , ADC= 29, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 148, OverTh=true -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= 769, OverTh=true -Channel=LUMI_42 , ADC= 55, OverTh=true -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, 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= 257, OverTh=false -Channel=TIME_05_01, ADC= 258, OverTh=false -Channel=TIME_05_09, ADC= 252, 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= 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= 255, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_29_05, ADC= 273, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 282, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 265, OverTh=false -Channel=TIME_29_07, ADC= 282, 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= 257, 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= 256, 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= 258, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 269, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 253, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 251, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 20 Run 290683, Event 7567870 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 446, OverTh=true -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 49, OverTh=false -Channel=LUMI_02 , ADC= 13, 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= 8, OverTh=false -Channel=LUMI_28 , ADC= -7, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 11, OverTh=false -Channel=LUMI_37 , ADC= 6, 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= -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= 2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 16, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 236, OverTh=true -Channel=LUMI_32 , ADC= 142, OverTh=true -Channel=LUMI_09 , ADC= 80, OverTh=true -Channel=LUMI_33 , ADC= 10, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 60, OverTh=true -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 354, OverTh=false -Channel=TIME_29_08, ADC= 246, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 350, OverTh=false -Channel=TIME_29_09, ADC= 249, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 348, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 348, 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= 318, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 278, OverTh=false -Channel=TIME_29_13, ADC= 332, OverTh=false -Channel=TIME_05_06, ADC= 274, OverTh=false -Channel=TIME_05_14, ADC= 253, OverTh=false -Channel=TIME_29_06, ADC= 293, OverTh=false -Channel=TIME_29_14, ADC= 364, OverTh=false -Channel=TIME_05_07, ADC= 275, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 293, OverTh=false -Channel=TIME_29_15, ADC= 364, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 264, OverTh=false -Channel=TIME_11_02, ADC= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 277, 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= 295, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 279, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 293, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 274, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 21 Run 290683, Event 7567921 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 161, OverTh=true -Channel=LUMI_24 , ADC= 40, OverTh=false -Channel=LUMI_01 , ADC= 83, OverTh=true -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= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 72, OverTh=true -Channel=LUMI_13 , ADC= 698, OverTh=true -Channel=LUMI_37 , ADC= 370, OverTh=true -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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 27, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 13, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 393, OverTh=true -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= -16, OverTh=false -Channel=LUMI_08 , ADC= 10, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= 2, 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= 19, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -4, 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= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 353, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 353, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 351, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 340, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 311, OverTh=false -Channel=TIME_05_12, ADC= 281, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 326, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 238, OverTh=false -Channel=TIME_05_14, ADC= 366, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 267, OverTh=false -Channel=TIME_05_07, ADC= 241, OverTh=false -Channel=TIME_05_15, ADC= 364, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 272, 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= 256, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 291, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 350, 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= 374, 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= 367, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 22 Run 290683, Event 7575667 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 251, OverTh=true -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= 2, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 395, OverTh=true -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -15, 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= 7, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 179, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 45, 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= 7, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 5, OverTh=false -Channel=LUMI_33 , ADC= -4, 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= 12, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 23, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 101, OverTh=true -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -5, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 3, OverTh=false -Channel=TIME_05_00, ADC= 278, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 277, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 278, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 277, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 274, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 279, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 280, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 265, 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= 265, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 260, 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= 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= 258, 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= 253, OverTh=false -Channel=TIME_11_06, ADC= 274, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 275, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 23 Run 290683, Event 7572284 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 63, OverTh=true -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= -6, 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= 97, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 434, OverTh=true -Channel=LUMI_14 , ADC= 241, OverTh=true -Channel=LUMI_38 , ADC= 8, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 50, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 374, OverTh=true -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= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 239, OverTh=true -Channel=LUMI_43 , ADC= 20, OverTh=false -Channel=LUMI_20 , ADC= -6, OverTh=false -Channel=LUMI_44 , ADC= 0, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, 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= 254, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 257, 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= 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= 257, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 253, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 465, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 469, 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= 459, 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= 438, OverTh=false -Channel=TIME_11_11, ADC= 263, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 364, OverTh=false -Channel=TIME_11_12, ADC= 309, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 278, OverTh=false -Channel=TIME_11_13, ADC= 404, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 215, OverTh=false -Channel=TIME_11_14, ADC= 500, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 221, OverTh=false -Channel=TIME_11_15, ADC= 494, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 24 Run 290683, Event 7572356 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -21, OverTh=false -Channel=LUMI_24 , ADC= 489, OverTh=true -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -10, OverTh=false -Channel=LUMI_02 , ADC= 178, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 28, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 40, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 228, OverTh=true -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 385, OverTh=true -Channel=LUMI_39 , ADC= 11, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 12, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 9, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 20, 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= 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= 290, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 329, OverTh=true -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 22, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 5, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 190, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 302, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 189, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 299, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 193, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 299, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 195, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 298, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 225, OverTh=false -Channel=TIME_05_12, ADC= 224, OverTh=false -Channel=TIME_29_04, ADC= 282, OverTh=false -Channel=TIME_29_12, ADC= 263, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 198, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 293, OverTh=false -Channel=TIME_05_06, ADC= 281, OverTh=false -Channel=TIME_05_14, ADC= 183, OverTh=false -Channel=TIME_29_06, ADC= 244, OverTh=false -Channel=TIME_29_14, ADC= 308, OverTh=false -Channel=TIME_05_07, ADC= 275, OverTh=false -Channel=TIME_05_15, ADC= 185, OverTh=false -Channel=TIME_29_07, ADC= 245, OverTh=false -Channel=TIME_29_15, ADC= 309, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 252, 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= 256, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 252, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 252, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 269, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 25 Run 290683, Event 7572674 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= 86, OverTh=true -Channel=LUMI_25 , ADC= 407, OverTh=true -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= 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= -3, OverTh=false -Channel=LUMI_13 , ADC= 122, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 324, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 0, 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= -2, 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 22, OverTh=false -Channel=LUMI_42 , ADC= 18, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= -4, OverTh=false -Channel=LUMI_44 , ADC= -6, OverTh=false -Channel=LUMI_21 , ADC= -6, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 265, 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= 264, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 277, 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= 310, OverTh=false -Channel=TIME_05_13, ADC= 266, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 356, OverTh=false -Channel=TIME_05_14, ADC= 269, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 361, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 291, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 290, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 290, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 261, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 285, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 261, OverTh=false -Channel=TIME_11_12, ADC= 275, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 293, OverTh=false -Channel=TIME_35_05, ADC= 263, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 248, OverTh=false -Channel=TIME_11_14, ADC= 297, OverTh=false -Channel=TIME_35_06, ADC= 263, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 295, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 26 Run 290683, Event 7572738 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 781, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= -3, OverTh=false -Channel=LUMI_25 , ADC= 24, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 78, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -9, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -15, 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 169, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= -5, OverTh=false -Channel=LUMI_32 , ADC= -1, 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= 3, 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= -1, OverTh=false -Channel=LUMI_43 , ADC= 184, OverTh=true -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 6, OverTh=false -Channel=LUMI_21 , ADC= 267, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 308, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 275, OverTh=false -Channel=TIME_05_01, ADC= 307, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 270, OverTh=false -Channel=TIME_05_02, ADC= 307, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 265, OverTh=false -Channel=TIME_05_03, ADC= 305, 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= 286, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 291, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 245, OverTh=false -Channel=TIME_05_14, ADC= 317, OverTh=false -Channel=TIME_29_06, ADC= 297, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 247, OverTh=false -Channel=TIME_05_15, ADC= 315, OverTh=false -Channel=TIME_29_07, ADC= 294, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 343, OverTh=false -Channel=TIME_11_08, ADC= 360, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 262, OverTh=false -Channel=TIME_11_01, ADC= 345, OverTh=false -Channel=TIME_11_09, ADC= 358, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 346, OverTh=false -Channel=TIME_11_10, ADC= 356, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 335, OverTh=false -Channel=TIME_11_11, ADC= 345, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 286, OverTh=false -Channel=TIME_11_12, ADC= 323, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 338, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 239, OverTh=false -Channel=TIME_11_14, ADC= 350, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 243, OverTh=false -Channel=TIME_11_15, ADC= 349, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 27 Run 290683, Event 7572977 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_27 , ADC= 4, 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= -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= -4, 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= -1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , 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= 3, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_43 , ADC= -2, 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= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 254, 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= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 260, 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= 257, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, 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= 255, 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= 255, 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= 260, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, 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= 257, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 260, 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 # 28 Run 290683, Event 7569146 -PlumeRawToDigits_89428f2d 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= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -6, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -5, OverTh=false -Channel=LUMI_12 , ADC= -4, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -5, OverTh=false -Channel=LUMI_14 , ADC= -3, 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= -2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 5, 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= 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= 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= -4, OverTh=false -Channel=LUMI_43 , ADC= -3, 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= 4, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 4, 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= 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= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 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= 259, 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= 259, 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= 261, 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= 260, 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= 259, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 254, OverTh=false -Channel=TIME_35_05, ADC= 259, 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= 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= 256, OverTh=false PrintHeader_7bb0e124 INFO # 29 Run 290683, Event 7569197 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 13, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 9, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 9, OverTh=false -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 242, OverTh=true -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= 10, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -11, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 9, 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= 18, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 80, OverTh=true -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 244, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 242, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 243, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 247, 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= 254, OverTh=false -Channel=TIME_05_12, ADC= 250, 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= 248, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 273, OverTh=false -Channel=TIME_05_14, ADC= 242, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 272, OverTh=false -Channel=TIME_05_15, ADC= 240, 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= 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= 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 256, 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= 255, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 253, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 30 Run 290683, Event 7569388 -PlumeRawToDigits_89428f2d 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -2, 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= 3, 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= 3, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, 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= 1, 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= 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= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 9, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 254, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_29_04, ADC= 256, 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= 258, 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= 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= 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= 257, 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= 258, 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= 259, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 252, 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= 256, 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= 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= 257, OverTh=false PrintHeader_7bb0e124 INFO # 31 Run 290683, Event 7569588 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 11, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 0, 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= 0, 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= 0, 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= 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= 1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 3, 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= 0, 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= -4, 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= 6, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, 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= 256, 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= 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= 258, OverTh=false -Channel=TIME_05_04, ADC= 254, 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= 256, 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= 256, OverTh=false -Channel=TIME_29_06, ADC= 255, 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= 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 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= 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= 253, 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 32 Run 290683, Event 7569643 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -7, OverTh=false -Channel=LUMI_02 , ADC= 12, 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= 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= 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -3, 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= -16, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, 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= 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= 260, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 260, 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= 259, 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= 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= 260, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 262, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, 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= 257, 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= 258, 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 # 33 Run 290683, Event 7569752 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 977, OverTh=true -Channel=LUMI_24 , ADC= 652, OverTh=true -Channel=LUMI_01 , ADC= 49, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= 249, OverTh=true -Channel=LUMI_26 , ADC= 19, OverTh=false -Channel=LUMI_03 , ADC= 84, OverTh=true -Channel=LUMI_27 , ADC= 13, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 347, OverTh=true -Channel=LUMI_12 , ADC= 33, OverTh=false -Channel=LUMI_36 , ADC= 97, OverTh=true -Channel=LUMI_13 , ADC= 111, OverTh=true -Channel=LUMI_37 , ADC= 8, OverTh=false -Channel=LUMI_14 , ADC= 295, OverTh=true -Channel=LUMI_38 , ADC= 9, 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= 1, OverTh=false -Channel=LUMI_23 , ADC= 29, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 56, OverTh=true -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 125, OverTh=true -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 69, OverTh=true -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 132, OverTh=true -Channel=LUMI_19 , ADC= 117, OverTh=true -Channel=LUMI_43 , ADC= 271, OverTh=true -Channel=LUMI_20 , ADC= 139, OverTh=true -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 323, 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= 315, 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= 310, 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= 308, 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= 295, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 288, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 251, OverTh=false -Channel=TIME_29_14, ADC= 337, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 246, OverTh=false -Channel=TIME_29_15, ADC= 343, OverTh=false -Channel=TIME_11_00, ADC= 279, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 269, OverTh=false -Channel=TIME_11_01, ADC= 281, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 269, OverTh=false -Channel=TIME_11_02, ADC= 279, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 265, OverTh=false -Channel=TIME_11_03, ADC= 278, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 269, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 281, OverTh=false -Channel=TIME_35_06, ADC= 294, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 280, OverTh=false -Channel=TIME_35_07, ADC= 284, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 34 Run 290683, Event 7569766 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -10, OverTh=false -Channel=LUMI_26 , ADC= 19, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 11, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 109, OverTh=true -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 15, 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= 4, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 53, OverTh=true -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -7, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 274, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 273, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 263, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 272, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 272, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 261, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 253, OverTh=false -Channel=TIME_05_14, ADC= 273, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 273, OverTh=false -Channel=TIME_35_00, ADC= 252, OverTh=false -Channel=TIME_35_08, ADC= 290, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 272, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 291, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 271, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 291, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 271, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 289, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 266, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 282, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 261, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 271, OverTh=false -Channel=TIME_11_06, ADC= 263, OverTh=false -Channel=TIME_11_14, ADC= 252, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 247, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 248, OverTh=false PrintHeader_7bb0e124 INFO # 35 Run 290683, Event 7569897 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 667, OverTh=true -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= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 6, OverTh=false -Channel=LUMI_38 , ADC= 7, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= -5, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 478, OverTh=true -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= 6, OverTh=false -Channel=LUMI_41 , ADC= -18, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 101, OverTh=true -Channel=LUMI_19 , ADC= 31, 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= -1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 296, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 292, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 292, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 288, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 301, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 282, OverTh=false -Channel=TIME_29_12, ADC= 264, OverTh=false -Channel=TIME_05_05, ADC= 367, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 267, OverTh=false -Channel=TIME_29_13, ADC= 278, OverTh=false -Channel=TIME_05_06, ADC= 429, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 267, OverTh=false -Channel=TIME_29_14, ADC= 292, OverTh=false -Channel=TIME_05_07, ADC= 428, OverTh=false -Channel=TIME_05_15, ADC= 261, OverTh=false -Channel=TIME_29_07, ADC= 267, OverTh=false -Channel=TIME_29_15, ADC= 296, OverTh=false -Channel=TIME_11_00, ADC= 281, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 281, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 279, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 279, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 269, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 252, OverTh=false -Channel=TIME_11_13, ADC= 282, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 250, OverTh=false -Channel=TIME_11_14, ADC= 286, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 252, OverTh=false -Channel=TIME_11_15, ADC= 281, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 36 Run 290683, Event 7569909 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 324, OverTh=true -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 11, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 236, OverTh=true -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 136, OverTh=true -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 303, OverTh=true -Channel=LUMI_38 , ADC= -6, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= -12, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 341, OverTh=true -Channel=LUMI_47 , ADC= 26, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 102, OverTh=true -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 110, OverTh=true -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 169, OverTh=true -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 176, OverTh=true -Channel=LUMI_34 , ADC= 6, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 124, OverTh=true -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 63, OverTh=true -Channel=LUMI_43 , ADC= 367, OverTh=true -Channel=LUMI_20 , ADC= 145, OverTh=true -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 276, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 486, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 295, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 489, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 295, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 483, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 293, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 473, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 293, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 412, OverTh=false -Channel=TIME_05_12, ADC= 286, OverTh=false -Channel=TIME_29_04, ADC= 286, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 305, OverTh=false -Channel=TIME_05_13, ADC= 379, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 278, OverTh=false -Channel=TIME_05_06, ADC= 221, OverTh=false -Channel=TIME_05_14, ADC= 497, OverTh=false -Channel=TIME_29_06, ADC= 249, OverTh=false -Channel=TIME_29_14, ADC= 299, OverTh=false -Channel=TIME_05_07, ADC= 221, OverTh=false -Channel=TIME_05_15, ADC= 509, OverTh=false -Channel=TIME_29_07, ADC= 250, OverTh=false -Channel=TIME_29_15, ADC= 302, OverTh=false -Channel=TIME_11_00, ADC= 278, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 280, 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= 278, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 270, OverTh=false -Channel=TIME_11_11, ADC= 260, 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= 273, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 281, 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= 282, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 280, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 37 Run 290683, Event 7569944 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 11, 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= 2, 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= 6, 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= 4, OverTh=false -Channel=LUMI_38 , ADC= -7, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 398, OverTh=true -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 5, 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= 765, OverTh=true -Channel=LUMI_32 , ADC=1015, OverTh=true -Channel=LUMI_09 , ADC= 530, OverTh=true -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= -2, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 12, 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= 4, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 251, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 255, 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= 255, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 253, 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= 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 267, 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= 267, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, 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= 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= 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= 255, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 261, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 262, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 38 Run 290683, Event 7571081 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 86, OverTh=true -Channel=LUMI_24 , ADC= 305, OverTh=true -Channel=LUMI_01 , ADC= 73, OverTh=true -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 244, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= 10, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 25, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 46, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 185, OverTh=true -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 14, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 67, OverTh=true -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= -2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 109, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 101, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 67, OverTh=true -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 10, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 268, OverTh=false -Channel=TIME_05_08, ADC= 271, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 264, OverTh=false -Channel=TIME_05_09, ADC= 267, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 266, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 262, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 253, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 261, 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= 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= 257, 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= 259, OverTh=false -Channel=TIME_11_06, ADC= 268, 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= 264, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 39 Run 290683, Event 7571388 -PlumeRawToDigits_89428f2d 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= -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= 2, 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= 2, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_10 , ADC= 4, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 13, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 258, 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= 256, 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= 257, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 260, 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= 257, 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= 256, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 252, OverTh=false -Channel=TIME_11_04, ADC= 253, OverTh=false -Channel=TIME_11_12, ADC= 262, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 40 Run 290683, Event 7571649 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 163, OverTh=true -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= 0, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= -10, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= -8, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 30, OverTh=false -Channel=LUMI_30 , ADC= 9, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -4, 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= -3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 11, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 282, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 282, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 263, OverTh=false -Channel=TIME_05_02, ADC= 279, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 278, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 271, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 273, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 267, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 265, OverTh=false -Channel=TIME_29_14, ADC= 262, OverTh=false -Channel=TIME_05_07, ADC= 269, OverTh=false -Channel=TIME_05_15, ADC= 281, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 258, 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= 258, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 256, 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= 255, 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= 258, 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= 258, OverTh=false PrintHeader_7bb0e124 INFO # 41 Run 290683, Event 7568028 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 116, OverTh=true -Channel=LUMI_24 , ADC= 31, OverTh=false -Channel=LUMI_01 , ADC= 43, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= 86, OverTh=true -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 388, OverTh=true -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 189, OverTh=true -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= 266, OverTh=true -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 69, OverTh=true -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 346, OverTh=true -Channel=LUMI_33 , ADC= 255, OverTh=true -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 234, OverTh=true -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 612, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 248, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 250, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 269, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 273, 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= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 247, 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= 249, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 261, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 263, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 42 Run 290683, Event 7568133 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= 14, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 83, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_33 , ADC= -14, OverTh=false -Channel=LUMI_10 , ADC= 11, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 263, OverTh=true -Channel=LUMI_41 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -5, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 261, OverTh=false -Channel=TIME_05_10, ADC= 251, 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= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 259, 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= 259, OverTh=false -Channel=TIME_05_14, ADC= 258, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 265, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 264, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 266, 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= 261, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 252, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 43 Run 290683, Event 7568786 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 47, OverTh=false -Channel=LUMI_24 , ADC= 27, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 15, OverTh=false -Channel=LUMI_02 , ADC= 5, 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= 5, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 16, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 10, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 46, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 337, OverTh=true -Channel=LUMI_31 , ADC= -24, OverTh=false -Channel=LUMI_08 , ADC= 25, 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= 9, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 10, 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= 2, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= -8, OverTh=false -Channel=LUMI_22 , ADC= -6, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 253, OverTh=false -Channel=TIME_05_08, ADC= 302, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 265, OverTh=false -Channel=TIME_05_01, ADC= 252, OverTh=false -Channel=TIME_05_09, ADC= 302, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 264, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 301, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 263, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 296, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 265, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 287, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 284, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 339, OverTh=false -Channel=TIME_05_14, ADC= 251, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 346, OverTh=false -Channel=TIME_05_15, ADC= 251, OverTh=false -Channel=TIME_29_07, ADC= 258, 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= 258, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 260, 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= 256, OverTh=false -Channel=TIME_35_03, ADC= 265, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 306, 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= 348, 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= 397, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 399, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 44 Run 290683, Event 7568998 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 11, OverTh=false -Channel=LUMI_25 , ADC= -13, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 8, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 12, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= -5, 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= 7, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 9, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= -11, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= -7, OverTh=false -Channel=LUMI_22 , ADC= -5, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 273, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 258, OverTh=false -Channel=TIME_05_09, ADC= 271, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 269, 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= 268, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 259, 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= 250, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 253, 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= 265, 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= 266, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 267, 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= 262, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 255, 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= 255, OverTh=false -Channel=TIME_35_05, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_14, ADC= 252, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 45 Run 290683, Event 7562149 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 6, 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= 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= 7, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 3, 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= -5, 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=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 3, 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= 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 6, 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= 0, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 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= 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= 257, 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 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= 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= 255, 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= 255, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 259, 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= 254, 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= 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= 259, 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= 256, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 46 Run 290683, Event 7562338 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 10, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= 19, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -10, OverTh=false -Channel=LUMI_12 , ADC= -12, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -11, OverTh=false -Channel=LUMI_37 , ADC= -23, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 282, OverTh=true -Channel=LUMI_15 , ADC= -9, OverTh=false -Channel=LUMI_39 , ADC= -7, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= -9, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 304, OverTh=true -Channel=LUMI_07 , ADC= 11, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 23, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 82, OverTh=true -Channel=LUMI_18 , ADC= 200, OverTh=true -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= -25, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 234, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 269, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 234, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 271, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 234, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 271, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 236, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 276, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 242, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 235, OverTh=false -Channel=TIME_29_13, ADC= 270, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 263, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 267, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 286, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 285, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 286, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 281, 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= 268, 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= 257, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 250, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 47 Run 290683, Event 7562372 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 14, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 9, 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= 8, 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= 2, OverTh=false -Channel=LUMI_37 , ADC= 16, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 271, OverTh=true -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 9, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 247, OverTh=true -Channel=LUMI_30 , ADC= 12, OverTh=false -Channel=LUMI_07 , ADC= 68, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 62, OverTh=true -Channel=LUMI_32 , ADC= 128, OverTh=true -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= -6, OverTh=false -Channel=LUMI_10 , ADC= -4, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 21, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= -5, OverTh=false -Channel=LUMI_42 , ADC= 13, OverTh=false -Channel=LUMI_19 , ADC= 147, OverTh=true -Channel=LUMI_43 , ADC= 311, OverTh=true -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 31, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 313, OverTh=true -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 234, OverTh=false -Channel=TIME_29_00, ADC= 294, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 236, OverTh=false -Channel=TIME_29_01, ADC= 293, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 265, OverTh=false -Channel=TIME_05_10, ADC= 236, OverTh=false -Channel=TIME_29_02, ADC= 290, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 238, OverTh=false -Channel=TIME_29_03, ADC= 291, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 248, OverTh=false -Channel=TIME_29_04, ADC= 286, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 270, OverTh=false -Channel=TIME_29_13, ADC= 272, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 283, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 288, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 278, OverTh=false -Channel=TIME_29_07, ADC= 251, OverTh=false -Channel=TIME_29_15, ADC= 293, OverTh=false -Channel=TIME_11_00, ADC= 250, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 294, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 290, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 248, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 289, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 249, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 283, 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= 271, OverTh=false -Channel=TIME_35_12, ADC= 265, OverTh=false -Channel=TIME_11_05, ADC= 264, OverTh=false -Channel=TIME_11_13, ADC= 250, OverTh=false -Channel=TIME_35_05, ADC= 262, OverTh=false -Channel=TIME_35_13, ADC= 279, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 249, OverTh=false -Channel=TIME_35_06, ADC= 250, OverTh=false -Channel=TIME_35_14, ADC= 296, OverTh=false -Channel=TIME_11_07, ADC= 270, OverTh=false -Channel=TIME_11_15, ADC= 247, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 299, OverTh=false PrintHeader_7bb0e124 INFO # 48 Run 290683, Event 7562396 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -9, OverTh=false -Channel=LUMI_24 , ADC= 136, OverTh=true -Channel=LUMI_01 , ADC= -20, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 14, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 26, OverTh=false -Channel=LUMI_28 , ADC= 9, OverTh=false -Channel=LUMI_12 , ADC= 142, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 156, OverTh=true -Channel=LUMI_37 , ADC= 28, OverTh=false -Channel=LUMI_14 , ADC= 460, OverTh=true -Channel=LUMI_38 , ADC= 327, OverTh=true -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 9, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 360, OverTh=true -Channel=LUMI_30 , ADC= 17, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 7, 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= -16, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 7, OverTh=false -Channel=LUMI_22 , ADC= 260, OverTh=true -Channel=LUMI_46 , ADC= -10, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 272, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 272, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 275, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 271, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 264, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 269, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 272, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 272, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 305, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 305, 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= 304, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 297, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 269, 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= 250, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 250, 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= 251, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 49 Run 290683, Event 7562997 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 229, OverTh=true -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 13, OverTh=false -Channel=LUMI_02 , ADC= -15, 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= 92, OverTh=true -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 71, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= 110, OverTh=true -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= 271, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 11, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 78, OverTh=true -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 17, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 14, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -9, OverTh=false -Channel=LUMI_34 , ADC= 6, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= 409, OverTh=true -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 314, OverTh=true -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 151, OverTh=true -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 360, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 265, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 264, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 269, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 276, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 274, OverTh=false -Channel=TIME_11_00, ADC= 324, 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= 328, 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= 325, 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= 316, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 275, OverTh=false -Channel=TIME_11_12, ADC= 286, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 249, OverTh=false -Channel=TIME_11_13, ADC= 327, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 242, OverTh=false -Channel=TIME_11_14, ADC= 346, OverTh=false -Channel=TIME_35_06, ADC= 253, OverTh=false -Channel=TIME_35_14, ADC= 261, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 339, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 50 Run 290683, Event 7573600 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 339, OverTh=true -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 8, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 14, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -4, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 26, OverTh=false -Channel=LUMI_14 , ADC= 7, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 172, OverTh=true -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 14, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 15, OverTh=false -Channel=LUMI_08 , ADC= 18, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 242, OverTh=false -Channel=TIME_29_00, ADC= 251, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 245, OverTh=false -Channel=TIME_29_01, ADC= 252, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 256, 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= 258, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 270, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 315, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 314, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 365, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 366, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 260, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 364, 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= 351, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 310, OverTh=false -Channel=TIME_35_12, ADC= 290, OverTh=false -Channel=TIME_11_05, ADC= 264, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 283, OverTh=false -Channel=TIME_35_13, ADC= 321, OverTh=false -Channel=TIME_11_06, ADC= 267, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 237, OverTh=false -Channel=TIME_35_14, ADC= 377, OverTh=false -Channel=TIME_11_07, ADC= 267, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 244, OverTh=false -Channel=TIME_35_15, ADC= 381, OverTh=false PrintHeader_7bb0e124 INFO # 51 Run 290683, Event 7573634 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 41, 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= 0, OverTh=false -Channel=LUMI_03 , ADC= -3, 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= -2, 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= -1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -5, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -11, 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= 3, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 89, OverTh=true -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= 11, OverTh=false -Channel=LUMI_43 , ADC= 115, OverTh=true -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_02, ADC= 254, 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= 259, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 252, 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= 255, 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= 254, 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= 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= 261, OverTh=false -Channel=TIME_11_08, ADC= 248, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 264, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 260, OverTh=false -Channel=TIME_11_11, ADC= 252, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 274, 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= 282, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 264, OverTh=false -Channel=TIME_11_07, ADC= 271, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 265, OverTh=false PrintHeader_7bb0e124 INFO # 52 Run 290683, Event 7573928 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 6, 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= 4, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, 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= 3, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -12, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 9, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 10, 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= -1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -7, 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= 1, 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= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 251, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 250, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 252, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 279, 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= 276, 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= 263, 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= 262, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_10, ADC= 256, 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= 256, OverTh=false -Channel=TIME_11_04, ADC= 253, 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= 262, 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= 266, 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= 262, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 53 Run 290683, Event 7573952 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 10, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 20, 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= 4, 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= 3, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -14, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 92, OverTh=true -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= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 89, OverTh=true -Channel=LUMI_41 , ADC= 389, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 286, OverTh=true -Channel=LUMI_43 , ADC= 117, OverTh=true -Channel=LUMI_20 , ADC= 38, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 290, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 290, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 292, 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= 289, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 275, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 262, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 252, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 259, 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= 255, 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= 256, 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= 258, 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= 256, 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= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 267, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 269, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 54 Run 290683, Event 7574023 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 19, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 9, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= -9, OverTh=false -Channel=LUMI_36 , ADC= 52, OverTh=true -Channel=LUMI_13 , ADC= 143, OverTh=true -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= 7, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 8, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -16, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 351, OverTh=true -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= -9, OverTh=false -Channel=LUMI_18 , ADC= -5, 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= 11, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 18, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -8, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 247, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 246, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 248, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 248, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 269, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 273, OverTh=false -Channel=TIME_05_13, ADC= 250, OverTh=false -Channel=TIME_29_05, ADC= 328, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 293, OverTh=false -Channel=TIME_05_14, ADC= 246, OverTh=false -Channel=TIME_29_06, ADC= 379, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 292, OverTh=false -Channel=TIME_05_15, ADC= 248, OverTh=false -Channel=TIME_29_07, ADC= 380, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 246, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 248, OverTh=false -Channel=TIME_35_09, ADC= 250, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 245, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 251, OverTh=false -Channel=TIME_35_03, ADC= 250, OverTh=false -Channel=TIME_35_11, ADC= 250, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 217, OverTh=false -Channel=TIME_35_04, ADC= 267, OverTh=false -Channel=TIME_35_12, ADC= 245, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 249, OverTh=false -Channel=TIME_35_05, ADC= 293, OverTh=false -Channel=TIME_35_13, ADC= 245, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 270, OverTh=false -Channel=TIME_35_06, ADC= 335, OverTh=false -Channel=TIME_35_14, ADC= 246, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 333, OverTh=false -Channel=TIME_35_15, ADC= 243, OverTh=false PrintHeader_7bb0e124 INFO # 55 Run 290683, Event 7574123 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= -8, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 312, OverTh=true -Channel=LUMI_02 , ADC= 21, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= -20, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 13, 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= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 90, OverTh=true -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 9, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 446, OverTh=true -Channel=LUMI_34 , ADC= 353, OverTh=true -Channel=LUMI_17 , ADC= 190, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 109, OverTh=true -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 61, OverTh=true -Channel=LUMI_20 , ADC= 694, OverTh=true -Channel=LUMI_44 , ADC= 91, OverTh=true -Channel=LUMI_21 , ADC= 349, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 37, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 269, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 264, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 266, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 261, 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= 262, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 275, 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= 297, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 273, OverTh=false -Channel=TIME_05_07, ADC= 301, OverTh=false -Channel=TIME_05_15, ADC= 272, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 275, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 253, 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= 254, 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= 253, 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= 254, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 257, 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= 257, OverTh=false -Channel=TIME_11_06, ADC= 255, 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 56 Run 290683, Event 7574149 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 4, 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= -2, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 2, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -5, OverTh=false -Channel=LUMI_40 , ADC= 10, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -11, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 12, 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= 0, OverTh=false -Channel=LUMI_34 , ADC= -13, OverTh=false -Channel=LUMI_17 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -7, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 271, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 266, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 266, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 251, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 249, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 267, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 284, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 286, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 263, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 261, 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= 260, OverTh=false -Channel=TIME_11_04, ADC= 252, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 252, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 269, 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= 267, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 57 Run 290683, Event 7574170 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 12, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 7, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 91, OverTh=true -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 118, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 14, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 17, 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= 9, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -15, OverTh=false -Channel=LUMI_42 , ADC= 15, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 4, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, 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= 253, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 254, 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= 257, 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= 258, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 253, 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= 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= 254, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 267, 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= 265, OverTh=false -Channel=TIME_11_15, ADC= 252, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 58 Run 290683, Event 7574488 -PlumeRawToDigits_89428f2d 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= 2, OverTh=false -Channel=LUMI_02 , ADC= -4, 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= 1, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 11, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 15, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 96, OverTh=true -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 26, 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= 0, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -7, 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= 3, OverTh=false -Channel=LUMI_43 , ADC= 18, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 21, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 9, OverTh=false -Channel=LUMI_46 , ADC= 28, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, 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= 258, 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= 257, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, 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= 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= 253, 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= 255, 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= 257, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 268, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 263, 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= 260, 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= 258, 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= 261, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, 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= 274, 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= 273, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 59 Run 290683, Event 7574509 -PlumeRawToDigits_89428f2d 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= 7, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 121, OverTh=true -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 55, OverTh=true -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 72, OverTh=true -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= -3, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= 115, OverTh=true -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= 3, OverTh=false -Channel=LUMI_10 , ADC= 132, OverTh=true -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 298, OverTh=true -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 25, OverTh=false -Channel=LUMI_42 , ADC= 265, OverTh=true -Channel=LUMI_19 , ADC= 29, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 7, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 306, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 302, 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= 301, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 253, OverTh=false -Channel=TIME_05_11, ADC= 298, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 250, OverTh=false -Channel=TIME_05_12, ADC= 286, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 227, OverTh=false -Channel=TIME_05_13, ADC= 263, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 212, 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= 214, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 471, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 468, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 459, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 440, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 365, OverTh=false -Channel=TIME_11_12, ADC= 308, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 270, OverTh=false -Channel=TIME_11_13, ADC= 409, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 215, OverTh=false -Channel=TIME_11_14, ADC= 495, OverTh=false -Channel=TIME_35_06, ADC= 251, OverTh=false -Channel=TIME_35_14, ADC= 269, OverTh=false -Channel=TIME_11_07, ADC= 225, OverTh=false -Channel=TIME_11_15, ADC= 489, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 266, OverTh=false PrintHeader_7bb0e124 INFO # 60 Run 290683, Event 7574518 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 352, OverTh=true -Channel=LUMI_26 , ADC= 345, OverTh=true -Channel=LUMI_03 , ADC= 11, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 59, OverTh=true -Channel=LUMI_15 , ADC= -6, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= -4, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -5, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= -11, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 5, 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= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 3, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 321, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 319, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 320, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 317, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 297, OverTh=false -Channel=TIME_05_12, ADC= 267, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 264, OverTh=false -Channel=TIME_05_13, ADC= 296, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 324, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 326, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 262, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 252, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 61 Run 290683, Event 7574527 -PlumeRawToDigits_89428f2d 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= 0, 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= 0, 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= -1, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -4, 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= -4, 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= -1, 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= 4, OverTh=false -Channel=LUMI_42 , ADC= 9, 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= -3, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 259, 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= 259, 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= 259, 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= 258, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 256, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 254, 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= 254, 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= 255, 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= 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= 255, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 256, 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= 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= 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= 259, 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 # 62 Run 290683, Event 7574603 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 351, OverTh=true -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= 4, OverTh=false -Channel=LUMI_12 , ADC= 638, OverTh=true -Channel=LUMI_36 , ADC= -6, 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= -11, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 8, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= -9, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= -15, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -2, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 307, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 306, 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= 306, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 302, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 282, 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= 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= 245, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 250, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 306, 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= 306, 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= 304, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 301, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 276, OverTh=false -Channel=TIME_11_12, ADC= 270, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 300, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 249, OverTh=false -Channel=TIME_11_14, ADC= 310, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 249, OverTh=false -Channel=TIME_11_15, ADC= 310, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 63 Run 290683, Event 7574693 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= -10, OverTh=false -Channel=LUMI_26 , ADC= -4, 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= -23, 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= -10, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 105, OverTh=true -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 12, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 271, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 269, 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= 268, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 269, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 266, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 267, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 272, OverTh=false -Channel=TIME_11_00, ADC= 245, OverTh=false -Channel=TIME_11_08, ADC= 378, OverTh=false -Channel=TIME_35_00, ADC= 250, OverTh=false -Channel=TIME_35_08, ADC= 333, OverTh=false -Channel=TIME_11_01, ADC= 248, OverTh=false -Channel=TIME_11_09, ADC= 381, OverTh=false -Channel=TIME_35_01, ADC= 253, OverTh=false -Channel=TIME_35_09, ADC= 339, OverTh=false -Channel=TIME_11_02, ADC= 251, OverTh=false -Channel=TIME_11_10, ADC= 375, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 335, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 362, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 317, OverTh=false -Channel=TIME_11_04, ADC= 263, OverTh=false -Channel=TIME_11_12, ADC= 300, OverTh=false -Channel=TIME_35_04, ADC= 262, OverTh=false -Channel=TIME_35_12, ADC= 275, OverTh=false -Channel=TIME_11_05, ADC= 275, OverTh=false -Channel=TIME_11_13, ADC= 242, OverTh=false -Channel=TIME_35_05, ADC= 263, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 279, OverTh=false -Channel=TIME_11_14, ADC= 229, OverTh=false -Channel=TIME_35_06, ADC= 265, OverTh=false -Channel=TIME_35_14, ADC= 241, OverTh=false -Channel=TIME_11_07, ADC= 277, OverTh=false -Channel=TIME_11_15, ADC= 234, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 245, OverTh=false PrintHeader_7bb0e124 INFO # 64 Run 290683, Event 7566192 -PlumeRawToDigits_89428f2d 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= 255, OverTh=true -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= 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= -11, 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= 9, OverTh=false -Channel=LUMI_40 , ADC= 11, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -6, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -6, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -6, 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= -4, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 261, 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= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 262, 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= 259, 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= 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= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, 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= 265, 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= 264, OverTh=false -Channel=TIME_11_00, ADC= 269, OverTh=false -Channel=TIME_11_08, ADC= 250, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 270, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 269, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 271, 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= 292, OverTh=false -Channel=TIME_11_12, ADC= 250, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 332, OverTh=false -Channel=TIME_11_13, ADC= 264, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 364, OverTh=false -Channel=TIME_11_14, ADC= 272, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 354, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 65 Run 290683, Event 7566266 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 16, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 238, OverTh=true -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 190, OverTh=true -Channel=LUMI_36 , ADC= 27, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= 275, OverTh=true -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 38, OverTh=false -Channel=LUMI_23 , ADC= 618, OverTh=true -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 12, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 12, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 138, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 308, OverTh=false -Channel=TIME_29_08, ADC= 250, OverTh=false -Channel=TIME_05_01, ADC= 137, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 308, OverTh=false -Channel=TIME_29_09, ADC= 250, OverTh=false -Channel=TIME_05_02, ADC= 139, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 307, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 150, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 306, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 184, OverTh=false -Channel=TIME_05_12, ADC= 237, OverTh=false -Channel=TIME_29_04, ADC= 287, OverTh=false -Channel=TIME_29_12, ADC= 263, OverTh=false -Channel=TIME_05_05, ADC= 246, OverTh=false -Channel=TIME_05_13, ADC= 188, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 299, OverTh=false -Channel=TIME_05_06, ADC= 277, OverTh=false -Channel=TIME_05_14, ADC= 129, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 314, OverTh=false -Channel=TIME_05_07, ADC= 276, OverTh=false -Channel=TIME_05_15, ADC= 130, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 311, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 253, 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= 254, 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= 254, 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= 254, 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= 264, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 267, OverTh=false -Channel=TIME_11_07, ADC= 262, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 265, OverTh=false PrintHeader_7bb0e124 INFO # 66 Run 290683, Event 7566875 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 407, OverTh=true -Channel=LUMI_25 , ADC= -2, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 12, OverTh=false -Channel=LUMI_36 , ADC= -8, 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= 2, OverTh=false -Channel=LUMI_15 , ADC= 373, OverTh=true -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= 16, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= 0, 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= -6, 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= -6, OverTh=false -Channel=LUMI_41 , ADC= -2, 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= 11, OverTh=false -Channel=LUMI_20 , ADC= 0, 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= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 259, 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= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, 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= 257, 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= 253, 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= 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= 259, OverTh=false -Channel=TIME_05_15, ADC= 256, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 262, 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= 261, 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= 263, 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= 260, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 256, 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= 254, OverTh=false -Channel=TIME_11_14, ADC= 253, 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= 256, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 67 Run 290683, Event 7566887 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 156, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 72, OverTh=true -Channel=LUMI_25 , ADC= 804, OverTh=true -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= -6, OverTh=false -Channel=LUMI_03 , ADC= 12, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 112, OverTh=true -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 38, OverTh=false -Channel=LUMI_13 , ADC= 49, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 845, OverTh=true -Channel=LUMI_47 , ADC= 13, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 16, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 13, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 7, 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= 10, OverTh=false -Channel=LUMI_42 , ADC= 11, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 7, 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= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 337, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 273, OverTh=false -Channel=TIME_29_08, ADC= 171, OverTh=false -Channel=TIME_05_01, ADC= 337, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 264, OverTh=false -Channel=TIME_29_09, ADC= 172, OverTh=false -Channel=TIME_05_02, ADC= 331, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 172, OverTh=false -Channel=TIME_05_03, ADC= 329, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 172, OverTh=false -Channel=TIME_05_04, ADC= 308, OverTh=false -Channel=TIME_05_12, ADC= 264, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 187, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 295, OverTh=false -Channel=TIME_29_05, ADC= 268, OverTh=false -Channel=TIME_29_13, ADC= 235, OverTh=false -Channel=TIME_05_06, ADC= 246, OverTh=false -Channel=TIME_05_14, ADC= 344, OverTh=false -Channel=TIME_29_06, ADC= 274, OverTh=false -Channel=TIME_29_14, ADC= 277, OverTh=false -Channel=TIME_05_07, ADC= 245, OverTh=false -Channel=TIME_05_15, ADC= 347, OverTh=false -Channel=TIME_29_07, ADC= 273, OverTh=false -Channel=TIME_29_15, ADC= 278, OverTh=false -Channel=TIME_11_00, ADC= 266, 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= 264, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 258, 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 266, 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= 279, 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= 275, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 68 Run 290683, Event 7566925 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 12, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 7, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 427, OverTh=true -Channel=LUMI_37 , ADC= 393, OverTh=true -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 118, OverTh=true -Channel=LUMI_15 , ADC= -4, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -12, OverTh=false -Channel=LUMI_30 , ADC= 139, OverTh=true -Channel=LUMI_07 , ADC= -1, 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= -1, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= -2, 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= -2, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 308, OverTh=false -Channel=TIME_29_00, ADC= 274, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 307, OverTh=false -Channel=TIME_29_01, ADC= 272, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 309, OverTh=false -Channel=TIME_29_02, ADC= 268, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 306, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 251, OverTh=false -Channel=TIME_05_12, ADC= 268, OverTh=false -Channel=TIME_29_04, ADC= 263, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 242, OverTh=false -Channel=TIME_05_13, ADC= 232, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 236, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 291, OverTh=false -Channel=TIME_05_07, ADC= 229, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 290, OverTh=false -Channel=TIME_11_00, ADC= 251, OverTh=false -Channel=TIME_11_08, ADC= 321, OverTh=false -Channel=TIME_35_00, ADC= 275, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 322, OverTh=false -Channel=TIME_35_01, ADC= 277, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 319, OverTh=false -Channel=TIME_35_02, ADC= 277, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 316, OverTh=false -Channel=TIME_35_03, ADC= 273, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 238, OverTh=false -Channel=TIME_11_12, ADC= 286, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 264, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 272, OverTh=false -Channel=TIME_11_06, ADC= 268, OverTh=false -Channel=TIME_11_14, ADC= 244, OverTh=false -Channel=TIME_35_06, ADC= 252, OverTh=false -Channel=TIME_35_14, ADC= 278, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 244, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 275, OverTh=false PrintHeader_7bb0e124 INFO # 69 Run 290683, Event 7602027 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 15, OverTh=false -Channel=LUMI_01 , ADC= 4, 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= 16, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 6, 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= -2, 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= 4, OverTh=false -Channel=LUMI_40 , ADC= 6, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= -7, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 18, OverTh=false -Channel=LUMI_33 , ADC= 12, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 13, 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= -9, OverTh=false -Channel=LUMI_43 , ADC= 10, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 12, OverTh=false -Channel=LUMI_22 , ADC= -10, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 268, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 267, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 300, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 389, 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= 458, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 456, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 262, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 256, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 258, 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= 269, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 321, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 352, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 265, OverTh=false -Channel=TIME_35_06, ADC= 382, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 384, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 70 Run 290683, Event 7602065 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -3, 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= -4, 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= -16, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= -4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -3, 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= -4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , 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= -1, OverTh=false -Channel=LUMI_08 , ADC= 373, OverTh=true -Channel=LUMI_32 , ADC= 416, OverTh=true -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= 374, OverTh=true -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 15, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 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= 254, OverTh=false -Channel=TIME_05_03, ADC= 260, 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= 264, 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= 269, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 281, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 281, 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= 259, 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= 259, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, 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= 255, 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= 254, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 260, 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 71 Run 290683, Event 7602262 -PlumeRawToDigits_89428f2d 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= -2, 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= 6, 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= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, 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= 6, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= -5, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 8, OverTh=false -Channel=LUMI_34 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, 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= 257, OverTh=false -Channel=TIME_29_01, ADC= 255, 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= 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= 253, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 259, 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= 260, 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= 260, OverTh=false -Channel=TIME_29_06, ADC= 253, 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= 256, 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= 259, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 256, OverTh=false -Channel=TIME_35_03, ADC= 258, 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= 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= 257, 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= 257, 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 # 72 Run 290683, Event 7602351 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 411, OverTh=true -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -13, OverTh=false -Channel=LUMI_36 , ADC= 0, 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= -3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 18, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 11, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= -7, 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= -6, 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= -2, OverTh=false -Channel=LUMI_41 , ADC= 28, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -8, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 252, OverTh=false -Channel=TIME_05_08, ADC= 297, OverTh=false -Channel=TIME_29_00, ADC= 252, OverTh=false -Channel=TIME_29_08, ADC= 279, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 302, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 277, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 302, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 280, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 298, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 278, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 272, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 270, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 250, 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= 251, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 257, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 259, 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= 259, 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= 256, 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= 256, OverTh=false -Channel=TIME_35_12, ADC= 255, 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= 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= 256, OverTh=false -Channel=TIME_11_07, ADC= 254, 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 # 73 Run 290683, Event 7602601 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, 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= 1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 6, 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= 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= 7, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 5, 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= 6, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 4, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 260, 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= 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= 259, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 260, 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= 258, 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 254, 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= 256, 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= 252, OverTh=false -Channel=TIME_35_08, ADC= 257, 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= 256, 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 263, 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= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 74 Run 290683, Event 7602839 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 52, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 20, OverTh=false -Channel=LUMI_02 , ADC= 319, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 120, OverTh=true -Channel=LUMI_27 , ADC= 137, OverTh=true -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= 1, OverTh=false -Channel=LUMI_13 , ADC= -12, 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= 7, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 424, OverTh=true -Channel=LUMI_47 , ADC= 40, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 20, OverTh=false -Channel=LUMI_31 , ADC= -6, OverTh=false -Channel=LUMI_08 , ADC= 11, 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= 2, OverTh=false -Channel=LUMI_34 , ADC= 42, OverTh=false -Channel=LUMI_17 , ADC= -7, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 24, OverTh=false -Channel=LUMI_42 , ADC= 20, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 249, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 282, OverTh=false -Channel=TIME_05_12, ADC= 242, OverTh=false -Channel=TIME_29_04, ADC= 263, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 314, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 281, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 355, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 299, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 347, OverTh=false -Channel=TIME_05_15, ADC= 266, OverTh=false -Channel=TIME_29_07, ADC= 297, 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 272, 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= 266, 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= 265, OverTh=false -Channel=TIME_11_03, ADC= 255, 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= 263, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 281, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 292, 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= 293, 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 # 75 Run 290683, Event 7563002 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 16, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 232, OverTh=true -Channel=LUMI_25 , ADC= 125, OverTh=true -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= -5, OverTh=false -Channel=LUMI_04 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= -8, OverTh=false -Channel=LUMI_15 , ADC= -18, 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= 5, OverTh=false -Channel=LUMI_47 , ADC= 648, OverTh=true -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 170, OverTh=true -Channel=LUMI_30 , ADC= 161, OverTh=true -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 46, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 134, OverTh=true -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 38, OverTh=false -Channel=LUMI_41 , ADC= 464, OverTh=true -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 317, OverTh=true -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 509, OverTh=true -Channel=LUMI_45 , ADC= 10, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 260, 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= 257, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 259, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 261, 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= 259, OverTh=false -Channel=TIME_11_00, ADC= 262, 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= 265, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 265, 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= 263, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 264, 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= 266, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 262, 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= 263, 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 # 76 Run 290683, Event 7563301 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 375, OverTh=true -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, 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= -1, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= -2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -7, OverTh=false -Channel=LUMI_39 , ADC= -6, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -5, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 256, OverTh=true -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 4, 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= 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= 1, OverTh=false -Channel=LUMI_18 , ADC= 71, OverTh=true -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 254, 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= 253, 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= 253, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 252, 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= 253, 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= 253, OverTh=false -Channel=TIME_35_00, ADC= 268, 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= 268, 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= 268, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 264, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 260, OverTh=false -Channel=TIME_35_12, ADC= 261, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 266, OverTh=false -Channel=TIME_11_06, ADC= 267, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 271, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 271, OverTh=false PrintHeader_7bb0e124 INFO # 77 Run 290683, Event 7563648 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= -9, 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= 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= 7, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -8, 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=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -9, OverTh=false -Channel=LUMI_07 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= -9, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -7, 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= 2, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -7, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 252, 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= 254, 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= 255, 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 247, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 253, 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= 263, 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= 265, 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= 270, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 269, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 267, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 267, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 266, 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= 261, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 269, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 264, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 269, OverTh=false -Channel=TIME_35_07, ADC= 251, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 78 Run 290683, Event 7563785 -PlumeRawToDigits_89428f2d 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= -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= 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= 3, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 12, 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= -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= -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= -5, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 257, 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= 259, 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= 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 259, 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= 258, 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= 260, 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= 260, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 255, 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= 257, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 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= 260, 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= 260, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 79 Run 290683, Event 7600238 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 19, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 13, OverTh=false -Channel=LUMI_28 , ADC= 11, OverTh=false -Channel=LUMI_12 , ADC= 297, OverTh=true -Channel=LUMI_36 , ADC= 295, OverTh=true -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 291, OverTh=true -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 15, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 438, OverTh=true -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 493, OverTh=true -Channel=LUMI_30 , ADC= 427, OverTh=true -Channel=LUMI_07 , ADC= 26, OverTh=false -Channel=LUMI_31 , ADC= 21, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 71, OverTh=true -Channel=LUMI_33 , ADC= 76, OverTh=true -Channel=LUMI_10 , ADC= 264, OverTh=true -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 28, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 316, OverTh=true -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= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 420, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 248, OverTh=false -Channel=TIME_29_09, ADC= 415, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 250, OverTh=false -Channel=TIME_29_10, ADC= 415, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 250, OverTh=false -Channel=TIME_29_11, ADC= 407, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 249, OverTh=false -Channel=TIME_29_12, ADC= 353, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 249, OverTh=false -Channel=TIME_29_13, ADC= 253, OverTh=false -Channel=TIME_05_06, ADC= 262, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 242, OverTh=false -Channel=TIME_29_14, ADC= 228, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 243, OverTh=false -Channel=TIME_29_15, ADC= 230, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 268, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 271, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 268, 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= 266, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 253, OverTh=false -Channel=TIME_11_12, ADC= 265, OverTh=false -Channel=TIME_35_04, ADC= 281, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 244, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 308, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 241, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 350, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 241, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 347, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 80 Run 290683, Event 7600312 -PlumeRawToDigits_89428f2d 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= 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= 5, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= -3, 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= 0, 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= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_09 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 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=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 262, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 260, 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= 260, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 258, 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= 258, 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= 258, 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= 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= 256, 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= 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 # 81 Run 290683, Event 7600396 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 13, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 133, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 106, OverTh=true -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 69, OverTh=true -Channel=LUMI_13 , ADC= 543, OverTh=true -Channel=LUMI_37 , ADC= 6, OverTh=false -Channel=LUMI_14 , ADC= 267, OverTh=true -Channel=LUMI_38 , ADC= 107, OverTh=true -Channel=LUMI_15 , ADC= 122, OverTh=true -Channel=LUMI_39 , ADC= 193, OverTh=true -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 336, OverTh=true -Channel=LUMI_30 , ADC= 36, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 228, OverTh=true -Channel=LUMI_08 , ADC= 21, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 569, OverTh=true -Channel=LUMI_33 , ADC= 388, OverTh=true -Channel=LUMI_10 , ADC= 434, OverTh=true -Channel=LUMI_34 , ADC= 205, OverTh=true -Channel=LUMI_17 , ADC= 328, OverTh=true -Channel=LUMI_41 , ADC= 481, OverTh=true -Channel=LUMI_18 , ADC= 550, OverTh=true -Channel=LUMI_42 , ADC= 160, OverTh=true -Channel=LUMI_19 , ADC= 16, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= 288, OverTh=true -Channel=LUMI_44 , ADC= 305, OverTh=true -Channel=LUMI_21 , ADC= -7, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 367, OverTh=true -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 293, OverTh=false -Channel=TIME_05_08, ADC= 398, OverTh=false -Channel=TIME_29_00, ADC= 286, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 297, OverTh=false -Channel=TIME_05_09, ADC= 397, OverTh=false -Channel=TIME_29_01, ADC= 284, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 301, OverTh=false -Channel=TIME_05_10, ADC= 393, OverTh=false -Channel=TIME_29_02, ADC= 282, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 298, OverTh=false -Channel=TIME_05_11, ADC= 389, OverTh=false -Channel=TIME_29_03, ADC= 282, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 283, OverTh=false -Channel=TIME_05_12, ADC= 363, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 265, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 316, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 276, OverTh=false -Channel=TIME_05_06, ADC= 248, OverTh=false -Channel=TIME_05_14, ADC= 290, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 286, OverTh=false -Channel=TIME_05_07, ADC= 248, OverTh=false -Channel=TIME_05_15, ADC= 286, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 287, OverTh=false -Channel=TIME_11_00, ADC= 388, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 261, OverTh=false -Channel=TIME_11_01, ADC= 387, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 383, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 363, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 304, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 275, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 367, OverTh=false -Channel=TIME_35_05, ADC= 292, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 237, OverTh=false -Channel=TIME_11_14, ADC= 403, OverTh=false -Channel=TIME_35_06, ADC= 314, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 242, OverTh=false -Channel=TIME_11_15, ADC= 398, OverTh=false -Channel=TIME_35_07, ADC= 317, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 82 Run 290683, Event 7600905 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 55, OverTh=true -Channel=LUMI_24 , ADC= 79, OverTh=true -Channel=LUMI_01 , ADC= 541, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 678, OverTh=true -Channel=LUMI_26 , ADC= 10, OverTh=false -Channel=LUMI_03 , ADC= 238, OverTh=true -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 205, OverTh=true -Channel=LUMI_36 , ADC= 167, OverTh=true -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 18, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 290, OverTh=true -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= 6, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 128, OverTh=true -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= 189, OverTh=true -Channel=LUMI_31 , ADC= 241, OverTh=true -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 22, OverTh=false -Channel=LUMI_34 , ADC= 9, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 11, OverTh=false -Channel=LUMI_19 , ADC= 126, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -9, OverTh=false -Channel=LUMI_21 , ADC= 8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 416, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 279, OverTh=false -Channel=TIME_29_08, ADC= 251, OverTh=false -Channel=TIME_05_01, ADC= 413, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 280, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 406, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 282, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 400, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 279, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 351, OverTh=false -Channel=TIME_05_12, ADC= 285, OverTh=false -Channel=TIME_29_04, ADC= 280, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 363, OverTh=false -Channel=TIME_29_05, ADC= 278, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 228, OverTh=false -Channel=TIME_05_14, ADC= 430, OverTh=false -Channel=TIME_29_06, ADC= 275, OverTh=false -Channel=TIME_29_14, ADC= 270, OverTh=false -Channel=TIME_05_07, ADC= 228, OverTh=false -Channel=TIME_05_15, ADC= 432, OverTh=false -Channel=TIME_29_07, ADC= 268, OverTh=false -Channel=TIME_29_15, ADC= 277, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 399, 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= 403, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 392, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 370, OverTh=false -Channel=TIME_35_11, ADC= 268, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 296, OverTh=false -Channel=TIME_35_12, ADC= 322, 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= 373, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 228, OverTh=false -Channel=TIME_35_14, ADC= 423, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 233, OverTh=false -Channel=TIME_35_15, ADC= 416, OverTh=false PrintHeader_7bb0e124 INFO # 83 Run 290683, Event 7604003 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 91, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 122, OverTh=true -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= 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 385, OverTh=true -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= -5, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 391, OverTh=true -Channel=LUMI_33 , ADC= -5, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 295, OverTh=true -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= 0, OverTh=false -Channel=LUMI_19 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 259, 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= 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= 254, OverTh=false -Channel=TIME_05_11, ADC= 255, 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= 253, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 258, 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= 255, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 255, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 256, 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= 260, 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= 255, 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= 257, 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= 256, 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= 257, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 84 Run 290683, Event 7604102 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= 11, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= 16, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 14, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 15, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= 17, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 9, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 21, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -25, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 12, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 9, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 251, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 249, OverTh=false -Channel=TIME_05_09, ADC= 262, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 265, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 262, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 252, 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= 253, 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= 255, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 252, 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= 260, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 262, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 255, 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= 254, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 262, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 85 Run 290683, Event 7604738 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 71, OverTh=true -Channel=LUMI_24 , ADC= 98, OverTh=true -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 10, OverTh=false -Channel=LUMI_03 , ADC= 23, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= -2, 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= 6, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 45, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= 23, OverTh=false -Channel=LUMI_33 , ADC= -5, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= -12, OverTh=false -Channel=LUMI_42 , ADC= -5, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 92, OverTh=true -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 263, OverTh=false -Channel=TIME_05_08, ADC= 226, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 381, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 225, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 377, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 222, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 376, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 230, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 371, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 243, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 340, 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= 269, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 241, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 266, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 246, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 261, 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= 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, 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= 256, 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= 255, 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= 258, OverTh=false -Channel=TIME_35_14, ADC= 268, 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= 265, OverTh=false PrintHeader_7bb0e124 INFO # 86 Run 290683, Event 7604780 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 19, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= -4, OverTh=false -Channel=LUMI_03 , ADC= 44, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -5, 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= 3, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= 55, OverTh=true -Channel=LUMI_47 , ADC= 210, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -12, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 16, 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= 13, OverTh=false -Channel=LUMI_41 , ADC= 151, OverTh=true -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 333, 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= 336, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 333, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 326, 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= 298, OverTh=false -Channel=TIME_05_12, ADC= 272, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 264, OverTh=false -Channel=TIME_05_13, ADC= 309, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 246, OverTh=false -Channel=TIME_05_14, ADC= 337, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 259, OverTh=false -Channel=TIME_05_07, ADC= 248, OverTh=false -Channel=TIME_05_15, ADC= 338, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 260, 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= 262, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, 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= 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= 254, 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= 258, 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= 258, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 87 Run 290683, Event 7604844 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 168, OverTh=true -Channel=LUMI_24 , ADC= 409, OverTh=true -Channel=LUMI_01 , ADC= -5, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 67, OverTh=true -Channel=LUMI_03 , ADC= 25, OverTh=false -Channel=LUMI_27 , ADC= 80, OverTh=true -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 183, OverTh=true -Channel=LUMI_13 , ADC= 27, OverTh=false -Channel=LUMI_37 , ADC= 17, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 53, OverTh=true -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 23, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -15, OverTh=false -Channel=LUMI_47 , ADC= 32, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= -26, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 41, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 54, OverTh=true -Channel=LUMI_32 , ADC= 10, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 128, OverTh=true -Channel=LUMI_10 , ADC= 13, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 269, OverTh=true -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 444, OverTh=true -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -5, 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= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 245, OverTh=false -Channel=TIME_05_08, ADC= 401, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 402, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 397, OverTh=false -Channel=TIME_29_02, ADC= 267, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 381, OverTh=false -Channel=TIME_29_03, ADC= 263, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 321, OverTh=false -Channel=TIME_29_04, ADC= 264, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 263, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 229, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 268, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 235, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 264, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 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= 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= 257, 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= 260, OverTh=false PrintHeader_7bb0e124 INFO # 88 Run 290683, Event 7596014 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 28, OverTh=false -Channel=LUMI_24 , ADC= 373, OverTh=true -Channel=LUMI_01 , ADC= 47, OverTh=false -Channel=LUMI_25 , ADC= 144, OverTh=true -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= 3, OverTh=false -Channel=LUMI_04 , ADC= 97, OverTh=true -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 612, OverTh=true -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 8, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= 316, OverTh=true -Channel=LUMI_15 , ADC= 89, OverTh=true -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 84, OverTh=true -Channel=LUMI_40 , ADC= 193, OverTh=true -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 256, OverTh=true -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 332, OverTh=true -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 14, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 398, OverTh=true -Channel=LUMI_33 , ADC= 61, OverTh=true -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= 12, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= -2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 347, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 348, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 343, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 335, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 298, OverTh=false -Channel=TIME_05_12, ADC= 282, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 330, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 358, 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= 355, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 264, 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= 262, 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= 260, OverTh=false -Channel=TIME_35_02, ADC= 260, 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= 260, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 263, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 89 Run 290683, Event 7596162 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 12, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 177, OverTh=true -Channel=LUMI_38 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 1, 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= -7, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 256, OverTh=false -Channel=TIME_05_01, ADC= 254, 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= 259, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 268, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 293, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 312, 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= 316, OverTh=false -Channel=TIME_05_15, ADC= 254, 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= 253, 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= 255, 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= 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= 253, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 263, 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= 266, 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= 268, 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= 268, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 90 Run 290683, Event 7596215 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, 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= 2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 309, OverTh=true -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 252, OverTh=true -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 14, OverTh=false -Channel=LUMI_07 , ADC= 5, 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= 7, 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= 34, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= -4, 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= 5, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 9, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 262, 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= 262, 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= 262, 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= 261, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 263, 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= 264, 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= 263, OverTh=false -Channel=TIME_05_15, ADC= 254, 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= 287, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 287, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 288, 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= 286, 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= 275, 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= 258, 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= 253, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 91 Run 290683, Event 7596351 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 13, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 144, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 227, OverTh=true -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 135, OverTh=true -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 14, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= -10, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 12, OverTh=false -Channel=LUMI_42 , ADC= 139, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 15, 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= 298, OverTh=true -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 271, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 270, 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= 270, 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= 270, 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= 264, 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= 254, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 250, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 250, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 293, OverTh=false -Channel=TIME_11_08, ADC= 400, OverTh=false -Channel=TIME_35_00, ADC= 341, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 298, OverTh=false -Channel=TIME_11_09, ADC= 403, OverTh=false -Channel=TIME_35_01, ADC= 348, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 299, OverTh=false -Channel=TIME_11_10, ADC= 396, OverTh=false -Channel=TIME_35_02, ADC= 344, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 297, OverTh=false -Channel=TIME_11_11, ADC= 385, OverTh=false -Channel=TIME_35_03, ADC= 331, OverTh=false -Channel=TIME_35_11, ADC= 251, OverTh=false -Channel=TIME_11_04, ADC= 279, OverTh=false -Channel=TIME_11_12, ADC= 334, OverTh=false -Channel=TIME_35_04, ADC= 285, OverTh=false -Channel=TIME_35_12, ADC= 283, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 294, OverTh=false -Channel=TIME_35_05, ADC= 270, OverTh=false -Channel=TIME_35_13, ADC= 311, OverTh=false -Channel=TIME_11_06, ADC= 229, OverTh=false -Channel=TIME_11_14, ADC= 275, OverTh=false -Channel=TIME_35_06, ADC= 269, OverTh=false -Channel=TIME_35_14, ADC= 335, OverTh=false -Channel=TIME_11_07, ADC= 227, OverTh=false -Channel=TIME_11_15, ADC= 282, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 335, OverTh=false PrintHeader_7bb0e124 INFO # 92 Run 290683, Event 7596432 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= -11, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 3, 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= 1, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= -5, 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= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -5, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -8, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 258, 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= 260, 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= 260, 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= 258, OverTh=false -Channel=TIME_29_12, ADC= 260, 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= 259, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 254, 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= 256, OverTh=false -Channel=TIME_35_06, ADC= 258, 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 # 93 Run 290683, Event 7596687 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 12, 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= 46, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= 14, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 67, OverTh=true -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= 15, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 11, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 225, OverTh=true -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 29, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 287, OverTh=true -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -9, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 343, OverTh=false -Channel=TIME_29_00, ADC= 262, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 341, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 341, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 338, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 240, OverTh=false -Channel=TIME_05_12, ADC= 307, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 205, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 169, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 169, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_11, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, 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= 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 94 Run 290683, Event 7596757 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, 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= 156, OverTh=true -Channel=LUMI_26 , ADC= -3, 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= -2, OverTh=false -Channel=LUMI_12 , ADC= 20, 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= -5, 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= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 500, OverTh=true -Channel=LUMI_41 , ADC= 474, OverTh=true -Channel=LUMI_18 , ADC= 81, OverTh=true -Channel=LUMI_42 , ADC= 230, OverTh=true -Channel=LUMI_19 , ADC= 287, OverTh=true -Channel=LUMI_43 , ADC= 226, OverTh=true -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 60, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 264, 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= 264, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, 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= 254, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 259, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 264, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 274, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 267, 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= 265, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 306, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 300, OverTh=false PrintHeader_7bb0e124 INFO # 95 Run 290683, Event 7596761 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 15, OverTh=false -Channel=LUMI_24 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 135, OverTh=true -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= 0, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 336, OverTh=true -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= -1, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 92, OverTh=true -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 14, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 109, OverTh=true -Channel=LUMI_20 , ADC= 30, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 20, OverTh=false -Channel=LUMI_45 , ADC= 299, OverTh=true -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 260, 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= 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= 257, 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= 259, 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 252, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 261, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 317, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 317, 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= 313, 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= 308, 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= 302, OverTh=false -Channel=TIME_35_12, ADC= 291, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 312, OverTh=false -Channel=TIME_35_13, ADC= 312, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 334, OverTh=false -Channel=TIME_35_14, ADC= 326, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 339, OverTh=false -Channel=TIME_35_15, ADC= 322, OverTh=false PrintHeader_7bb0e124 INFO # 96 Run 290683, Event 7590062 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 4, 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= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 336, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 53, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -8, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 374, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 6, 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= -2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 21, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -4, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 259, 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= 263, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 260, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 249, 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= 255, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 263, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 263, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 252, 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= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 253, 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= 258, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 266, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 262, 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 # 97 Run 290683, Event 7590065 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= 12, 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= 4, OverTh=false -Channel=LUMI_03 , ADC= 25, 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= 4, OverTh=false -Channel=LUMI_36 , ADC= 2, 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= 111, OverTh=true -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 102, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 19, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 412, OverTh=true -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 202, OverTh=true -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 52, OverTh=true -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 25, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 5, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 312, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 267, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 312, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 310, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 309, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 266, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 323, OverTh=false -Channel=TIME_05_12, ADC= 267, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 351, OverTh=false -Channel=TIME_05_13, ADC= 287, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 262, OverTh=false -Channel=TIME_05_06, ADC= 376, OverTh=false -Channel=TIME_05_14, ADC= 314, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 266, OverTh=false -Channel=TIME_05_07, ADC= 376, OverTh=false -Channel=TIME_05_15, ADC= 317, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 268, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 268, 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= 270, 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= 271, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 270, 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= 269, 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= 264, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 251, OverTh=false -Channel=TIME_11_14, ADC= 260, 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 98 Run 290683, Event 7590069 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 694, OverTh=true -Channel=LUMI_24 , ADC= 655, OverTh=true -Channel=LUMI_01 , ADC= 628, OverTh=true -Channel=LUMI_25 , ADC= 703, OverTh=true -Channel=LUMI_02 , ADC= 760, OverTh=true -Channel=LUMI_26 , ADC= 623, OverTh=true -Channel=LUMI_03 , ADC= 709, OverTh=true -Channel=LUMI_27 , ADC= 830, OverTh=true -Channel=LUMI_04 , ADC= 701, OverTh=true -Channel=LUMI_28 , ADC= 757, OverTh=true -Channel=LUMI_12 , ADC= 716, OverTh=true -Channel=LUMI_36 , ADC= 732, OverTh=true -Channel=LUMI_13 , ADC= 766, OverTh=true -Channel=LUMI_37 , ADC= 818, OverTh=true -Channel=LUMI_14 , ADC= 661, OverTh=true -Channel=LUMI_38 , ADC= 711, OverTh=true -Channel=LUMI_15 , ADC= 843, OverTh=true -Channel=LUMI_39 , ADC= 805, OverTh=true -Channel=LUMI_16 , ADC= 637, OverTh=true -Channel=LUMI_40 , ADC= 798, OverTh=true -Channel=LUMI_23 , ADC= 743, OverTh=true -Channel=LUMI_47 , ADC= 707, OverTh=true -Channel=PIN_01 , ADC= 64, OverTh=false -Channel=PIN_02 , ADC= 79, OverTh=false -Channel=PIN_03 , ADC= 68, OverTh=false -Channel=PIN_04 , ADC= 77, OverTh=false -Channel=PIN_08 , ADC= 80, OverTh=false -Channel=PIN_09 , ADC= 88, OverTh=false -Channel=PIN_06 , ADC= 67, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 676, OverTh=true -Channel=LUMI_30 , ADC= 694, OverTh=true -Channel=LUMI_07 , ADC= 781, OverTh=true -Channel=LUMI_31 , ADC= 784, OverTh=true -Channel=LUMI_08 , ADC= 711, OverTh=true -Channel=LUMI_32 , ADC= 692, OverTh=true -Channel=LUMI_09 , ADC= 756, OverTh=true -Channel=LUMI_33 , ADC= 794, OverTh=true -Channel=LUMI_10 , ADC= 853, OverTh=true -Channel=LUMI_34 , ADC= 715, OverTh=true -Channel=LUMI_17 , ADC= 702, OverTh=true -Channel=LUMI_41 , ADC= 716, OverTh=true -Channel=LUMI_18 , ADC= 804, OverTh=true -Channel=LUMI_42 , ADC= 788, OverTh=true -Channel=LUMI_19 , ADC= 726, OverTh=true -Channel=LUMI_43 , ADC= 763, OverTh=true -Channel=LUMI_20 , ADC= 643, OverTh=true -Channel=LUMI_44 , ADC= 868, OverTh=true -Channel=LUMI_21 , ADC= 717, OverTh=true -Channel=LUMI_45 , ADC= 863, OverTh=true -Channel=LUMI_22 , ADC= 820, OverTh=true -Channel=LUMI_46 , ADC= 704, OverTh=true -Channel=MON_01 , ADC= 129, OverTh=false -Channel=MON_02 , ADC= 144, OverTh=false -Channel=MON_03 , ADC= 142, OverTh=false -Channel=MON_04 , ADC= 133, OverTh=false -Channel=TIME_05_00, ADC= 507, OverTh=false -Channel=TIME_05_08, ADC= 265, OverTh=false -Channel=TIME_29_00, ADC= 513, OverTh=false -Channel=TIME_29_08, ADC= 270, OverTh=false -Channel=TIME_05_01, ADC= 476, OverTh=false -Channel=TIME_05_09, ADC= 289, OverTh=false -Channel=TIME_29_01, ADC= 475, OverTh=false -Channel=TIME_29_09, ADC= 292, OverTh=false -Channel=TIME_05_02, ADC= 401, OverTh=false -Channel=TIME_05_10, ADC= 346, OverTh=false -Channel=TIME_29_02, ADC= 404, OverTh=false -Channel=TIME_29_10, ADC= 344, OverTh=false -Channel=TIME_05_03, ADC= 318, OverTh=false -Channel=TIME_05_11, ADC= 429, OverTh=false -Channel=TIME_29_03, ADC= 340, OverTh=false -Channel=TIME_29_11, ADC= 409, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 484, OverTh=false -Channel=TIME_29_04, ADC= 265, OverTh=false -Channel=TIME_29_12, ADC= 487, OverTh=false -Channel=TIME_05_05, ADC= 237, OverTh=false -Channel=TIME_05_13, ADC= 521, OverTh=false -Channel=TIME_29_05, ADC= 229, OverTh=false -Channel=TIME_29_13, ADC= 530, OverTh=false -Channel=TIME_05_06, ADC= 231, OverTh=false -Channel=TIME_05_14, ADC= 542, OverTh=false -Channel=TIME_29_06, ADC= 225, OverTh=false -Channel=TIME_29_14, ADC= 549, OverTh=false -Channel=TIME_05_07, ADC= 238, OverTh=false -Channel=TIME_05_15, ADC= 533, OverTh=false -Channel=TIME_29_07, ADC= 231, OverTh=false -Channel=TIME_29_15, ADC= 543, OverTh=false -Channel=TIME_11_00, ADC= 461, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 383, OverTh=false -Channel=TIME_35_08, ADC= 282, OverTh=false -Channel=TIME_11_01, ADC= 425, OverTh=false -Channel=TIME_11_09, ADC= 293, OverTh=false -Channel=TIME_35_01, ADC= 334, OverTh=false -Channel=TIME_35_09, ADC= 334, OverTh=false -Channel=TIME_11_02, ADC= 354, OverTh=false -Channel=TIME_11_10, ADC= 350, OverTh=false -Channel=TIME_35_02, ADC= 274, OverTh=false -Channel=TIME_35_10, ADC= 392, OverTh=false -Channel=TIME_11_03, ADC= 294, OverTh=false -Channel=TIME_11_11, ADC= 407, OverTh=false -Channel=TIME_35_03, ADC= 239, OverTh=false -Channel=TIME_35_11, ADC= 430, OverTh=false -Channel=TIME_11_04, ADC= 249, OverTh=false -Channel=TIME_11_12, ADC= 452, OverTh=false -Channel=TIME_35_04, ADC= 238, OverTh=false -Channel=TIME_35_12, ADC= 439, OverTh=false -Channel=TIME_11_05, ADC= 229, OverTh=false -Channel=TIME_11_13, ADC= 484, OverTh=false -Channel=TIME_35_05, ADC= 237, OverTh=false -Channel=TIME_35_13, ADC= 439, OverTh=false -Channel=TIME_11_06, ADC= 232, OverTh=false -Channel=TIME_11_14, ADC= 495, OverTh=false -Channel=TIME_35_06, ADC= 244, OverTh=false -Channel=TIME_35_14, ADC= 437, OverTh=false -Channel=TIME_11_07, ADC= 239, OverTh=false -Channel=TIME_11_15, ADC= 484, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 438, OverTh=false PrintHeader_7bb0e124 INFO # 99 Run 290683, Event 7590588 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 4, 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= 6, 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= 6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -15, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 12, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -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= 23, OverTh=false -Channel=LUMI_20 , ADC= 128, OverTh=true -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 35, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 261, 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= 259, 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= 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= 255, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 250, OverTh=false -Channel=TIME_05_15, ADC= 279, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 193, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 193, OverTh=false -Channel=TIME_11_09, ADC= 266, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 198, OverTh=false -Channel=TIME_11_10, ADC= 267, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 204, OverTh=false -Channel=TIME_11_11, ADC= 264, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 263, OverTh=false -Channel=TIME_11_12, ADC= 246, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 333, OverTh=false -Channel=TIME_11_13, ADC= 208, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 358, OverTh=false -Channel=TIME_11_14, ADC= 184, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 352, OverTh=false -Channel=TIME_11_15, ADC= 185, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 100 Run 290683, Event 7590718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 125, OverTh=true -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 22, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 11, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 13, 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= 6, 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= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 330, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -10, OverTh=false -Channel=LUMI_07 , ADC= 0, 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= -8, 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= -7, 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= -18, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -6, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 291, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 296, OverTh=false -Channel=TIME_05_01, ADC= 293, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 299, OverTh=false -Channel=TIME_05_02, ADC= 289, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 296, OverTh=false -Channel=TIME_05_03, ADC= 284, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 294, OverTh=false -Channel=TIME_05_04, ADC= 269, OverTh=false -Channel=TIME_05_12, ADC= 268, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 280, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 285, OverTh=false -Channel=TIME_29_05, ADC= 249, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 250, OverTh=false -Channel=TIME_05_14, ADC= 295, OverTh=false -Channel=TIME_29_06, ADC= 239, OverTh=false -Channel=TIME_29_14, ADC= 251, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 296, OverTh=false -Channel=TIME_29_07, ADC= 238, OverTh=false -Channel=TIME_29_15, ADC= 251, 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= 256, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 266, 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= 267, 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= 263, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 101 Run 290683, Event 7597263 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 13, OverTh=false -Channel=LUMI_37 , ADC= 82, OverTh=true -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 7, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 101, OverTh=true -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -24, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 16, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 14, 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= 2, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 50, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 249, OverTh=false -Channel=TIME_05_08, ADC= 348, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 269, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 347, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 267, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 343, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 339, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 311, 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= 268, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 243, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 243, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 263, 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= 262, 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= 254, 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= 256, OverTh=false -Channel=TIME_35_11, ADC= 258, 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= 254, 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= 256, 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= 256, 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 # 102 Run 290683, Event 7597670 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, 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= 3, 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= 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= -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= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -5, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 12, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 9, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 259, 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= 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= 254, 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= 255, 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= 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= 257, 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= 254, 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= 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= 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= 259, 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= 256, 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= 258, 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= 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= 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= 255, OverTh=false PrintHeader_7bb0e124 INFO # 103 Run 290683, Event 7597742 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 245, OverTh=true -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 168, OverTh=true -Channel=LUMI_02 , ADC= 645, OverTh=true -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 126, OverTh=true -Channel=LUMI_27 , ADC= 374, OverTh=true -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 14, OverTh=false -Channel=LUMI_12 , ADC= 6, OverTh=false -Channel=LUMI_36 , ADC= 15, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= 36, 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= 9, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -13, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 253, OverTh=true -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 266, OverTh=true -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 11, 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= 6, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 262, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 263, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 266, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 265, 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= 263, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 334, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 337, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 331, 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= 314, 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= 273, OverTh=false -Channel=TIME_35_12, ADC= 299, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 319, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 238, OverTh=false -Channel=TIME_35_14, ADC= 345, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 243, OverTh=false -Channel=TIME_35_15, ADC= 344, OverTh=false PrintHeader_7bb0e124 INFO # 104 Run 290683, Event 7597971 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= -20, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 28, OverTh=false -Channel=LUMI_26 , ADC= 2, 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= 7, OverTh=false -Channel=LUMI_12 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= -6, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -3, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 235, OverTh=true -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 12, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, 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= 261, 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= 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= 261, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 295, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 371, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 452, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 264, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 460, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 264, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 262, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 258, 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 # 105 Run 290683, Event 7592297 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -17, 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= 323, OverTh=true -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= 63, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= -7, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 9, 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= 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= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -6, OverTh=false -Channel=LUMI_07 , ADC= 297, OverTh=true -Channel=LUMI_31 , ADC= -6, OverTh=false -Channel=LUMI_08 , ADC= 2, 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= 11, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 64, OverTh=true -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= 11, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -4, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 251, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 247, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 249, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 238, OverTh=false -Channel=TIME_05_05, ADC= 251, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 235, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 278, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 273, OverTh=false -Channel=TIME_29_15, ADC= 267, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 254, 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= 251, 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= 255, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 261, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 278, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 272, OverTh=false PrintHeader_7bb0e124 INFO # 106 Run 290683, Event 7592431 -PlumeRawToDigits_89428f2d 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= 6, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 11, OverTh=false -Channel=LUMI_15 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 9, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 9, OverTh=false -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 10, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 11, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 76, OverTh=true -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 263, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 261, 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= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 260, 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= 262, 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= 264, 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= 263, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 269, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 259, 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= 258, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 272, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 288, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 269, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 284, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 107 Run 290683, Event 7592598 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -6, 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= -1, OverTh=false -Channel=LUMI_04 , ADC= -4, 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= 669, OverTh=true -Channel=LUMI_37 , ADC= 18, OverTh=false -Channel=LUMI_14 , ADC= 6, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -20, OverTh=false -Channel=LUMI_39 , ADC= -12, 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=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 11, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 12, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= 50, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 242, OverTh=true -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -3, 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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 268, OverTh=false -Channel=TIME_05_08, ADC= 144, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 275, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 143, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 273, OverTh=false -Channel=TIME_05_02, ADC= 263, OverTh=false -Channel=TIME_05_10, ADC= 144, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 274, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 152, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 272, OverTh=false -Channel=TIME_05_04, ADC= 261, OverTh=false -Channel=TIME_05_12, ADC= 205, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 270, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 278, OverTh=false -Channel=TIME_29_06, ADC= 268, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 266, 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= 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= 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= 255, 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= 259, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 258, 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= 256, 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= 258, 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= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 108 Run 290683, Event 7592877 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= -6, 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= -3, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= 9, 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= 2, OverTh=false -Channel=LUMI_14 , ADC= 9, 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= 74, OverTh=true -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 9, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 390, OverTh=true -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= -2, 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 52, OverTh=true -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= -3, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 263, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 249, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_11, ADC= 262, 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= 257, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 263, 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= 263, OverTh=false PrintHeader_7bb0e124 INFO # 109 Run 290683, Event 7592982 -PlumeRawToDigits_89428f2d 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= 5, OverTh=false -Channel=LUMI_02 , ADC= -11, OverTh=false -Channel=LUMI_26 , ADC= 2, 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= 0, 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= 1, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= 18, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 290, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -12, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -4, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 12, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= -8, 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= 21, OverTh=false -Channel=LUMI_44 , ADC= 16, OverTh=false -Channel=LUMI_21 , ADC= -13, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, 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= 257, 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= 258, 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= 260, 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 254, 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= 257, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 259, 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= 255, 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= 256, OverTh=false -Channel=TIME_11_09, ADC= 256, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 258, 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= 254, OverTh=false -Channel=TIME_11_04, ADC= 255, 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= 254, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 110 Run 290683, Event 7601112 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 10, 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= 9, OverTh=false -Channel=LUMI_03 , ADC= 13, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= -9, OverTh=false -Channel=LUMI_12 , ADC= 8, OverTh=false -Channel=LUMI_36 , ADC= 7, 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= 6, OverTh=false -Channel=LUMI_15 , ADC= 307, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 11, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , 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= 5, OverTh=false -Channel=LUMI_32 , ADC= 15, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= -5, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 22, OverTh=false -Channel=LUMI_18 , ADC= 13, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 3, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 250, OverTh=false -Channel=TIME_05_08, ADC= 343, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 252, OverTh=false -Channel=TIME_05_09, ADC= 345, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 345, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 333, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 289, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 251, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 239, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 242, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 277, OverTh=false -Channel=TIME_11_08, ADC= 286, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 280, OverTh=false -Channel=TIME_11_09, ADC= 285, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 278, OverTh=false -Channel=TIME_11_10, ADC= 284, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 276, OverTh=false -Channel=TIME_11_11, ADC= 280, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 271, OverTh=false -Channel=TIME_11_12, ADC= 267, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 270, 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= 274, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 111 Run 290683, Event 7601132 -PlumeRawToDigits_89428f2d 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= 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= 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= 145, OverTh=true -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= -5, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 9, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 7, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -5, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= 15, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 618, OverTh=true -Channel=LUMI_19 , ADC= -6, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 258, 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= 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= 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= 259, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 259, 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= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 258, 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= 260, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 259, 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= 260, OverTh=false -Channel=TIME_35_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 261, 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 112 Run 290683, Event 7601185 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, 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= 7, OverTh=false -Channel=LUMI_26 , ADC= 26, OverTh=false -Channel=LUMI_03 , ADC= 13, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 6, 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= -2, OverTh=false -Channel=LUMI_14 , ADC= 308, OverTh=true -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 32, OverTh=false -Channel=LUMI_07 , ADC= 303, OverTh=true -Channel=LUMI_31 , ADC= 300, OverTh=true -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= -4, 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= 47, OverTh=false -Channel=LUMI_42 , ADC= 294, OverTh=true -Channel=LUMI_19 , ADC= 3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 262, OverTh=false -Channel=TIME_05_09, ADC= 260, 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= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 254, 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= 256, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 260, 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= 259, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 269, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 264, OverTh=false -Channel=TIME_11_09, ADC= 268, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 264, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 265, 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= 262, 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= 263, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 261, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 113 Run 290683, Event 7601189 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= -14, 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= 6, 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= -3, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -8, 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= -5, OverTh=false -Channel=LUMI_39 , ADC= -5, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= 29, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -7, OverTh=false -Channel=LUMI_33 , ADC= 16, OverTh=false -Channel=LUMI_10 , ADC= -10, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 44, OverTh=false -Channel=LUMI_41 , ADC= 381, OverTh=true -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 31, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -6, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 232, OverTh=true -Channel=LUMI_22 , ADC= -8, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 258, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 255, 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= 257, OverTh=false -Channel=TIME_29_03, ADC= 259, 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= 255, 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= 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= 259, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 251, 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= 251, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 252, 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= 253, OverTh=false -Channel=TIME_11_11, ADC= 253, 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= 251, 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= 252, 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= 252, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 114 Run 290683, Event 7601492 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 75, OverTh=true -Channel=LUMI_24 , ADC= 308, OverTh=true -Channel=LUMI_01 , ADC= 239, OverTh=true -Channel=LUMI_25 , ADC= 5, 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= 291, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_15 , ADC= 51, OverTh=true -Channel=LUMI_39 , ADC= 12, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 10, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 262, OverTh=true -Channel=LUMI_30 , ADC= 545, OverTh=true -Channel=LUMI_07 , ADC= 61, OverTh=true -Channel=LUMI_31 , ADC= 447, OverTh=true -Channel=LUMI_08 , ADC= 270, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 129, OverTh=true -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 48, 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= -16, 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= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 260, 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= 255, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 350, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 266, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 349, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 263, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 344, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 340, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 306, OverTh=false -Channel=TIME_11_12, ADC= 274, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 323, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 238, OverTh=false -Channel=TIME_11_14, ADC= 359, OverTh=false -Channel=TIME_35_06, ADC= 252, OverTh=false -Channel=TIME_35_14, ADC= 282, OverTh=false -Channel=TIME_11_07, ADC= 241, OverTh=false -Channel=TIME_11_15, ADC= 359, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 277, OverTh=false PrintHeader_7bb0e124 INFO # 115 Run 290683, Event 7601619 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 98, OverTh=true -Channel=LUMI_24 , ADC= 37, OverTh=false -Channel=LUMI_01 , ADC= 322, OverTh=true -Channel=LUMI_25 , ADC= 40, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 199, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 206, OverTh=true -Channel=LUMI_28 , ADC= 111, OverTh=true -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 414, OverTh=true -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 46, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= 8, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 301, OverTh=true -Channel=LUMI_30 , ADC= 64, OverTh=true -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= -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= 365, OverTh=true -Channel=LUMI_17 , ADC= 347, OverTh=true -Channel=LUMI_41 , ADC= 377, OverTh=true -Channel=LUMI_18 , ADC= 569, OverTh=true -Channel=LUMI_42 , ADC= 51, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 253, OverTh=false -Channel=TIME_05_11, ADC= 258, 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= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, 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= 270, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 265, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 331, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 331, 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= 329, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 316, OverTh=false -Channel=TIME_11_11, ADC= 261, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 275, OverTh=false -Channel=TIME_11_12, ADC= 292, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 252, OverTh=false -Channel=TIME_11_13, ADC= 324, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 242, OverTh=false -Channel=TIME_11_14, ADC= 338, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 248, OverTh=false -Channel=TIME_11_15, ADC= 334, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 116 Run 290683, Event 7598139 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 29, OverTh=false -Channel=LUMI_01 , ADC= 15, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 133, OverTh=true -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= -3, OverTh=false -Channel=LUMI_12 , ADC= 633, OverTh=true -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 7, 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= 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=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 31, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= -3, 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= 7, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 533, OverTh=true -Channel=LUMI_18 , ADC= 29, OverTh=false -Channel=LUMI_42 , ADC= 17, OverTh=false -Channel=LUMI_19 , ADC= -11, OverTh=false -Channel=LUMI_43 , ADC= 307, OverTh=true -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= -9, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 373, OverTh=true -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 275, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 250, OverTh=false -Channel=TIME_29_08, ADC= 353, OverTh=false -Channel=TIME_05_01, ADC= 277, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 251, OverTh=false -Channel=TIME_29_09, ADC= 351, OverTh=false -Channel=TIME_05_02, ADC= 273, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 351, OverTh=false -Channel=TIME_05_03, ADC= 275, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 347, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 307, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 272, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 249, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 277, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 239, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 240, OverTh=false -Channel=TIME_11_00, ADC= 337, OverTh=false -Channel=TIME_11_08, ADC= 174, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 268, OverTh=false -Channel=TIME_11_01, ADC= 334, OverTh=false -Channel=TIME_11_09, ADC= 173, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 268, OverTh=false -Channel=TIME_11_02, ADC= 334, OverTh=false -Channel=TIME_11_10, ADC= 173, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 267, OverTh=false -Channel=TIME_11_03, ADC= 319, OverTh=false -Channel=TIME_11_11, ADC= 185, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 267, OverTh=false -Channel=TIME_11_04, ADC= 289, OverTh=false -Channel=TIME_11_12, ADC= 237, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 264, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 325, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 244, OverTh=false -Channel=TIME_11_14, ADC= 362, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 354, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 117 Run 290683, Event 7598150 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 12, OverTh=false -Channel=LUMI_01 , ADC= 86, OverTh=true -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 500, OverTh=true -Channel=LUMI_26 , ADC= 545, OverTh=true -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 16, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 16, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= 13, 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= 43, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 47, OverTh=false -Channel=LUMI_40 , ADC= 9, OverTh=false -Channel=LUMI_23 , ADC= -7, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 16, 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= 17, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 375, OverTh=true -Channel=LUMI_18 , ADC= 74, OverTh=true -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= 17, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 301, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 305, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 306, OverTh=false -Channel=TIME_29_02, ADC= 252, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 263, OverTh=false -Channel=TIME_05_11, ADC= 303, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 269, OverTh=false -Channel=TIME_05_12, ADC= 281, OverTh=false -Channel=TIME_29_04, ADC= 265, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 302, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 276, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 317, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 274, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 311, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 267, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 265, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 261, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, 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= 257, 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= 261, 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= 258, 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 # 118 Run 290683, Event 7598171 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 25, OverTh=false -Channel=LUMI_01 , ADC= -5, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -8, 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= 1, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 7, 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= 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= 2, OverTh=false -Channel=LUMI_23 , ADC= -11, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -9, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 20, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 10, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -4, 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= -4, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -6, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 221, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 221, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 225, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 223, 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= 240, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 263, OverTh=false -Channel=TIME_05_13, ADC= 261, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 265, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 266, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 262, 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= 258, 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= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, 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= 268, 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= 279, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 275, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 119 Run 290683, Event 7598529 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 390, OverTh=true -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 257, OverTh=true -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= 24, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 42, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 284, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 81, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 21, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -6, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -5, OverTh=false -Channel=LUMI_42 , ADC= 15, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -5, 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= 1, OverTh=false -Channel=LUMI_46 , ADC= 341, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 296, 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= 296, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 289, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 289, 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= 283, OverTh=false -Channel=TIME_05_12, ADC= 260, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 268, OverTh=false -Channel=TIME_05_13, ADC= 270, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 252, OverTh=false -Channel=TIME_05_14, ADC= 305, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 250, OverTh=false -Channel=TIME_05_15, ADC= 306, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 280, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 282, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 263, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 284, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 266, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 281, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 273, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 262, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 264, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 263, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 251, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 120 Run 290683, Event 7595051 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 6, 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= 4, 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= -3, 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= 0, 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= 5, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 10, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 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= 260, 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= 258, 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= 259, 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= 254, 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= 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= 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 258, 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= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, 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= 255, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 121 Run 290683, Event 7595508 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -8, 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= -8, 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= 8, OverTh=false -Channel=LUMI_36 , ADC= 29, OverTh=false -Channel=LUMI_13 , ADC= -5, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 18, OverTh=false -Channel=LUMI_38 , ADC= 366, OverTh=true -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= -5, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 8, 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= 393, OverTh=true -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= 5, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 129, OverTh=true -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 143, OverTh=true -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= -6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 263, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 281, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 326, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 360, OverTh=false -Channel=TIME_05_14, ADC= 286, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 359, OverTh=false -Channel=TIME_05_15, ADC= 284, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 245, OverTh=false -Channel=TIME_35_08, ADC= 375, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 251, OverTh=false -Channel=TIME_35_09, ADC= 376, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 371, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 354, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 302, 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= 265, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 230, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 237, OverTh=false PrintHeader_7bb0e124 INFO # 122 Run 290683, Event 7595567 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -15, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 27, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 9, 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= 3, OverTh=false -Channel=LUMI_36 , ADC= 83, OverTh=true -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 26, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 72, OverTh=true -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 55, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 263, OverTh=true -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= 0, OverTh=false -Channel=LUMI_09 , ADC= 80, OverTh=true -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= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 16, OverTh=false -Channel=LUMI_19 , ADC= 244, OverTh=true -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 85, OverTh=true -Channel=LUMI_44 , ADC= 13, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 259, 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= 262, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, 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= 257, 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= 254, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 254, 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= 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 264, 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= 269, 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= 261, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 123 Run 290683, Event 7593083 -PlumeRawToDigits_89428f2d 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= 4, OverTh=false -Channel=LUMI_02 , ADC= 319, OverTh=true -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_13 , ADC= 0, 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= -3, 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=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -6, 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= 10, OverTh=false -Channel=LUMI_33 , ADC= -9, 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= 52, OverTh=true -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 24, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 67, OverTh=true -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 254, 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= 255, OverTh=false -Channel=TIME_05_02, ADC= 252, 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= 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= 257, 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= 260, 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= 261, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 261, 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= 253, 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= 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= 257, 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= 259, 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= 255, OverTh=false -Channel=TIME_11_13, ADC= 260, 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= 271, 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= 267, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 124 Run 290683, Event 7593666 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 102, OverTh=true -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 98, OverTh=true -Channel=LUMI_36 , ADC= 108, OverTh=true -Channel=LUMI_13 , ADC= 179, OverTh=true -Channel=LUMI_37 , ADC= 209, OverTh=true -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= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -11, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -16, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 213, OverTh=true -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 335, OverTh=true -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= -1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 124, OverTh=true -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 253, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 260, 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= 260, 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= 261, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 261, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 267, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 266, 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= 263, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 249, OverTh=false -Channel=TIME_35_08, ADC= 365, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 252, OverTh=false -Channel=TIME_35_09, ADC= 366, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 360, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 335, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 277, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 248, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 232, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 267, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 240, OverTh=false PrintHeader_7bb0e124 INFO # 125 Run 290683, Event 7593996 -PlumeRawToDigits_89428f2d 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= -2, 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= 6, 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= 6, 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= 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -3, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 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= 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= 254, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 256, 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= 256, 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= 258, OverTh=false -Channel=TIME_05_14, ADC= 259, 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= 261, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 261, 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= 255, OverTh=false -Channel=TIME_35_01, ADC= 258, 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= 257, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 257, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 126 Run 290683, Event 7594047 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 457, OverTh=true -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= 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= 3, 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= 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= 30, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , 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= -3, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, 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= 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= 256, 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= 256, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 255, 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= 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= 257, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 259, 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= 260, 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= 261, 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= 259, 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= 260, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 127 Run 290683, Event 7594549 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 4, 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= -1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 126, OverTh=true -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= -5, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -7, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -6, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 5, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -3, OverTh=false -Channel=LUMI_18 , ADC= 20, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 22, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 4, 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= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, 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= 259, 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= 259, 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= 258, 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= 256, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 258, 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= 261, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 260, 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= 261, 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= 259, 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= 264, 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= 275, 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= 271, 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 # 128 Run 290683, Event 7605234 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -5, 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= 1, 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= -4, OverTh=false -Channel=LUMI_14 , ADC= -4, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 13, 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= 9, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 10, OverTh=false -Channel=LUMI_18 , ADC= 10, OverTh=false -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 15, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 340, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 343, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 254, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 339, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 329, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 293, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 241, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 273, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 246, OverTh=false -Channel=TIME_29_07, ADC= 261, OverTh=false -Channel=TIME_29_15, ADC= 274, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 265, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 269, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 264, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 274, OverTh=false -Channel=TIME_11_12, ADC= 261, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 259, OverTh=false -Channel=TIME_11_05, ADC= 311, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 333, OverTh=false -Channel=TIME_11_14, ADC= 252, OverTh=false -Channel=TIME_35_06, ADC= 274, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 327, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 273, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 129 Run 290683, Event 7605350 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 278, OverTh=true -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 245, OverTh=true -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 7, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 62, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 91, OverTh=true -Channel=LUMI_36 , ADC= -6, OverTh=false -Channel=LUMI_13 , ADC= 293, OverTh=true -Channel=LUMI_37 , ADC= 143, OverTh=true -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 17, OverTh=false -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 9, OverTh=false -Channel=LUMI_23 , ADC= 185, OverTh=true -Channel=LUMI_47 , ADC= 75, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 161, OverTh=true -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -6, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 205, OverTh=true -Channel=LUMI_18 , ADC= 157, OverTh=true -Channel=LUMI_42 , ADC= 234, OverTh=true -Channel=LUMI_19 , ADC= -4, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 252, OverTh=true -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 345, 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= 345, 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= 343, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 338, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 298, OverTh=false -Channel=TIME_29_12, ADC= 283, 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= 333, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 245, OverTh=false -Channel=TIME_29_14, ADC= 354, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 247, OverTh=false -Channel=TIME_29_15, ADC= 355, OverTh=false -Channel=TIME_11_00, ADC= 440, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 364, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 437, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 363, OverTh=false -Channel=TIME_35_09, ADC= 251, OverTh=false -Channel=TIME_11_02, ADC= 427, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 357, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 411, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 334, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 342, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 277, OverTh=false -Channel=TIME_35_12, ADC= 310, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 405, OverTh=false -Channel=TIME_35_05, ADC= 251, OverTh=false -Channel=TIME_35_13, ADC= 348, OverTh=false -Channel=TIME_11_06, ADC= 222, OverTh=false -Channel=TIME_11_14, ADC= 474, OverTh=false -Channel=TIME_35_06, ADC= 233, OverTh=false -Channel=TIME_35_14, ADC= 381, OverTh=false -Channel=TIME_11_07, ADC= 227, OverTh=false -Channel=TIME_11_15, ADC= 463, OverTh=false -Channel=TIME_35_07, ADC= 238, OverTh=false -Channel=TIME_35_15, ADC= 379, OverTh=false PrintHeader_7bb0e124 INFO # 130 Run 290683, Event 7605357 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 422, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 15, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 70, OverTh=true -Channel=LUMI_37 , ADC= -5, OverTh=false -Channel=LUMI_14 , ADC= 387, OverTh=true -Channel=LUMI_38 , ADC= -6, OverTh=false -Channel=LUMI_15 , ADC= 151, OverTh=true -Channel=LUMI_39 , ADC= 5, 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= 0, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 385, OverTh=true -Channel=LUMI_30 , ADC= 321, OverTh=true -Channel=LUMI_07 , ADC= 36, 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= 38, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= 18, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 151, OverTh=true -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= -4, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 8, 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= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 323, 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= 323, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 322, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 319, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 303, OverTh=false -Channel=TIME_05_12, ADC= 264, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 287, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 248, OverTh=false -Channel=TIME_05_14, ADC= 323, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 247, OverTh=false -Channel=TIME_05_15, ADC= 330, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 269, 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= 264, 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= 263, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 253, 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= 249, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 261, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 131 Run 290683, Event 7605411 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= 37, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 17, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 286, OverTh=true -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= 2, OverTh=false -Channel=LUMI_13 , ADC= 9, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 277, OverTh=true -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= 10, OverTh=false -Channel=LUMI_40 , ADC= 284, OverTh=true -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 242, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 21, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 7, OverTh=false -Channel=LUMI_09 , ADC= 136, OverTh=true -Channel=LUMI_33 , ADC= 25, OverTh=false -Channel=LUMI_10 , ADC= 234, OverTh=true -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 16, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 184, OverTh=true -Channel=LUMI_42 , ADC= 31, OverTh=false -Channel=LUMI_19 , ADC= 25, OverTh=false -Channel=LUMI_43 , ADC= 625, OverTh=true -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 11, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 12, OverTh=false -Channel=LUMI_22 , ADC= 152, OverTh=true -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 273, OverTh=false -Channel=TIME_05_08, ADC= 265, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 262, OverTh=false -Channel=TIME_05_01, ADC= 271, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 269, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 270, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 292, OverTh=false -Channel=TIME_05_12, ADC= 262, OverTh=false -Channel=TIME_29_04, ADC= 292, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 349, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 350, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 415, OverTh=false -Channel=TIME_05_14, ADC= 274, OverTh=false -Channel=TIME_29_06, ADC= 387, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 424, OverTh=false -Channel=TIME_05_15, ADC= 276, OverTh=false -Channel=TIME_29_07, ADC= 388, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 246, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 247, OverTh=false -Channel=TIME_35_01, ADC= 252, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 251, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 249, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 252, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 252, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 273, 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= 275, 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 # 132 Run 290683, Event 7605676 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, 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= 261, OverTh=true -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= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 92, OverTh=true -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 9, 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= 6, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 8, 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= 10, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -12, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 260, 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= 261, 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= 260, 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= 261, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 260, 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= 263, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 252, OverTh=false -Channel=TIME_29_07, ADC= 262, 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= 255, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 259, 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= 259, 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= 255, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, 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= 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 133 Run 290683, Event 7605770 -PlumeRawToDigits_89428f2d 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= 4, OverTh=false -Channel=LUMI_02 , ADC= 84, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 320, OverTh=true -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= 0, 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= -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= 253, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -7, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 290, OverTh=true -Channel=LUMI_31 , ADC= 318, OverTh=true -Channel=LUMI_08 , ADC= 135, OverTh=true -Channel=LUMI_32 , ADC= 0, 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= 6, 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= 7, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 263, 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= 259, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 263, 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 255, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 258, 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= 255, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 259, 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= 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= 254, 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= 256, 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= 261, 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= 270, 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= 263, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 134 Run 290683, Event 7605840 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 2, 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= 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= -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= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= -9, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -4, 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= -5, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -5, 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= 4, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 2, 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= 258, 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= 259, 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= 257, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 258, 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= 253, 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= 256, 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= 256, OverTh=false -Channel=TIME_05_07, ADC= 258, 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= 257, 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= 258, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 257, 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= 258, 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= 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= 256, 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= 260, 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= 257, OverTh=false PrintHeader_7bb0e124 INFO # 135 Run 290683, Event 7603064 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -4, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 6, OverTh=false -Channel=LUMI_02 , ADC= 2, 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= 10, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 11, 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= -6, 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= 6, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 17, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -19, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 10, 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= 14, OverTh=false -Channel=LUMI_10 , ADC= 6, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 13, OverTh=false -Channel=LUMI_43 , ADC= -13, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 254, 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= 258, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 255, 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= 255, 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= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 253, 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= 254, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 244, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 228, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 245, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 232, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 244, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 241, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 246, OverTh=false -Channel=TIME_35_03, ADC= 249, OverTh=false -Channel=TIME_35_11, ADC= 243, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 194, OverTh=false -Channel=TIME_35_12, ADC= 247, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 242, OverTh=false -Channel=TIME_35_13, ADC= 249, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 264, OverTh=false -Channel=TIME_35_06, ADC= 291, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 282, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 136 Run 290683, Event 7603081 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -10, 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -9, 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= 5, OverTh=false -Channel=LUMI_36 , ADC= -17, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -6, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -6, 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= 63, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 344, OverTh=true -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= -22, 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= 7, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= -12, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= -8, OverTh=false -Channel=LUMI_18 , ADC= -8, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 275, OverTh=false -Channel=TIME_29_08, ADC= 140, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 271, OverTh=false -Channel=TIME_29_09, ADC= 143, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 265, OverTh=false -Channel=TIME_29_10, ADC= 143, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 147, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 177, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 249, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 271, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 296, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 269, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 294, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 258, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_11, ADC= 261, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 261, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 137 Run 290683, Event 7603109 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 5, 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= 58, OverTh=true -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 48, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 19, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 15, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 37, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 13, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 253, 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= 253, 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= 256, 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= 257, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 254, 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= 259, OverTh=false -Channel=TIME_29_06, ADC= 261, 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= 263, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 260, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 248, 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= 251, 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= 251, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 275, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 138 Run 290683, Event 7603681 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -11, OverTh=false -Channel=LUMI_25 , ADC= 279, OverTh=true -Channel=LUMI_02 , ADC= 12, OverTh=false -Channel=LUMI_26 , ADC= 8, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 224, OverTh=true -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 213, OverTh=true -Channel=LUMI_37 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 252, OverTh=true -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 145, OverTh=true -Channel=LUMI_31 , ADC= 158, OverTh=true -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 189, OverTh=true -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 350, OverTh=true -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 244, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 10, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 440, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 769, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 442, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 759, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 435, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 743, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 415, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 728, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 346, OverTh=false -Channel=TIME_05_12, ADC= 313, OverTh=false -Channel=TIME_29_04, ADC= 587, OverTh=false -Channel=TIME_29_12, ADC= 352, OverTh=false -Channel=TIME_05_05, ADC= 287, OverTh=false -Channel=TIME_05_13, ADC= 398, OverTh=false -Channel=TIME_29_05, ADC= 383, OverTh=false -Channel=TIME_29_13, ADC= 540, OverTh=false -Channel=TIME_05_06, ADC= 306, OverTh=false -Channel=TIME_05_14, ADC= 464, OverTh=false -Channel=TIME_29_06, ADC= 226, OverTh=false -Channel=TIME_29_14, ADC= 753, OverTh=false -Channel=TIME_05_07, ADC= 315, OverTh=false -Channel=TIME_05_15, ADC= 458, OverTh=false -Channel=TIME_29_07, ADC= 197, OverTh=false -Channel=TIME_29_15, ADC= 793, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 258, 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= 258, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 255, 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= 254, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 264, 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= 261, 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= 261, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 139 Run 290683, Event 7603699 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 42, 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= -2, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 108, OverTh=true -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 12, OverTh=false -Channel=LUMI_37 , ADC= 6, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 117, OverTh=true -Channel=LUMI_15 , ADC= -8, 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=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , 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= 28, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= -2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -4, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 1, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 274, 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= 272, 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= 277, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 267, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 262, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, 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= 252, 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= 253, 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= 260, 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= 256, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 252, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 252, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 252, OverTh=false -Channel=TIME_11_06, ADC= 262, 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= 260, 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 # 140 Run 290683, Event 7603733 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 15, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 6, OverTh=false -Channel=LUMI_27 , ADC= 12, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -7, 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= 2, 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= 3, OverTh=false -Channel=LUMI_47 , ADC= 13, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, 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= 8, OverTh=false -Channel=LUMI_08 , ADC= -10, 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= 6, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 12, OverTh=false -Channel=LUMI_44 , ADC= 5, 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=MON_01 , ADC= -4, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 255, 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= 257, 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= 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= 257, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 262, 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= 261, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 264, 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= 262, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 262, OverTh=false -Channel=TIME_11_05, ADC= 255, 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= 256, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 252, 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= 253, OverTh=false PrintHeader_7bb0e124 INFO # 141 Run 290683, Event 7603803 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= -5, 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= -4, 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= 0, 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= -2, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -10, 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= 4, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -6, 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= 62, OverTh=true -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= -9, 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= -4, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 254, 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= 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 257, 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= 262, 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= 259, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 261, 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= 261, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 261, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 251, OverTh=false -Channel=TIME_35_02, ADC= 260, OverTh=false -Channel=TIME_35_10, ADC= 258, 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= 255, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 265, 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= 276, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 267, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 142 Run 290683, Event 7599325 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 12, OverTh=false -Channel=LUMI_28 , ADC= 13, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -9, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -10, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , 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= 4, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 17, 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= 7, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 16, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 258, 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= 254, OverTh=false -Channel=TIME_05_04, ADC= 254, 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= 256, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 279, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 270, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 270, OverTh=false -Channel=TIME_11_00, ADC= 262, 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= 260, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 260, 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= 261, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 260, 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= 262, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 266, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 143 Run 290683, Event 7599358 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 612, OverTh=true -Channel=LUMI_24 , ADC= 32, OverTh=false -Channel=LUMI_01 , ADC= 40, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 445, OverTh=true -Channel=LUMI_26 , ADC= 26, OverTh=false -Channel=LUMI_03 , ADC= 153, OverTh=true -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 244, OverTh=true -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= -1, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 4, 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= 132, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 13, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 13, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 497, OverTh=true -Channel=LUMI_08 , ADC= 119, OverTh=true -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= 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= 241, OverTh=true -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 13, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 250, OverTh=false -Channel=TIME_05_08, ADC= 365, OverTh=false -Channel=TIME_29_00, ADC= 252, OverTh=false -Channel=TIME_29_08, ADC= 296, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 362, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 297, OverTh=false -Channel=TIME_05_02, ADC= 251, OverTh=false -Channel=TIME_05_10, ADC= 363, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 296, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 360, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 295, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 333, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 281, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 284, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 283, OverTh=false -Channel=TIME_05_14, ADC= 243, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 245, OverTh=false -Channel=TIME_05_07, ADC= 285, OverTh=false -Channel=TIME_05_15, ADC= 241, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 248, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 259, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 261, 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= 260, 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= 257, 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= 253, OverTh=false -Channel=TIME_11_06, ADC= 256, 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= 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 # 144 Run 290683, Event 7599753 -PlumeRawToDigits_89428f2d 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= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 9, OverTh=false -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 292, OverTh=true -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= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 4, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 18, 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= 3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 53, OverTh=true -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= 0, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_21 , ADC= -6, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 266, 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= 261, 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= 260, OverTh=false -Channel=TIME_05_11, ADC= 253, 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= 241, 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= 237, 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= 274, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 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= 253, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 252, 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= 254, 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= 258, OverTh=false -Channel=TIME_11_06, ADC= 254, 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 145 Run 290683, Event 7583039 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 133, OverTh=true -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 323, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 156, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 15, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 9, 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= 278, OverTh=true -Channel=LUMI_47 , ADC= 70, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 56, OverTh=true -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 120, OverTh=true -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 321, OverTh=true -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= -3, OverTh=false -Channel=LUMI_34 , ADC= 240, OverTh=true -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 59, OverTh=true -Channel=LUMI_19 , ADC= 253, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 9, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= 344, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 334, 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= 337, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 334, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 330, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 299, OverTh=false -Channel=TIME_29_12, ADC= 277, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 324, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 243, OverTh=false -Channel=TIME_29_14, ADC= 348, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 256, OverTh=false -Channel=TIME_29_07, ADC= 243, OverTh=false -Channel=TIME_29_15, ADC= 342, OverTh=false -Channel=TIME_11_00, ADC= 251, OverTh=false -Channel=TIME_11_08, ADC= 359, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 243, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 360, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 246, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 359, OverTh=false -Channel=TIME_35_02, ADC= 261, OverTh=false -Channel=TIME_35_10, ADC= 250, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 349, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 268, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 251, OverTh=false -Channel=TIME_11_05, ADC= 291, OverTh=false -Channel=TIME_11_13, ADC= 251, OverTh=false -Channel=TIME_35_05, ADC= 243, OverTh=false -Channel=TIME_35_13, ADC= 250, OverTh=false -Channel=TIME_11_06, ADC= 304, OverTh=false -Channel=TIME_11_14, ADC= 235, OverTh=false -Channel=TIME_35_06, ADC= 273, OverTh=false -Channel=TIME_35_14, ADC= 251, OverTh=false -Channel=TIME_11_07, ADC= 302, OverTh=false -Channel=TIME_11_15, ADC= 242, OverTh=false -Channel=TIME_35_07, ADC= 279, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 146 Run 290683, Event 7583058 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 77, OverTh=true -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 5, 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= -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= 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= 88, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -5, 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= -3, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= -6, OverTh=false -Channel=LUMI_41 , ADC= -4, OverTh=false -Channel=LUMI_18 , ADC= -7, OverTh=false -Channel=LUMI_42 , ADC= -3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, 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= 251, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 253, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 273, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 305, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 352, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 352, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 255, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, 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= 258, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 260, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 267, 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= 281, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 278, 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 # 147 Run 290683, Event 7583181 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_03 , ADC= 16, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 60, OverTh=true -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 15, OverTh=false -Channel=LUMI_13 , ADC= 327, OverTh=true -Channel=LUMI_37 , ADC= 23, OverTh=false -Channel=LUMI_14 , ADC= 67, OverTh=true -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= 397, OverTh=true -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 199, OverTh=true -Channel=LUMI_47 , ADC= 10, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 18, OverTh=false -Channel=LUMI_09 , ADC= 305, OverTh=true -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= 9, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 12, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 262, 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= 263, 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= 259, 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= 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= 263, 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= 263, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 277, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 275, 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= 273, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 274, 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= 265, OverTh=false -Channel=TIME_11_12, ADC= 261, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 272, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 279, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 251, OverTh=false -Channel=TIME_11_15, ADC= 278, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 148 Run 290683, Event 7583297 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 4, 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= 1, 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= 1, OverTh=false -Channel=LUMI_13 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , 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= 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 4, 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= -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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -4, 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= 258, 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= 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= 255, 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= 257, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 251, 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= 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= 254, 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= 256, OverTh=false -Channel=TIME_35_08, ADC= 253, 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= 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 257, 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= 259, 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= 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= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 149 Run 290683, Event 7583307 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 6, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_12 , ADC= 132, OverTh=true -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 291, OverTh=true -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= 6, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 211, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= 2, 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= 280, OverTh=true -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 11, 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= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 259, 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= 257, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 254, 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= 254, 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= 253, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 267, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 263, 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= 250, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 252, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 259, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 255, 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= 260, OverTh=false -Channel=TIME_11_06, ADC= 271, 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= 269, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 150 Run 290683, Event 7583468 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 8, 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= 6, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 10, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= -7, 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= 13, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -10, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 12, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 5, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 23, OverTh=false -Channel=LUMI_44 , ADC= 3, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 130, OverTh=false -Channel=TIME_29_00, ADC= 264, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 130, OverTh=false -Channel=TIME_29_01, ADC= 264, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 134, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 143, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 184, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 245, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 251, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 279, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 280, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 282, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 261, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, 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= 262, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 260, 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= 261, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 151 Run 290683, Event 7591617 -PlumeRawToDigits_89428f2d 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= 8, 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= 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= -5, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -4, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 15, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, 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= -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= 0, 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= -2, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -5, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 260, 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= 255, 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= 254, 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= 257, OverTh=false -Channel=TIME_05_12, ADC= 258, 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= 259, 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= 257, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 260, 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= 260, 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= 259, 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= 261, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 260, OverTh=false -Channel=TIME_11_06, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 152 Run 290683, Event 7591722 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 399, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 157, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 112, OverTh=true -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= 3, 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= 98, OverTh=true -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 38, OverTh=false -Channel=LUMI_47 , ADC= 43, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 509, OverTh=true -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 644, OverTh=true -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 4, 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= 27, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 56, OverTh=true -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= 4, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 269, 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= 270, 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= 271, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 261, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 271, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 488, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 489, 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= 483, 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= 427, OverTh=false -Channel=TIME_35_11, ADC= 273, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 314, OverTh=false -Channel=TIME_35_12, ADC= 374, 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= 443, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 206, OverTh=false -Channel=TIME_35_14, ADC= 518, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 222, OverTh=false -Channel=TIME_35_15, ADC= 515, OverTh=false PrintHeader_7bb0e124 INFO # 153 Run 290683, Event 7591756 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 9, 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= 5, OverTh=false -Channel=LUMI_13 , ADC= 5, 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= -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= -7, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 7, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -2, 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= -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= 3, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 252, 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= 255, 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= 255, 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= 257, 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= 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= 261, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 257, 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= 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= 254, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 287, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 341, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 372, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 365, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 154 Run 290683, Event 7591857 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -7, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 9, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 6, 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= 0, 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= -13, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 6, 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= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 273, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 272, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 274, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 277, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 275, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 248, OverTh=false -Channel=TIME_05_13, ADC= 275, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 231, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 283, OverTh=false -Channel=TIME_05_07, ADC= 226, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 279, 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= 258, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 252, 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= 253, 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= 255, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 251, 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= 256, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 155 Run 290683, Event 7591867 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 367, OverTh=true -Channel=LUMI_24 , ADC= 5, 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= 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= 8, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= 13, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 7, OverTh=false -Channel=LUMI_09 , ADC= -6, 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= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 273, OverTh=true -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, 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= 254, 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= 260, OverTh=false -Channel=TIME_29_02, ADC= 257, 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= 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= 256, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 260, 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= 261, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 259, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 254, 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= 256, 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= 255, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 156 Run 290683, Event 7580037 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -15, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 14, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 342, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 11, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 12, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -15, OverTh=false -Channel=LUMI_47 , ADC= 17, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 16, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 11, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 13, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 18, OverTh=false -Channel=LUMI_41 , ADC= 12, OverTh=false -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= 141, OverTh=true -Channel=LUMI_19 , ADC= 104, OverTh=true -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= 24, OverTh=false -Channel=LUMI_21 , ADC= 8, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 256, 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= 257, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, 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= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 285, 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= 334, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 365, 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= 367, 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= 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= 257, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 264, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 252, OverTh=false -Channel=TIME_11_04, ADC= 307, 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= 360, 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= 385, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 378, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 157 Run 290683, Event 7580246 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -7, OverTh=false -Channel=LUMI_26 , ADC= 11, OverTh=false -Channel=LUMI_03 , ADC= 9, 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= 4, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 26, 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= 9, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -6, OverTh=false -Channel=LUMI_07 , ADC= -6, OverTh=false -Channel=LUMI_31 , ADC= -5, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 20, OverTh=false -Channel=LUMI_41 , ADC= -17, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 222, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 251, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 251, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 280, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 279, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 252, 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= 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= 259, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 259, 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= 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= 261, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 158 Run 290683, Event 7580678 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 48, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= -11, 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= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 149, OverTh=true -Channel=LUMI_36 , ADC= 24, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 393, OverTh=true -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -7, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 30, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 298, OverTh=true -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 7, 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= 5, OverTh=false -Channel=LUMI_18 , ADC= 49, 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= 10, OverTh=false -Channel=LUMI_44 , ADC= 163, OverTh=true -Channel=LUMI_21 , ADC= 255, OverTh=true -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 258, 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= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, 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= 261, 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= 258, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 253, 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= 261, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 267, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 265, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 264, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 276, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 159 Run 290683, Event 7580768 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 324, OverTh=true -Channel=LUMI_01 , ADC= 48, OverTh=false -Channel=LUMI_25 , ADC= 144, OverTh=true -Channel=LUMI_02 , ADC= 11, OverTh=false -Channel=LUMI_26 , ADC= 102, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 25, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 14, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 31, 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= 1, OverTh=false -Channel=LUMI_16 , ADC= -20, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 8, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 557, OverTh=true -Channel=LUMI_30 , ADC= 473, OverTh=true -Channel=LUMI_07 , ADC= 181, OverTh=true -Channel=LUMI_31 , ADC= 121, OverTh=true -Channel=LUMI_08 , ADC= 363, OverTh=true -Channel=LUMI_32 , ADC= 11, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= 33, OverTh=false -Channel=LUMI_41 , ADC= 22, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 23, OverTh=false -Channel=LUMI_43 , ADC= 93, OverTh=true -Channel=LUMI_20 , ADC= 381, OverTh=true -Channel=LUMI_44 , ADC= 12, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 353, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 404, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 352, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 402, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 351, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 399, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 342, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 398, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 309, OverTh=false -Channel=TIME_05_12, ADC= 279, OverTh=false -Channel=TIME_29_04, ADC= 360, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 322, OverTh=false -Channel=TIME_29_05, ADC= 283, OverTh=false -Channel=TIME_29_13, ADC= 346, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 355, OverTh=false -Channel=TIME_29_06, ADC= 239, OverTh=false -Channel=TIME_29_14, ADC= 413, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 358, OverTh=false -Channel=TIME_29_07, ADC= 235, OverTh=false -Channel=TIME_29_15, ADC= 420, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 272, OverTh=false -Channel=TIME_35_08, ADC= 250, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 267, OverTh=false -Channel=TIME_35_09, ADC= 251, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 262, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 250, OverTh=false -Channel=TIME_11_04, ADC= 284, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 250, OverTh=false -Channel=TIME_11_05, ADC= 325, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 259, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 353, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 291, OverTh=false -Channel=TIME_11_07, ADC= 353, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 286, OverTh=false PrintHeader_7bb0e124 INFO # 160 Run 290683, Event 7581061 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 5, 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= 3, 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= 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 9, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 8, OverTh=false -Channel=LUMI_08 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 11, 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= 4, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, 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= 257, OverTh=false -Channel=TIME_29_02, ADC= 259, 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= 255, 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= 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= 258, 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= 255, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 257, 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= 259, 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= 259, 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= 259, OverTh=false -Channel=TIME_35_04, ADC= 254, 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= 256, 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= 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= 256, OverTh=false PrintHeader_7bb0e124 INFO # 161 Run 290683, Event 7581211 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 212, OverTh=true -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 93, OverTh=true -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 54, OverTh=true -Channel=LUMI_27 , ADC= 10, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= -11, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 51, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -6, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 23, OverTh=false -Channel=LUMI_31 , ADC= 20, OverTh=false -Channel=LUMI_08 , ADC= -14, 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= -3, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= 9, OverTh=false -Channel=LUMI_42 , ADC= 19, OverTh=false -Channel=LUMI_19 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 347, OverTh=false -Channel=TIME_05_08, ADC= 357, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 349, OverTh=false -Channel=TIME_05_09, ADC= 354, OverTh=false -Channel=TIME_29_01, ADC= 241, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 350, OverTh=false -Channel=TIME_05_10, ADC= 352, OverTh=false -Channel=TIME_29_02, ADC= 240, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 342, OverTh=false -Channel=TIME_05_11, ADC= 341, OverTh=false -Channel=TIME_29_03, ADC= 243, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 292, OverTh=false -Channel=TIME_05_12, ADC= 322, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 235, OverTh=false -Channel=TIME_05_13, ADC= 326, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 247, OverTh=false -Channel=TIME_05_06, ADC= 262, OverTh=false -Channel=TIME_05_14, ADC= 345, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 238, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 347, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 239, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, 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= 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 273, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 266, 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 # 162 Run 290683, Event 7581552 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 8, 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= -2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -7, OverTh=false -Channel=LUMI_28 , ADC= -1, 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= -3, 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= 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= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 14, OverTh=false -Channel=LUMI_31 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 7, 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= 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= 1, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 3, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 262, 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= 261, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, 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= 258, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 265, 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= 266, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 267, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 262, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 269, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 252, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 282, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 163 Run 290683, Event 7581586 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 589, OverTh=true -Channel=LUMI_24 , ADC= 35, OverTh=false -Channel=LUMI_01 , ADC= 273, OverTh=true -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 789, OverTh=true -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 26, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 10, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 29, OverTh=false -Channel=LUMI_13 , ADC= 26, OverTh=false -Channel=LUMI_37 , ADC= 10, OverTh=false -Channel=LUMI_14 , ADC= 8, 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= 4, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 11, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 160, OverTh=true -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 223, OverTh=true -Channel=LUMI_32 , ADC= 14, OverTh=false -Channel=LUMI_09 , ADC= -4, OverTh=false -Channel=LUMI_33 , ADC= 9, OverTh=false -Channel=LUMI_10 , ADC= 9, 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= 110, OverTh=true -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 30, OverTh=false -Channel=LUMI_21 , ADC= 179, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 249, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 248, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 252, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 250, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 252, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 264, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 260, 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= 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= 254, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 252, 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= 253, OverTh=false -Channel=TIME_11_04, ADC= 257, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 164 Run 290683, Event 7581718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 22, OverTh=false -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= -19, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 11, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= -7, OverTh=false -Channel=PIN_02 , ADC= -11, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= -3, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 17, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 261, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 15, OverTh=false -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 253, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 260, 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= 260, OverTh=false -Channel=TIME_29_02, ADC= 258, 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= 265, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 280, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 291, 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= 290, 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= 257, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 263, 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= 261, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 261, 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= 313, 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= 399, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 448, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 438, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 165 Run 290683, Event 7581927 -PlumeRawToDigits_89428f2d 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= 87, OverTh=true -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= 4, 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= 1, 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= 5, 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= 91, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 52, OverTh=true -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= 3, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, 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= 256, 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= 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= 257, 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= 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 256, 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= 254, 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 261, 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= 260, 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= 260, 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= 258, 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= 257, 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= 257, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 166 Run 290683, Event 7581965 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 78, OverTh=true -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 475, OverTh=true -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= 12, 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= 2, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 9, 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= 10, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 248, OverTh=false -Channel=TIME_05_08, ADC= 371, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 249, OverTh=false -Channel=TIME_05_09, ADC= 370, 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= 368, 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= 359, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 317, OverTh=false -Channel=TIME_29_04, ADC= 259, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 236, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 239, 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= 287, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 289, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 251, OverTh=false -Channel=TIME_11_10, ADC= 286, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 253, OverTh=false -Channel=TIME_11_11, ADC= 281, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 251, OverTh=false -Channel=TIME_11_12, ADC= 264, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, 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= 252, OverTh=false -Channel=TIME_11_14, ADC= 250, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 250, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 167 Run 290683, Event 7581996 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 15, OverTh=false -Channel=LUMI_24 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 10, OverTh=false -Channel=LUMI_27 , ADC= 9, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 20, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 9, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 11, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 40, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 17, OverTh=false -Channel=LUMI_47 , ADC= 67, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= -14, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 18, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 18, OverTh=false -Channel=LUMI_31 , ADC= 14, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 27, OverTh=false -Channel=LUMI_41 , ADC= 77, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 35, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 9, OverTh=false -Channel=LUMI_21 , ADC= 11, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 254, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 253, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 269, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 269, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 267, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 265, 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= 260, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 271, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 271, OverTh=false -Channel=TIME_35_07, ADC= 262, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 168 Run 290683, Event 7578066 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= -7, 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= 73, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 64, OverTh=true -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= 25, OverTh=false -Channel=LUMI_38 , ADC= 8, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= -9, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 4, 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= -6, 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= -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= -1, OverTh=false -Channel=LUMI_44 , ADC= 0, 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= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 212, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 211, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 215, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 216, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 225, OverTh=false -Channel=TIME_05_12, ADC= 251, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 229, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 280, OverTh=false -Channel=TIME_05_14, ADC= 207, OverTh=false -Channel=TIME_29_06, ADC= 263, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 276, OverTh=false -Channel=TIME_05_15, ADC= 212, OverTh=false -Channel=TIME_29_07, ADC= 263, 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= 255, 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= 259, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 253, 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= 250, OverTh=false -Channel=TIME_11_06, ADC= 261, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 263, OverTh=false -Channel=TIME_35_14, ADC= 250, 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= 252, OverTh=false PrintHeader_7bb0e124 INFO # 169 Run 290683, Event 7578307 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 7, 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= 3, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 7, 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= 5, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -15, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 2, 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= 92, OverTh=true -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 490, OverTh=true -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 52, OverTh=true -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= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 255, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 257, 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= 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= 255, 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= 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= 261, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 260, 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= 260, 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= 257, OverTh=false -Channel=TIME_35_11, ADC= 255, 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= 257, 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= 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= 264, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 170 Run 290683, Event 7578446 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -26, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 0, 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= -2, 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= 16, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 8, OverTh=false -Channel=LUMI_39 , ADC= 218, OverTh=true -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -5, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -11, OverTh=false -Channel=LUMI_09 , ADC= 14, 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= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 322, OverTh=true -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= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 252, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 253, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 248, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 251, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 253, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 252, 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= 254, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 254, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 261, 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= 259, 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= 260, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 261, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 171 Run 290683, Event 7578749 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, 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= 1, OverTh=false -Channel=LUMI_03 , ADC= -2, 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= -2, 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= 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= 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=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 0, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 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= 255, 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= 258, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, 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= 259, 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= 255, 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= 256, 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= 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= 258, OverTh=false -Channel=TIME_35_02, ADC= 255, 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= 256, 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= 257, OverTh=false -Channel=TIME_11_05, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_06, ADC= 259, 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= 255, OverTh=false PrintHeader_7bb0e124 INFO # 172 Run 290683, Event 7578759 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 298, OverTh=true -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= 283, OverTh=true -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= 792, OverTh=true -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= -1, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 98, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 354, OverTh=true -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= 7, OverTh=false -Channel=LUMI_22 , ADC= 325, OverTh=true -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 1, 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= 258, 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= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 270, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 305, 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= 327, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 323, 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= 256, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 256, 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= 255, 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= 257, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 288, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 302, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 312, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 311, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 173 Run 290683, Event 7586234 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 5, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 10, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -14, 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= 4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 15, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -7, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 8, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 267, 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= 272, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 252, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 252, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 252, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 270, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 269, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 174 Run 290683, Event 7586818 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 283, OverTh=true -Channel=LUMI_24 , ADC= 204, OverTh=true -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= 6, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 9, 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= 0, 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= 33, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -9, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 411, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 418, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 410, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 414, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 404, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 411, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 390, OverTh=false -Channel=TIME_05_11, ADC= 263, OverTh=false -Channel=TIME_29_03, ADC= 405, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 325, OverTh=false -Channel=TIME_05_12, ADC= 300, OverTh=false -Channel=TIME_29_04, ADC= 339, OverTh=false -Channel=TIME_29_12, ADC= 297, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 376, OverTh=false -Channel=TIME_29_05, ADC= 248, OverTh=false -Channel=TIME_29_13, ADC= 390, OverTh=false -Channel=TIME_05_06, ADC= 230, OverTh=false -Channel=TIME_05_14, ADC= 426, OverTh=false -Channel=TIME_29_06, ADC= 224, OverTh=false -Channel=TIME_29_14, ADC= 439, OverTh=false -Channel=TIME_05_07, ADC= 232, OverTh=false -Channel=TIME_05_15, ADC= 426, OverTh=false -Channel=TIME_29_07, ADC= 228, OverTh=false -Channel=TIME_29_15, ADC= 437, OverTh=false -Channel=TIME_11_00, ADC= 251, 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= 253, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 249, 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= 252, 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= 252, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 250, OverTh=false -Channel=TIME_35_05, ADC= 257, 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= 256, OverTh=false -Channel=TIME_35_14, ADC= 269, OverTh=false -Channel=TIME_11_07, ADC= 261, OverTh=false -Channel=TIME_11_15, ADC= 252, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 263, OverTh=false PrintHeader_7bb0e124 INFO # 175 Run 290683, Event 7579051 -PlumeRawToDigits_89428f2d 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= 7, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= -2, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 739, OverTh=true -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -7, 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= -4, 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= -2, OverTh=false -Channel=LUMI_18 , ADC= 31, OverTh=false -Channel=LUMI_42 , ADC= 479, OverTh=true -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 9, OverTh=false -Channel=LUMI_20 , ADC= 4, 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= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 376, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 374, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 374, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 369, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 334, OverTh=false -Channel=TIME_05_12, ADC= 274, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 275, OverTh=false -Channel=TIME_05_13, ADC= 330, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 242, OverTh=false -Channel=TIME_05_14, ADC= 380, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 264, OverTh=false -Channel=TIME_05_07, ADC= 241, OverTh=false -Channel=TIME_05_15, ADC= 383, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 261, 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= 257, OverTh=false -Channel=TIME_11_10, ADC= 262, 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= 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 258, 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= 259, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 280, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 275, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 176 Run 290683, Event 7579438 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 81, OverTh=true -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 9, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 96, OverTh=true -Channel=LUMI_26 , ADC= 253, OverTh=true -Channel=LUMI_03 , ADC= 30, 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= -4, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 143, OverTh=true -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= 291, OverTh=true -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 10, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= -7, OverTh=false -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -13, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 81, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 250, OverTh=true -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= 302, OverTh=true -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 58, OverTh=true -Channel=LUMI_44 , ADC= -2, 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= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, 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= 259, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 265, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 292, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 318, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 318, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 261, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 252, OverTh=false -Channel=TIME_11_10, ADC= 263, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 257, 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= 265, 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= 268, 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= 273, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 277, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 177 Run 290683, Event 7579597 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 68, OverTh=true -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 11, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 8, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -9, OverTh=false -Channel=LUMI_12 , ADC= -4, 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= -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= 1, OverTh=false -Channel=LUMI_23 , ADC= 16, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 24, OverTh=false -Channel=LUMI_31 , ADC= 70, OverTh=true -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= -3, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -5, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 23, OverTh=false -Channel=LUMI_42 , ADC= -5, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 260, 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= 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= 255, 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= 253, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 252, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 253, OverTh=false -Channel=TIME_05_06, ADC= 258, 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= 254, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 263, OverTh=false -Channel=TIME_11_08, ADC= 304, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 304, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 266, OverTh=false -Channel=TIME_11_10, ADC= 302, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 264, OverTh=false -Channel=TIME_11_11, ADC= 300, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 278, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 260, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, 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= 256, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 178 Run 290683, Event 7579885 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 135, OverTh=true -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 165, OverTh=true -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 11, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 94, OverTh=true -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= -1, OverTh=false -Channel=LUMI_13 , ADC= -12, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 135, OverTh=true -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 115, OverTh=true -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= 445, OverTh=true -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 15, OverTh=false -Channel=LUMI_31 , ADC= 29, OverTh=false -Channel=LUMI_08 , ADC= 110, OverTh=true -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 255, OverTh=true -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 71, OverTh=true -Channel=LUMI_34 , ADC= 323, OverTh=true -Channel=LUMI_17 , ADC= 24, OverTh=false -Channel=LUMI_41 , ADC= 232, OverTh=true -Channel=LUMI_18 , ADC= 80, OverTh=true -Channel=LUMI_42 , ADC= 315, OverTh=true -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 23, OverTh=false -Channel=LUMI_20 , ADC= 219, OverTh=true -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 30, OverTh=false -Channel=LUMI_22 , ADC= 34, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 256, 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= 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= 253, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, 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= 256, OverTh=false -Channel=TIME_05_05, ADC= 261, 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= 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= 258, OverTh=false -Channel=TIME_05_15, ADC= 252, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 448, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 364, OverTh=false -Channel=TIME_35_08, ADC= 322, OverTh=false -Channel=TIME_11_01, ADC= 443, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 369, OverTh=false -Channel=TIME_35_09, ADC= 321, OverTh=false -Channel=TIME_11_02, ADC= 438, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 363, OverTh=false -Channel=TIME_35_10, ADC= 312, OverTh=false -Channel=TIME_11_03, ADC= 418, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 339, OverTh=false -Channel=TIME_35_11, ADC= 317, OverTh=false -Channel=TIME_11_04, ADC= 330, OverTh=false -Channel=TIME_11_12, ADC= 317, OverTh=false -Channel=TIME_35_04, ADC= 263, OverTh=false -Channel=TIME_35_12, ADC= 338, OverTh=false -Channel=TIME_11_05, ADC= 246, OverTh=false -Channel=TIME_11_13, ADC= 417, OverTh=false -Channel=TIME_35_05, ADC= 251, OverTh=false -Channel=TIME_35_13, ADC= 353, OverTh=false -Channel=TIME_11_06, ADC= 224, OverTh=false -Channel=TIME_11_14, ADC= 473, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 368, OverTh=false -Channel=TIME_11_07, ADC= 232, OverTh=false -Channel=TIME_11_15, ADC= 461, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 369, OverTh=false PrintHeader_7bb0e124 INFO # 179 Run 290683, Event 7584316 -PlumeRawToDigits_89428f2d 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= 0, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , 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= 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= -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= 3, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, 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= 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= 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= 257, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 255, 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= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 261, 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= 256, 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= 255, OverTh=false -Channel=TIME_35_09, ADC= 254, 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= 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= 259, 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= 257, 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= 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= 254, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 180 Run 290683, Event 7584435 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 14, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 13, 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= 11, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 173, OverTh=true -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= 6, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 21, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 7, OverTh=false -Channel=PIN_02 , ADC= -9, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 310, OverTh=true -Channel=LUMI_07 , ADC= 659, OverTh=true -Channel=LUMI_31 , ADC= -3, OverTh=false -Channel=LUMI_08 , ADC= -7, OverTh=false -Channel=LUMI_32 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_17 , ADC= 19, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 283, OverTh=true -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 232, OverTh=true -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 66, OverTh=true -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 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= 255, 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= 260, 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= 256, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 265, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 266, OverTh=false -Channel=TIME_05_15, ADC= 259, 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= 260, 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= 258, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 258, 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= 282, 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= 341, 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= 368, 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= 357, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 181 Run 290683, Event 7584621 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 18, OverTh=false -Channel=LUMI_24 , ADC= 37, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -9, OverTh=false -Channel=LUMI_26 , ADC= 4, 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= 1, 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= 3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 7, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 11, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 23, OverTh=false -Channel=LUMI_30 , ADC= 8, 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= -7, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -6, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, 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= -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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 261, 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= 258, 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= 261, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 262, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 257, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, 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= 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= 256, OverTh=false -Channel=TIME_11_13, ADC= 257, 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= 258, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 182 Run 290683, Event 7584655 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 203, OverTh=true -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= -2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= -8, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= 5, OverTh=false -Channel=LUMI_23 , ADC= 24, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 12, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -21, OverTh=false -Channel=LUMI_07 , ADC= 11, 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= -6, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 8, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -4, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= 3, 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= -2, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 246, OverTh=false -Channel=TIME_29_08, ADC= 371, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 250, OverTh=false -Channel=TIME_29_09, ADC= 370, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 251, OverTh=false -Channel=TIME_29_10, ADC= 368, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 251, OverTh=false -Channel=TIME_29_11, ADC= 362, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 324, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 265, 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= 236, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 234, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 252, 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= 253, OverTh=false -Channel=TIME_35_01, ADC= 254, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 256, 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= 255, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 266, 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= 275, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 266, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 280, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 283, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 183 Run 290683, Event 7585022 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -12, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -23, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= -9, OverTh=false -Channel=LUMI_27 , ADC= -6, OverTh=false -Channel=LUMI_04 , ADC= -4, 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= 4, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -27, OverTh=false -Channel=LUMI_39 , ADC= -9, 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= 15, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -5, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 3, 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= -2, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= -7, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 254, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 253, 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 255, 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= 253, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 251, 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= 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= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 249, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 246, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 249, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 252, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 253, 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= 269, 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= 277, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 278, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 281, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 184 Run 290683, Event 7585140 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 42, 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= 34, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 279, OverTh=true -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 14, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 19, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 136, OverTh=true -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 269, OverTh=true -Channel=LUMI_30 , ADC= -10, 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= -3, OverTh=false -Channel=LUMI_33 , ADC= 108, OverTh=true -Channel=LUMI_10 , ADC= 13, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 59, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 14, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 67, OverTh=true -Channel=LUMI_43 , ADC= -8, OverTh=false -Channel=LUMI_20 , ADC= 329, OverTh=true -Channel=LUMI_44 , ADC= 72, OverTh=true -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 312, OverTh=true -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 271, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 265, OverTh=false -Channel=TIME_05_01, ADC= 272, OverTh=false -Channel=TIME_05_09, ADC= 263, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 272, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 271, 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= 264, OverTh=false -Channel=TIME_05_12, ADC= 263, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 262, OverTh=false -Channel=TIME_05_13, ADC= 266, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 277, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 269, OverTh=false -Channel=TIME_29_07, ADC= 276, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 268, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_04, ADC= 261, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 260, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 271, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 282, OverTh=false -Channel=TIME_35_06, ADC= 286, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 277, OverTh=false -Channel=TIME_35_07, ADC= 291, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 185 Run 290683, Event 7585183 -PlumeRawToDigits_89428f2d 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= -5, OverTh=false -Channel=LUMI_02 , ADC= -6, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= -11, 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= -1, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= -11, 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= 3, OverTh=false -Channel=LUMI_47 , ADC= -10, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 347, OverTh=true -Channel=LUMI_30 , ADC= -9, 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= 4, 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= 3, OverTh=false -Channel=LUMI_41 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -6, 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= 8, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, 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= 261, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 286, 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= 296, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 299, 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= 259, 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= 258, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 259, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 186 Run 290683, Event 7585210 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -11, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 354, OverTh=true -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -7, OverTh=false -Channel=LUMI_03 , ADC= -3, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 16, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 59, OverTh=true -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= 1, OverTh=false -Channel=LUMI_16 , ADC= 9, OverTh=false -Channel=LUMI_40 , ADC= 6, OverTh=false -Channel=LUMI_23 , ADC= -8, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -9, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -11, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 16, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 13, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 16, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 80, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 28, OverTh=false -Channel=LUMI_43 , ADC= 26, OverTh=false -Channel=LUMI_20 , ADC= 146, OverTh=true -Channel=LUMI_44 , ADC= 15, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= 14, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 261, 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= 264, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 261, 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= 259, 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= 259, 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= 255, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 254, OverTh=false -Channel=TIME_05_15, ADC= 260, 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= 259, 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= 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= 257, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 252, 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= 254, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_14, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 187 Run 290683, Event 7585326 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 294, OverTh=true -Channel=LUMI_01 , ADC= 92, OverTh=true -Channel=LUMI_25 , ADC= -7, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 2, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -6, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -4, OverTh=false -Channel=LUMI_38 , ADC= -5, 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= -3, OverTh=false -Channel=LUMI_23 , ADC= 74, OverTh=true -Channel=LUMI_47 , ADC= 294, OverTh=true -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 15, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= -5, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 15, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 16, 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= 80, OverTh=true -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 296, OverTh=true -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 4, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 283, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 279, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 280, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 262, OverTh=false -Channel=TIME_29_03, ADC= 282, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 293, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 354, OverTh=false -Channel=TIME_05_13, ADC= 261, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 280, OverTh=false -Channel=TIME_05_06, ADC= 403, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 286, OverTh=false -Channel=TIME_05_07, ADC= 401, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 287, 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= 257, 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= 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= 258, OverTh=false -Channel=TIME_35_03, ADC= 266, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 315, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 351, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 262, OverTh=false -Channel=TIME_11_14, ADC= 261, OverTh=false -Channel=TIME_35_06, ADC= 377, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 268, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 376, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 188 Run 290683, Event 7585422 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= -5, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -4, 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= -3, 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= -4, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 232, OverTh=true -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -4, 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= -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= 1, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= 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=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 2, 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= 254, 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= 257, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, 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= 257, OverTh=false -Channel=TIME_05_05, ADC= 259, 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= 258, 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= 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= 255, 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= 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= 255, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 259, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 189 Run 290683, Event 7585797 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 30, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 121, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 8, OverTh=false -Channel=LUMI_36 , ADC= 184, OverTh=true -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 612, OverTh=true -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 10, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -18, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -19, OverTh=false -Channel=LUMI_08 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 13, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= -13, OverTh=false -Channel=LUMI_44 , ADC= 8, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 265, 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= 267, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 266, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 267, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 280, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 335, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 382, OverTh=false -Channel=TIME_05_14, ADC= 251, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 377, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 270, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 267, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 266, 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= 263, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 263, 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= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 271, 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= 269, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 190 Run 290683, Event 7587058 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= -12, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 124, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 14, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -15, OverTh=false -Channel=LUMI_39 , ADC= -12, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -10, OverTh=false -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -12, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 21, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 341, OverTh=true -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 8, OverTh=false -Channel=LUMI_17 , ADC= 33, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 45, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 268, OverTh=true -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= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 263, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 263, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 264, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 260, 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= 266, 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= 260, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 262, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 258, 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= 257, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 267, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 264, OverTh=false PrintHeader_7bb0e124 INFO # 191 Run 290683, Event 7587347 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 196, OverTh=true -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 35, OverTh=false -Channel=LUMI_25 , ADC= 128, OverTh=true -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 330, OverTh=true -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 463, OverTh=true -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 448, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 66, OverTh=true -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 772, OverTh=true -Channel=LUMI_15 , ADC= -8, OverTh=false -Channel=LUMI_39 , ADC= 8, OverTh=false -Channel=LUMI_16 , ADC= 18, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 181, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 406, OverTh=true -Channel=LUMI_30 , ADC= 188, OverTh=true -Channel=LUMI_07 , ADC= 121, OverTh=true -Channel=LUMI_31 , ADC= 47, OverTh=false -Channel=LUMI_08 , ADC= 6, OverTh=false -Channel=LUMI_32 , ADC= 12, OverTh=false -Channel=LUMI_09 , ADC= 551, OverTh=true -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 128, OverTh=true -Channel=LUMI_34 , ADC= 242, OverTh=true -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 153, OverTh=true -Channel=LUMI_18 , ADC= 256, OverTh=true -Channel=LUMI_42 , ADC= 425, OverTh=true -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 53, OverTh=true -Channel=LUMI_21 , ADC= 178, OverTh=true -Channel=LUMI_45 , ADC= 465, OverTh=true -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 40, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 361, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 416, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 360, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 413, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 357, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 412, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 351, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 409, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 319, OverTh=false -Channel=TIME_05_12, ADC= 276, OverTh=false -Channel=TIME_29_04, ADC= 359, OverTh=false -Channel=TIME_29_12, ADC= 286, OverTh=false -Channel=TIME_05_05, ADC= 262, OverTh=false -Channel=TIME_05_13, ADC= 327, OverTh=false -Channel=TIME_29_05, ADC= 270, OverTh=false -Channel=TIME_29_13, ADC= 370, OverTh=false -Channel=TIME_05_06, ADC= 242, OverTh=false -Channel=TIME_05_14, ADC= 373, OverTh=false -Channel=TIME_29_06, ADC= 230, OverTh=false -Channel=TIME_29_14, ADC= 430, OverTh=false -Channel=TIME_05_07, ADC= 242, OverTh=false -Channel=TIME_05_15, ADC= 370, OverTh=false -Channel=TIME_29_07, ADC= 232, OverTh=false -Channel=TIME_29_15, ADC= 431, OverTh=false -Channel=TIME_11_00, ADC= 372, OverTh=false -Channel=TIME_11_08, ADC= 270, OverTh=false -Channel=TIME_35_00, ADC= 246, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 373, OverTh=false -Channel=TIME_11_09, ADC= 267, OverTh=false -Channel=TIME_35_01, ADC= 249, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 370, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 248, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 356, OverTh=false -Channel=TIME_11_11, ADC= 265, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 294, OverTh=false -Channel=TIME_11_12, ADC= 307, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 373, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 273, OverTh=false -Channel=TIME_11_14, ADC= 395, OverTh=false -Channel=TIME_35_06, ADC= 271, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 385, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 192 Run 290683, Event 7587379 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -6, OverTh=false -Channel=LUMI_01 , ADC= 27, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= 6, 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= 9, OverTh=false -Channel=LUMI_13 , ADC= -16, 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= -7, OverTh=false -Channel=LUMI_39 , ADC= -6, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -16, OverTh=false -Channel=LUMI_23 , ADC= 80, OverTh=true -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 84, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 14, 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= -16, 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= -6, OverTh=false -Channel=LUMI_43 , ADC= -14, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 298, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 298, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 294, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 296, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 272, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 280, OverTh=false -Channel=TIME_29_12, ADC= 267, OverTh=false -Channel=TIME_05_05, ADC= 308, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 291, OverTh=false -Channel=TIME_05_06, ADC= 331, OverTh=false -Channel=TIME_05_14, ADC= 258, OverTh=false -Channel=TIME_29_06, ADC= 250, OverTh=false -Channel=TIME_29_14, ADC= 303, OverTh=false -Channel=TIME_05_07, ADC= 331, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 249, OverTh=false -Channel=TIME_29_15, ADC= 300, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 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= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 289, 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= 339, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 356, 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= 349, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 193 Run 290683, Event 7587407 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -5, 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= -2, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -5, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -7, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -11, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , 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= 2, OverTh=false -Channel=LUMI_09 , ADC= -4, 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= 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= 2, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 256, 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= 256, 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= 259, 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= 258, 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= 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= 259, 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= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 259, 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= 261, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 194 Run 290683, Event 7587431 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -1, 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= 0, 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= -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= -2, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_33 , ADC= 3, 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= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 258, OverTh=false -Channel=TIME_05_09, ADC= 254, 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= 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= 259, 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= 258, 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= 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 263, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 263, 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= 264, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, 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= 262, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 195 Run 290683, Event 7576026 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 270, OverTh=true -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 24, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 14, OverTh=false -Channel=LUMI_28 , ADC= 124, OverTh=true -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 28, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 11, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= -5, OverTh=false -Channel=LUMI_15 , ADC= 305, OverTh=true -Channel=LUMI_39 , ADC= 45, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 10, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= -14, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 63, OverTh=true -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 8, OverTh=false -Channel=LUMI_10 , ADC= 12, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 521, OverTh=true -Channel=LUMI_42 , ADC= 337, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 184, OverTh=true -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 630, OverTh=true -Channel=LUMI_45 , ADC= -7, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 263, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 262, 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= 261, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 269, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 267, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 255, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 257, 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= 255, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, 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= 255, 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= 256, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 254, 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= 255, 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 # 196 Run 290683, Event 7576329 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 49, OverTh=false -Channel=LUMI_24 , ADC= 68, OverTh=true -Channel=LUMI_01 , ADC= -21, OverTh=false -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= 670, OverTh=true -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 62, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 41, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 10, 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= 6, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 43, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 70, OverTh=true -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 0, 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= 89, OverTh=true -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= -3, 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= -1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 253, 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= 256, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 249, OverTh=false -Channel=TIME_11_08, ADC= 346, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 294, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 345, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 294, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 338, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 292, OverTh=false -Channel=TIME_11_03, ADC= 248, OverTh=false -Channel=TIME_11_11, ADC= 328, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 281, OverTh=false -Channel=TIME_11_04, ADC= 232, OverTh=false -Channel=TIME_11_12, ADC= 299, OverTh=false -Channel=TIME_35_04, ADC= 236, OverTh=false -Channel=TIME_35_12, ADC= 261, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 249, OverTh=false -Channel=TIME_11_06, ADC= 285, OverTh=false -Channel=TIME_11_14, ADC= 241, OverTh=false -Channel=TIME_35_06, ADC= 274, OverTh=false -Channel=TIME_35_14, ADC= 246, OverTh=false -Channel=TIME_11_07, ADC= 278, OverTh=false -Channel=TIME_11_15, ADC= 242, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 247, OverTh=false PrintHeader_7bb0e124 INFO # 197 Run 290683, Event 7576439 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 25, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= -8, OverTh=false -Channel=LUMI_02 , ADC= -6, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -9, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -9, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= -11, OverTh=false -Channel=LUMI_15 , ADC= 277, OverTh=true -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 116, OverTh=true -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 7, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -11, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= -4, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -7, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 16, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= -7, 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= -4, OverTh=false -Channel=LUMI_46 , ADC= 80, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 245, OverTh=false -Channel=TIME_05_08, ADC= 362, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 416, OverTh=false -Channel=TIME_05_01, ADC= 248, OverTh=false -Channel=TIME_05_09, ADC= 362, OverTh=false -Channel=TIME_29_01, ADC= 247, OverTh=false -Channel=TIME_29_09, ADC= 415, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 355, OverTh=false -Channel=TIME_29_02, ADC= 252, OverTh=false -Channel=TIME_29_10, ADC= 411, OverTh=false -Channel=TIME_05_03, ADC= 248, OverTh=false -Channel=TIME_05_11, ADC= 342, OverTh=false -Channel=TIME_29_03, ADC= 252, OverTh=false -Channel=TIME_29_11, ADC= 404, OverTh=false -Channel=TIME_05_04, ADC= 213, OverTh=false -Channel=TIME_05_12, ADC= 290, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 331, OverTh=false -Channel=TIME_05_05, ADC= 249, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 248, OverTh=false -Channel=TIME_05_06, ADC= 268, OverTh=false -Channel=TIME_05_14, ADC= 239, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 219, OverTh=false -Channel=TIME_05_07, ADC= 264, OverTh=false -Channel=TIME_05_15, ADC= 244, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 230, OverTh=false -Channel=TIME_11_00, ADC= 253, 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= 258, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, 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= 259, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 198 Run 290683, Event 7576776 -PlumeRawToDigits_89428f2d 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= 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= -2, OverTh=false -Channel=LUMI_04 , ADC= 0, 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= 2, 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= -5, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 6, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, 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= 259, 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= 254, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 258, 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= 255, 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= 259, 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= 257, 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= 254, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 254, 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= 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= 254, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 253, 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= 258, 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= 259, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 253, 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 # 199 Run 290683, Event 7577028 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 117, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 13, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 161, OverTh=true -Channel=LUMI_04 , ADC= 8, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 465, OverTh=true -Channel=LUMI_13 , ADC= 207, OverTh=true -Channel=LUMI_37 , ADC= 110, OverTh=true -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= 228, OverTh=true -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= 413, OverTh=true -Channel=LUMI_47 , ADC= 15, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -12, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 175, OverTh=true -Channel=LUMI_08 , ADC= 6, OverTh=false -Channel=LUMI_32 , ADC= 253, OverTh=true -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= 284, OverTh=true -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 136, OverTh=true -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 85, OverTh=true -Channel=LUMI_42 , ADC= 304, OverTh=true -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 13, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 301, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 251, OverTh=false -Channel=TIME_05_01, ADC= 300, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 301, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 292, 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= 274, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 252, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 284, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 250, OverTh=false -Channel=TIME_05_06, ADC= 253, OverTh=false -Channel=TIME_05_14, ADC= 311, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 308, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 250, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 261, OverTh=false -Channel=TIME_11_10, ADC= 253, 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= 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= 258, 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= 258, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 272, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 274, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 200 Run 290683, Event 7577151 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 346, OverTh=true -Channel=LUMI_24 , ADC= 242, OverTh=true -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 26, 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= 487, OverTh=true -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 318, OverTh=true -Channel=LUMI_14 , ADC= 473, OverTh=true -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 239, OverTh=true -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 328, OverTh=true -Channel=LUMI_40 , ADC= 49, OverTh=false -Channel=LUMI_23 , ADC= 33, OverTh=false -Channel=LUMI_47 , ADC= 405, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 119, OverTh=true -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 12, OverTh=false -Channel=LUMI_32 , ADC= -4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -4, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 82, OverTh=true -Channel=LUMI_42 , ADC= 119, OverTh=true -Channel=LUMI_19 , ADC= -7, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 308, OverTh=true -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 297, OverTh=false -Channel=TIME_29_08, ADC= 350, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 294, OverTh=false -Channel=TIME_29_09, ADC= 348, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 297, OverTh=false -Channel=TIME_29_10, ADC= 348, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 294, OverTh=false -Channel=TIME_29_11, ADC= 347, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 326, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 247, OverTh=false -Channel=TIME_29_13, ADC= 299, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 236, OverTh=false -Channel=TIME_29_14, ADC= 292, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 236, OverTh=false -Channel=TIME_29_15, ADC= 291, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 291, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 290, 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= 290, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 288, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 244, OverTh=false -Channel=TIME_11_12, ADC= 265, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 241, OverTh=false -Channel=TIME_11_13, ADC= 268, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 252, OverTh=false -Channel=TIME_11_14, ADC= 263, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false -PlumeDigitMonitor_9abf3184 INFO Booked 719 Histogram(s) : 1D=571 2D=23 3D=0 1DProf=125 2DProf=0 3DProf=0 -PlumeRawToDigits_89428f2d INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +PlumeDigitMonitor_b0f85c8c INFO Booked 604 Histogram(s) : 1D=471 2D=21 3D=0 1DProf=112 2DProf=0 3DProf=0 +PlumeLEDMonitor_34b7705b INFO Booked 121 Histogram(s) : 1D=121 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +PlumeRawToDigits_e2724fbc INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 ApplicationMgr INFO Application Manager Stopped successfully -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} +PlumeTuple_4a35a9a2 SUCCESS Booked 1 N-Tuples and 0 Event Tag Collections +PlumeTuple_4a35a9a2 SUCCESS List of booked N-Tuples in directory "FILE1/PlumeTuple_4a35a9a2" +PlumeTuple_4a35a9a2 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_9abf3184 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| - PlumeTuple/PlumeTuple_d36bf254 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeDigitMonitor/PlumeDigitMonitor_b0f85c8c #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeTuple/PlumeTuple_4a35a9a2 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeLEDMonitor/PlumeLEDMonitor_34b7705b #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| HLTControlFlowMgr INFO Histograms converted successfully according to request. NTupleSvc INFO NTuples saved successfully ApplicationMgr INFO Application Manager Finalized successfully @@ -24445,294 +243,194 @@ MDFIOAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks in raw event" | 200 | 126270 | 631.35 | 0.47697 | 631.00 | 632.00 | | "event size statistics (KBytes)" | 306 | 9508 | 31.072 | 6.6638 | 23.000 | 68.000 | -PlumeDigitMonitor_9abf3184 INFO Number of counters : 1 +PlumeDigitMonitor_b0f85c8c INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Number of ADC over threshold for LUMI" | 200 | 792 | 3.9600 | 4.2660 | 0.0000 | 22.000 | PrintHeader_7bb0e124 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "EventCount" | 200 | -PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDigitMonitor_9abf3184" : 571 +PlumeDigitMonitor_b0f85c8c INFO 1D histograms in directory "PlumeDigitMonitor_b0f85c8c" : 471 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | adc_LUMI_00_Beam1 | "ADC for LUMI_00/Beam1" | 15 | 1.1667 | 2.5734 | -0.45032 | -0.64504 | | adc_LUMI_00_Beam2 | "ADC for LUMI_00/Beam2" | 11 | -0.13636 | 2.8690 | 1.4809 | 1.8468 | | adc_LUMI_00_BeamCrossing | "ADC for LUMI_00/BeamCrossing" | 170 | 56.959 | 141.73 | 3.6412 | 15.412 | | adc_LUMI_00_NoBeam | "ADC for LUMI_00/NoBeam" | 3 | 1.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_00_NoBeam_calib_signals | "ADC for LUMI_00/NoBeam/calib signals" | 1 | 694.5 | 0.0000 | 0 | 0 | | adc_LUMI_01_Beam1 | "ADC for LUMI_01/Beam1" | 15 | 1.8333 | 4.2999 | -0.12318 | 1.1403 | | adc_LUMI_01_Beam2 | "ADC for LUMI_01/Beam2" | 11 | -1.5 | 2.4495 | -0.33402 | -1.0455 | | adc_LUMI_01_BeamCrossing | "ADC for LUMI_01/BeamCrossing" | 170 | 37.771 | 99.381 | 3.0913 | 9.0632 | | adc_LUMI_01_NoBeam | "ADC for LUMI_01/NoBeam" | 3 | 1.1667 | 2.4944 | 0.3818 | -1.5 | - | adc_LUMI_01_NoBeam_calib_signals | "ADC for LUMI_01/NoBeam/calib signals" | 1 | 628.5 | 0.0000 | 0 | 0 | | adc_LUMI_02_Beam1 | "ADC for LUMI_02/Beam1" | 15 | 1.8333 | 4.9351 | 1.6701 | 1.4528 | | adc_LUMI_02_Beam2 | "ADC for LUMI_02/Beam2" | 11 | -0.86364 | 1.8227 | 0.36625 | -1.0538 | | adc_LUMI_02_BeamCrossing | "ADC for LUMI_02/BeamCrossing" | 170 | 45.859 | 132.90 | 3.5899 | 13.23 | | adc_LUMI_02_NoBeam | "ADC for LUMI_02/NoBeam" | 3 | -0.83333 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_02_NoBeam_calib_signals | "ADC for LUMI_02/NoBeam/calib signals" | 1 | 760.5 | 0.0000 | 0 | 0 | | adc_LUMI_03_Beam1 | "ADC for LUMI_03/Beam1" | 15 | 0.9 | 2.1541 | -0.043222 | 0.16825 | | adc_LUMI_03_Beam2 | "ADC for LUMI_03/Beam2" | 11 | -0.68182 | 2.4427 | -0.57463 | -0.86042 | | adc_LUMI_03_BeamCrossing | "ADC for LUMI_03/BeamCrossing" | 170 | 14.694 | 43.678 | 4.5186 | 22.414 | | adc_LUMI_03_NoBeam | "ADC for LUMI_03/NoBeam" | 3 | -1.1667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_03_NoBeam_calib_signals | "ADC for LUMI_03/NoBeam/calib signals" | 1 | 709.5 | 0.0000 | 0 | 0 | | adc_LUMI_04_Beam1 | "ADC for LUMI_04/Beam1" | 15 | 1.3 | 4.3848 | 1.8237 | 2.787 | | adc_LUMI_04_Beam2 | "ADC for LUMI_04/Beam2" | 11 | 8.0455 | 26.424 | 2.8326 | 6.0553 | | adc_LUMI_04_BeamCrossing | "ADC for LUMI_04/BeamCrossing" | 170 | 13.365 | 51.878 | 6.3136 | 43.95 | | adc_LUMI_04_NoBeam | "ADC for LUMI_04/NoBeam" | 3 | 2.8333 | 2.6247 | 0.6309 | -1.5 | - | adc_LUMI_04_NoBeam_calib_signals | "ADC for LUMI_04/NoBeam/calib signals" | 1 | 701.5 | 0.0000 | 0 | 0 | | adc_LUMI_06_Beam1 | "ADC for LUMI_06/Beam1" | 15 | 2.1667 | 2.4676 | 1.4771 | 2.7106 | | adc_LUMI_06_Beam2 | "ADC for LUMI_06/Beam2" | 11 | 37.318 | 110.22 | 2.835 | 6.0622 | | adc_LUMI_06_BeamCrossing | "ADC for LUMI_06/BeamCrossing" | 170 | 58.2 | 133.25 | 2.6129 | 6.4811 | | adc_LUMI_06_NoBeam | "ADC for LUMI_06/NoBeam" | 3 | 4.1667 | 3.6818 | -0.13506 | -1.5 | - | adc_LUMI_06_NoBeam_calib_signals | "ADC for LUMI_06/NoBeam/calib signals" | 1 | 676.5 | 0.0000 | 0 | 0 | | adc_LUMI_07_Beam1 | "ADC for LUMI_07/Beam1" | 15 | 3.1667 | 3.8413 | 0.60796 | -0.64217 | | adc_LUMI_07_Beam2 | "ADC for LUMI_07/Beam2" | 11 | 5.5909 | 15.156 | 2.6365 | 5.3691 | | adc_LUMI_07_BeamCrossing | "ADC for LUMI_07/BeamCrossing" | 170 | 35.282 | 90.157 | 3.7114 | 15.947 | | adc_LUMI_07_NoBeam | "ADC for LUMI_07/NoBeam" | 3 | 0.16667 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_07_NoBeam_calib_signals | "ADC for LUMI_07/NoBeam/calib signals" | 1 | 781.5 | 0.0000 | 0 | 0 | | adc_LUMI_08_Beam1 | "ADC for LUMI_08/Beam1" | 15 | 0.43333 | 2.0483 | 0.18301 | -0.47155 | | adc_LUMI_08_Beam2 | "ADC for LUMI_08/Beam2" | 11 | -0.77273 | 1.5428 | 0.31304 | -0.030527 | | adc_LUMI_08_BeamCrossing | "ADC for LUMI_08/BeamCrossing" | 170 | 41.276 | 112.92 | 3.6225 | 14.908 | | adc_LUMI_08_NoBeam | "ADC for LUMI_08/NoBeam" | 3 | 0.83333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_08_NoBeam_calib_signals | "ADC for LUMI_08/NoBeam/calib signals" | 1 | 711.5 | 0.0000 | 0 | 0 | | adc_LUMI_09_Beam1 | "ADC for LUMI_09/Beam1" | 15 | 0.43333 | 2.0806 | -0.35536 | 0.33868 | | adc_LUMI_09_Beam2 | "ADC for LUMI_09/Beam2" | 11 | 34.682 | 112.87 | 2.843 | 6.0896 | | adc_LUMI_09_BeamCrossing | "ADC for LUMI_09/BeamCrossing" | 170 | 37.4 | 105.98 | 3.4152 | 11.443 | | adc_LUMI_09_NoBeam | "ADC for LUMI_09/NoBeam" | 3 | 2.1667 | 0.94281 | 0.70711 | -1.5 | - | adc_LUMI_09_NoBeam_calib_signals | "ADC for LUMI_09/NoBeam/calib signals" | 1 | 756.5 | 0.0000 | 0 | 0 | | adc_LUMI_10_Beam1 | "ADC for LUMI_10/Beam1" | 15 | 3.3 | 2.4819 | 0.51698 | -0.74827 | | adc_LUMI_10_Beam2 | "ADC for LUMI_10/Beam2" | 11 | -0.22727 | 2.3390 | 0.26666 | -0.17812 | | adc_LUMI_10_BeamCrossing | "ADC for LUMI_10/BeamCrossing" | 170 | 18.765 | 69.795 | 4.7644 | 23.309 | | adc_LUMI_10_NoBeam | "ADC for LUMI_10/NoBeam" | 3 | 0.83333 | 3.3993 | 0.528 | -1.5 | - | adc_LUMI_10_NoBeam_calib_signals | "ADC for LUMI_10/NoBeam/calib signals" | 1 | 853.5 | 0.0000 | 0 | 0 | | adc_LUMI_12_Beam1 | "ADC for LUMI_12/Beam1" | 15 | 3.5 | 4.5314 | 1.1478 | 0.84171 | | adc_LUMI_12_Beam2 | "ADC for LUMI_12/Beam2" | 11 | 10.773 | 35.448 | 2.8119 | 5.9846 | | adc_LUMI_12_BeamCrossing | "ADC for LUMI_12/BeamCrossing" | 170 | 51.541 | 144.16 | 4.1625 | 20.921 | | adc_LUMI_12_NoBeam | "ADC for LUMI_12/NoBeam" | 3 | 0.83333 | 2.0548 | 0.23906 | -1.5 | - | adc_LUMI_12_NoBeam_calib_signals | "ADC for LUMI_12/NoBeam/calib signals" | 1 | 716.5 | 0.0000 | 0 | 0 | | adc_LUMI_13_Beam1 | "ADC for LUMI_13/Beam1" | 15 | 1.7 | 2.4000 | 0.053241 | -0.76273 | | adc_LUMI_13_Beam2 | "ADC for LUMI_13/Beam2" | 11 | -1.1364 | 2.3845 | 0.129 | -1.3517 | | adc_LUMI_13_BeamCrossing | "ADC for LUMI_13/BeamCrossing" | 170 | 42.476 | 125.36 | 4.2171 | 19.794 | | adc_LUMI_13_NoBeam | "ADC for LUMI_13/NoBeam" | 3 | 1.8333 | 2.6247 | 0.6309 | -1.5 | - | adc_LUMI_13_NoBeam_calib_signals | "ADC for LUMI_13/NoBeam/calib signals" | 1 | 766.5 | 0.0000 | 0 | 0 | | adc_LUMI_14_Beam1 | "ADC for LUMI_14/Beam1" | 15 | 2.1667 | 1.2472 | -0.17563 | -1.6102 | | adc_LUMI_14_Beam2 | "ADC for LUMI_14/Beam2" | 11 | -1.0455 | 1.6160 | 0.27558 | -1.1385 | | adc_LUMI_14_BeamCrossing | "ADC for LUMI_14/BeamCrossing" | 170 | 33.682 | 94.370 | 3.1071 | 8.8763 | | adc_LUMI_14_NoBeam | "ADC for LUMI_14/NoBeam" | 3 | 2.1667 | 1.2472 | -0.3818 | -1.5 | - | adc_LUMI_14_NoBeam_calib_signals | "ADC for LUMI_14/NoBeam/calib signals" | 1 | 661.5 | 0.0000 | 0 | 0 | | adc_LUMI_15_Beam1 | "ADC for LUMI_15/Beam1" | 15 | -0.43333 | 2.5682 | -0.23926 | -1.3011 | | adc_LUMI_15_Beam2 | "ADC for LUMI_15/Beam2" | 11 | 0.68182 | 2.7574 | 0.35693 | -1.1955 | | adc_LUMI_15_BeamCrossing | "ADC for LUMI_15/BeamCrossing" | 170 | 22.941 | 72.562 | 3.3934 | 10.974 | | adc_LUMI_15_NoBeam | "ADC for LUMI_15/NoBeam" | 3 | -0.5 | 1.4142 | -0.70711 | -1.5 | - | adc_LUMI_15_NoBeam_calib_signals | "ADC for LUMI_15/NoBeam/calib signals" | 1 | 843.5 | 0.0000 | 0 | 0 | | adc_LUMI_16_Beam1 | "ADC for LUMI_16/Beam1" | 15 | 2.5 | 4.9126 | 1.7781 | 3.1195 | | adc_LUMI_16_Beam2 | "ADC for LUMI_16/Beam2" | 11 | 1.2273 | 1.9113 | -0.46747 | -0.73918 | | adc_LUMI_16_BeamCrossing | "ADC for LUMI_16/BeamCrossing" | 170 | 19.806 | 63.059 | 4.4802 | 21.661 | | adc_LUMI_16_NoBeam | "ADC for LUMI_16/NoBeam" | 3 | 0.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_16_NoBeam_calib_signals | "ADC for LUMI_16/NoBeam/calib signals" | 1 | 637.5 | 0.0000 | 0 | 0 | | adc_LUMI_17_Beam1 | "ADC for LUMI_17/Beam1" | 15 | 1.9 | 2.8937 | 0.85383 | 0.29995 | | adc_LUMI_17_Beam2 | "ADC for LUMI_17/Beam2" | 11 | -1.1364 | 1.5535 | -0.90907 | -0.17025 | | adc_LUMI_17_BeamCrossing | "ADC for LUMI_17/BeamCrossing" | 170 | 35.741 | 102.21 | 4.1765 | 19.303 | | adc_LUMI_17_NoBeam | "ADC for LUMI_17/NoBeam" | 3 | 1.5 | 1.4142 | 0.70711 | -1.5 | - | adc_LUMI_17_NoBeam_calib_signals | "ADC for LUMI_17/NoBeam/calib signals" | 1 | 702.5 | 0.0000 | 0 | 0 | | adc_LUMI_18_Beam1 | "ADC for LUMI_18/Beam1" | 15 | 2.7 | 3.7452 | 0.62772 | 0.16913 | | adc_LUMI_18_Beam2 | "ADC for LUMI_18/Beam2" | 11 | 1.4091 | 3.0587 | -0.86708 | -0.0099795 | | adc_LUMI_18_BeamCrossing | "ADC for LUMI_18/BeamCrossing" | 170 | 47.482 | 119.32 | 3.4032 | 12.455 | | adc_LUMI_18_NoBeam | "ADC for LUMI_18/NoBeam" | 3 | 0.83333 | 2.0548 | 0.23906 | -1.5 | - | adc_LUMI_18_NoBeam_calib_signals | "ADC for LUMI_18/NoBeam/calib signals" | 1 | 804.5 | 0.0000 | 0 | 0 | | adc_LUMI_19_Beam1 | "ADC for LUMI_19/Beam1" | 15 | 3.9 | 4.1601 | 0.59402 | -0.11673 | | adc_LUMI_19_Beam2 | "ADC for LUMI_19/Beam2" | 11 | 0.22727 | 3.3054 | 0.0895 | -1.4935 | | adc_LUMI_19_BeamCrossing | "ADC for LUMI_19/BeamCrossing" | 170 | 24.224 | 68.889 | 3.4356 | 11.147 | | adc_LUMI_19_NoBeam | "ADC for LUMI_19/NoBeam" | 3 | 5.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_19_NoBeam_calib_signals | "ADC for LUMI_19/NoBeam/calib signals" | 1 | 726.5 | 0.0000 | 0 | 0 | | adc_LUMI_20_Beam1 | "ADC for LUMI_20/Beam1" | 15 | 2.7 | 3.3705 | 0.65231 | -0.3786 | | adc_LUMI_20_Beam2 | "ADC for LUMI_20/Beam2" | 11 | 0.40909 | 1.5048 | 0.63499 | -0.51055 | | adc_LUMI_20_BeamCrossing | "ADC for LUMI_20/BeamCrossing" | 170 | 37.512 | 108.23 | 4.3595 | 22.619 | | adc_LUMI_20_NoBeam | "ADC for LUMI_20/NoBeam" | 3 | 2.1667 | 2.0548 | -0.23906 | -1.5 | - | adc_LUMI_20_NoBeam_calib_signals | "ADC for LUMI_20/NoBeam/calib signals" | 1 | 643.5 | 0.0000 | 0 | 0 | | adc_LUMI_21_Beam1 | "ADC for LUMI_21/Beam1" | 15 | 1.9 | 2.9620 | 1.0239 | 0.77689 | | adc_LUMI_21_Beam2 | "ADC for LUMI_21/Beam2" | 11 | -0.68182 | 1.9455 | -0.11386 | -0.6204 | | adc_LUMI_21_BeamCrossing | "ADC for LUMI_21/BeamCrossing" | 170 | 23.882 | 84.644 | 4.5703 | 23.081 | | adc_LUMI_21_NoBeam | "ADC for LUMI_21/NoBeam" | 3 | 0.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_21_NoBeam_calib_signals | "ADC for LUMI_21/NoBeam/calib signals" | 1 | 717.5 | 0.0000 | 0 | 0 | | adc_LUMI_22_Beam1 | "ADC for LUMI_22/Beam1" | 15 | -0.43333 | 2.3514 | 0.073889 | -1.0788 | | adc_LUMI_22_Beam2 | "ADC for LUMI_22/Beam2" | 11 | 2.1364 | 2.3845 | 0.75606 | -0.13692 | | adc_LUMI_22_BeamCrossing | "ADC for LUMI_22/BeamCrossing" | 170 | 22.047 | 82.936 | 4.2178 | 19.319 | | adc_LUMI_22_NoBeam | "ADC for LUMI_22/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_22_NoBeam_calib_signals | "ADC for LUMI_22/NoBeam/calib signals" | 1 | 820.5 | 0.0000 | 0 | 0 | | adc_LUMI_23_Beam1 | "ADC for LUMI_23/Beam1" | 15 | 1.0333 | 2.4998 | -0.0010622 | -0.85337 | | adc_LUMI_23_Beam2 | "ADC for LUMI_23/Beam2" | 11 | -1.6818 | 2.1666 | -0.73089 | -0.30075 | | adc_LUMI_23_BeamCrossing | "ADC for LUMI_23/BeamCrossing" | 170 | 41.153 | 115.72 | 3.9306 | 18.043 | | adc_LUMI_23_NoBeam | "ADC for LUMI_23/NoBeam" | 3 | -0.16667 | 1.6997 | -0.528 | -1.5 | - | adc_LUMI_23_NoBeam_calib_signals | "ADC for LUMI_23/NoBeam/calib signals" | 1 | 743.5 | 0.0000 | 0 | 0 | | adc_LUMI_24_Beam1 | "ADC for LUMI_24/Beam1" | 15 | 2.3 | 2.8798 | 0.016078 | -0.8911 | | adc_LUMI_24_Beam2 | "ADC for LUMI_24/Beam2" | 11 | 1.0455 | 3.7017 | -0.015109 | 0.16575 | | adc_LUMI_24_BeamCrossing | "ADC for LUMI_24/BeamCrossing" | 170 | 46.712 | 118.02 | 3.2445 | 10.606 | | adc_LUMI_24_NoBeam | "ADC for LUMI_24/NoBeam" | 3 | 2.1667 | 1.6997 | 0.528 | -1.5 | - | adc_LUMI_24_NoBeam_calib_signals | "ADC for LUMI_24/NoBeam/calib signals" | 1 | 655.5 | 0.0000 | 0 | 0 | | adc_LUMI_25_Beam1 | "ADC for LUMI_25/Beam1" | 15 | 1.0333 | 3.7214 | 1.0366 | 2.4541 | | adc_LUMI_25_Beam2 | "ADC for LUMI_25/Beam2" | 11 | 9.1364 | 24.945 | 2.7795 | 5.87 | | adc_LUMI_25_BeamCrossing | "ADC for LUMI_25/BeamCrossing" | 170 | 26.935 | 95.324 | 5.1029 | 30.275 | | adc_LUMI_25_NoBeam | "ADC for LUMI_25/NoBeam" | 3 | 1.8333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_25_NoBeam_calib_signals | "ADC for LUMI_25/NoBeam/calib signals" | 1 | 703.5 | 0.0000 | 0 | 0 | | adc_LUMI_26_Beam1 | "ADC for LUMI_26/Beam1" | 15 | 2.7 | 4.0365 | 2.4939 | 6.2801 | | adc_LUMI_26_Beam2 | "ADC for LUMI_26/Beam2" | 11 | 1.7727 | 1.5428 | -0.015959 | -1.0109 | | adc_LUMI_26_BeamCrossing | "ADC for LUMI_26/BeamCrossing" | 170 | 25.588 | 72.308 | 4.1331 | 19.767 | | adc_LUMI_26_NoBeam | "ADC for LUMI_26/NoBeam" | 3 | 1.5 | 0.0000 | 0 | 0 | - | adc_LUMI_26_NoBeam_calib_signals | "ADC for LUMI_26/NoBeam/calib signals" | 1 | 623.5 | 0.0000 | 0 | 0 | | adc_LUMI_27_Beam1 | "ADC for LUMI_27/Beam1" | 15 | 1.6333 | 2.6043 | -0.46323 | -0.82515 | | adc_LUMI_27_Beam2 | "ADC for LUMI_27/Beam2" | 11 | -0.22727 | 3.0179 | 0.41282 | -1.1411 | | adc_LUMI_27_BeamCrossing | "ADC for LUMI_27/BeamCrossing" | 170 | 17.129 | 67.633 | 4.8976 | 24.599 | | adc_LUMI_27_NoBeam | "ADC for LUMI_27/NoBeam" | 3 | 0.83333 | 0.94281 | -0.70711 | -1.5 | - | adc_LUMI_27_NoBeam_calib_signals | "ADC for LUMI_27/NoBeam/calib signals" | 1 | 830.5 | 0.0000 | 0 | 0 | | adc_LUMI_28_Beam1 | "ADC for LUMI_28/Beam1" | 15 | 1.4333 | 2.1124 | 1.4032 | 2.0159 | | adc_LUMI_28_Beam2 | "ADC for LUMI_28/Beam2" | 11 | 1.1364 | 2.1856 | -1.2552 | 1.4241 | | adc_LUMI_28_BeamCrossing | "ADC for LUMI_28/BeamCrossing" | 170 | 6.5824 | 30.470 | 9.0592 | 92.197 | | adc_LUMI_28_NoBeam | "ADC for LUMI_28/NoBeam" | 3 | -0.16667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_28_NoBeam_calib_signals | "ADC for LUMI_28/NoBeam/calib signals" | 1 | 757.5 | 0.0000 | 0 | 0 | | adc_LUMI_30_Beam1 | "ADC for LUMI_30/Beam1" | 15 | 1.6333 | 4.2405 | 0.14869 | 0.13345 | | adc_LUMI_30_Beam2 | "ADC for LUMI_30/Beam2" | 11 | 1.2273 | 4.2446 | 0.68874 | -0.19748 | | adc_LUMI_30_BeamCrossing | "ADC for LUMI_30/BeamCrossing" | 170 | 36.341 | 104.20 | 3.9186 | 17.292 | | adc_LUMI_30_NoBeam | "ADC for LUMI_30/NoBeam" | 3 | 0.83333 | 1.8856 | 0.70711 | -1.5 | - | adc_LUMI_30_NoBeam_calib_signals | "ADC for LUMI_30/NoBeam/calib signals" | 1 | 694.5 | 0.0000 | 0 | 0 | | adc_LUMI_31_Beam1 | "ADC for LUMI_31/Beam1" | 15 | 3.8333 | 7.6999 | -0.16515 | 1.6463 | | adc_LUMI_31_Beam2 | "ADC for LUMI_31/Beam2" | 11 | -0.31818 | 1.9917 | -0.87293 | -0.18948 | | adc_LUMI_31_BeamCrossing | "ADC for LUMI_31/BeamCrossing" | 170 | 29.806 | 88.570 | 3.5815 | 12.339 | | adc_LUMI_31_NoBeam | "ADC for LUMI_31/NoBeam" | 3 | 3.1667 | 2.3570 | 0.70711 | -1.5 | - | adc_LUMI_31_NoBeam_calib_signals | "ADC for LUMI_31/NoBeam/calib signals" | 1 | 784.5 | 0.0000 | 0 | 0 | | adc_LUMI_32_Beam1 | "ADC for LUMI_32/Beam1" | 15 | 0.23333 | 1.9137 | 0.72514 | -0.048391 | | adc_LUMI_32_Beam2 | "ADC for LUMI_32/Beam2" | 11 | 0.95455 | 2.0165 | 0.76477 | -0.10956 | | adc_LUMI_32_BeamCrossing | "ADC for LUMI_32/BeamCrossing" | 170 | 16.706 | 89.402 | 9.0461 | 91.897 | | adc_LUMI_32_NoBeam | "ADC for LUMI_32/NoBeam" | 3 | 1.8333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_32_NoBeam_calib_signals | "ADC for LUMI_32/NoBeam/calib signals" | 1 | 692.5 | 0.0000 | 0 | 0 | | adc_LUMI_33_Beam1 | "ADC for LUMI_33/Beam1" | 15 | 0.83333 | 2.4676 | 0.20016 | -0.84978 | | adc_LUMI_33_Beam2 | "ADC for LUMI_33/Beam2" | 11 | 1.3182 | 2.6222 | -0.95131 | -0.05474 | | adc_LUMI_33_BeamCrossing | "ADC for LUMI_33/BeamCrossing" | 170 | 12.682 | 47.349 | 5.3071 | 31.241 | | adc_LUMI_33_NoBeam | "ADC for LUMI_33/NoBeam" | 3 | -0.83333 | 1.2472 | -0.3818 | -1.5 | - | adc_LUMI_33_NoBeam_calib_signals | "ADC for LUMI_33/NoBeam/calib signals" | 1 | 794.5 | 0.0000 | 0 | 0 | | adc_LUMI_34_Beam1 | "ADC for LUMI_34/Beam1" | 15 | 1.8333 | 2.4404 | 0.078488 | -0.70606 | | adc_LUMI_34_Beam2 | "ADC for LUMI_34/Beam2" | 11 | 27.227 | 84.861 | 2.8428 | 6.0891 | | adc_LUMI_34_BeamCrossing | "ADC for LUMI_34/BeamCrossing" | 170 | 19.959 | 71.042 | 3.999 | 14.826 | | adc_LUMI_34_NoBeam | "ADC for LUMI_34/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_34_NoBeam_calib_signals | "ADC for LUMI_34/NoBeam/calib signals" | 1 | 715.5 | 0.0000 | 0 | 0 | | adc_LUMI_36_Beam1 | "ADC for LUMI_36/Beam1" | 15 | 1.3 | 2.3721 | -0.51068 | -0.73647 | | adc_LUMI_36_Beam2 | "ADC for LUMI_36/Beam2" | 11 | -0.40909 | 2.0651 | -0.12183 | -1.1956 | | adc_LUMI_36_BeamCrossing | "ADC for LUMI_36/BeamCrossing" | 170 | 27.241 | 94.976 | 5.447 | 33.082 | | adc_LUMI_36_NoBeam | "ADC for LUMI_36/NoBeam" | 3 | 0.16667 | 0.94281 | 0.70711 | -1.5 | - | adc_LUMI_36_NoBeam_calib_signals | "ADC for LUMI_36/NoBeam/calib signals" | 1 | 732.5 | 0.0000 | 0 | 0 | | adc_LUMI_37_Beam1 | "ADC for LUMI_37/Beam1" | 15 | 1.3667 | 2.6043 | 0.48588 | -0.8379 | | adc_LUMI_37_Beam2 | "ADC for LUMI_37/Beam2" | 11 | -1.2273 | 2.2194 | -0.44535 | -0.50756 | | adc_LUMI_37_BeamCrossing | "ADC for LUMI_37/BeamCrossing" | 170 | 27.088 | 89.324 | 4.0801 | 17.34 | | adc_LUMI_37_NoBeam | "ADC for LUMI_37/NoBeam" | 3 | 1.5 | 3.7417 | 0.3818 | -1.5 | - | adc_LUMI_37_NoBeam_calib_signals | "ADC for LUMI_37/NoBeam/calib signals" | 1 | 818.5 | 0.0000 | 0 | 0 | | adc_LUMI_38_Beam1 | "ADC for LUMI_38/Beam1" | 15 | 1.1 | 2.2450 | 1.0705 | -0.019274 | | adc_LUMI_38_Beam2 | "ADC for LUMI_38/Beam2" | 11 | 1.0455 | 2.8401 | -0.083237 | -1.2529 | | adc_LUMI_38_BeamCrossing | "ADC for LUMI_38/BeamCrossing" | 170 | 21.953 | 86.052 | 5.6367 | 37.44 | | adc_LUMI_38_NoBeam | "ADC for LUMI_38/NoBeam" | 3 | 0.83333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_38_NoBeam_calib_signals | "ADC for LUMI_38/NoBeam/calib signals" | 1 | 711.5 | 0.0000 | 0 | 0 | | adc_LUMI_39_Beam1 | "ADC for LUMI_39/Beam1" | 15 | 1.1667 | 1.8135 | 1.3736 | 2.4839 | | adc_LUMI_39_Beam2 | "ADC for LUMI_39/Beam2" | 11 | 1.1364 | 2.9317 | 0.25135 | 0.38427 | | adc_LUMI_39_BeamCrossing | "ADC for LUMI_39/BeamCrossing" | 170 | 14.824 | 56.937 | 4.5722 | 21.025 | | adc_LUMI_39_NoBeam | "ADC for LUMI_39/NoBeam" | 3 | -0.16667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_39_NoBeam_calib_signals | "ADC for LUMI_39/NoBeam/calib signals" | 1 | 805.5 | 0.0000 | 0 | 0 | | adc_LUMI_40_Beam1 | "ADC for LUMI_40/Beam1" | 15 | 0.7 | 2.5612 | -0.056184 | -0.4304 | | adc_LUMI_40_Beam2 | "ADC for LUMI_40/Beam2" | 11 | -0.31818 | 1.4025 | -0.72065 | 0.0453 | | adc_LUMI_40_BeamCrossing | "ADC for LUMI_40/BeamCrossing" | 170 | 10.229 | 52.728 | 6.8763 | 48.098 | | adc_LUMI_40_NoBeam | "ADC for LUMI_40/NoBeam" | 3 | 1.1667 | 3.0912 | 0.65201 | -1.5 | - | adc_LUMI_40_NoBeam_calib_signals | "ADC for LUMI_40/NoBeam/calib signals" | 1 | 798.5 | 0.0000 | 0 | 0 | | adc_LUMI_41_Beam1 | "ADC for LUMI_41/Beam1" | 15 | 1.2333 | 7.5230 | -2.4543 | 6.3856 | | adc_LUMI_41_Beam2 | "ADC for LUMI_41/Beam2" | 11 | 0.59091 | 2.3142 | -0.066564 | -0.79581 | | adc_LUMI_41_BeamCrossing | "ADC for LUMI_41/BeamCrossing" | 170 | 40.153 | 106.25 | 3.2104 | 9.4665 | | adc_LUMI_41_NoBeam | "ADC for LUMI_41/NoBeam" | 3 | 1.1667 | 2.4944 | 0.3818 | -1.5 | - | adc_LUMI_41_NoBeam_calib_signals | "ADC for LUMI_41/NoBeam/calib signals" | 1 | 716.5 | 0.0000 | 0 | 0 | | adc_LUMI_42_Beam1 | "ADC for LUMI_42/Beam1" | 15 | 3.3 | 3.9362 | 0.63466 | 0.21765 | | adc_LUMI_42_Beam2 | "ADC for LUMI_42/Beam2" | 11 | 2.3182 | 2.9793 | 1.1459 | 0.45829 | | adc_LUMI_42_BeamCrossing | "ADC for LUMI_42/BeamCrossing" | 170 | 41.1 | 103.20 | 3.1221 | 9.8541 | | adc_LUMI_42_NoBeam | "ADC for LUMI_42/NoBeam" | 3 | 4.5 | 4.2426 | 0.70711 | -1.5 | - | adc_LUMI_42_NoBeam_calib_signals | "ADC for LUMI_42/NoBeam/calib signals" | 1 | 788.5 | 0.0000 | 0 | 0 | | adc_LUMI_43_Beam1 | "ADC for LUMI_43/Beam1" | 15 | 3.7667 | 4.4939 | 1.3981 | 1.7906 | | adc_LUMI_43_Beam2 | "ADC for LUMI_43/Beam2" | 11 | 2.4091 | 4.8515 | 0.73849 | 0.16565 | | adc_LUMI_43_BeamCrossing | "ADC for LUMI_43/BeamCrossing" | 170 | 28.041 | 81.494 | 4.2734 | 20.814 | | adc_LUMI_43_NoBeam | "ADC for LUMI_43/NoBeam" | 3 | 1.8333 | 3.2998 | -0.2948 | -1.5 | - | adc_LUMI_43_NoBeam_calib_signals | "ADC for LUMI_43/NoBeam/calib signals" | 1 | 763.5 | 0.0000 | 0 | 0 | | adc_LUMI_44_Beam1 | "ADC for LUMI_44/Beam1" | 15 | -0.033333 | 1.4079 | 0.5697 | 0.61259 | | adc_LUMI_44_Beam2 | "ADC for LUMI_44/Beam2" | 11 | -1.0455 | 1.6713 | 0.5465 | -0.44377 | | adc_LUMI_44_BeamCrossing | "ADC for LUMI_44/BeamCrossing" | 170 | 10.418 | 49.684 | 7.4442 | 63.378 | | adc_LUMI_44_NoBeam | "ADC for LUMI_44/NoBeam" | 3 | -1.5 | 1.4142 | 0.70711 | -1.5 | - | adc_LUMI_44_NoBeam_calib_signals | "ADC for LUMI_44/NoBeam/calib signals" | 1 | 868.5 | 0.0000 | 0 | 0 | | adc_LUMI_45_Beam1 | "ADC for LUMI_45/Beam1" | 15 | 1.7667 | 1.8785 | 0.5166 | 0.66467 | | adc_LUMI_45_Beam2 | "ADC for LUMI_45/Beam2" | 11 | 1.5909 | 2.1086 | 0.054813 | -0.20175 | | adc_LUMI_45_BeamCrossing | "ADC for LUMI_45/BeamCrossing" | 170 | 12.894 | 58.294 | 5.8628 | 35.029 | | adc_LUMI_45_NoBeam | "ADC for LUMI_45/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_45_NoBeam_calib_signals | "ADC for LUMI_45/NoBeam/calib signals" | 1 | 863.5 | 0.0000 | 0 | 0 | | adc_LUMI_46_Beam1 | "ADC for LUMI_46/Beam1" | 15 | 0.5 | 1.4142 | 0 | -0.5 | | adc_LUMI_46_Beam2 | "ADC for LUMI_46/Beam2" | 11 | 0.22727 | 1.5428 | 0.1645 | -1.4835 | | adc_LUMI_46_BeamCrossing | "ADC for LUMI_46/BeamCrossing" | 170 | 7.9118 | 46.417 | 7.026 | 48.579 | | adc_LUMI_46_NoBeam | "ADC for LUMI_46/NoBeam" | 3 | 0.16667 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_46_NoBeam_calib_signals | "ADC for LUMI_46/NoBeam/calib signals" | 1 | 704.5 | 0.0000 | 0 | 0 | | adc_LUMI_47_Beam1 | "ADC for LUMI_47/Beam1" | 15 | 2.3 | 2.9484 | 0.49251 | 0.59839 | | adc_LUMI_47_Beam2 | "ADC for LUMI_47/Beam2" | 11 | 8.2273 | 26.444 | 2.8019 | 5.9541 | | adc_LUMI_47_BeamCrossing | "ADC for LUMI_47/BeamCrossing" | 170 | 31.888 | 91.589 | 4.3611 | 21.037 | | adc_LUMI_47_NoBeam | "ADC for LUMI_47/NoBeam" | 3 | -0.16667 | 0.94281 | -0.70711 | -1.5 | - | adc_LUMI_47_NoBeam_calib_signals | "ADC for LUMI_47/NoBeam/calib signals" | 1 | 707.5 | 0.0000 | 0 | 0 | | adc_LUMI_Beam1 | "ADC for LUMI/Beam1" | 660 | 1.7182 | 3.6006 | 0.46046 | 7.8479 | | adc_LUMI_Beam2 | "ADC for LUMI/Beam2" | 484 | 3.4194 | 29.794 | 11.161 | 132.42 | | adc_LUMI_BeamCrossing | "ADC for LUMI/BeamCrossing" | 7480 | 28.96 | 93.072 | 4.5799 | 25.251 | - | adc_LUMI_NoBeam | "ADC for LUMI/NoBeam" | 132 | 1.1364 | 2.3396 | 1.1337 | 1.7423 | - | adc_MON_01_Beam1 | "ADC for MON_01/Beam1" | 15 | -0.16667 | 1.4453 | 0.068699 | -0.86442 | - | adc_MON_01_Beam2 | "ADC for MON_01/Beam2" | 11 | 0.5 | 1.5374 | -0.45031 | -0.81953 | - | adc_MON_01_BeamCrossing | "ADC for MON_01/BeamCrossing" | 170 | 0.19412 | 1.3977 | 0.38696 | 0.78553 | - | adc_MON_01_NoBeam | "ADC for MON_01/NoBeam" | 4 | 33.25 | 55.571 | 1.1545 | -0.66681 | - | adc_MON_02_Beam1 | "ADC for MON_02/Beam1" | 15 | 0.43333 | 1.2365 | -0.29654 | -1.0564 | - | adc_MON_02_Beam2 | "ADC for MON_02/Beam2" | 11 | 0.31818 | 0.71582 | 0.28268 | -1.0265 | - | adc_MON_02_BeamCrossing | "ADC for MON_02/BeamCrossing" | 170 | 0.16471 | 1.4223 | -0.021838 | 0.35598 | - | adc_MON_02_NoBeam | "ADC for MON_02/NoBeam" | 4 | 36.25 | 62.499 | 1.1546 | -0.66678 | - | adc_MON_03_Beam1 | "ADC for MON_03/Beam1" | 15 | -0.36667 | 1.3597 | 0.076136 | -1.1374 | - | adc_MON_03_Beam2 | "ADC for MON_03/Beam2" | 11 | 0.22727 | 1.5428 | 0.75867 | -0.29311 | - | adc_MON_03_BeamCrossing | "ADC for MON_03/BeamCrossing" | 170 | -0.1 | 1.2291 | -0.034978 | -0.14687 | - | adc_MON_03_NoBeam | "ADC for MON_03/NoBeam" | 4 | 35.75 | 61.633 | 1.1545 | -0.66678 | - | adc_MON_04_Beam1 | "ADC for MON_04/Beam1" | 15 | 0.36667 | 0.88443 | -0.31522 | -0.71204 | - | adc_MON_04_Beam2 | "ADC for MON_04/Beam2" | 11 | 0.77273 | 1.6564 | 0.76174 | -0.10281 | - | adc_MON_04_BeamCrossing | "ADC for MON_04/BeamCrossing" | 170 | 0.035294 | 1.3112 | 0.040558 | -0.35894 | - | adc_MON_04_NoBeam | "ADC for MON_04/NoBeam" | 4 | 32.75 | 58.195 | 1.1515 | -0.66914 | - | adc_MON_Beam1 | "ADC for MON/Beam1" | 60 | 0.066667 | 1.2957 | -0.21578 | -0.82656 | - | adc_MON_Beam2 | "ADC for MON/Beam2" | 44 | 0.45455 | 1.4295 | 0.50003 | 0.22541 | - | adc_MON_BeamCrossing | "ADC for MON/BeamCrossing" | 680 | 0.073529 | 1.3473 | 0.13226 | 0.30626 | - | adc_MON_NoBeam | "ADC for MON/NoBeam" | 16 | 34.5 | 59.559 | 1.1628 | -0.63174 | - | adc_PIN_01_Beam1 | "ADC for PIN_01/Beam1" | 15 | -0.1 | 2.6026 | 0.14795 | -0.43161 | - | adc_PIN_01_Beam2 | "ADC for PIN_01/Beam2" | 11 | 1.0455 | 1.7768 | -0.074738 | -0.071229 | - | adc_PIN_01_BeamCrossing | "ADC for PIN_01/BeamCrossing" | 170 | 0.47059 | 2.5973 | -0.084532 | -0.030407 | - | adc_PIN_01_NoBeam | "ADC for PIN_01/NoBeam" | 4 | 16.25 | 27.914 | 1.1406 | -0.6773 | - | adc_PIN_02_Beam1 | "ADC for PIN_02/Beam1" | 15 | 0.033333 | 4.0144 | 0.42348 | -0.81616 | - | adc_PIN_02_Beam2 | "ADC for PIN_02/Beam2" | 11 | 1.5909 | 3.5021 | 0.5846 | -0.86541 | - | adc_PIN_02_BeamCrossing | "ADC for PIN_02/BeamCrossing" | 170 | 0.72353 | 4.7487 | 0.05457 | -0.19893 | - | adc_PIN_02_NoBeam | "ADC for PIN_02/NoBeam" | 4 | 20.25 | 34.259 | 1.1443 | -0.67434 | - | adc_PIN_03_Beam1 | "ADC for PIN_03/Beam1" | 15 | 0.9 | 4.8415 | -0.35416 | -0.50037 | - | adc_PIN_03_Beam2 | "ADC for PIN_03/Beam2" | 11 | 1.4091 | 5.4848 | -0.45992 | -0.83145 | - | adc_PIN_03_BeamCrossing | "ADC for PIN_03/BeamCrossing" | 170 | 1.0118 | 4.3821 | 0.037908 | 0.44028 | - | adc_PIN_03_NoBeam | "ADC for PIN_03/NoBeam" | 4 | 18 | 29.168 | 1.152 | -0.6688 | - | adc_PIN_04_Beam1 | "ADC for PIN_04/Beam1" | 15 | 1.1 | 3.2000 | 0.4502 | -0.62585 | - | adc_PIN_04_Beam2 | "ADC for PIN_04/Beam2" | 11 | 1.5 | 3.4378 | 0.65785 | -0.58 | - | adc_PIN_04_BeamCrossing | "ADC for PIN_04/BeamCrossing" | 170 | 0.23529 | 4.5717 | 0.19366 | 0.047467 | - | adc_PIN_04_NoBeam | "ADC for PIN_04/NoBeam" | 4 | 23.5 | 31.329 | 1.1206 | -0.69058 | - | adc_PIN_06_Beam1 | "ADC for PIN_06/Beam1" | 15 | -0.7 | 4.2771 | -0.097339 | -1.3223 | - | adc_PIN_06_Beam2 | "ADC for PIN_06/Beam2" | 11 | 1.3182 | 3.3253 | -0.3006 | -1.4138 | - | adc_PIN_06_BeamCrossing | "ADC for PIN_06/BeamCrossing" | 170 | 0.51176 | 4.6552 | 0.040117 | -0.4561 | - | adc_PIN_06_NoBeam | "ADC for PIN_06/NoBeam" | 4 | 16.25 | 29.609 | 1.1501 | -0.67016 | - | adc_PIN_07_Beam1 | "ADC for PIN_07/Beam1" | 15 | 0.033333 | 1.4079 | -0.42637 | -0.6226 | - | adc_PIN_07_Beam2 | "ADC for PIN_07/Beam2" | 11 | 0.22727 | 1.2856 | 0.5176 | -0.6034 | - | adc_PIN_07_BeamCrossing | "ADC for PIN_07/BeamCrossing" | 170 | 0.029412 | 1.2328 | 0.026531 | -0.075352 | - | adc_PIN_07_NoBeam | "ADC for PIN_07/NoBeam" | 4 | 1.25 | 0.82916 | 0.49338 | -1.3719 | - | adc_PIN_08_Beam1 | "ADC for PIN_08/Beam1" | 15 | 1.6333 | 7.0509 | 0.0029804 | -1.2279 | - | adc_PIN_08_Beam2 | "ADC for PIN_08/Beam2" | 11 | 0.5 | 3.7659 | 0.59236 | -0.59714 | - | adc_PIN_08_BeamCrossing | "ADC for PIN_08/BeamCrossing" | 170 | 0.18824 | 4.9065 | -0.31406 | 0.17115 | - | adc_PIN_08_NoBeam | "ADC for PIN_08/NoBeam" | 4 | 19.75 | 35.124 | 1.1448 | -0.67397 | - | adc_PIN_09_Beam1 | "ADC for PIN_09/Beam1" | 15 | 1.3667 | 4.2874 | -0.90313 | 0.080374 | - | adc_PIN_09_Beam2 | "ADC for PIN_09/Beam2" | 11 | -0.77273 | 4.3712 | -0.36442 | 0.54775 | - | adc_PIN_09_BeamCrossing | "ADC for PIN_09/BeamCrossing" | 170 | 0.61765 | 4.7202 | 0.066276 | -0.48337 | - | adc_PIN_09_NoBeam | "ADC for PIN_09/NoBeam" | 4 | 20.75 | 39.334 | 1.1156 | -0.69406 | - | adc_PIN_Beam1 | "ADC for PIN/Beam1" | 120 | 0.53333 | 4.3261 | 0.10945 | 0.10847 | - | adc_PIN_Beam2 | "ADC for PIN/Beam2" | 88 | 0.85227 | 3.6744 | -0.076609 | 0.56582 | - | adc_PIN_BeamCrossing | "ADC for PIN/BeamCrossing" | 1360 | 0.47353 | 4.1781 | 0.038545 | 0.50935 | - | adc_PIN_NoBeam | "ADC for PIN/NoBeam" | 32 | 17 | 31.161 | 1.3825 | 0.045346 | + | adc_LUMI_NoBeam | "ADC for LUMI/NoBeam" | 176 | 186.02 | 321.83 | 1.189 | -0.53281 | | adc_TIME | "ADC for all timing channels" | 12800 | 264.85 | 32.206 | 5.5346 | 49.363 | | adc_TIME_05_00_Beam1 | "ADC for TIME_05_00/Beam1" | 15 | 257.37 | 2.3907 | -0.89611 | 0.091531 | | adc_TIME_05_00_Beam2 | "ADC for TIME_05_00/Beam2" | 11 | 256.68 | 0.93597 | 0.29688 | -0.85244 | @@ -24993,7 +691,7 @@ PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDig | adc_TIME_Beam1 | "ADC for TIME/Beam1" | 960 | 257.22 | 1.7097 | 0.17615 | 1.0854 | | adc_TIME_Beam2 | "ADC for TIME/Beam2" | 704 | 257.18 | 1.7039 | 0.52655 | 0.9005 | | adc_TIME_BeamCrossing | "ADC for TIME/BeamCrossing" | 10880 | 265.56 | 32.944 | 5.2714 | 47.537 | - | adc_TIME_NoBeam | "ADC for TIME/NoBeam" | 192 | 257.33 | 1.6029 | -0.20442 | 0.75859 | + | adc_TIME_NoBeam | "ADC for TIME/NoBeam" | 256 | 284.1 | 70.318 | 2.4317 | 4.6663 | | amp_sshape_err_tot_11 | "S-shape amplitude error for 11" | 5 | 6.475 | 1.0779 | -0.1197 | -1.6519 | | amp_sshape_err_tot_29 | "S-shape amplitude error for 29" | 5 | 6.8167 | 0.12472 | -0.3818 | -1.5 | | amp_sshape_err_tot_35 | "S-shape amplitude error for 35" | 5 | 5.3833 | 1.1557 | -0.70314 | -1.5 | @@ -25024,128 +722,239 @@ PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDig | time_sshape_tot_29 | "Inflection point for 29" | 5 | 4.232 | 0.78969 | -1.3775 | 0.073259 | | time_sshape_tot_35 | "Inflection point for 35" | 5 | 3.416 | 0.94981 | -1.3325 | 0.031746 | | time_sshape_tot_5 | "Inflection point for 5" | 5 | 3.976 | 0.77958 | -1.3945 | 0.098599 | -PlumeRawToDigits_89428f2d INFO 1D histograms in directory "PlumeRawToDigits_89428f2d" : 1 +PlumeLEDMonitor_34b7705b INFO 1D histograms in directory "PlumeLEDMonitor_34b7705b" : 121 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | adc_LUMI_00 | "ADC for LUMI_00" | 1 | 694.5 | 0.0000 | 0 | 0 | + | adc_LUMI_01 | "ADC for LUMI_01" | 1 | 628.5 | 0.0000 | 0 | 0 | + | adc_LUMI_02 | "ADC for LUMI_02" | 1 | 760.5 | 0.0000 | 0 | 0 | + | adc_LUMI_03 | "ADC for LUMI_03" | 1 | 709.5 | 0.0000 | 0 | 0 | + | adc_LUMI_04 | "ADC for LUMI_04" | 1 | 701.5 | 0.0000 | 0 | 0 | + | adc_LUMI_06 | "ADC for LUMI_06" | 1 | 676.5 | 0.0000 | 0 | 0 | + | adc_LUMI_07 | "ADC for LUMI_07" | 1 | 781.5 | 0.0000 | 0 | 0 | + | adc_LUMI_08 | "ADC for LUMI_08" | 1 | 711.5 | 0.0000 | 0 | 0 | + | adc_LUMI_09 | "ADC for LUMI_09" | 1 | 756.5 | 0.0000 | 0 | 0 | + | adc_LUMI_10 | "ADC for LUMI_10" | 1 | 853.5 | 0.0000 | 0 | 0 | + | adc_LUMI_12 | "ADC for LUMI_12" | 1 | 716.5 | 0.0000 | 0 | 0 | + | adc_LUMI_13 | "ADC for LUMI_13" | 1 | 766.5 | 0.0000 | 0 | 0 | + | adc_LUMI_14 | "ADC for LUMI_14" | 1 | 661.5 | 0.0000 | 0 | 0 | + | adc_LUMI_15 | "ADC for LUMI_15" | 1 | 843.5 | 0.0000 | 0 | 0 | + | adc_LUMI_16 | "ADC for LUMI_16" | 1 | 637.5 | 0.0000 | 0 | 0 | + | adc_LUMI_17 | "ADC for LUMI_17" | 1 | 702.5 | 0.0000 | 0 | 0 | + | adc_LUMI_18 | "ADC for LUMI_18" | 1 | 804.5 | 0.0000 | 0 | 0 | + | adc_LUMI_19 | "ADC for LUMI_19" | 1 | 726.5 | 0.0000 | 0 | 0 | + | adc_LUMI_20 | "ADC for LUMI_20" | 1 | 643.5 | 0.0000 | 0 | 0 | + | adc_LUMI_21 | "ADC for LUMI_21" | 1 | 717.5 | 0.0000 | 0 | 0 | + | adc_LUMI_22 | "ADC for LUMI_22" | 1 | 820.5 | 0.0000 | 0 | 0 | + | adc_LUMI_23 | "ADC for LUMI_23" | 1 | 743.5 | 0.0000 | 0 | 0 | + | adc_LUMI_24 | "ADC for LUMI_24" | 1 | 655.5 | 0.0000 | 0 | 0 | + | adc_LUMI_25 | "ADC for LUMI_25" | 1 | 703.5 | 0.0000 | 0 | 0 | + | adc_LUMI_26 | "ADC for LUMI_26" | 1 | 623.5 | 0.0000 | 0 | 0 | + | adc_LUMI_27 | "ADC for LUMI_27" | 1 | 830.5 | 0.0000 | 0 | 0 | + | adc_LUMI_28 | "ADC for LUMI_28" | 1 | 757.5 | 0.0000 | 0 | 0 | + | adc_LUMI_30 | "ADC for LUMI_30" | 1 | 694.5 | 0.0000 | 0 | 0 | + | adc_LUMI_31 | "ADC for LUMI_31" | 1 | 784.5 | 0.0000 | 0 | 0 | + | adc_LUMI_32 | "ADC for LUMI_32" | 1 | 692.5 | 0.0000 | 0 | 0 | + | adc_LUMI_33 | "ADC for LUMI_33" | 1 | 794.5 | 0.0000 | 0 | 0 | + | adc_LUMI_34 | "ADC for LUMI_34" | 1 | 715.5 | 0.0000 | 0 | 0 | + | adc_LUMI_36 | "ADC for LUMI_36" | 1 | 732.5 | 0.0000 | 0 | 0 | + | adc_LUMI_37 | "ADC for LUMI_37" | 1 | 818.5 | 0.0000 | 0 | 0 | + | adc_LUMI_38 | "ADC for LUMI_38" | 1 | 711.5 | 0.0000 | 0 | 0 | + | adc_LUMI_39 | "ADC for LUMI_39" | 1 | 805.5 | 0.0000 | 0 | 0 | + | adc_LUMI_40 | "ADC for LUMI_40" | 1 | 798.5 | 0.0000 | 0 | 0 | + | adc_LUMI_41 | "ADC for LUMI_41" | 1 | 716.5 | 0.0000 | 0 | 0 | + | adc_LUMI_42 | "ADC for LUMI_42" | 1 | 788.5 | 0.0000 | 0 | 0 | + | adc_LUMI_43 | "ADC for LUMI_43" | 1 | 763.5 | 0.0000 | 0 | 0 | + | adc_LUMI_44 | "ADC for LUMI_44" | 1 | 868.5 | 0.0000 | 0 | 0 | + | adc_LUMI_45 | "ADC for LUMI_45" | 1 | 863.5 | 0.0000 | 0 | 0 | + | adc_LUMI_46 | "ADC for LUMI_46" | 1 | 704.5 | 0.0000 | 0 | 0 | + | adc_LUMI_47 | "ADC for LUMI_47" | 1 | 707.5 | 0.0000 | 0 | 0 | + | adc_MON_01 | "ADC for MON_01" | 1 | 129.5 | 0.0000 | 0 | 0 | + | adc_MON_02 | "ADC for MON_02" | 1 | 144.5 | 0.0000 | 0 | 0 | + | adc_MON_03 | "ADC for MON_03" | 1 | 142.5 | 0.0000 | 0 | 0 | + | adc_MON_04 | "ADC for MON_04" | 1 | 133.5 | 0.0000 | 0 | 0 | + | adc_PIN_01 | "ADC for PIN_01" | 1 | 64.5 | 0.0000 | 0 | 0 | + | adc_PIN_02 | "ADC for PIN_02" | 1 | 79.5 | 0.0000 | 0 | 0 | + | adc_PIN_03 | "ADC for PIN_03" | 1 | 68.5 | 0.0000 | 0 | 0 | + | adc_PIN_04 | "ADC for PIN_04" | 1 | 77.5 | 0.0000 | 0 | 0 | + | adc_PIN_06 | "ADC for PIN_06" | 1 | 67.5 | 0.0000 | 0 | 0 | + | adc_PIN_07 | "ADC for PIN_07" | 1 | 0.5 | 0.0000 | 0 | 0 | + | adc_PIN_08 | "ADC for PIN_08" | 1 | 80.5 | 0.0000 | 0 | 0 | + | adc_PIN_09 | "ADC for PIN_09" | 1 | 88.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_00 | "ADC for TIME_05_00" | 1 | 507.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_01 | "ADC for TIME_05_01" | 1 | 476.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_02 | "ADC for TIME_05_02" | 1 | 401.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_03 | "ADC for TIME_05_03" | 1 | 318.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_04 | "ADC for TIME_05_04" | 1 | 266.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_05 | "ADC for TIME_05_05" | 1 | 237.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_06 | "ADC for TIME_05_06" | 1 | 231.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_07 | "ADC for TIME_05_07" | 1 | 238.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_08 | "ADC for TIME_05_08" | 1 | 265.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_09 | "ADC for TIME_05_09" | 1 | 289.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_10 | "ADC for TIME_05_10" | 1 | 346.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_11 | "ADC for TIME_05_11" | 1 | 429.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_12 | "ADC for TIME_05_12" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_13 | "ADC for TIME_05_13" | 1 | 521.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_14 | "ADC for TIME_05_14" | 1 | 542.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_15 | "ADC for TIME_05_15" | 1 | 533.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_00 | "ADC for TIME_11_00" | 1 | 461.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_01 | "ADC for TIME_11_01" | 1 | 425.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_02 | "ADC for TIME_11_02" | 1 | 354.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_03 | "ADC for TIME_11_03" | 1 | 294.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_04 | "ADC for TIME_11_04" | 1 | 249.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_05 | "ADC for TIME_11_05" | 1 | 229.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_06 | "ADC for TIME_11_06" | 1 | 232.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_07 | "ADC for TIME_11_07" | 1 | 239.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_08 | "ADC for TIME_11_08" | 1 | 264.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_09 | "ADC for TIME_11_09" | 1 | 293.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_10 | "ADC for TIME_11_10" | 1 | 350.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_11 | "ADC for TIME_11_11" | 1 | 407.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_12 | "ADC for TIME_11_12" | 1 | 452.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_13 | "ADC for TIME_11_13" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_14 | "ADC for TIME_11_14" | 1 | 495.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_15 | "ADC for TIME_11_15" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_00 | "ADC for TIME_29_00" | 1 | 513.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_01 | "ADC for TIME_29_01" | 1 | 475.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_02 | "ADC for TIME_29_02" | 1 | 404.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_03 | "ADC for TIME_29_03" | 1 | 340.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_04 | "ADC for TIME_29_04" | 1 | 265.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_05 | "ADC for TIME_29_05" | 1 | 229.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_06 | "ADC for TIME_29_06" | 1 | 225.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_07 | "ADC for TIME_29_07" | 1 | 231.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_08 | "ADC for TIME_29_08" | 1 | 270.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_09 | "ADC for TIME_29_09" | 1 | 292.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_10 | "ADC for TIME_29_10" | 1 | 344.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_11 | "ADC for TIME_29_11" | 1 | 409.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_12 | "ADC for TIME_29_12" | 1 | 487.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_13 | "ADC for TIME_29_13" | 1 | 530.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_14 | "ADC for TIME_29_14" | 1 | 549.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_15 | "ADC for TIME_29_15" | 1 | 543.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_00 | "ADC for TIME_35_00" | 1 | 383.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_01 | "ADC for TIME_35_01" | 1 | 334.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_02 | "ADC for TIME_35_02" | 1 | 274.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_03 | "ADC for TIME_35_03" | 1 | 239.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_04 | "ADC for TIME_35_04" | 1 | 238.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_05 | "ADC for TIME_35_05" | 1 | 237.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_06 | "ADC for TIME_35_06" | 1 | 244.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_07 | "ADC for TIME_35_07" | 1 | 250.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_08 | "ADC for TIME_35_08" | 1 | 282.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_09 | "ADC for TIME_35_09" | 1 | 334.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_10 | "ADC for TIME_35_10" | 1 | 392.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_11 | "ADC for TIME_35_11" | 1 | 430.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_12 | "ADC for TIME_35_12" | 1 | 439.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_13 | "ADC for TIME_35_13" | 1 | 439.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_14 | "ADC for TIME_35_14" | 1 | 437.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_15 | "ADC for TIME_35_15" | 1 | 438.5 | 0.0000 | 0 | 0 | + | odin_calib_type | "ODIN CalibrationType" | 1 | 2 | 0.0000 | 0 | 0 | +PlumeRawToDigits_e2724fbc INFO 1D histograms in directory "PlumeRawToDigits_e2724fbc" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | SumADCPerChannel | "Sum of ADCs per channel" | 24800 | 73.931 | 36.095 | -0.42106 | -0.96015 | -PlumeDigitMonitor_9abf3184 INFO 1D profile histograms in directory "PlumeDigitMonitor_9abf3184" : 125 +PlumeDigitMonitor_b0f85c8c INFO 1D profile histograms in directory "PlumeDigitMonitor_b0f85c8c" : 112 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | bcid_adc_LUMI_00 | "ADC vs BCID for LUMI_00" | 200 | 1852.8 | 768.00 | -0.54793 | 0.0045384 | - | bcid_adc_LUMI_01 | "ADC vs BCID for LUMI_01" | 200 | 2030.9 | 749.29 | -0.84935 | 0.12097 | - | bcid_adc_LUMI_02 | "ADC vs BCID for LUMI_02" | 200 | 2012 | 808.72 | -0.52701 | -0.51684 | - | bcid_adc_LUMI_03 | "ADC vs BCID for LUMI_03" | 200 | 1908.3 | 701.62 | -0.17087 | 0.0042769 | - | bcid_adc_LUMI_04 | "ADC vs BCID for LUMI_04" | 200 | 2077.7 | 692.55 | -0.12753 | -0.17315 | - | bcid_adc_LUMI_06 | "ADC vs BCID for LUMI_06" | 200 | 1801.1 | 904.67 | -0.321 | -0.54062 | - | bcid_adc_LUMI_07 | "ADC vs BCID for LUMI_07" | 200 | 1803.2 | 804.62 | -0.47842 | -0.16292 | - | bcid_adc_LUMI_08 | "ADC vs BCID for LUMI_08" | 200 | 1919.9 | 591.46 | 0.10658 | 0.069319 | - | bcid_adc_LUMI_09 | "ADC vs BCID for LUMI_09" | 200 | 2006.9 | 855.63 | -0.49857 | -0.061777 | - | bcid_adc_LUMI_10 | "ADC vs BCID for LUMI_10" | 200 | 1868.1 | 837.89 | -0.57254 | -0.35559 | - | bcid_adc_LUMI_12 | "ADC vs BCID for LUMI_12" | 200 | 2008.1 | 822.96 | -0.76991 | 0.0037367 | - | bcid_adc_LUMI_13 | "ADC vs BCID for LUMI_13" | 200 | 1982.6 | 805.96 | -0.82518 | 0.045741 | - | bcid_adc_LUMI_14 | "ADC vs BCID for LUMI_14" | 200 | 1993.5 | 703.45 | -0.7294 | 0.40349 | - | bcid_adc_LUMI_15 | "ADC vs BCID for LUMI_15" | 200 | 1849.5 | 773.37 | -0.6824 | -0.053441 | - | bcid_adc_LUMI_16 | "ADC vs BCID for LUMI_16" | 200 | 2043.7 | 833.47 | -0.61636 | -0.39803 | - | bcid_adc_LUMI_17 | "ADC vs BCID for LUMI_17" | 200 | 1927.4 | 885.24 | -0.69911 | -0.58496 | - | bcid_adc_LUMI_18 | "ADC vs BCID for LUMI_18" | 200 | 1815.6 | 902.70 | -0.64772 | -0.68462 | - | bcid_adc_LUMI_19 | "ADC vs BCID for LUMI_19" | 200 | 1946.7 | 799.24 | -0.56645 | -0.34988 | - | bcid_adc_LUMI_20 | "ADC vs BCID for LUMI_20" | 200 | 2027.8 | 823.78 | -0.86693 | -0.26631 | - | bcid_adc_LUMI_21 | "ADC vs BCID for LUMI_21" | 200 | 1859.9 | 919.46 | -0.75436 | -0.65839 | - | bcid_adc_LUMI_22 | "ADC vs BCID for LUMI_22" | 200 | 1580.8 | 828.78 | -0.305 | -0.65649 | - | bcid_adc_LUMI_23 | "ADC vs BCID for LUMI_23" | 200 | 1968 | 698.52 | -0.66313 | 0.26485 | - | bcid_adc_LUMI_24 | "ADC vs BCID for LUMI_24" | 200 | 1820 | 714.24 | -0.45285 | 0.32772 | - | bcid_adc_LUMI_25 | "ADC vs BCID for LUMI_25" | 200 | 2173.3 | 866.74 | -1.1377 | 0.38193 | - | bcid_adc_LUMI_26 | "ADC vs BCID for LUMI_26" | 200 | 1922.9 | 954.78 | -0.57253 | -0.84156 | - | bcid_adc_LUMI_27 | "ADC vs BCID for LUMI_27" | 200 | 1508.8 | 882.02 | -0.29287 | -1.0226 | - | bcid_adc_LUMI_28 | "ADC vs BCID for LUMI_28" | 200 | 1851.9 | 591.92 | 0.069391 | 0.37677 | - | bcid_adc_LUMI_30 | "ADC vs BCID for LUMI_30" | 200 | 1934.9 | 742.68 | -0.33003 | -0.040843 | - | bcid_adc_LUMI_31 | "ADC vs BCID for LUMI_31" | 200 | 1900.1 | 737.88 | -0.22526 | -0.20224 | - | bcid_adc_LUMI_32 | "ADC vs BCID for LUMI_32" | 200 | 1790 | 609.19 | 0.52714 | 0.48573 | - | bcid_adc_LUMI_33 | "ADC vs BCID for LUMI_33" | 200 | 1722.9 | 823.66 | -0.32946 | -0.27437 | - | bcid_adc_LUMI_34 | "ADC vs BCID for LUMI_34" | 200 | 2265.6 | 837.04 | -1.0675 | 0.72721 | - | bcid_adc_LUMI_36 | "ADC vs BCID for LUMI_36" | 200 | 1592.2 | 882.04 | 0.032616 | -0.87081 | - | bcid_adc_LUMI_37 | "ADC vs BCID for LUMI_37" | 200 | 1683.8 | 816.08 | -0.082953 | -0.82541 | - | bcid_adc_LUMI_38 | "ADC vs BCID for LUMI_38" | 200 | 2055.8 | 727.39 | -0.30892 | -0.40765 | - | bcid_adc_LUMI_39 | "ADC vs BCID for LUMI_39" | 200 | 1674.3 | 757.48 | -0.45324 | -0.28481 | - | bcid_adc_LUMI_40 | "ADC vs BCID for LUMI_40" | 200 | 2151.9 | 614.40 | -0.47317 | 0.17765 | - | bcid_adc_LUMI_41 | "ADC vs BCID for LUMI_41" | 200 | 1804.4 | 963.69 | -0.67202 | -0.9543 | - | bcid_adc_LUMI_42 | "ADC vs BCID for LUMI_42" | 200 | 1959.6 | 772.29 | -0.27054 | -0.52159 | - | bcid_adc_LUMI_43 | "ADC vs BCID for LUMI_43" | 200 | 1896.4 | 794.93 | -0.82878 | -0.10264 | - | bcid_adc_LUMI_44 | "ADC vs BCID for LUMI_44" | 200 | 1841.8 | 862.82 | -0.50111 | -0.59283 | - | bcid_adc_LUMI_45 | "ADC vs BCID for LUMI_45" | 200 | 1959.3 | 840.54 | -0.48453 | -0.60757 | - | bcid_adc_LUMI_46 | "ADC vs BCID for LUMI_46" | 200 | 1636 | 864.61 | -0.62806 | -0.53632 | - | bcid_adc_LUMI_47 | "ADC vs BCID for LUMI_47" | 200 | 2137.9 | 773.72 | -0.9801 | 0.53769 | - | bcid_adc_MON_01 | "ADC vs BCID for MON_01" | 200 | 1822.1 | 720.46 | 0.036535 | 0.17346 | - | bcid_adc_MON_02 | "ADC vs BCID for MON_02" | 200 | 1781.3 | 658.65 | 0.011034 | 0.48238 | - | bcid_adc_MON_03 | "ADC vs BCID for MON_03" | 200 | 1734.9 | 717.99 | -0.084384 | 0.33338 | - | bcid_adc_MON_04 | "ADC vs BCID for MON_04" | 200 | 1756.9 | 729.22 | -0.1352 | 0.27864 | - | bcid_adc_PIN_01 | "ADC vs BCID for PIN_01" | 200 | 1893.1 | 860.85 | -0.38761 | -0.60828 | - | bcid_adc_PIN_02 | "ADC vs BCID for PIN_02" | 200 | 1872.7 | 875.02 | -0.39385 | -0.61906 | - | bcid_adc_PIN_03 | "ADC vs BCID for PIN_03" | 200 | 1839.4 | 894.06 | -0.33748 | -0.57031 | - | bcid_adc_PIN_04 | "ADC vs BCID for PIN_04" | 200 | 1881.3 | 857.71 | -0.482 | -0.4627 | - | bcid_adc_PIN_06 | "ADC vs BCID for PIN_06" | 200 | 1926.9 | 867.10 | -0.47067 | -0.61624 | - | bcid_adc_PIN_07 | "ADC vs BCID for PIN_07" | 200 | 1989.1 | 871.66 | -0.41374 | -0.61938 | - | bcid_adc_PIN_08 | "ADC vs BCID for PIN_08" | 200 | 1826.2 | 846.63 | -0.33054 | -0.64636 | - | bcid_adc_PIN_09 | "ADC vs BCID for PIN_09" | 200 | 1805.2 | 856.59 | -0.30779 | -0.64535 | - | bcid_adc_TIME_05_00 | "ADC vs BCID for TIME_05_00" | 200 | 1883.9 | 908.34 | -0.45292 | -0.74433 | - | bcid_adc_TIME_05_01 | "ADC vs BCID for TIME_05_01" | 200 | 1884 | 908.40 | -0.45326 | -0.74317 | - | bcid_adc_TIME_05_02 | "ADC vs BCID for TIME_05_02" | 200 | 1883.5 | 909.86 | -0.45285 | -0.74963 | - | bcid_adc_TIME_05_03 | "ADC vs BCID for TIME_05_03" | 200 | 1884.3 | 910.97 | -0.45377 | -0.7535 | - | bcid_adc_TIME_05_04 | "ADC vs BCID for TIME_05_04" | 200 | 1888.5 | 910.84 | -0.45664 | -0.75353 | - | bcid_adc_TIME_05_05 | "ADC vs BCID for TIME_05_05" | 200 | 1894 | 910.66 | -0.46467 | -0.7526 | - | bcid_adc_TIME_05_06 | "ADC vs BCID for TIME_05_06" | 200 | 1900.8 | 907.43 | -0.47623 | -0.73707 | - | bcid_adc_TIME_05_07 | "ADC vs BCID for TIME_05_07" | 200 | 1900.9 | 907.43 | -0.47665 | -0.73662 | - | bcid_adc_TIME_05_08 | "ADC vs BCID for TIME_05_08" | 200 | 1874.9 | 924.24 | -0.4473 | -0.7997 | - | bcid_adc_TIME_05_09 | "ADC vs BCID for TIME_05_09" | 200 | 1875.1 | 923.77 | -0.44793 | -0.79786 | - | bcid_adc_TIME_05_10 | "ADC vs BCID for TIME_05_10" | 200 | 1875.2 | 923.13 | -0.44745 | -0.79562 | - | bcid_adc_TIME_05_11 | "ADC vs BCID for TIME_05_11" | 200 | 1875.1 | 921.71 | -0.44523 | -0.79205 | - | bcid_adc_TIME_05_12 | "ADC vs BCID for TIME_05_12" | 200 | 1879.9 | 917.40 | -0.44834 | -0.77717 | - | bcid_adc_TIME_05_13 | "ADC vs BCID for TIME_05_13" | 200 | 1883.5 | 910.93 | -0.45013 | -0.75486 | - | bcid_adc_TIME_05_14 | "ADC vs BCID for TIME_05_14" | 200 | 1884.2 | 906.80 | -0.45371 | -0.73799 | - | bcid_adc_TIME_05_15 | "ADC vs BCID for TIME_05_15" | 200 | 1884.4 | 906.73 | -0.45372 | -0.73737 | - | bcid_adc_TIME_11_00 | "ADC vs BCID for TIME_11_00" | 200 | 1892.9 | 920.77 | -0.47571 | -0.77202 | - | bcid_adc_TIME_11_01 | "ADC vs BCID for TIME_11_01" | 200 | 1892.3 | 921.08 | -0.47499 | -0.77354 | - | bcid_adc_TIME_11_02 | "ADC vs BCID for TIME_11_02" | 200 | 1892.4 | 922.06 | -0.47542 | -0.77657 | - | bcid_adc_TIME_11_03 | "ADC vs BCID for TIME_11_03" | 200 | 1892.2 | 921.66 | -0.47314 | -0.7772 | - | bcid_adc_TIME_11_04 | "ADC vs BCID for TIME_11_04" | 200 | 1891.4 | 918.07 | -0.46539 | -0.77235 | - | bcid_adc_TIME_11_05 | "ADC vs BCID for TIME_11_05" | 200 | 1891.8 | 912.57 | -0.45631 | -0.76082 | - | bcid_adc_TIME_11_06 | "ADC vs BCID for TIME_11_06" | 200 | 1891.6 | 910.29 | -0.45258 | -0.75691 | - | bcid_adc_TIME_11_07 | "ADC vs BCID for TIME_11_07" | 200 | 1891.5 | 910.99 | -0.45308 | -0.75844 | - | bcid_adc_TIME_11_08 | "ADC vs BCID for TIME_11_08" | 200 | 1879.2 | 921.91 | -0.45167 | -0.79321 | - | bcid_adc_TIME_11_09 | "ADC vs BCID for TIME_11_09" | 200 | 1878.7 | 922.22 | -0.45075 | -0.79462 | - | bcid_adc_TIME_11_10 | "ADC vs BCID for TIME_11_10" | 200 | 1878.6 | 921.50 | -0.45002 | -0.79178 | - | bcid_adc_TIME_11_11 | "ADC vs BCID for TIME_11_11" | 200 | 1879.7 | 920.13 | -0.45081 | -0.78737 | - | bcid_adc_TIME_11_12 | "ADC vs BCID for TIME_11_12" | 200 | 1884.9 | 919.62 | -0.45595 | -0.78215 | - | bcid_adc_TIME_11_13 | "ADC vs BCID for TIME_11_13" | 200 | 1892.3 | 920.13 | -0.47201 | -0.77233 | - | bcid_adc_TIME_11_14 | "ADC vs BCID for TIME_11_14" | 200 | 1896.6 | 920.14 | -0.48203 | -0.76525 | - | bcid_adc_TIME_11_15 | "ADC vs BCID for TIME_11_15" | 200 | 1894.9 | 920.45 | -0.47927 | -0.76874 | - | bcid_adc_TIME_29_00 | "ADC vs BCID for TIME_29_00" | 200 | 1895.3 | 906.91 | -0.46675 | -0.73628 | - | bcid_adc_TIME_29_01 | "ADC vs BCID for TIME_29_01" | 200 | 1895.1 | 907.56 | -0.46646 | -0.73849 | - | bcid_adc_TIME_29_02 | "ADC vs BCID for TIME_29_02" | 200 | 1895.5 | 908.42 | -0.46737 | -0.74093 | - | bcid_adc_TIME_29_03 | "ADC vs BCID for TIME_29_03" | 200 | 1895.1 | 908.97 | -0.46774 | -0.74329 | - | bcid_adc_TIME_29_04 | "ADC vs BCID for TIME_29_04" | 200 | 1894.1 | 911.42 | -0.46621 | -0.75256 | - | bcid_adc_TIME_29_05 | "ADC vs BCID for TIME_29_05" | 200 | 1894.5 | 913.88 | -0.46818 | -0.76079 | - | bcid_adc_TIME_29_06 | "ADC vs BCID for TIME_29_06" | 200 | 1892.4 | 914.60 | -0.46736 | -0.76284 | - | bcid_adc_TIME_29_07 | "ADC vs BCID for TIME_29_07" | 200 | 1892.5 | 914.09 | -0.46714 | -0.76075 | - | bcid_adc_TIME_29_08 | "ADC vs BCID for TIME_29_08" | 200 | 1888.4 | 916.37 | -0.46407 | -0.76556 | - | bcid_adc_TIME_29_09 | "ADC vs BCID for TIME_29_09" | 200 | 1887.6 | 915.91 | -0.46245 | -0.76546 | - | bcid_adc_TIME_29_10 | "ADC vs BCID for TIME_29_10" | 200 | 1887.6 | 915.10 | -0.46188 | -0.7635 | - | bcid_adc_TIME_29_11 | "ADC vs BCID for TIME_29_11" | 200 | 1886.5 | 914.57 | -0.45882 | -0.76336 | - | bcid_adc_TIME_29_12 | "ADC vs BCID for TIME_29_12" | 200 | 1887.9 | 912.54 | -0.45811 | -0.75796 | - | bcid_adc_TIME_29_13 | "ADC vs BCID for TIME_29_13" | 200 | 1891.9 | 909.03 | -0.4602 | -0.74556 | - | bcid_adc_TIME_29_14 | "ADC vs BCID for TIME_29_14" | 200 | 1896 | 905.86 | -0.46647 | -0.73223 | - | bcid_adc_TIME_29_15 | "ADC vs BCID for TIME_29_15" | 200 | 1895.6 | 905.98 | -0.46691 | -0.7336 | - | bcid_adc_TIME_35_00 | "ADC vs BCID for TIME_35_00" | 200 | 1874 | 919.27 | -0.43734 | -0.79575 | - | bcid_adc_TIME_35_01 | "ADC vs BCID for TIME_35_01" | 200 | 1874.5 | 919.43 | -0.43842 | -0.7966 | - | bcid_adc_TIME_35_02 | "ADC vs BCID for TIME_35_02" | 200 | 1875.6 | 919.93 | -0.43968 | -0.79664 | - | bcid_adc_TIME_35_03 | "ADC vs BCID for TIME_35_03" | 200 | 1878.4 | 919.56 | -0.44281 | -0.79481 | - | bcid_adc_TIME_35_04 | "ADC vs BCID for TIME_35_04" | 200 | 1882.8 | 919.06 | -0.4494 | -0.78902 | - | bcid_adc_TIME_35_05 | "ADC vs BCID for TIME_35_05" | 200 | 1886.9 | 918.55 | -0.45556 | -0.78441 | - | bcid_adc_TIME_35_06 | "ADC vs BCID for TIME_35_06" | 200 | 1892.4 | 916.05 | -0.46324 | -0.77229 | - | bcid_adc_TIME_35_07 | "ADC vs BCID for TIME_35_07" | 200 | 1891.6 | 916.06 | -0.46269 | -0.77261 | - | bcid_adc_TIME_35_08 | "ADC vs BCID for TIME_35_08" | 200 | 1886.2 | 916.00 | -0.45094 | -0.77827 | - | bcid_adc_TIME_35_09 | "ADC vs BCID for TIME_35_09" | 200 | 1886 | 915.80 | -0.44958 | -0.77777 | - | bcid_adc_TIME_35_10 | "ADC vs BCID for TIME_35_10" | 200 | 1885.5 | 915.56 | -0.44823 | -0.77642 | - | bcid_adc_TIME_35_11 | "ADC vs BCID for TIME_35_11" | 200 | 1884.6 | 914.89 | -0.44758 | -0.77547 | - | bcid_adc_TIME_35_12 | "ADC vs BCID for TIME_35_12" | 200 | 1881.9 | 916.13 | -0.44489 | -0.78167 | - | bcid_adc_TIME_35_13 | "ADC vs BCID for TIME_35_13" | 200 | 1877.7 | 917.37 | -0.44085 | -0.78893 | - | bcid_adc_TIME_35_14 | "ADC vs BCID for TIME_35_14" | 200 | 1871.6 | 918.83 | -0.43561 | -0.79706 | - | bcid_adc_TIME_35_15 | "ADC vs BCID for TIME_35_15" | 200 | 1872.1 | 918.69 | -0.43548 | -0.79523 | + | bcid_adc_LUMI_00 | "ADC vs BCID for LUMI_00" | 199 | 1870.6 | 790.60 | -0.60177 | -0.09168 | + | bcid_adc_LUMI_01 | "ADC vs BCID for LUMI_01" | 199 | 2070.8 | 770.20 | -0.99161 | 0.22884 | + | bcid_adc_LUMI_02 | "ADC vs BCID for LUMI_02" | 199 | 2050.9 | 834.59 | -0.65176 | -0.5061 | + | bcid_adc_LUMI_03 | "ADC vs BCID for LUMI_03" | 199 | 1990.1 | 765.92 | -0.46886 | -0.21436 | + | bcid_adc_LUMI_04 | "ADC vs BCID for LUMI_04" | 199 | 2210.9 | 726.85 | -0.61433 | 0.16011 | + | bcid_adc_LUMI_06 | "ADC vs BCID for LUMI_06" | 199 | 1814.3 | 931.05 | -0.35473 | -0.65137 | + | bcid_adc_LUMI_07 | "ADC vs BCID for LUMI_07" | 199 | 1829.9 | 849.99 | -0.54918 | -0.37268 | + | bcid_adc_LUMI_08 | "ADC vs BCID for LUMI_08" | 199 | 1951.8 | 610.16 | -0.035557 | -0.04376 | + | bcid_adc_LUMI_09 | "ADC vs BCID for LUMI_09" | 199 | 2051.3 | 888.71 | -0.63142 | -0.099947 | + | bcid_adc_LUMI_10 | "ADC vs BCID for LUMI_10" | 199 | 1935.5 | 921.76 | -0.74785 | -0.57055 | + | bcid_adc_LUMI_12 | "ADC vs BCID for LUMI_12" | 199 | 2040.6 | 845.89 | -0.87066 | 0.021964 | + | bcid_adc_LUMI_13 | "ADC vs BCID for LUMI_13" | 199 | 2022.4 | 835.67 | -0.94776 | 0.064412 | + | bcid_adc_LUMI_14 | "ADC vs BCID for LUMI_14" | 199 | 2038.2 | 727.87 | -0.89717 | 0.48621 | + | bcid_adc_LUMI_15 | "ADC vs BCID for LUMI_15" | 199 | 1897.1 | 832.79 | -0.81295 | -0.24125 | + | bcid_adc_LUMI_16 | "ADC vs BCID for LUMI_16" | 199 | 2125 | 880.93 | -0.86911 | -0.28336 | + | bcid_adc_LUMI_17 | "ADC vs BCID for LUMI_17" | 199 | 1964.7 | 925.44 | -0.79502 | -0.63807 | + | bcid_adc_LUMI_18 | "ADC vs BCID for LUMI_18" | 199 | 1837.4 | 942.56 | -0.69201 | -0.80311 | + | bcid_adc_LUMI_19 | "ADC vs BCID for LUMI_19" | 199 | 2002.8 | 846.37 | -0.73938 | -0.3961 | + | bcid_adc_LUMI_20 | "ADC vs BCID for LUMI_20" | 199 | 2070.5 | 851.21 | -1.0004 | -0.18805 | + | bcid_adc_LUMI_21 | "ADC vs BCID for LUMI_21" | 199 | 1903.2 | 983.88 | -0.84364 | -0.79043 | + | bcid_adc_LUMI_22 | "ADC vs BCID for LUMI_22" | 199 | 1578.8 | 907.36 | -0.27192 | -1.0472 | + | bcid_adc_LUMI_23 | "ADC vs BCID for LUMI_23" | 199 | 2005.8 | 721.92 | -0.80389 | 0.29306 | + | bcid_adc_LUMI_24 | "ADC vs BCID for LUMI_24" | 199 | 1838.2 | 739.10 | -0.51292 | 0.17953 | + | bcid_adc_LUMI_25 | "ADC vs BCID for LUMI_25" | 199 | 2256.9 | 896.32 | -1.4175 | 0.83223 | + | bcid_adc_LUMI_26 | "ADC vs BCID for LUMI_26" | 199 | 1969.2 | 1010.6 | -0.68286 | -0.92945 | + | bcid_adc_LUMI_27 | "ADC vs BCID for LUMI_27" | 199 | 1487.6 | 988.24 | -0.19768 | -1.4411 | + | bcid_adc_LUMI_28 | "ADC vs BCID for LUMI_28" | 199 | 2005.8 | 702.32 | -0.57171 | -0.091479 | + | bcid_adc_LUMI_30 | "ADC vs BCID for LUMI_30" | 199 | 1971.1 | 771.99 | -0.45655 | -0.12947 | + | bcid_adc_LUMI_31 | "ADC vs BCID for LUMI_31" | 199 | 1944 | 778.66 | -0.37937 | -0.36047 | + | bcid_adc_LUMI_32 | "ADC vs BCID for LUMI_32" | 199 | 1835.8 | 667.37 | 0.29304 | -0.13298 | + | bcid_adc_LUMI_33 | "ADC vs BCID for LUMI_33" | 199 | 1766.1 | 945.07 | -0.42592 | -0.84695 | + | bcid_adc_LUMI_34 | "ADC vs BCID for LUMI_34" | 199 | 2390.6 | 854.71 | -1.5394 | 1.7641 | + | bcid_adc_LUMI_36 | "ADC vs BCID for LUMI_36" | 199 | 1592.4 | 945.03 | 0.029865 | -1.1452 | + | bcid_adc_LUMI_37 | "ADC vs BCID for LUMI_37" | 199 | 1699.2 | 880.18 | -0.12931 | -1.1194 | + | bcid_adc_LUMI_38 | "ADC vs BCID for LUMI_38" | 199 | 2139.4 | 760.53 | -0.60891 | -0.27076 | + | bcid_adc_LUMI_39 | "ADC vs BCID for LUMI_39" | 199 | 1698.1 | 857.66 | -0.48489 | -0.82547 | + | bcid_adc_LUMI_40 | "ADC vs BCID for LUMI_40" | 199 | 2386.5 | 590.56 | -1.6517 | 3.5922 | + | bcid_adc_LUMI_41 | "ADC vs BCID for LUMI_41" | 199 | 1826.1 | 1008.9 | -0.70857 | -1.0663 | + | bcid_adc_LUMI_42 | "ADC vs BCID for LUMI_42" | 199 | 1999.7 | 803.06 | -0.40614 | -0.58837 | + | bcid_adc_LUMI_43 | "ADC vs BCID for LUMI_43" | 199 | 1943 | 843.76 | -0.95746 | -0.17841 | + | bcid_adc_LUMI_44 | "ADC vs BCID for LUMI_44" | 199 | 1944.9 | 1006.9 | -0.74659 | -0.92771 | + | bcid_adc_LUMI_45 | "ADC vs BCID for LUMI_45" | 199 | 2095.1 | 947.90 | -0.87342 | -0.60699 | + | bcid_adc_LUMI_46 | "ADC vs BCID for LUMI_46" | 199 | 1656.2 | 1039.7 | -0.58107 | -1.2514 | + | bcid_adc_LUMI_47 | "ADC vs BCID for LUMI_47" | 199 | 2206.5 | 794.67 | -1.2367 | 0.93193 | + | bcid_adc_TIME_05_00 | "ADC vs BCID for TIME_05_00" | 199 | 1886.6 | 912.20 | -0.46031 | -0.75571 | + | bcid_adc_TIME_05_01 | "ADC vs BCID for TIME_05_01" | 199 | 1886.6 | 912.03 | -0.46021 | -0.75387 | + | bcid_adc_TIME_05_02 | "ADC vs BCID for TIME_05_02" | 199 | 1885.7 | 912.93 | -0.45868 | -0.75867 | + | bcid_adc_TIME_05_03 | "ADC vs BCID for TIME_05_03" | 199 | 1886 | 913.42 | -0.45842 | -0.76068 | + | bcid_adc_TIME_05_04 | "ADC vs BCID for TIME_05_04" | 199 | 1890 | 912.89 | -0.46063 | -0.75946 | + | bcid_adc_TIME_05_05 | "ADC vs BCID for TIME_05_05" | 199 | 1895.4 | 912.48 | -0.46831 | -0.75773 | + | bcid_adc_TIME_05_06 | "ADC vs BCID for TIME_05_06" | 199 | 1902.2 | 909.17 | -0.47984 | -0.74181 | + | bcid_adc_TIME_05_07 | "ADC vs BCID for TIME_05_07" | 199 | 1902.3 | 909.23 | -0.48037 | -0.74151 | + | bcid_adc_TIME_05_08 | "ADC vs BCID for TIME_05_08" | 199 | 1876.3 | 926.34 | -0.45098 | -0.80591 | + | bcid_adc_TIME_05_09 | "ADC vs BCID for TIME_05_09" | 199 | 1876.7 | 926.06 | -0.45196 | -0.80464 | + | bcid_adc_TIME_05_10 | "ADC vs BCID for TIME_05_10" | 199 | 1877.1 | 925.87 | -0.45227 | -0.80372 | + | bcid_adc_TIME_05_11 | "ADC vs BCID for TIME_05_11" | 199 | 1877.4 | 925.11 | -0.45123 | -0.80212 | + | bcid_adc_TIME_05_12 | "ADC vs BCID for TIME_05_12" | 199 | 1882.6 | 921.22 | -0.45532 | -0.78836 | + | bcid_adc_TIME_05_13 | "ADC vs BCID for TIME_05_13" | 199 | 1886.4 | 914.96 | -0.45779 | -0.7667 | + | bcid_adc_TIME_05_14 | "ADC vs BCID for TIME_05_14" | 199 | 1887.2 | 910.90 | -0.4616 | -0.75008 | + | bcid_adc_TIME_05_15 | "ADC vs BCID for TIME_05_15" | 199 | 1887.4 | 910.76 | -0.46148 | -0.74925 | + | bcid_adc_TIME_11_00 | "ADC vs BCID for TIME_11_00" | 199 | 1895.5 | 924.33 | -0.48253 | -0.78174 | + | bcid_adc_TIME_11_01 | "ADC vs BCID for TIME_11_01" | 199 | 1894.7 | 924.37 | -0.48126 | -0.78254 | + | bcid_adc_TIME_11_02 | "ADC vs BCID for TIME_11_02" | 199 | 1894.4 | 924.80 | -0.48065 | -0.78409 | + | bcid_adc_TIME_11_03 | "ADC vs BCID for TIME_11_03" | 199 | 1893.9 | 923.94 | -0.4775 | -0.7835 | + | bcid_adc_TIME_11_04 | "ADC vs BCID for TIME_11_04" | 199 | 1892.8 | 920.02 | -0.46914 | -0.7778 | + | bcid_adc_TIME_11_05 | "ADC vs BCID for TIME_11_05" | 199 | 1893.2 | 914.35 | -0.45981 | -0.76588 | + | bcid_adc_TIME_11_06 | "ADC vs BCID for TIME_11_06" | 199 | 1892.9 | 912.08 | -0.45612 | -0.76202 | + | bcid_adc_TIME_11_07 | "ADC vs BCID for TIME_11_07" | 199 | 1892.8 | 912.83 | -0.45671 | -0.76371 | + | bcid_adc_TIME_11_08 | "ADC vs BCID for TIME_11_08" | 199 | 1880.7 | 924.01 | -0.45545 | -0.79934 | + | bcid_adc_TIME_11_09 | "ADC vs BCID for TIME_11_09" | 199 | 1880.3 | 924.56 | -0.45494 | -0.80144 | + | bcid_adc_TIME_11_10 | "ADC vs BCID for TIME_11_10" | 199 | 1880.5 | 924.29 | -0.45503 | -0.79994 | + | bcid_adc_TIME_11_11 | "ADC vs BCID for TIME_11_11" | 199 | 1882 | 923.37 | -0.45668 | -0.79683 | + | bcid_adc_TIME_11_12 | "ADC vs BCID for TIME_11_12" | 199 | 1887.4 | 923.20 | -0.46261 | -0.79237 | + | bcid_adc_TIME_11_13 | "ADC vs BCID for TIME_11_13" | 199 | 1895 | 923.89 | -0.47921 | -0.78266 | + | bcid_adc_TIME_11_14 | "ADC vs BCID for TIME_11_14" | 199 | 1899.5 | 923.91 | -0.4894 | -0.77539 | + | bcid_adc_TIME_11_15 | "ADC vs BCID for TIME_11_15" | 199 | 1897.6 | 924.16 | -0.48645 | -0.77878 | + | bcid_adc_TIME_29_00 | "ADC vs BCID for TIME_29_00" | 199 | 1898.3 | 910.80 | -0.47463 | -0.74715 | + | bcid_adc_TIME_29_01 | "ADC vs BCID for TIME_29_01" | 199 | 1897.8 | 911.17 | -0.47374 | -0.74859 | + | bcid_adc_TIME_29_02 | "ADC vs BCID for TIME_29_02" | 199 | 1897.8 | 911.49 | -0.47357 | -0.74952 | + | bcid_adc_TIME_29_03 | "ADC vs BCID for TIME_29_03" | 199 | 1897.1 | 911.57 | -0.47295 | -0.75054 | + | bcid_adc_TIME_29_04 | "ADC vs BCID for TIME_29_04" | 199 | 1895.7 | 913.47 | -0.47028 | -0.75829 | + | bcid_adc_TIME_29_05 | "ADC vs BCID for TIME_29_05" | 199 | 1895.8 | 915.67 | -0.47172 | -0.76577 | + | bcid_adc_TIME_29_06 | "ADC vs BCID for TIME_29_06" | 199 | 1893.7 | 916.36 | -0.47081 | -0.76778 | + | bcid_adc_TIME_29_07 | "ADC vs BCID for TIME_29_07" | 199 | 1893.9 | 915.91 | -0.47068 | -0.76583 | + | bcid_adc_TIME_29_08 | "ADC vs BCID for TIME_29_08" | 199 | 1889.9 | 918.49 | -0.46809 | -0.77157 | + | bcid_adc_TIME_29_09 | "ADC vs BCID for TIME_29_09" | 199 | 1889.3 | 918.20 | -0.46679 | -0.77198 | + | bcid_adc_TIME_29_10 | "ADC vs BCID for TIME_29_10" | 199 | 1889.6 | 917.79 | -0.46701 | -0.77118 | + | bcid_adc_TIME_29_11 | "ADC vs BCID for TIME_29_11" | 199 | 1888.8 | 917.78 | -0.4649 | -0.77255 | + | bcid_adc_TIME_29_12 | "ADC vs BCID for TIME_29_12" | 199 | 1890.6 | 916.35 | -0.46544 | -0.76886 | + | bcid_adc_TIME_29_13 | "ADC vs BCID for TIME_29_13" | 199 | 1894.9 | 913.12 | -0.46831 | -0.75715 | + | bcid_adc_TIME_29_14 | "ADC vs BCID for TIME_29_14" | 199 | 1899.1 | 910.00 | -0.47491 | -0.7438 | + | bcid_adc_TIME_29_15 | "ADC vs BCID for TIME_29_15" | 199 | 1898.7 | 910.08 | -0.47523 | -0.74504 | + | bcid_adc_TIME_35_00 | "ADC vs BCID for TIME_35_00" | 199 | 1876.1 | 922.29 | -0.4427 | -0.80479 | + | bcid_adc_TIME_35_01 | "ADC vs BCID for TIME_35_01" | 199 | 1876.3 | 922.05 | -0.44309 | -0.80445 | + | bcid_adc_TIME_35_02 | "ADC vs BCID for TIME_35_02" | 199 | 1877.1 | 922.10 | -0.44353 | -0.80308 | + | bcid_adc_TIME_35_03 | "ADC vs BCID for TIME_35_03" | 199 | 1879.7 | 921.46 | -0.44623 | -0.80039 | + | bcid_adc_TIME_35_04 | "ADC vs BCID for TIME_35_04" | 199 | 1884.1 | 920.96 | -0.45291 | -0.79452 | + | bcid_adc_TIME_35_05 | "ADC vs BCID for TIME_35_05" | 199 | 1888.3 | 920.44 | -0.45911 | -0.78978 | + | bcid_adc_TIME_35_06 | "ADC vs BCID for TIME_35_06" | 199 | 1893.8 | 917.96 | -0.46697 | -0.77764 | + | bcid_adc_TIME_35_07 | "ADC vs BCID for TIME_35_07" | 199 | 1893.1 | 918.02 | -0.46651 | -0.77811 | + | bcid_adc_TIME_35_08 | "ADC vs BCID for TIME_35_08" | 199 | 1887.8 | 918.23 | -0.45517 | -0.78469 | + | bcid_adc_TIME_35_09 | "ADC vs BCID for TIME_35_09" | 199 | 1888 | 918.44 | -0.45459 | -0.78538 | + | bcid_adc_TIME_35_10 | "ADC vs BCID for TIME_35_10" | 199 | 1887.7 | 918.66 | -0.4541 | -0.78537 | + | bcid_adc_TIME_35_11 | "ADC vs BCID for TIME_35_11" | 199 | 1887 | 918.29 | -0.45401 | -0.78533 | + | bcid_adc_TIME_35_12 | "ADC vs BCID for TIME_35_12" | 199 | 1884.3 | 919.61 | -0.45134 | -0.79181 | + | bcid_adc_TIME_35_13 | "ADC vs BCID for TIME_35_13" | 199 | 1880.2 | 920.83 | -0.44715 | -0.79919 | + | bcid_adc_TIME_35_14 | "ADC vs BCID for TIME_35_14" | 199 | 1873.9 | 922.25 | -0.44163 | -0.8074 | + | bcid_adc_TIME_35_15 | "ADC vs BCID for TIME_35_15" | 199 | 1874.4 | 922.12 | -0.44152 | -0.80558 | diff --git a/Plume/PlumeReco/tests/refs/plume_decoding.ref.opt-g b/Plume/PlumeReco/tests/refs/plume_decoding.ref.opt-g index 027b80b7bdebff9a265eb923c24ccd9b1a6283db..365bb958a560f441059c7ebdd9366308d9562576 100644 --- a/Plume/PlumeReco/tests/refs/plume_decoding.ref.opt-g +++ b/Plume/PlumeReco/tests/refs/plume_decoding.ref.opt-g @@ -7,10 +7,6 @@ HLTControlFlowMgr INFO Start initialization HLTControlFlowMgr INFO Will not use an EventSelector. HistogramPersistencySvc INFO Added successfully Conversion service RootHistSvc MDFIOAlg INFO Connected to mdf:root://eoslhcb.cern.ch//eos/lhcb//lhcb/swtest/2024_raw_hlt1_290683/Run_0000290683_20240417-065023-114_UCEB02_0001.mdf, input 1/1 -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 @@ -22,24418 +18,220 @@ ApplicationMgr INFO Application Manager Started successf HLTControlFlowMgr INFO Will measure time between events 20 and 180 (stop might be some events later) HLTControlFlowMgr INFO Starting loop on events PrintHeader_7bb0e124 INFO # 1 Run 290683, Event 7570207 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -8, OverTh=false -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= -4, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 82, OverTh=true -Channel=LUMI_13 , ADC= 885, OverTh=true -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= -7, OverTh=false -Channel=LUMI_39 , ADC= 16, OverTh=false -Channel=LUMI_16 , ADC= 174, OverTh=true -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 59, OverTh=true -Channel=LUMI_47 , ADC= 31, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= -9, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 362, OverTh=true -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= 437, OverTh=true -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 345, OverTh=true -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 17, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 246, OverTh=false -Channel=TIME_29_08, ADC= 384, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 265, OverTh=false -Channel=TIME_29_01, ADC= 247, OverTh=false -Channel=TIME_29_09, ADC= 384, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 248, OverTh=false -Channel=TIME_29_10, ADC= 379, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 263, OverTh=false -Channel=TIME_29_03, ADC= 251, OverTh=false -Channel=TIME_29_11, ADC= 377, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 340, 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= 267, 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= 236, 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= 234, 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= 253, 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= 255, 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 252, 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= 254, 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= 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= 257, 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= 258, OverTh=false -RCWNTupleCnv INFO Booked TTree with ID: Plume "PlumeTuple" in directory plume_decoding_ntuple.root:/PlumeTuple_d36bf254 +RCWNTupleCnv INFO Booked TTree with ID: Plume "PlumeTuple" in directory plume_decoding_ntuple.root:/PlumeTuple_4a35a9a2 PrintHeader_7bb0e124 INFO # 2 Run 290683, Event 7570237 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -6, OverTh=false -Channel=LUMI_14 , ADC= 316, OverTh=true -Channel=LUMI_38 , ADC= 13, 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= 5, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 339, OverTh=true -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 91, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 100, OverTh=true -Channel=LUMI_31 , ADC= 12, OverTh=false -Channel=LUMI_08 , ADC= 305, OverTh=true -Channel=LUMI_32 , ADC= 45, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -10, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 37, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 65, OverTh=true -Channel=LUMI_42 , ADC= 22, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 276, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 273, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 267, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 270, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 270, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 269, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 261, OverTh=false -Channel=TIME_05_13, ADC= 263, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 266, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 269, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 273, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 267, OverTh=false -Channel=TIME_11_00, ADC= 271, 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= 272, 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= 273, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 269, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 268, 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= 263, OverTh=false -Channel=TIME_11_13, ADC= 261, 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= 271, 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= 272, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 3 Run 290683, Event 7570390 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 19, 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= -15, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -10, OverTh=false -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 8, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 6, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= 10, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 265, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 231, OverTh=false -Channel=TIME_29_08, ADC= 625, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 238, OverTh=false -Channel=TIME_29_09, ADC= 611, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 245, OverTh=false -Channel=TIME_29_10, ADC= 615, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 250, OverTh=false -Channel=TIME_29_11, ADC= 588, OverTh=false -Channel=TIME_05_04, ADC= 271, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 453, OverTh=false -Channel=TIME_05_05, ADC= 300, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 289, OverTh=false -Channel=TIME_05_06, ADC= 333, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 193, OverTh=false -Channel=TIME_05_07, ADC= 332, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 198, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 247, OverTh=false -Channel=TIME_35_08, ADC= 320, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 265, OverTh=false -Channel=TIME_35_01, ADC= 250, OverTh=false -Channel=TIME_35_09, ADC= 319, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 252, OverTh=false -Channel=TIME_35_10, ADC= 314, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 263, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 309, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 278, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 252, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 246, 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= 249, OverTh=false PrintHeader_7bb0e124 INFO # 4 Run 290683, Event 7565207 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 256, OverTh=true -Channel=LUMI_24 , ADC= 504, OverTh=true -Channel=LUMI_01 , ADC= 32, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 362, OverTh=true -Channel=LUMI_26 , ADC= 52, OverTh=true -Channel=LUMI_03 , ADC= 98, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 8, OverTh=false -Channel=LUMI_28 , ADC= 18, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 14, OverTh=false -Channel=LUMI_37 , ADC= 366, OverTh=true -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= 0, OverTh=false -Channel=LUMI_16 , ADC= 74, OverTh=true -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 583, OverTh=true -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 15, OverTh=false -Channel=LUMI_30 , ADC= 13, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 7, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 220, OverTh=true -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 161, OverTh=true -Channel=LUMI_17 , ADC= -7, OverTh=false -Channel=LUMI_41 , ADC= 284, OverTh=true -Channel=LUMI_18 , ADC= 346, OverTh=true -Channel=LUMI_42 , ADC= 213, OverTh=true -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 810, OverTh=true -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 395, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 395, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 264, OverTh=false -Channel=TIME_05_10, ADC= 392, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 264, OverTh=false -Channel=TIME_05_11, ADC= 385, 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= 345, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 285, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 248, 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= 251, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 358, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 360, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 357, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 361, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 355, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 359, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 341, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 334, OverTh=false -Channel=TIME_35_11, ADC= 267, OverTh=false -Channel=TIME_11_04, ADC= 296, OverTh=false -Channel=TIME_11_12, ADC= 288, OverTh=false -Channel=TIME_35_04, ADC= 282, OverTh=false -Channel=TIME_35_12, ADC= 309, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 336, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 342, OverTh=false -Channel=TIME_11_06, ADC= 240, OverTh=false -Channel=TIME_11_14, ADC= 379, OverTh=false -Channel=TIME_35_06, ADC= 234, OverTh=false -Channel=TIME_35_14, ADC= 370, OverTh=false -Channel=TIME_11_07, ADC= 242, OverTh=false -Channel=TIME_11_15, ADC= 371, OverTh=false -Channel=TIME_35_07, ADC= 235, OverTh=false -Channel=TIME_35_15, ADC= 373, OverTh=false PrintHeader_7bb0e124 INFO # 5 Run 290683, Event 7565256 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 90, OverTh=true -Channel=LUMI_25 , ADC= 438, OverTh=true -Channel=LUMI_02 , ADC= 118, OverTh=true -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= 4, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 17, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 267, OverTh=true -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 26, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 22, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 135, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= -27, OverTh=false -Channel=LUMI_19 , ADC= 32, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -11, OverTh=false -Channel=LUMI_21 , ADC= 7, OverTh=false -Channel=LUMI_45 , ADC= 13, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 252, OverTh=false -Channel=TIME_05_08, ADC= 357, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 356, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 354, 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= 350, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 248, OverTh=false -Channel=TIME_05_12, ADC= 331, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 231, OverTh=false -Channel=TIME_05_13, ADC= 283, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 214, OverTh=false -Channel=TIME_05_14, ADC= 249, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 212, OverTh=false -Channel=TIME_05_15, ADC= 248, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 298, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 344, OverTh=false -Channel=TIME_11_01, ADC= 294, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 348, OverTh=false -Channel=TIME_11_02, ADC= 294, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 347, OverTh=false -Channel=TIME_11_03, ADC= 293, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 251, OverTh=false -Channel=TIME_35_11, ADC= 336, OverTh=false -Channel=TIME_11_04, ADC= 293, OverTh=false -Channel=TIME_11_12, ADC= 268, OverTh=false -Channel=TIME_35_04, ADC= 216, OverTh=false -Channel=TIME_35_12, ADC= 296, OverTh=false -Channel=TIME_11_05, ADC= 318, OverTh=false -Channel=TIME_11_13, ADC= 294, OverTh=false -Channel=TIME_35_05, ADC= 188, OverTh=false -Channel=TIME_35_13, ADC= 273, OverTh=false -Channel=TIME_11_06, ADC= 332, OverTh=false -Channel=TIME_11_14, ADC= 303, OverTh=false -Channel=TIME_35_06, ADC= 168, OverTh=false -Channel=TIME_35_14, ADC= 250, OverTh=false -Channel=TIME_11_07, ADC= 329, OverTh=false -Channel=TIME_11_15, ADC= 299, OverTh=false -Channel=TIME_35_07, ADC= 167, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 6 Run 290683, Event 7565333 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= -1, 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= -2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -5, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -5, OverTh=false -Channel=LUMI_37 , ADC= -6, 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= 7, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, 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= -4, 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= -3, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= -1, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 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= 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= 257, 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= 259, 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= 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= 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= 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, 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= 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= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 7 Run 290683, Event 7560518 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 64, OverTh=true -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 46, OverTh=false -Channel=LUMI_27 , ADC= 26, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 8, OverTh=false -Channel=LUMI_37 , ADC= 149, OverTh=true -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -8, OverTh=false -Channel=LUMI_39 , ADC= 195, OverTh=true -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= -6, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= 20, OverTh=false -Channel=LUMI_17 , ADC= 279, OverTh=true -Channel=LUMI_41 , ADC= 28, OverTh=false -Channel=LUMI_18 , ADC= 18, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -5, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 251, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 253, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 255, 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= 253, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 252, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 250, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 263, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 320, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 418, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 321, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 421, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 320, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 418, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 312, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 386, OverTh=false -Channel=TIME_35_11, ADC= 268, OverTh=false -Channel=TIME_11_04, ADC= 285, OverTh=false -Channel=TIME_11_12, ADC= 269, OverTh=false -Channel=TIME_35_04, ADC= 314, OverTh=false -Channel=TIME_35_12, ADC= 329, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 305, OverTh=false -Channel=TIME_35_05, ADC= 271, OverTh=false -Channel=TIME_35_13, ADC= 373, OverTh=false -Channel=TIME_11_06, ADC= 244, OverTh=false -Channel=TIME_11_14, ADC= 332, OverTh=false -Channel=TIME_35_06, ADC= 231, OverTh=false -Channel=TIME_35_14, ADC= 435, OverTh=false -Channel=TIME_11_07, ADC= 246, OverTh=false -Channel=TIME_11_15, ADC= 332, OverTh=false -Channel=TIME_35_07, ADC= 238, OverTh=false -Channel=TIME_35_15, ADC= 437, OverTh=false PrintHeader_7bb0e124 INFO # 8 Run 290683, Event 7560699 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 39, OverTh=false -Channel=LUMI_24 , ADC= 361, OverTh=true -Channel=LUMI_01 , ADC= 57, OverTh=true -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 122, OverTh=true -Channel=LUMI_26 , ADC= 243, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 12, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 9, 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= 0, 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= 241, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 29, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 706, OverTh=true -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 304, OverTh=true -Channel=LUMI_31 , ADC= 93, OverTh=true -Channel=LUMI_08 , ADC= 222, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 222, OverTh=true -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= 9, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 12, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -5, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 291, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 289, 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= 288, 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= 288, 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= 279, OverTh=false -Channel=TIME_05_12, ADC= 264, 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= 283, 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= 299, 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= 299, 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= 262, 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= 259, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 254, 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= 256, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 279, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 286, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 278, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 282, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 9 Run 290683, Event 7561061 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 8, 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= 5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, 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= 16, 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= 5, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -7, OverTh=false -Channel=LUMI_30 , ADC= 4, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= 11, 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= 1, OverTh=false -Channel=LUMI_42 , ADC= 7, 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= 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= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 270, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 270, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 259, 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= 259, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 264, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 261, OverTh=false -Channel=TIME_29_07, ADC= 264, 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= 269, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 272, 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= 275, 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= 269, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 252, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 10 Run 290683, Event 7561387 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 14, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 12, OverTh=false -Channel=LUMI_25 , ADC= 21, OverTh=false -Channel=LUMI_02 , ADC= 16, OverTh=false -Channel=LUMI_26 , ADC= 244, OverTh=true -Channel=LUMI_03 , ADC= 36, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC=1120, OverTh=true -Channel=LUMI_36 , ADC= 151, OverTh=true -Channel=LUMI_13 , ADC= 198, OverTh=true -Channel=LUMI_37 , ADC= 28, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 394, OverTh=true -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 289, OverTh=true -Channel=LUMI_16 , ADC= 36, OverTh=false -Channel=LUMI_40 , ADC= 37, OverTh=false -Channel=LUMI_23 , ADC= 235, OverTh=true -Channel=LUMI_47 , ADC= 189, OverTh=true -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 11, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 18, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 363, OverTh=true -Channel=LUMI_08 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_34 , ADC= 316, OverTh=true -Channel=LUMI_17 , ADC= 676, OverTh=true -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 224, OverTh=true -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 337, OverTh=true -Channel=LUMI_20 , ADC= 261, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 162, OverTh=true -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 334, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 336, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 336, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 263, OverTh=false -Channel=TIME_05_11, ADC= 332, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 312, 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= 283, 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= 261, 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= 257, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 285, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 285, 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= 285, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 280, 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= 272, OverTh=false -Channel=TIME_35_12, ADC= 263, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 266, OverTh=false -Channel=TIME_35_13, ADC= 272, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 285, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 288, OverTh=false PrintHeader_7bb0e124 INFO # 11 Run 290683, Event 7561447 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -2, 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= 4, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 9, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= 27, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 17, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 23, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 176, OverTh=true -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= 12, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= -7, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= -11, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 8, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 253, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 255, 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= 257, OverTh=false -Channel=TIME_29_03, ADC= 254, 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= 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= 258, OverTh=false -Channel=TIME_29_13, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 253, OverTh=false -Channel=TIME_11_00, ADC= 263, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 263, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 259, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 257, 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= 258, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 12 Run 290683, Event 7561496 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 341, OverTh=true -Channel=LUMI_24 , ADC= 114, OverTh=true -Channel=LUMI_01 , ADC= 448, OverTh=true -Channel=LUMI_25 , ADC= 429, OverTh=true -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 21, 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= 4, OverTh=false -Channel=LUMI_12 , ADC= 305, OverTh=true -Channel=LUMI_36 , ADC= 488, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 456, OverTh=true -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 465, OverTh=true -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 294, OverTh=true -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 303, OverTh=true -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 92, OverTh=true -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 24, OverTh=false -Channel=LUMI_17 , ADC= 668, OverTh=true -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 77, OverTh=true -Channel=LUMI_42 , ADC= 359, OverTh=true -Channel=LUMI_19 , ADC= 355, OverTh=true -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 18, OverTh=false -Channel=LUMI_44 , ADC= 505, OverTh=true -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 280, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, 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= 260, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, 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= 254, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, 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= 258, OverTh=false -Channel=TIME_05_14, ADC= 257, 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= 259, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 239, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 235, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 260, OverTh=false -Channel=TIME_11_10, ADC= 237, 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= 242, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 247, OverTh=false -Channel=TIME_35_04, ADC= 254, 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= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 265, 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= 264, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 13 Run 290683, Event 7561535 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 61, OverTh=true -Channel=LUMI_24 , ADC= 87, OverTh=true -Channel=LUMI_01 , ADC= -14, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 104, OverTh=true -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 22, OverTh=false -Channel=LUMI_13 , ADC= 12, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 12, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -11, OverTh=false -Channel=LUMI_16 , ADC= -6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 233, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 13, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 226, OverTh=true -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= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 196, OverTh=true -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 21, 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= 8, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 282, OverTh=false -Channel=TIME_29_00, ADC= 273, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 284, OverTh=false -Channel=TIME_29_01, ADC= 275, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 286, OverTh=false -Channel=TIME_29_02, ADC= 274, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 282, OverTh=false -Channel=TIME_29_03, ADC= 274, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 249, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 266, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 232, OverTh=false -Channel=TIME_05_13, ADC= 249, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 272, OverTh=false -Channel=TIME_05_06, ADC= 226, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 252, OverTh=false -Channel=TIME_29_14, ADC= 277, OverTh=false -Channel=TIME_05_07, ADC= 224, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 278, OverTh=false -Channel=TIME_11_00, ADC= 255, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 255, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 251, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 14 Run 290683, Event 7561561 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -29, OverTh=false -Channel=LUMI_24 , ADC= -28, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -10, 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= 2, 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= 237, OverTh=true -Channel=LUMI_37 , ADC= 38, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= -5, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 10, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 276, OverTh=true -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 1, 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= 4, 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= 0, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 284, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 282, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 281, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 282, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 278, 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= 266, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 260, 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= 259, 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= 255, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 254, 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= 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= 256, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 260, 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= 257, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 259, 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 # 15 Run 290683, Event 7561718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 14, OverTh=false -Channel=LUMI_01 , ADC= 297, OverTh=true -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 55, OverTh=true -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= -14, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -5, OverTh=false -Channel=LUMI_36 , ADC= 535, OverTh=true -Channel=LUMI_13 , ADC= 193, OverTh=true -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 615, OverTh=true -Channel=LUMI_30 , ADC= 226, OverTh=true -Channel=LUMI_07 , ADC= 298, OverTh=true -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 123, OverTh=true -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 17, OverTh=false -Channel=LUMI_34 , ADC= 9, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 24, OverTh=false -Channel=LUMI_18 , ADC= 403, OverTh=true -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 318, OverTh=true -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= 277, OverTh=true -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 351, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 349, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 348, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 342, 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= 313, OverTh=false -Channel=TIME_05_12, ADC= 274, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 265, OverTh=false -Channel=TIME_05_13, ADC= 320, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 243, OverTh=false -Channel=TIME_05_14, ADC= 359, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 244, OverTh=false -Channel=TIME_05_15, ADC= 358, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 398, OverTh=false -Channel=TIME_11_08, ADC= 356, OverTh=false -Channel=TIME_35_00, ADC= 574, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 398, OverTh=false -Channel=TIME_11_09, ADC= 354, OverTh=false -Channel=TIME_35_01, ADC= 575, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 398, OverTh=false -Channel=TIME_11_10, ADC= 351, OverTh=false -Channel=TIME_35_02, ADC= 562, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 385, OverTh=false -Channel=TIME_11_11, ADC= 335, OverTh=false -Channel=TIME_35_03, ADC= 505, OverTh=false -Channel=TIME_35_11, ADC= 280, OverTh=false -Channel=TIME_11_04, ADC= 345, OverTh=false -Channel=TIME_11_12, ADC= 325, OverTh=false -Channel=TIME_35_04, ADC= 377, OverTh=false -Channel=TIME_35_12, ADC= 380, OverTh=false -Channel=TIME_11_05, ADC= 296, OverTh=false -Channel=TIME_11_13, ADC= 360, OverTh=false -Channel=TIME_35_05, ADC= 304, OverTh=false -Channel=TIME_35_13, ADC= 466, OverTh=false -Channel=TIME_11_06, ADC= 270, OverTh=false -Channel=TIME_11_14, ADC= 402, OverTh=false -Channel=TIME_35_06, ADC= 199, OverTh=false -Channel=TIME_35_14, ADC= 603, OverTh=false -Channel=TIME_11_07, ADC= 275, OverTh=false -Channel=TIME_11_15, ADC= 402, OverTh=false -Channel=TIME_35_07, ADC= 206, OverTh=false -Channel=TIME_35_15, ADC= 609, OverTh=false PrintHeader_7bb0e124 INFO # 16 Run 290683, Event 7561907 -PlumeRawToDigits_89428f2d 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= 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= 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= -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= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 9, 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= 2, 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= 1, OverTh=false -Channel=LUMI_19 , ADC= 13, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 254, 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= 259, 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= 256, OverTh=false -Channel=TIME_29_04, ADC= 256, 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= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 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= 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= 254, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 255, 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= 260, OverTh=false -Channel=TIME_11_07, ADC= 259, 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 # 17 Run 290683, Event 7564600 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 6, 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= 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= 0, 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= 0, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -10, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, 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= -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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 335, 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= 335, 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= 334, 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= 331, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 307, 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= 271, 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= 246, 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= 248, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 256, 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= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, 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= 257, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 252, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 260, 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= 261, 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 # 18 Run 290683, Event 7564781 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -4, 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= 13, 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= 360, OverTh=true -Channel=LUMI_36 , ADC= 16, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 29, OverTh=false -Channel=LUMI_38 , ADC= 211, OverTh=true -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 15, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, 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= -8, 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= 1, 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= -2, OverTh=false -Channel=LUMI_43 , ADC= 220, OverTh=true -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= 5, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 385, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 246, OverTh=false -Channel=TIME_05_01, ADC= 381, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 250, OverTh=false -Channel=TIME_05_02, ADC= 381, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 378, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 355, OverTh=false -Channel=TIME_05_12, ADC= 278, OverTh=false -Channel=TIME_29_04, ADC= 281, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 323, OverTh=false -Channel=TIME_05_13, ADC= 333, OverTh=false -Channel=TIME_29_05, ADC= 359, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 305, OverTh=false -Channel=TIME_05_14, ADC= 393, OverTh=false -Channel=TIME_29_06, ADC= 424, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 310, OverTh=false -Channel=TIME_05_15, ADC= 399, OverTh=false -Channel=TIME_29_07, ADC= 423, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 252, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 263, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 251, OverTh=false -Channel=TIME_35_10, ADC= 266, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 252, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 271, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 249, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 309, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 249, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 333, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 248, OverTh=false -Channel=TIME_35_14, ADC= 276, OverTh=false -Channel=TIME_11_07, ADC= 330, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 247, OverTh=false -Channel=TIME_35_15, ADC= 275, OverTh=false PrintHeader_7bb0e124 INFO # 19 Run 290683, Event 7567863 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 346, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -8, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 47, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 9, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 13, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 348, OverTh=true -Channel=LUMI_31 , ADC= 375, OverTh=true -Channel=LUMI_08 , ADC= 371, OverTh=true -Channel=LUMI_32 , ADC= 21, OverTh=false -Channel=LUMI_09 , ADC= 29, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 148, OverTh=true -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= 769, OverTh=true -Channel=LUMI_42 , ADC= 55, OverTh=true -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, 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= 257, OverTh=false -Channel=TIME_05_01, ADC= 258, OverTh=false -Channel=TIME_05_09, ADC= 252, 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= 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= 255, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_29_05, ADC= 273, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 282, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 265, OverTh=false -Channel=TIME_29_07, ADC= 282, 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= 257, 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= 256, 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= 258, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 269, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 253, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 251, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 20 Run 290683, Event 7567870 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 446, OverTh=true -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 49, OverTh=false -Channel=LUMI_02 , ADC= 13, 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= 8, OverTh=false -Channel=LUMI_28 , ADC= -7, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 11, OverTh=false -Channel=LUMI_37 , ADC= 6, 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= -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= 2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 16, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 236, OverTh=true -Channel=LUMI_32 , ADC= 142, OverTh=true -Channel=LUMI_09 , ADC= 80, OverTh=true -Channel=LUMI_33 , ADC= 10, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 60, OverTh=true -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 354, OverTh=false -Channel=TIME_29_08, ADC= 246, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 350, OverTh=false -Channel=TIME_29_09, ADC= 249, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 348, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 348, 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= 318, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 278, OverTh=false -Channel=TIME_29_13, ADC= 332, OverTh=false -Channel=TIME_05_06, ADC= 274, OverTh=false -Channel=TIME_05_14, ADC= 253, OverTh=false -Channel=TIME_29_06, ADC= 293, OverTh=false -Channel=TIME_29_14, ADC= 364, OverTh=false -Channel=TIME_05_07, ADC= 275, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 293, OverTh=false -Channel=TIME_29_15, ADC= 364, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 264, OverTh=false -Channel=TIME_11_02, ADC= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 277, 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= 295, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 279, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 293, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 274, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 21 Run 290683, Event 7567921 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 161, OverTh=true -Channel=LUMI_24 , ADC= 40, OverTh=false -Channel=LUMI_01 , ADC= 83, OverTh=true -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= -1, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 72, OverTh=true -Channel=LUMI_13 , ADC= 698, OverTh=true -Channel=LUMI_37 , ADC= 370, OverTh=true -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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 27, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 13, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 393, OverTh=true -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= -16, OverTh=false -Channel=LUMI_08 , ADC= 10, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= 2, 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= 19, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -4, 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= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 353, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 353, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 351, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 340, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 311, OverTh=false -Channel=TIME_05_12, ADC= 281, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 326, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 238, OverTh=false -Channel=TIME_05_14, ADC= 366, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 267, OverTh=false -Channel=TIME_05_07, ADC= 241, OverTh=false -Channel=TIME_05_15, ADC= 364, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 272, 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= 256, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 291, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 350, 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= 374, 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= 367, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 22 Run 290683, Event 7575667 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 251, OverTh=true -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= 2, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 395, OverTh=true -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= -15, 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= 7, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 179, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 45, 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= 7, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 5, OverTh=false -Channel=LUMI_33 , ADC= -4, 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= 12, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 23, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 101, OverTh=true -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -5, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 3, OverTh=false -Channel=TIME_05_00, ADC= 278, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 277, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 278, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 277, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 274, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 279, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 280, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 265, 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= 265, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 260, 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= 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= 258, 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= 253, OverTh=false -Channel=TIME_11_06, ADC= 274, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 275, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 23 Run 290683, Event 7572284 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 63, OverTh=true -Channel=LUMI_24 , ADC= 17, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= -6, 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= 97, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 434, OverTh=true -Channel=LUMI_14 , ADC= 241, OverTh=true -Channel=LUMI_38 , ADC= 8, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 50, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 374, OverTh=true -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= 0, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 239, OverTh=true -Channel=LUMI_43 , ADC= 20, OverTh=false -Channel=LUMI_20 , ADC= -6, OverTh=false -Channel=LUMI_44 , ADC= 0, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, 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= 254, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 257, 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= 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= 257, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 253, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 465, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 469, 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= 459, 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= 438, OverTh=false -Channel=TIME_11_11, ADC= 263, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 364, OverTh=false -Channel=TIME_11_12, ADC= 309, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 278, OverTh=false -Channel=TIME_11_13, ADC= 404, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 215, OverTh=false -Channel=TIME_11_14, ADC= 500, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 221, OverTh=false -Channel=TIME_11_15, ADC= 494, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 24 Run 290683, Event 7572356 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -21, OverTh=false -Channel=LUMI_24 , ADC= 489, OverTh=true -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= -10, OverTh=false -Channel=LUMI_02 , ADC= 178, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 28, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 40, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 228, OverTh=true -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 385, OverTh=true -Channel=LUMI_39 , ADC= 11, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 12, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 9, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 20, 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= 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= 290, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 329, OverTh=true -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 22, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 5, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 190, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 302, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 189, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 299, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 193, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 299, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 195, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 298, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 225, OverTh=false -Channel=TIME_05_12, ADC= 224, OverTh=false -Channel=TIME_29_04, ADC= 282, OverTh=false -Channel=TIME_29_12, ADC= 263, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 198, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 293, OverTh=false -Channel=TIME_05_06, ADC= 281, OverTh=false -Channel=TIME_05_14, ADC= 183, OverTh=false -Channel=TIME_29_06, ADC= 244, OverTh=false -Channel=TIME_29_14, ADC= 308, OverTh=false -Channel=TIME_05_07, ADC= 275, OverTh=false -Channel=TIME_05_15, ADC= 185, OverTh=false -Channel=TIME_29_07, ADC= 245, OverTh=false -Channel=TIME_29_15, ADC= 309, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 252, 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= 256, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 252, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 252, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 269, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 25 Run 290683, Event 7572674 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= 86, OverTh=true -Channel=LUMI_25 , ADC= 407, OverTh=true -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= 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= -3, OverTh=false -Channel=LUMI_13 , ADC= 122, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 324, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 0, 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= -2, 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 22, OverTh=false -Channel=LUMI_42 , ADC= 18, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= -4, OverTh=false -Channel=LUMI_44 , ADC= -6, OverTh=false -Channel=LUMI_21 , ADC= -6, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 265, 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= 264, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 277, 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= 310, OverTh=false -Channel=TIME_05_13, ADC= 266, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 356, OverTh=false -Channel=TIME_05_14, ADC= 269, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 361, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 291, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 290, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 290, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 261, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 285, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 261, OverTh=false -Channel=TIME_11_12, ADC= 275, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 293, OverTh=false -Channel=TIME_35_05, ADC= 263, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 248, OverTh=false -Channel=TIME_11_14, ADC= 297, OverTh=false -Channel=TIME_35_06, ADC= 263, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 295, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 26 Run 290683, Event 7572738 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 781, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= -3, OverTh=false -Channel=LUMI_25 , ADC= 24, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 78, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -9, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -15, 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 169, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= -5, OverTh=false -Channel=LUMI_32 , ADC= -1, 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= 3, 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= -1, OverTh=false -Channel=LUMI_43 , ADC= 184, OverTh=true -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 6, OverTh=false -Channel=LUMI_21 , ADC= 267, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 308, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 275, OverTh=false -Channel=TIME_05_01, ADC= 307, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 270, OverTh=false -Channel=TIME_05_02, ADC= 307, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 265, OverTh=false -Channel=TIME_05_03, ADC= 305, 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= 286, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 291, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 245, OverTh=false -Channel=TIME_05_14, ADC= 317, OverTh=false -Channel=TIME_29_06, ADC= 297, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 247, OverTh=false -Channel=TIME_05_15, ADC= 315, OverTh=false -Channel=TIME_29_07, ADC= 294, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 343, OverTh=false -Channel=TIME_11_08, ADC= 360, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 262, OverTh=false -Channel=TIME_11_01, ADC= 345, OverTh=false -Channel=TIME_11_09, ADC= 358, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 346, OverTh=false -Channel=TIME_11_10, ADC= 356, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 335, OverTh=false -Channel=TIME_11_11, ADC= 345, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 286, OverTh=false -Channel=TIME_11_12, ADC= 323, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 338, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 239, OverTh=false -Channel=TIME_11_14, ADC= 350, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 243, OverTh=false -Channel=TIME_11_15, ADC= 349, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 27 Run 290683, Event 7572977 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_27 , ADC= 4, 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= -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= -4, 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= -1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , 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= 3, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_43 , ADC= -2, 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= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 254, 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= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 260, 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= 257, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 260, 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= 255, 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= 255, 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= 260, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, 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= 257, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 260, 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 # 28 Run 290683, Event 7569146 -PlumeRawToDigits_89428f2d 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= 0, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= -6, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= -5, OverTh=false -Channel=LUMI_12 , ADC= -4, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -5, OverTh=false -Channel=LUMI_14 , ADC= -3, 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= -2, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 5, 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= 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= 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= -4, OverTh=false -Channel=LUMI_43 , ADC= -3, 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= 4, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 4, 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= 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= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 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= 259, 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= 259, 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= 261, 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= 260, 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= 259, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 254, OverTh=false -Channel=TIME_35_05, ADC= 259, 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= 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= 256, OverTh=false PrintHeader_7bb0e124 INFO # 29 Run 290683, Event 7569197 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 13, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 9, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 9, OverTh=false -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 242, OverTh=true -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= 10, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -11, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 9, 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= 18, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 80, OverTh=true -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 244, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 242, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 243, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 247, 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= 254, OverTh=false -Channel=TIME_05_12, ADC= 250, 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= 248, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 273, OverTh=false -Channel=TIME_05_14, ADC= 242, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 272, OverTh=false -Channel=TIME_05_15, ADC= 240, 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= 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= 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 256, 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= 255, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 253, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 30 Run 290683, Event 7569388 -PlumeRawToDigits_89428f2d 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -2, 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= 3, 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= 3, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, 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= 1, 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= 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= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 9, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 254, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_29_04, ADC= 256, 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= 258, 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= 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= 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= 257, 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= 258, 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= 259, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 252, 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= 256, 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= 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= 257, OverTh=false PrintHeader_7bb0e124 INFO # 31 Run 290683, Event 7569588 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 11, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 0, 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= 0, 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= 0, 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= 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= 1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 3, 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= 0, 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= -4, 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= 6, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, 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= 256, 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= 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= 258, OverTh=false -Channel=TIME_05_04, ADC= 254, 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= 256, 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= 256, OverTh=false -Channel=TIME_29_06, ADC= 255, 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= 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 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= 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= 253, 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 32 Run 290683, Event 7569643 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= -7, OverTh=false -Channel=LUMI_02 , ADC= 12, 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= 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= 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -3, 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= -16, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, 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= 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= 260, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 260, 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= 259, 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= 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= 260, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 262, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, 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= 257, 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= 258, 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 # 33 Run 290683, Event 7569752 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 977, OverTh=true -Channel=LUMI_24 , ADC= 652, OverTh=true -Channel=LUMI_01 , ADC= 49, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= 249, OverTh=true -Channel=LUMI_26 , ADC= 19, OverTh=false -Channel=LUMI_03 , ADC= 84, OverTh=true -Channel=LUMI_27 , ADC= 13, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 347, OverTh=true -Channel=LUMI_12 , ADC= 33, OverTh=false -Channel=LUMI_36 , ADC= 97, OverTh=true -Channel=LUMI_13 , ADC= 111, OverTh=true -Channel=LUMI_37 , ADC= 8, OverTh=false -Channel=LUMI_14 , ADC= 295, OverTh=true -Channel=LUMI_38 , ADC= 9, 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= 1, OverTh=false -Channel=LUMI_23 , ADC= 29, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -9, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 56, OverTh=true -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 125, OverTh=true -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 69, OverTh=true -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 132, OverTh=true -Channel=LUMI_19 , ADC= 117, OverTh=true -Channel=LUMI_43 , ADC= 271, OverTh=true -Channel=LUMI_20 , ADC= 139, OverTh=true -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 323, 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= 315, 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= 310, 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= 308, 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= 295, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 288, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 251, OverTh=false -Channel=TIME_29_14, ADC= 337, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 246, OverTh=false -Channel=TIME_29_15, ADC= 343, OverTh=false -Channel=TIME_11_00, ADC= 279, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 269, OverTh=false -Channel=TIME_11_01, ADC= 281, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 269, OverTh=false -Channel=TIME_11_02, ADC= 279, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 265, OverTh=false -Channel=TIME_11_03, ADC= 278, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 269, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 281, OverTh=false -Channel=TIME_35_06, ADC= 294, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 280, OverTh=false -Channel=TIME_35_07, ADC= 284, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 34 Run 290683, Event 7569766 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -10, OverTh=false -Channel=LUMI_26 , ADC= 19, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 11, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 109, OverTh=true -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 15, 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= 4, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 53, OverTh=true -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -7, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 274, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 273, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 263, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 272, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 272, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 261, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 253, OverTh=false -Channel=TIME_05_14, ADC= 273, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 273, OverTh=false -Channel=TIME_35_00, ADC= 252, OverTh=false -Channel=TIME_35_08, ADC= 290, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 272, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 291, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 271, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 291, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 271, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 289, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 266, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 282, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 261, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 271, OverTh=false -Channel=TIME_11_06, ADC= 263, OverTh=false -Channel=TIME_11_14, ADC= 252, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 247, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 248, OverTh=false PrintHeader_7bb0e124 INFO # 35 Run 290683, Event 7569897 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 667, OverTh=true -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= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 6, OverTh=false -Channel=LUMI_38 , ADC= 7, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= -5, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 478, OverTh=true -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= 6, OverTh=false -Channel=LUMI_41 , ADC= -18, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 101, OverTh=true -Channel=LUMI_19 , ADC= 31, 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= -1, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 296, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 292, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 292, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 288, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 301, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 282, OverTh=false -Channel=TIME_29_12, ADC= 264, OverTh=false -Channel=TIME_05_05, ADC= 367, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 267, OverTh=false -Channel=TIME_29_13, ADC= 278, OverTh=false -Channel=TIME_05_06, ADC= 429, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 267, OverTh=false -Channel=TIME_29_14, ADC= 292, OverTh=false -Channel=TIME_05_07, ADC= 428, OverTh=false -Channel=TIME_05_15, ADC= 261, OverTh=false -Channel=TIME_29_07, ADC= 267, OverTh=false -Channel=TIME_29_15, ADC= 296, OverTh=false -Channel=TIME_11_00, ADC= 281, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 281, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 279, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 279, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 269, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 252, OverTh=false -Channel=TIME_11_13, ADC= 282, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 250, OverTh=false -Channel=TIME_11_14, ADC= 286, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 252, OverTh=false -Channel=TIME_11_15, ADC= 281, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 36 Run 290683, Event 7569909 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 324, OverTh=true -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 11, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 236, OverTh=true -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 136, OverTh=true -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 303, OverTh=true -Channel=LUMI_38 , ADC= -6, OverTh=false -Channel=LUMI_15 , ADC= -2, OverTh=false -Channel=LUMI_39 , ADC= -12, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= 341, OverTh=true -Channel=LUMI_47 , ADC= 26, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 102, OverTh=true -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 110, OverTh=true -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 169, OverTh=true -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 176, OverTh=true -Channel=LUMI_34 , ADC= 6, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 124, OverTh=true -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 63, OverTh=true -Channel=LUMI_43 , ADC= 367, OverTh=true -Channel=LUMI_20 , ADC= 145, OverTh=true -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 276, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 486, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 295, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 489, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 295, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 483, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 293, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 473, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 293, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 412, OverTh=false -Channel=TIME_05_12, ADC= 286, OverTh=false -Channel=TIME_29_04, ADC= 286, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 305, OverTh=false -Channel=TIME_05_13, ADC= 379, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 278, OverTh=false -Channel=TIME_05_06, ADC= 221, OverTh=false -Channel=TIME_05_14, ADC= 497, OverTh=false -Channel=TIME_29_06, ADC= 249, OverTh=false -Channel=TIME_29_14, ADC= 299, OverTh=false -Channel=TIME_05_07, ADC= 221, OverTh=false -Channel=TIME_05_15, ADC= 509, OverTh=false -Channel=TIME_29_07, ADC= 250, OverTh=false -Channel=TIME_29_15, ADC= 302, OverTh=false -Channel=TIME_11_00, ADC= 278, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 280, 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= 278, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 270, OverTh=false -Channel=TIME_11_11, ADC= 260, 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= 273, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 281, 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= 282, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 280, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 37 Run 290683, Event 7569944 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 11, 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= 2, 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= 6, 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= 4, OverTh=false -Channel=LUMI_38 , ADC= -7, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 398, OverTh=true -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 5, 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= 765, OverTh=true -Channel=LUMI_32 , ADC=1015, OverTh=true -Channel=LUMI_09 , ADC= 530, OverTh=true -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= -2, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 12, 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= 4, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 251, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 255, 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= 255, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 253, 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= 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 267, 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= 267, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, 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= 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= 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= 255, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 261, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 262, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 38 Run 290683, Event 7571081 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 86, OverTh=true -Channel=LUMI_24 , ADC= 305, OverTh=true -Channel=LUMI_01 , ADC= 73, OverTh=true -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 244, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= 10, OverTh=false -Channel=LUMI_12 , ADC= 13, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 25, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 46, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 185, OverTh=true -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 14, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 67, OverTh=true -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= -2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 109, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 101, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 67, OverTh=true -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 10, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 268, OverTh=false -Channel=TIME_05_08, ADC= 271, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 264, OverTh=false -Channel=TIME_05_09, ADC= 267, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 266, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 262, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 253, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 261, 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= 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= 257, 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= 259, OverTh=false -Channel=TIME_11_06, ADC= 268, 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= 264, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 39 Run 290683, Event 7571388 -PlumeRawToDigits_89428f2d 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= -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= 2, 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= 2, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_10 , ADC= 4, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 13, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 258, 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= 256, 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= 257, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 260, 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= 257, 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= 256, 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 252, OverTh=false -Channel=TIME_11_04, ADC= 253, OverTh=false -Channel=TIME_11_12, ADC= 262, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 40 Run 290683, Event 7571649 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 163, OverTh=true -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= 0, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= -10, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= -8, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 3, OverTh=false -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 30, OverTh=false -Channel=LUMI_30 , ADC= 9, OverTh=false -Channel=LUMI_07 , ADC= 2, OverTh=false -Channel=LUMI_31 , ADC= -4, 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= -3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 11, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 282, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 282, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 263, OverTh=false -Channel=TIME_05_02, ADC= 279, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 278, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 271, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 273, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 267, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 265, OverTh=false -Channel=TIME_29_14, ADC= 262, OverTh=false -Channel=TIME_05_07, ADC= 269, OverTh=false -Channel=TIME_05_15, ADC= 281, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 258, 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= 258, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 256, 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= 255, 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= 258, 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= 258, OverTh=false PrintHeader_7bb0e124 INFO # 41 Run 290683, Event 7568028 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 116, OverTh=true -Channel=LUMI_24 , ADC= 31, OverTh=false -Channel=LUMI_01 , ADC= 43, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= 86, OverTh=true -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 388, OverTh=true -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 189, OverTh=true -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= 266, OverTh=true -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 69, OverTh=true -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 346, OverTh=true -Channel=LUMI_33 , ADC= 255, OverTh=true -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 234, OverTh=true -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 612, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 248, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 250, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 269, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 273, 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= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 247, 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= 249, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 261, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 263, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 42 Run 290683, Event 7568133 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= 14, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 83, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_33 , ADC= -14, OverTh=false -Channel=LUMI_10 , ADC= 11, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 263, OverTh=true -Channel=LUMI_41 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= -5, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 261, OverTh=false -Channel=TIME_05_10, ADC= 251, 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= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 259, 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= 259, OverTh=false -Channel=TIME_05_14, ADC= 258, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 265, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 264, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 266, 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= 261, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 253, 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= 252, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 43 Run 290683, Event 7568786 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 47, OverTh=false -Channel=LUMI_24 , ADC= 27, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 15, OverTh=false -Channel=LUMI_02 , ADC= 5, 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= 5, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 6, OverTh=false -Channel=LUMI_13 , ADC= 16, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 10, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 46, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 337, OverTh=true -Channel=LUMI_31 , ADC= -24, OverTh=false -Channel=LUMI_08 , ADC= 25, 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= 9, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 10, 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= 2, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= -8, OverTh=false -Channel=LUMI_22 , ADC= -6, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 253, OverTh=false -Channel=TIME_05_08, ADC= 302, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 265, OverTh=false -Channel=TIME_05_01, ADC= 252, OverTh=false -Channel=TIME_05_09, ADC= 302, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 264, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 301, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 263, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 296, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 265, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 287, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 284, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 339, OverTh=false -Channel=TIME_05_14, ADC= 251, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 346, OverTh=false -Channel=TIME_05_15, ADC= 251, OverTh=false -Channel=TIME_29_07, ADC= 258, 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= 258, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 260, 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= 256, OverTh=false -Channel=TIME_35_03, ADC= 265, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 306, 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= 348, 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= 397, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 399, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 44 Run 290683, Event 7568998 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 11, OverTh=false -Channel=LUMI_25 , ADC= -13, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 8, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 12, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= -5, 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= 7, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 9, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= -11, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= -7, OverTh=false -Channel=LUMI_22 , ADC= -5, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 273, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 258, OverTh=false -Channel=TIME_05_09, ADC= 271, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 269, 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= 268, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 259, 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= 250, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 253, 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= 265, 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= 266, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 267, 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= 262, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 255, 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= 255, OverTh=false -Channel=TIME_35_05, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_14, ADC= 252, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 45 Run 290683, Event 7562149 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 6, 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= 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= 7, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 3, 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= -5, 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=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 3, 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= 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 6, 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= 0, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 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= 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= 257, 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 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= 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= 255, 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= 255, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 259, 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= 254, 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= 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= 259, 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= 256, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 46 Run 290683, Event 7562338 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 10, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= 19, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -10, OverTh=false -Channel=LUMI_12 , ADC= -12, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -11, OverTh=false -Channel=LUMI_37 , ADC= -23, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 282, OverTh=true -Channel=LUMI_15 , ADC= -9, OverTh=false -Channel=LUMI_39 , ADC= -7, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= -9, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 304, OverTh=true -Channel=LUMI_07 , ADC= 11, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 23, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 82, OverTh=true -Channel=LUMI_18 , ADC= 200, OverTh=true -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= -25, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 234, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 269, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 234, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 271, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 234, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 271, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 236, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 276, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 242, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 235, OverTh=false -Channel=TIME_29_13, ADC= 270, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 263, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 267, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 286, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 285, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 286, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 281, 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= 268, 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= 257, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 250, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 47 Run 290683, Event 7562372 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 14, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 9, 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= 8, 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= 2, OverTh=false -Channel=LUMI_37 , ADC= 16, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 271, OverTh=true -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 7, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 9, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 247, OverTh=true -Channel=LUMI_30 , ADC= 12, OverTh=false -Channel=LUMI_07 , ADC= 68, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 62, OverTh=true -Channel=LUMI_32 , ADC= 128, OverTh=true -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= -6, OverTh=false -Channel=LUMI_10 , ADC= -4, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 21, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= -5, OverTh=false -Channel=LUMI_42 , ADC= 13, OverTh=false -Channel=LUMI_19 , ADC= 147, OverTh=true -Channel=LUMI_43 , ADC= 311, OverTh=true -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 31, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 313, OverTh=true -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 234, OverTh=false -Channel=TIME_29_00, ADC= 294, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 236, OverTh=false -Channel=TIME_29_01, ADC= 293, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 265, OverTh=false -Channel=TIME_05_10, ADC= 236, OverTh=false -Channel=TIME_29_02, ADC= 290, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 238, OverTh=false -Channel=TIME_29_03, ADC= 291, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 248, OverTh=false -Channel=TIME_29_04, ADC= 286, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 270, OverTh=false -Channel=TIME_29_13, ADC= 272, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 283, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 288, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 278, OverTh=false -Channel=TIME_29_07, ADC= 251, OverTh=false -Channel=TIME_29_15, ADC= 293, OverTh=false -Channel=TIME_11_00, ADC= 250, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 294, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 290, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 248, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 289, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 249, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 283, 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= 271, OverTh=false -Channel=TIME_35_12, ADC= 265, OverTh=false -Channel=TIME_11_05, ADC= 264, OverTh=false -Channel=TIME_11_13, ADC= 250, OverTh=false -Channel=TIME_35_05, ADC= 262, OverTh=false -Channel=TIME_35_13, ADC= 279, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 249, OverTh=false -Channel=TIME_35_06, ADC= 250, OverTh=false -Channel=TIME_35_14, ADC= 296, OverTh=false -Channel=TIME_11_07, ADC= 270, OverTh=false -Channel=TIME_11_15, ADC= 247, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 299, OverTh=false PrintHeader_7bb0e124 INFO # 48 Run 290683, Event 7562396 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -9, OverTh=false -Channel=LUMI_24 , ADC= 136, OverTh=true -Channel=LUMI_01 , ADC= -20, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 14, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 26, OverTh=false -Channel=LUMI_28 , ADC= 9, OverTh=false -Channel=LUMI_12 , ADC= 142, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 156, OverTh=true -Channel=LUMI_37 , ADC= 28, OverTh=false -Channel=LUMI_14 , ADC= 460, OverTh=true -Channel=LUMI_38 , ADC= 327, OverTh=true -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 9, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 360, OverTh=true -Channel=LUMI_30 , ADC= 17, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 7, 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= -16, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 7, OverTh=false -Channel=LUMI_22 , ADC= 260, OverTh=true -Channel=LUMI_46 , ADC= -10, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 272, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 272, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 275, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 271, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 264, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 269, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 272, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 272, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 305, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 305, 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= 304, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 297, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 269, 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= 250, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 250, 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= 251, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 49 Run 290683, Event 7562997 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 229, OverTh=true -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 13, OverTh=false -Channel=LUMI_02 , ADC= -15, 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= 92, OverTh=true -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 11, OverTh=false -Channel=LUMI_36 , ADC= 71, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= 110, OverTh=true -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= 271, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 11, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 78, OverTh=true -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 17, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= 14, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -9, OverTh=false -Channel=LUMI_34 , ADC= 6, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= 409, OverTh=true -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= 314, OverTh=true -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 151, OverTh=true -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 360, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 265, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 264, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 269, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 276, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 274, OverTh=false -Channel=TIME_11_00, ADC= 324, 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= 328, 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= 325, 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= 316, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 275, OverTh=false -Channel=TIME_11_12, ADC= 286, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 249, OverTh=false -Channel=TIME_11_13, ADC= 327, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 242, OverTh=false -Channel=TIME_11_14, ADC= 346, OverTh=false -Channel=TIME_35_06, ADC= 253, OverTh=false -Channel=TIME_35_14, ADC= 261, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 339, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 50 Run 290683, Event 7573600 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 339, OverTh=true -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 8, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 14, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= -4, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 26, OverTh=false -Channel=LUMI_14 , ADC= 7, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 172, OverTh=true -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 14, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 15, OverTh=false -Channel=LUMI_08 , ADC= 18, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 242, OverTh=false -Channel=TIME_29_00, ADC= 251, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 245, OverTh=false -Channel=TIME_29_01, ADC= 252, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 256, 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= 258, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 270, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 315, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 314, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 365, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 366, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 260, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 364, 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= 351, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 310, OverTh=false -Channel=TIME_35_12, ADC= 290, OverTh=false -Channel=TIME_11_05, ADC= 264, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 283, OverTh=false -Channel=TIME_35_13, ADC= 321, OverTh=false -Channel=TIME_11_06, ADC= 267, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 237, OverTh=false -Channel=TIME_35_14, ADC= 377, OverTh=false -Channel=TIME_11_07, ADC= 267, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 244, OverTh=false -Channel=TIME_35_15, ADC= 381, OverTh=false PrintHeader_7bb0e124 INFO # 51 Run 290683, Event 7573634 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 41, 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= 0, OverTh=false -Channel=LUMI_03 , ADC= -3, 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= -2, 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= -1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -5, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -11, 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= 3, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 89, OverTh=true -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= 11, OverTh=false -Channel=LUMI_43 , ADC= 115, OverTh=true -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_02, ADC= 254, 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= 259, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 252, 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= 255, 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= 254, 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= 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= 261, OverTh=false -Channel=TIME_11_08, ADC= 248, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 264, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 260, OverTh=false -Channel=TIME_11_11, ADC= 252, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 274, 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= 282, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 264, OverTh=false -Channel=TIME_11_07, ADC= 271, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 265, OverTh=false PrintHeader_7bb0e124 INFO # 52 Run 290683, Event 7573928 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 6, 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= 4, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= -1, 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= 3, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -12, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 9, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 10, 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= -1, OverTh=false -Channel=LUMI_33 , ADC= 2, OverTh=false -Channel=LUMI_10 , ADC= -4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= -7, 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= 1, 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= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 251, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 250, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 252, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 279, 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= 276, 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= 263, 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= 262, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_10, ADC= 256, 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= 256, OverTh=false -Channel=TIME_11_04, ADC= 253, 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= 262, 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= 266, 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= 262, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 53 Run 290683, Event 7573952 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 10, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 20, 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= 4, 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= 3, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -14, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 92, OverTh=true -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= 2, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 89, OverTh=true -Channel=LUMI_41 , ADC= 389, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 286, OverTh=true -Channel=LUMI_43 , ADC= 117, OverTh=true -Channel=LUMI_20 , ADC= 38, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 290, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 290, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 292, 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= 289, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 275, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 262, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 252, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 259, 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= 255, 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= 256, 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= 258, 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= 256, 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= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 267, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 269, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 54 Run 290683, Event 7574023 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 19, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 9, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= -9, OverTh=false -Channel=LUMI_36 , ADC= 52, OverTh=true -Channel=LUMI_13 , ADC= 143, OverTh=true -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= 7, OverTh=false -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 8, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= -1, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -16, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 3, OverTh=false -Channel=LUMI_34 , ADC= 351, OverTh=true -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= -9, OverTh=false -Channel=LUMI_18 , ADC= -5, 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= 11, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 18, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -8, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 247, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 246, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 248, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 248, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 269, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 273, OverTh=false -Channel=TIME_05_13, ADC= 250, OverTh=false -Channel=TIME_29_05, ADC= 328, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 293, OverTh=false -Channel=TIME_05_14, ADC= 246, OverTh=false -Channel=TIME_29_06, ADC= 379, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 292, OverTh=false -Channel=TIME_05_15, ADC= 248, OverTh=false -Channel=TIME_29_07, ADC= 380, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 246, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 248, OverTh=false -Channel=TIME_35_09, ADC= 250, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 245, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 251, OverTh=false -Channel=TIME_35_03, ADC= 250, OverTh=false -Channel=TIME_35_11, ADC= 250, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 217, OverTh=false -Channel=TIME_35_04, ADC= 267, OverTh=false -Channel=TIME_35_12, ADC= 245, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 249, OverTh=false -Channel=TIME_35_05, ADC= 293, OverTh=false -Channel=TIME_35_13, ADC= 245, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 270, OverTh=false -Channel=TIME_35_06, ADC= 335, OverTh=false -Channel=TIME_35_14, ADC= 246, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 333, OverTh=false -Channel=TIME_35_15, ADC= 243, OverTh=false PrintHeader_7bb0e124 INFO # 55 Run 290683, Event 7574123 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= -8, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 312, OverTh=true -Channel=LUMI_02 , ADC= 21, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= -20, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 13, 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= 2, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 90, OverTh=true -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 9, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 446, OverTh=true -Channel=LUMI_34 , ADC= 353, OverTh=true -Channel=LUMI_17 , ADC= 190, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 109, OverTh=true -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 61, OverTh=true -Channel=LUMI_20 , ADC= 694, OverTh=true -Channel=LUMI_44 , ADC= 91, OverTh=true -Channel=LUMI_21 , ADC= 349, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 37, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 269, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 264, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 266, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 261, 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= 262, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 275, 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= 297, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 273, OverTh=false -Channel=TIME_05_07, ADC= 301, OverTh=false -Channel=TIME_05_15, ADC= 272, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 275, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 253, 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= 254, 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= 253, 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= 254, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 257, 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= 257, OverTh=false -Channel=TIME_11_06, ADC= 255, 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 56 Run 290683, Event 7574149 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= 4, 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= -2, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 2, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= -5, OverTh=false -Channel=LUMI_40 , ADC= 10, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -11, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 12, 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= 0, OverTh=false -Channel=LUMI_34 , ADC= -13, OverTh=false -Channel=LUMI_17 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= -7, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 271, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 266, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 266, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 251, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 249, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 267, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 284, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 286, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 263, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 261, 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= 260, OverTh=false -Channel=TIME_11_04, ADC= 252, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 252, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 269, 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= 267, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 57 Run 290683, Event 7574170 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 12, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 8, OverTh=false -Channel=LUMI_02 , ADC= 7, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 91, OverTh=true -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 118, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 14, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 17, 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= 9, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -15, OverTh=false -Channel=LUMI_42 , ADC= 15, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 4, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, 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= 253, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 254, 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= 257, 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= 258, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 253, 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= 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= 254, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 267, 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= 265, OverTh=false -Channel=TIME_11_15, ADC= 252, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 58 Run 290683, Event 7574488 -PlumeRawToDigits_89428f2d 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= 2, OverTh=false -Channel=LUMI_02 , ADC= -4, 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= 1, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 11, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 15, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 96, OverTh=true -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 26, 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= 0, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -7, 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= 3, OverTh=false -Channel=LUMI_43 , ADC= 18, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 21, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 9, OverTh=false -Channel=LUMI_46 , ADC= 28, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, 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= 258, 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= 257, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, 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= 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= 253, 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= 255, 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= 257, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 268, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 263, 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= 260, 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= 258, 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= 261, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, 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= 274, 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= 273, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 59 Run 290683, Event 7574509 -PlumeRawToDigits_89428f2d 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= 7, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 121, OverTh=true -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 55, OverTh=true -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= 72, OverTh=true -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= -3, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= 115, OverTh=true -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= 3, OverTh=false -Channel=LUMI_10 , ADC= 132, OverTh=true -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 298, OverTh=true -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 25, OverTh=false -Channel=LUMI_42 , ADC= 265, OverTh=true -Channel=LUMI_19 , ADC= 29, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 7, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 306, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 302, 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= 301, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 253, OverTh=false -Channel=TIME_05_11, ADC= 298, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 250, OverTh=false -Channel=TIME_05_12, ADC= 286, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 227, OverTh=false -Channel=TIME_05_13, ADC= 263, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 212, 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= 214, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 471, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 468, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 459, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 440, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 365, OverTh=false -Channel=TIME_11_12, ADC= 308, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 270, OverTh=false -Channel=TIME_11_13, ADC= 409, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 215, OverTh=false -Channel=TIME_11_14, ADC= 495, OverTh=false -Channel=TIME_35_06, ADC= 251, OverTh=false -Channel=TIME_35_14, ADC= 269, OverTh=false -Channel=TIME_11_07, ADC= 225, OverTh=false -Channel=TIME_11_15, ADC= 489, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 266, OverTh=false PrintHeader_7bb0e124 INFO # 60 Run 290683, Event 7574518 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 352, OverTh=true -Channel=LUMI_26 , ADC= 345, OverTh=true -Channel=LUMI_03 , ADC= 11, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 9, OverTh=false -Channel=LUMI_38 , ADC= 59, OverTh=true -Channel=LUMI_15 , ADC= -6, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= -4, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -5, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= -11, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 5, 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= 7, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= -4, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 3, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 321, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 319, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 320, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 317, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 297, OverTh=false -Channel=TIME_05_12, ADC= 267, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 264, OverTh=false -Channel=TIME_05_13, ADC= 296, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 324, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 326, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 262, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 252, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 61 Run 290683, Event 7574527 -PlumeRawToDigits_89428f2d 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= 0, 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= 0, 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= -1, OverTh=false -Channel=LUMI_14 , ADC= -3, OverTh=false -Channel=LUMI_38 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -4, 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= -4, 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= -1, 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= 4, OverTh=false -Channel=LUMI_42 , ADC= 9, 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= -3, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 259, 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= 259, 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= 259, 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= 258, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 256, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 254, 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= 254, 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= 255, 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= 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= 255, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 256, 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= 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= 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= 259, 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 # 62 Run 290683, Event 7574603 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 351, OverTh=true -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= 4, OverTh=false -Channel=LUMI_12 , ADC= 638, OverTh=true -Channel=LUMI_36 , ADC= -6, 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= -11, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 8, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= -9, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 11, OverTh=false -Channel=LUMI_09 , ADC= -15, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -2, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 307, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 306, 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= 306, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 302, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 282, 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= 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= 245, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 250, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 306, 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= 306, 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= 304, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 301, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 276, OverTh=false -Channel=TIME_11_12, ADC= 270, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 300, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 249, OverTh=false -Channel=TIME_11_14, ADC= 310, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 249, OverTh=false -Channel=TIME_11_15, ADC= 310, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 63 Run 290683, Event 7574693 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= -10, OverTh=false -Channel=LUMI_26 , ADC= -4, 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= -23, 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= -10, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 105, OverTh=true -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 12, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 271, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 269, 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= 268, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 269, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 266, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 267, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 272, OverTh=false -Channel=TIME_11_00, ADC= 245, OverTh=false -Channel=TIME_11_08, ADC= 378, OverTh=false -Channel=TIME_35_00, ADC= 250, OverTh=false -Channel=TIME_35_08, ADC= 333, OverTh=false -Channel=TIME_11_01, ADC= 248, OverTh=false -Channel=TIME_11_09, ADC= 381, OverTh=false -Channel=TIME_35_01, ADC= 253, OverTh=false -Channel=TIME_35_09, ADC= 339, OverTh=false -Channel=TIME_11_02, ADC= 251, OverTh=false -Channel=TIME_11_10, ADC= 375, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 335, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 362, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 317, OverTh=false -Channel=TIME_11_04, ADC= 263, OverTh=false -Channel=TIME_11_12, ADC= 300, OverTh=false -Channel=TIME_35_04, ADC= 262, OverTh=false -Channel=TIME_35_12, ADC= 275, OverTh=false -Channel=TIME_11_05, ADC= 275, OverTh=false -Channel=TIME_11_13, ADC= 242, OverTh=false -Channel=TIME_35_05, ADC= 263, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 279, OverTh=false -Channel=TIME_11_14, ADC= 229, OverTh=false -Channel=TIME_35_06, ADC= 265, OverTh=false -Channel=TIME_35_14, ADC= 241, OverTh=false -Channel=TIME_11_07, ADC= 277, OverTh=false -Channel=TIME_11_15, ADC= 234, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 245, OverTh=false PrintHeader_7bb0e124 INFO # 64 Run 290683, Event 7566192 -PlumeRawToDigits_89428f2d 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= 255, OverTh=true -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= 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= -11, 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= 9, OverTh=false -Channel=LUMI_40 , ADC= 11, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -6, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -4, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -6, OverTh=false -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= -3, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -6, 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= -4, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 261, 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= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 262, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 262, 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= 259, 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= 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= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, 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= 265, 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= 264, OverTh=false -Channel=TIME_11_00, ADC= 269, OverTh=false -Channel=TIME_11_08, ADC= 250, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 270, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 269, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 271, 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= 292, OverTh=false -Channel=TIME_11_12, ADC= 250, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 332, OverTh=false -Channel=TIME_11_13, ADC= 264, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 364, OverTh=false -Channel=TIME_11_14, ADC= 272, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 354, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 65 Run 290683, Event 7566266 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 16, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 238, OverTh=true -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 190, OverTh=true -Channel=LUMI_36 , ADC= 27, 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= 3, OverTh=false -Channel=LUMI_15 , ADC= 275, OverTh=true -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 38, OverTh=false -Channel=LUMI_23 , ADC= 618, OverTh=true -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 12, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 16, OverTh=false -Channel=LUMI_20 , ADC= 12, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 138, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 308, OverTh=false -Channel=TIME_29_08, ADC= 250, OverTh=false -Channel=TIME_05_01, ADC= 137, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 308, OverTh=false -Channel=TIME_29_09, ADC= 250, OverTh=false -Channel=TIME_05_02, ADC= 139, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 307, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 150, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 306, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 184, OverTh=false -Channel=TIME_05_12, ADC= 237, OverTh=false -Channel=TIME_29_04, ADC= 287, OverTh=false -Channel=TIME_29_12, ADC= 263, OverTh=false -Channel=TIME_05_05, ADC= 246, OverTh=false -Channel=TIME_05_13, ADC= 188, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 299, OverTh=false -Channel=TIME_05_06, ADC= 277, OverTh=false -Channel=TIME_05_14, ADC= 129, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 314, OverTh=false -Channel=TIME_05_07, ADC= 276, OverTh=false -Channel=TIME_05_15, ADC= 130, OverTh=false -Channel=TIME_29_07, ADC= 263, OverTh=false -Channel=TIME_29_15, ADC= 311, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 253, 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= 254, 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= 254, 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= 254, 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= 264, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 267, OverTh=false -Channel=TIME_11_07, ADC= 262, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 265, OverTh=false PrintHeader_7bb0e124 INFO # 66 Run 290683, Event 7566875 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 407, OverTh=true -Channel=LUMI_25 , ADC= -2, 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= 3, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 12, OverTh=false -Channel=LUMI_36 , ADC= -8, 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= 2, OverTh=false -Channel=LUMI_15 , ADC= 373, OverTh=true -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= 16, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= 0, 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= -6, 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= -6, OverTh=false -Channel=LUMI_41 , ADC= -2, 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= 11, OverTh=false -Channel=LUMI_20 , ADC= 0, 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= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 259, 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= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, 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= 257, 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= 253, 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= 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= 259, OverTh=false -Channel=TIME_05_15, ADC= 256, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 262, 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= 261, 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= 263, 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= 260, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 256, 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= 254, OverTh=false -Channel=TIME_11_14, ADC= 253, 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= 256, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 67 Run 290683, Event 7566887 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 156, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 72, OverTh=true -Channel=LUMI_25 , ADC= 804, OverTh=true -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= -6, OverTh=false -Channel=LUMI_03 , ADC= 12, OverTh=false -Channel=LUMI_27 , ADC= 4, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 112, OverTh=true -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 38, OverTh=false -Channel=LUMI_13 , ADC= 49, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 845, OverTh=true -Channel=LUMI_47 , ADC= 13, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 16, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 13, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 7, 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= 10, OverTh=false -Channel=LUMI_42 , ADC= 11, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 7, 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= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 337, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 273, OverTh=false -Channel=TIME_29_08, ADC= 171, OverTh=false -Channel=TIME_05_01, ADC= 337, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 264, OverTh=false -Channel=TIME_29_09, ADC= 172, OverTh=false -Channel=TIME_05_02, ADC= 331, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 172, OverTh=false -Channel=TIME_05_03, ADC= 329, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 172, OverTh=false -Channel=TIME_05_04, ADC= 308, OverTh=false -Channel=TIME_05_12, ADC= 264, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 187, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 295, OverTh=false -Channel=TIME_29_05, ADC= 268, OverTh=false -Channel=TIME_29_13, ADC= 235, OverTh=false -Channel=TIME_05_06, ADC= 246, OverTh=false -Channel=TIME_05_14, ADC= 344, OverTh=false -Channel=TIME_29_06, ADC= 274, OverTh=false -Channel=TIME_29_14, ADC= 277, OverTh=false -Channel=TIME_05_07, ADC= 245, OverTh=false -Channel=TIME_05_15, ADC= 347, OverTh=false -Channel=TIME_29_07, ADC= 273, OverTh=false -Channel=TIME_29_15, ADC= 278, OverTh=false -Channel=TIME_11_00, ADC= 266, 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= 264, 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= 260, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 258, 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 266, 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= 279, 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= 275, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 68 Run 290683, Event 7566925 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 12, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 7, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 3, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 427, OverTh=true -Channel=LUMI_37 , ADC= 393, OverTh=true -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 118, OverTh=true -Channel=LUMI_15 , ADC= -4, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -12, OverTh=false -Channel=LUMI_30 , ADC= 139, OverTh=true -Channel=LUMI_07 , ADC= -1, 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= -1, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= -2, 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= -2, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 308, OverTh=false -Channel=TIME_29_00, ADC= 274, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 307, OverTh=false -Channel=TIME_29_01, ADC= 272, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 309, OverTh=false -Channel=TIME_29_02, ADC= 268, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 306, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 251, OverTh=false -Channel=TIME_05_12, ADC= 268, OverTh=false -Channel=TIME_29_04, ADC= 263, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 242, OverTh=false -Channel=TIME_05_13, ADC= 232, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 236, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 291, OverTh=false -Channel=TIME_05_07, ADC= 229, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 290, OverTh=false -Channel=TIME_11_00, ADC= 251, OverTh=false -Channel=TIME_11_08, ADC= 321, OverTh=false -Channel=TIME_35_00, ADC= 275, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 322, OverTh=false -Channel=TIME_35_01, ADC= 277, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 319, OverTh=false -Channel=TIME_35_02, ADC= 277, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 251, OverTh=false -Channel=TIME_11_11, ADC= 316, OverTh=false -Channel=TIME_35_03, ADC= 273, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 238, OverTh=false -Channel=TIME_11_12, ADC= 286, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 264, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 272, OverTh=false -Channel=TIME_11_06, ADC= 268, OverTh=false -Channel=TIME_11_14, ADC= 244, OverTh=false -Channel=TIME_35_06, ADC= 252, OverTh=false -Channel=TIME_35_14, ADC= 278, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 244, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 275, OverTh=false PrintHeader_7bb0e124 INFO # 69 Run 290683, Event 7602027 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 15, OverTh=false -Channel=LUMI_01 , ADC= 4, 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= 16, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 6, 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= -2, 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= 4, OverTh=false -Channel=LUMI_40 , ADC= 6, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 3, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= -7, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 18, OverTh=false -Channel=LUMI_33 , ADC= 12, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 13, 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= -9, OverTh=false -Channel=LUMI_43 , ADC= 10, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 12, OverTh=false -Channel=LUMI_22 , ADC= -10, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 268, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 267, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 300, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 389, 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= 458, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 456, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 262, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 256, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 258, 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= 269, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 321, OverTh=false -Channel=TIME_35_12, ADC= 260, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 352, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 265, OverTh=false -Channel=TIME_35_06, ADC= 382, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 384, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 70 Run 290683, Event 7602065 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -3, 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= -4, 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= -16, OverTh=false -Channel=LUMI_36 , ADC= 5, OverTh=false -Channel=LUMI_13 , ADC= -4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -3, 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= -4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , 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= -1, OverTh=false -Channel=LUMI_08 , ADC= 373, OverTh=true -Channel=LUMI_32 , ADC= 416, OverTh=true -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= 374, OverTh=true -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 15, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 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= 254, OverTh=false -Channel=TIME_05_03, ADC= 260, 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= 264, 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= 269, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 281, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 281, 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= 259, 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= 259, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, 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= 255, 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= 254, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 260, 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 71 Run 290683, Event 7602262 -PlumeRawToDigits_89428f2d 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= -2, 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= 6, 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= 0, OverTh=false -Channel=LUMI_37 , ADC= 2, 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= 6, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= -5, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 8, OverTh=false -Channel=LUMI_34 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_43 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, 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= 257, OverTh=false -Channel=TIME_29_01, ADC= 255, 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= 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= 253, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 259, 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= 260, 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= 260, OverTh=false -Channel=TIME_29_06, ADC= 253, 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= 256, 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= 259, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 256, OverTh=false -Channel=TIME_35_03, ADC= 258, 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= 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= 257, 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= 257, 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 # 72 Run 290683, Event 7602351 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 411, OverTh=true -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -13, OverTh=false -Channel=LUMI_36 , ADC= 0, 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= -3, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 18, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 11, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= -7, 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= -6, 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= -2, OverTh=false -Channel=LUMI_41 , ADC= 28, OverTh=false -Channel=LUMI_18 , ADC= 7, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -8, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 252, OverTh=false -Channel=TIME_05_08, ADC= 297, OverTh=false -Channel=TIME_29_00, ADC= 252, OverTh=false -Channel=TIME_29_08, ADC= 279, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 302, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 277, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 302, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 280, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 298, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 278, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 272, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 270, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 250, 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= 251, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 257, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 259, 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= 259, 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= 256, 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= 256, OverTh=false -Channel=TIME_35_12, ADC= 255, 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= 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= 256, OverTh=false -Channel=TIME_11_07, ADC= 254, 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 # 73 Run 290683, Event 7602601 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, 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= 1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 6, 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= 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= 7, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 5, 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= 6, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 4, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 260, 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= 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= 259, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 260, 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= 258, 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 254, 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= 256, 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= 252, OverTh=false -Channel=TIME_35_08, ADC= 257, 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= 256, 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 263, 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= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 74 Run 290683, Event 7602839 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 52, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 3, OverTh=false -Channel=LUMI_25 , ADC= 20, OverTh=false -Channel=LUMI_02 , ADC= 319, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 120, OverTh=true -Channel=LUMI_27 , ADC= 137, OverTh=true -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= 1, OverTh=false -Channel=LUMI_13 , ADC= -12, 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= 7, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 424, OverTh=true -Channel=LUMI_47 , ADC= 40, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 20, OverTh=false -Channel=LUMI_31 , ADC= -6, OverTh=false -Channel=LUMI_08 , ADC= 11, 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= 2, OverTh=false -Channel=LUMI_34 , ADC= 42, OverTh=false -Channel=LUMI_17 , ADC= -7, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 24, OverTh=false -Channel=LUMI_42 , ADC= 20, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 249, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 282, OverTh=false -Channel=TIME_05_12, ADC= 242, OverTh=false -Channel=TIME_29_04, ADC= 263, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 314, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 281, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 355, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 299, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 347, OverTh=false -Channel=TIME_05_15, ADC= 266, OverTh=false -Channel=TIME_29_07, ADC= 297, 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 272, 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= 266, 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= 265, OverTh=false -Channel=TIME_11_03, ADC= 255, 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= 263, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 281, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 292, 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= 293, 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 # 75 Run 290683, Event 7563002 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 16, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 232, OverTh=true -Channel=LUMI_25 , ADC= 125, OverTh=true -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= -5, OverTh=false -Channel=LUMI_04 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= -8, OverTh=false -Channel=LUMI_15 , ADC= -18, 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= 5, OverTh=false -Channel=LUMI_47 , ADC= 648, OverTh=true -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 170, OverTh=true -Channel=LUMI_30 , ADC= 161, OverTh=true -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 46, OverTh=false -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 134, OverTh=true -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 38, OverTh=false -Channel=LUMI_41 , ADC= 464, OverTh=true -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 317, OverTh=true -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 509, OverTh=true -Channel=LUMI_45 , ADC= 10, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 260, 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= 257, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 264, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 259, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 261, 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= 259, OverTh=false -Channel=TIME_11_00, ADC= 262, 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= 265, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 265, 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= 263, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 264, 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= 266, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 262, 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= 263, 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 # 76 Run 290683, Event 7563301 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 375, OverTh=true -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, 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= -1, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= -2, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -7, OverTh=false -Channel=LUMI_39 , ADC= -6, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -5, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 256, OverTh=true -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= -2, OverTh=false -Channel=LUMI_31 , ADC= 4, 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= 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= 1, OverTh=false -Channel=LUMI_18 , ADC= 71, OverTh=true -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= -3, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= -4, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 254, 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= 253, 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= 253, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 252, 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= 253, 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= 253, OverTh=false -Channel=TIME_35_00, ADC= 268, 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= 268, 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= 268, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 264, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 260, OverTh=false -Channel=TIME_35_12, ADC= 261, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 266, OverTh=false -Channel=TIME_11_06, ADC= 267, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 271, OverTh=false -Channel=TIME_11_07, ADC= 265, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 271, OverTh=false PrintHeader_7bb0e124 INFO # 77 Run 290683, Event 7563648 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 6, OverTh=false -Channel=LUMI_03 , ADC= -9, 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= 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= 7, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -8, 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=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -9, OverTh=false -Channel=LUMI_07 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= -9, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= -7, 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= 2, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -7, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 252, 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= 254, 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= 255, 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 247, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 253, 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= 263, 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= 265, 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= 270, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 269, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 262, OverTh=false -Channel=TIME_11_02, ADC= 267, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 267, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 266, 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= 261, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 269, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 264, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 269, OverTh=false -Channel=TIME_35_07, ADC= 251, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 78 Run 290683, Event 7563785 -PlumeRawToDigits_89428f2d 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= -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= 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= 3, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 12, 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= -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= -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= -5, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 257, 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= 259, 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= 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 259, 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= 258, 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= 260, 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= 260, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 255, 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= 257, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 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= 260, 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= 260, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 79 Run 290683, Event 7600238 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 19, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 9, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 13, OverTh=false -Channel=LUMI_28 , ADC= 11, OverTh=false -Channel=LUMI_12 , ADC= 297, OverTh=true -Channel=LUMI_36 , ADC= 295, OverTh=true -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 291, OverTh=true -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= -1, OverTh=false -Channel=LUMI_39 , ADC= 15, OverTh=false -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 438, OverTh=true -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 493, OverTh=true -Channel=LUMI_30 , ADC= 427, OverTh=true -Channel=LUMI_07 , ADC= 26, OverTh=false -Channel=LUMI_31 , ADC= 21, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 71, OverTh=true -Channel=LUMI_33 , ADC= 76, OverTh=true -Channel=LUMI_10 , ADC= 264, OverTh=true -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 28, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 0, OverTh=false -Channel=LUMI_19 , ADC= 316, OverTh=true -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= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 420, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 248, OverTh=false -Channel=TIME_29_09, ADC= 415, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 250, OverTh=false -Channel=TIME_29_10, ADC= 415, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 250, OverTh=false -Channel=TIME_29_11, ADC= 407, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 249, OverTh=false -Channel=TIME_29_12, ADC= 353, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 249, OverTh=false -Channel=TIME_29_13, ADC= 253, OverTh=false -Channel=TIME_05_06, ADC= 262, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 242, OverTh=false -Channel=TIME_29_14, ADC= 228, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 243, OverTh=false -Channel=TIME_29_15, ADC= 230, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 268, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 271, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 268, 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= 266, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 253, OverTh=false -Channel=TIME_11_12, ADC= 265, OverTh=false -Channel=TIME_35_04, ADC= 281, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 244, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 308, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 241, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 350, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 241, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 347, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 80 Run 290683, Event 7600312 -PlumeRawToDigits_89428f2d 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= 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= 5, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= -3, 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= 0, 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= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_09 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 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=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 262, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 259, 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= 260, 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= 260, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 258, 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= 258, 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= 258, 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= 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= 256, 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= 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 # 81 Run 290683, Event 7600396 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 13, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 133, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 106, OverTh=true -Channel=LUMI_04 , ADC= 9, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 1, OverTh=false -Channel=LUMI_36 , ADC= 69, OverTh=true -Channel=LUMI_13 , ADC= 543, OverTh=true -Channel=LUMI_37 , ADC= 6, OverTh=false -Channel=LUMI_14 , ADC= 267, OverTh=true -Channel=LUMI_38 , ADC= 107, OverTh=true -Channel=LUMI_15 , ADC= 122, OverTh=true -Channel=LUMI_39 , ADC= 193, OverTh=true -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 336, OverTh=true -Channel=LUMI_30 , ADC= 36, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 228, OverTh=true -Channel=LUMI_08 , ADC= 21, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 569, OverTh=true -Channel=LUMI_33 , ADC= 388, OverTh=true -Channel=LUMI_10 , ADC= 434, OverTh=true -Channel=LUMI_34 , ADC= 205, OverTh=true -Channel=LUMI_17 , ADC= 328, OverTh=true -Channel=LUMI_41 , ADC= 481, OverTh=true -Channel=LUMI_18 , ADC= 550, OverTh=true -Channel=LUMI_42 , ADC= 160, OverTh=true -Channel=LUMI_19 , ADC= 16, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= 288, OverTh=true -Channel=LUMI_44 , ADC= 305, OverTh=true -Channel=LUMI_21 , ADC= -7, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 367, OverTh=true -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 293, OverTh=false -Channel=TIME_05_08, ADC= 398, OverTh=false -Channel=TIME_29_00, ADC= 286, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 297, OverTh=false -Channel=TIME_05_09, ADC= 397, OverTh=false -Channel=TIME_29_01, ADC= 284, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 301, OverTh=false -Channel=TIME_05_10, ADC= 393, OverTh=false -Channel=TIME_29_02, ADC= 282, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 298, OverTh=false -Channel=TIME_05_11, ADC= 389, OverTh=false -Channel=TIME_29_03, ADC= 282, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 283, OverTh=false -Channel=TIME_05_12, ADC= 363, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 265, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 316, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 276, OverTh=false -Channel=TIME_05_06, ADC= 248, OverTh=false -Channel=TIME_05_14, ADC= 290, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 286, OverTh=false -Channel=TIME_05_07, ADC= 248, OverTh=false -Channel=TIME_05_15, ADC= 286, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 287, OverTh=false -Channel=TIME_11_00, ADC= 388, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 261, OverTh=false -Channel=TIME_11_01, ADC= 387, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 383, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 363, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 304, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 275, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 367, OverTh=false -Channel=TIME_35_05, ADC= 292, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 237, OverTh=false -Channel=TIME_11_14, ADC= 403, OverTh=false -Channel=TIME_35_06, ADC= 314, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 242, OverTh=false -Channel=TIME_11_15, ADC= 398, OverTh=false -Channel=TIME_35_07, ADC= 317, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 82 Run 290683, Event 7600905 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 55, OverTh=true -Channel=LUMI_24 , ADC= 79, OverTh=true -Channel=LUMI_01 , ADC= 541, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 678, OverTh=true -Channel=LUMI_26 , ADC= 10, OverTh=false -Channel=LUMI_03 , ADC= 238, OverTh=true -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 205, OverTh=true -Channel=LUMI_36 , ADC= 167, OverTh=true -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 18, OverTh=false -Channel=LUMI_14 , ADC= 4, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 290, OverTh=true -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= 6, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 128, OverTh=true -Channel=LUMI_30 , ADC= 8, OverTh=false -Channel=LUMI_07 , ADC= 189, OverTh=true -Channel=LUMI_31 , ADC= 241, OverTh=true -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 22, OverTh=false -Channel=LUMI_34 , ADC= 9, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 11, OverTh=false -Channel=LUMI_19 , ADC= 126, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -9, OverTh=false -Channel=LUMI_21 , ADC= 8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 416, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 279, OverTh=false -Channel=TIME_29_08, ADC= 251, OverTh=false -Channel=TIME_05_01, ADC= 413, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 280, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 406, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 282, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 400, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 279, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 351, OverTh=false -Channel=TIME_05_12, ADC= 285, OverTh=false -Channel=TIME_29_04, ADC= 280, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 363, OverTh=false -Channel=TIME_29_05, ADC= 278, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 228, OverTh=false -Channel=TIME_05_14, ADC= 430, OverTh=false -Channel=TIME_29_06, ADC= 275, OverTh=false -Channel=TIME_29_14, ADC= 270, OverTh=false -Channel=TIME_05_07, ADC= 228, OverTh=false -Channel=TIME_05_15, ADC= 432, OverTh=false -Channel=TIME_29_07, ADC= 268, OverTh=false -Channel=TIME_29_15, ADC= 277, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 399, 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= 403, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 392, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 370, OverTh=false -Channel=TIME_35_11, ADC= 268, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 296, OverTh=false -Channel=TIME_35_12, ADC= 322, 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= 373, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 228, OverTh=false -Channel=TIME_35_14, ADC= 423, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 233, OverTh=false -Channel=TIME_35_15, ADC= 416, OverTh=false PrintHeader_7bb0e124 INFO # 83 Run 290683, Event 7604003 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 91, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 122, OverTh=true -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= 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 385, OverTh=true -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= -5, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 391, OverTh=true -Channel=LUMI_33 , ADC= -5, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 295, OverTh=true -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= 0, OverTh=false -Channel=LUMI_19 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 259, 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= 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= 254, OverTh=false -Channel=TIME_05_11, ADC= 255, 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= 253, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 258, 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= 255, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 255, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 256, 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= 260, 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= 255, 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= 257, 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= 256, 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= 257, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 84 Run 290683, Event 7604102 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= 11, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= 16, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 14, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 15, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= 17, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 9, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 21, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -25, OverTh=false -Channel=LUMI_18 , ADC= 5, OverTh=false -Channel=LUMI_42 , ADC= 12, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 9, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 251, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 249, OverTh=false -Channel=TIME_05_09, ADC= 262, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 265, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 262, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 252, 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= 253, 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= 255, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 252, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 252, 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= 260, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 262, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 260, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 255, 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= 254, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 262, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 85 Run 290683, Event 7604738 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 71, OverTh=true -Channel=LUMI_24 , ADC= 98, OverTh=true -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= 10, OverTh=false -Channel=LUMI_03 , ADC= 23, OverTh=false -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= -2, 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= 6, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 45, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 13, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= 23, OverTh=false -Channel=LUMI_33 , ADC= -5, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= -12, OverTh=false -Channel=LUMI_42 , ADC= -5, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 92, OverTh=true -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 263, OverTh=false -Channel=TIME_05_08, ADC= 226, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 381, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 225, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 377, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 222, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 376, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 230, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 371, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 243, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 340, 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= 269, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 241, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 266, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 246, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 261, 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= 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, 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= 256, 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= 255, 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= 258, OverTh=false -Channel=TIME_35_14, ADC= 268, 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= 265, OverTh=false PrintHeader_7bb0e124 INFO # 86 Run 290683, Event 7604780 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 19, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 14, OverTh=false -Channel=LUMI_26 , ADC= -4, OverTh=false -Channel=LUMI_03 , ADC= 44, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -5, 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= 3, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= 55, OverTh=true -Channel=LUMI_47 , ADC= 210, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= -12, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 16, 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= 13, OverTh=false -Channel=LUMI_41 , ADC= 151, OverTh=true -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 333, 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= 336, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 333, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 326, 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= 298, OverTh=false -Channel=TIME_05_12, ADC= 272, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 264, OverTh=false -Channel=TIME_05_13, ADC= 309, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 246, OverTh=false -Channel=TIME_05_14, ADC= 337, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 259, OverTh=false -Channel=TIME_05_07, ADC= 248, OverTh=false -Channel=TIME_05_15, ADC= 338, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 260, 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= 262, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, 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= 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= 254, 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= 258, 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= 258, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 87 Run 290683, Event 7604844 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 168, OverTh=true -Channel=LUMI_24 , ADC= 409, OverTh=true -Channel=LUMI_01 , ADC= -5, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 2, OverTh=false -Channel=LUMI_26 , ADC= 67, OverTh=true -Channel=LUMI_03 , ADC= 25, OverTh=false -Channel=LUMI_27 , ADC= 80, OverTh=true -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 183, OverTh=true -Channel=LUMI_13 , ADC= 27, OverTh=false -Channel=LUMI_37 , ADC= 17, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 53, OverTh=true -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 23, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -15, OverTh=false -Channel=LUMI_47 , ADC= 32, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= -26, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 41, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 54, OverTh=true -Channel=LUMI_32 , ADC= 10, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 128, OverTh=true -Channel=LUMI_10 , ADC= 13, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 269, OverTh=true -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 444, OverTh=true -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= -5, 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= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 245, OverTh=false -Channel=TIME_05_08, ADC= 401, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 402, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 397, OverTh=false -Channel=TIME_29_02, ADC= 267, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 254, OverTh=false -Channel=TIME_05_11, ADC= 381, OverTh=false -Channel=TIME_29_03, ADC= 263, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 321, OverTh=false -Channel=TIME_29_04, ADC= 264, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 263, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 229, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 268, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 235, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 264, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 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= 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= 257, 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= 260, OverTh=false PrintHeader_7bb0e124 INFO # 88 Run 290683, Event 7596014 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 28, OverTh=false -Channel=LUMI_24 , ADC= 373, OverTh=true -Channel=LUMI_01 , ADC= 47, OverTh=false -Channel=LUMI_25 , ADC= 144, OverTh=true -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= 3, OverTh=false -Channel=LUMI_04 , ADC= 97, OverTh=true -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 612, OverTh=true -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 8, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= 316, OverTh=true -Channel=LUMI_15 , ADC= 89, OverTh=true -Channel=LUMI_39 , ADC= -1, OverTh=false -Channel=LUMI_16 , ADC= 84, OverTh=true -Channel=LUMI_40 , ADC= 193, OverTh=true -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 256, OverTh=true -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 332, OverTh=true -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 14, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 398, OverTh=true -Channel=LUMI_33 , ADC= 61, OverTh=true -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= 12, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= -2, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 347, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 348, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 343, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 335, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 298, OverTh=false -Channel=TIME_05_12, ADC= 282, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 330, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 358, 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= 355, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 264, 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= 262, 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= 260, OverTh=false -Channel=TIME_35_02, ADC= 260, 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= 260, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 263, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 89 Run 290683, Event 7596162 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 12, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 177, OverTh=true -Channel=LUMI_38 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 1, 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= -7, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 14, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 256, OverTh=false -Channel=TIME_05_01, ADC= 254, 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= 259, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 268, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 293, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 312, 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= 316, OverTh=false -Channel=TIME_05_15, ADC= 254, 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= 253, 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= 255, 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= 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= 253, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 263, 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= 266, 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= 268, 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= 268, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 90 Run 290683, Event 7596215 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, 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= 2, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 309, OverTh=true -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 252, OverTh=true -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 14, OverTh=false -Channel=LUMI_07 , ADC= 5, 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= 7, 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= 34, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= -4, 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= 5, OverTh=false -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 9, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 262, 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= 262, 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= 262, 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= 261, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 263, 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= 264, 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= 263, OverTh=false -Channel=TIME_05_15, ADC= 254, 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= 287, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 287, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 288, 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= 286, 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= 275, 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= 258, 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= 253, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 91 Run 290683, Event 7596351 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 13, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 5, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, 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= -5, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 12, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 144, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 227, OverTh=true -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 135, OverTh=true -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 14, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= -10, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 12, OverTh=false -Channel=LUMI_42 , ADC= 139, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 15, 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= 298, OverTh=true -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 271, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 254, OverTh=false -Channel=TIME_05_09, ADC= 270, 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= 270, 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= 270, 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= 264, 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= 254, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 250, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 250, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 293, OverTh=false -Channel=TIME_11_08, ADC= 400, OverTh=false -Channel=TIME_35_00, ADC= 341, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 298, OverTh=false -Channel=TIME_11_09, ADC= 403, OverTh=false -Channel=TIME_35_01, ADC= 348, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 299, OverTh=false -Channel=TIME_11_10, ADC= 396, OverTh=false -Channel=TIME_35_02, ADC= 344, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 297, OverTh=false -Channel=TIME_11_11, ADC= 385, OverTh=false -Channel=TIME_35_03, ADC= 331, OverTh=false -Channel=TIME_35_11, ADC= 251, OverTh=false -Channel=TIME_11_04, ADC= 279, OverTh=false -Channel=TIME_11_12, ADC= 334, OverTh=false -Channel=TIME_35_04, ADC= 285, OverTh=false -Channel=TIME_35_12, ADC= 283, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 294, OverTh=false -Channel=TIME_35_05, ADC= 270, OverTh=false -Channel=TIME_35_13, ADC= 311, OverTh=false -Channel=TIME_11_06, ADC= 229, OverTh=false -Channel=TIME_11_14, ADC= 275, OverTh=false -Channel=TIME_35_06, ADC= 269, OverTh=false -Channel=TIME_35_14, ADC= 335, OverTh=false -Channel=TIME_11_07, ADC= 227, OverTh=false -Channel=TIME_11_15, ADC= 282, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 335, OverTh=false PrintHeader_7bb0e124 INFO # 92 Run 290683, Event 7596432 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= -11, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 3, 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= 1, OverTh=false -Channel=LUMI_12 , ADC= 10, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= -2, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= -5, 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= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -5, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= -8, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= 6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 253, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 258, 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= 260, 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= 260, 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= 258, OverTh=false -Channel=TIME_29_12, ADC= 260, 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= 259, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 254, 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= 256, OverTh=false -Channel=TIME_35_06, ADC= 258, 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 # 93 Run 290683, Event 7596687 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 12, 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= 46, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= 14, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= 67, OverTh=true -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 0, OverTh=false -Channel=LUMI_47 , ADC= 15, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 11, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -8, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 225, OverTh=true -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 29, OverTh=false -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 6, OverTh=false -Channel=LUMI_18 , ADC= 287, OverTh=true -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= -1, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= -9, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 343, OverTh=false -Channel=TIME_29_00, ADC= 262, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 341, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 341, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 338, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 240, OverTh=false -Channel=TIME_05_12, ADC= 307, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 205, OverTh=false -Channel=TIME_05_13, ADC= 264, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 261, OverTh=false -Channel=TIME_05_06, ADC= 169, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 169, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_11, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 253, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, 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= 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= 259, OverTh=false PrintHeader_7bb0e124 INFO # 94 Run 290683, Event 7596757 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -1, 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= 156, OverTh=true -Channel=LUMI_26 , ADC= -3, 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= -2, OverTh=false -Channel=LUMI_12 , ADC= 20, 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= -5, 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= 0, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 9, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= 10, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 500, OverTh=true -Channel=LUMI_41 , ADC= 474, OverTh=true -Channel=LUMI_18 , ADC= 81, OverTh=true -Channel=LUMI_42 , ADC= 230, OverTh=true -Channel=LUMI_19 , ADC= 287, OverTh=true -Channel=LUMI_43 , ADC= 226, OverTh=true -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= -2, OverTh=false -Channel=LUMI_21 , ADC= 60, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 264, 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= 264, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, 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= 254, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 259, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 264, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 274, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 267, 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= 265, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 306, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 300, OverTh=false PrintHeader_7bb0e124 INFO # 95 Run 290683, Event 7596761 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 15, OverTh=false -Channel=LUMI_24 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_04 , ADC= -2, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 135, OverTh=true -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= 0, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= -4, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 336, OverTh=true -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= -1, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 92, OverTh=true -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 14, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 109, OverTh=true -Channel=LUMI_20 , ADC= 30, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 20, OverTh=false -Channel=LUMI_45 , ADC= 299, OverTh=true -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 260, 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= 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= 257, 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= 259, 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 252, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 256, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 261, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 252, OverTh=false -Channel=TIME_35_00, ADC= 317, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 317, 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= 313, 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= 308, 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= 302, OverTh=false -Channel=TIME_35_12, ADC= 291, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 312, OverTh=false -Channel=TIME_35_13, ADC= 312, OverTh=false -Channel=TIME_11_06, ADC= 275, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 334, OverTh=false -Channel=TIME_35_14, ADC= 326, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 339, OverTh=false -Channel=TIME_35_15, ADC= 322, OverTh=false PrintHeader_7bb0e124 INFO # 96 Run 290683, Event 7590062 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= -8, OverTh=false -Channel=LUMI_25 , ADC= 4, 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= 2, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 336, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 53, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= -8, 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= 0, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 374, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= 4, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 6, 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= -2, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 21, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -4, OverTh=false -Channel=TIME_05_00, ADC= 261, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 259, 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= 263, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 260, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 249, 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= 255, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 263, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 263, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 259, OverTh=false -Channel=TIME_11_09, ADC= 252, 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= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 253, 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= 258, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 266, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 262, 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 # 97 Run 290683, Event 7590065 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -6, OverTh=false -Channel=LUMI_24 , ADC= 12, 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= 4, OverTh=false -Channel=LUMI_03 , ADC= 25, 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= 4, OverTh=false -Channel=LUMI_36 , ADC= 2, 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= 111, OverTh=true -Channel=LUMI_39 , ADC= 4, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 102, OverTh=true -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 19, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 412, OverTh=true -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 3, OverTh=false -Channel=LUMI_33 , ADC= 202, OverTh=true -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 52, OverTh=true -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 25, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 5, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 312, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 267, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 312, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 267, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 310, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 264, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 309, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 266, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 323, OverTh=false -Channel=TIME_05_12, ADC= 267, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 351, OverTh=false -Channel=TIME_05_13, ADC= 287, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 262, OverTh=false -Channel=TIME_05_06, ADC= 376, OverTh=false -Channel=TIME_05_14, ADC= 314, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 266, OverTh=false -Channel=TIME_05_07, ADC= 376, OverTh=false -Channel=TIME_05_15, ADC= 317, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 268, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 268, 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= 270, 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= 271, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 270, 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= 269, 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= 264, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 251, OverTh=false -Channel=TIME_11_14, ADC= 260, 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 98 Run 290683, Event 7590069 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 694, OverTh=true -Channel=LUMI_24 , ADC= 655, OverTh=true -Channel=LUMI_01 , ADC= 628, OverTh=true -Channel=LUMI_25 , ADC= 703, OverTh=true -Channel=LUMI_02 , ADC= 760, OverTh=true -Channel=LUMI_26 , ADC= 623, OverTh=true -Channel=LUMI_03 , ADC= 709, OverTh=true -Channel=LUMI_27 , ADC= 830, OverTh=true -Channel=LUMI_04 , ADC= 701, OverTh=true -Channel=LUMI_28 , ADC= 757, OverTh=true -Channel=LUMI_12 , ADC= 716, OverTh=true -Channel=LUMI_36 , ADC= 732, OverTh=true -Channel=LUMI_13 , ADC= 766, OverTh=true -Channel=LUMI_37 , ADC= 818, OverTh=true -Channel=LUMI_14 , ADC= 661, OverTh=true -Channel=LUMI_38 , ADC= 711, OverTh=true -Channel=LUMI_15 , ADC= 843, OverTh=true -Channel=LUMI_39 , ADC= 805, OverTh=true -Channel=LUMI_16 , ADC= 637, OverTh=true -Channel=LUMI_40 , ADC= 798, OverTh=true -Channel=LUMI_23 , ADC= 743, OverTh=true -Channel=LUMI_47 , ADC= 707, OverTh=true -Channel=PIN_01 , ADC= 64, OverTh=false -Channel=PIN_02 , ADC= 79, OverTh=false -Channel=PIN_03 , ADC= 68, OverTh=false -Channel=PIN_04 , ADC= 77, OverTh=false -Channel=PIN_08 , ADC= 80, OverTh=false -Channel=PIN_09 , ADC= 88, OverTh=false -Channel=PIN_06 , ADC= 67, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 676, OverTh=true -Channel=LUMI_30 , ADC= 694, OverTh=true -Channel=LUMI_07 , ADC= 781, OverTh=true -Channel=LUMI_31 , ADC= 784, OverTh=true -Channel=LUMI_08 , ADC= 711, OverTh=true -Channel=LUMI_32 , ADC= 692, OverTh=true -Channel=LUMI_09 , ADC= 756, OverTh=true -Channel=LUMI_33 , ADC= 794, OverTh=true -Channel=LUMI_10 , ADC= 853, OverTh=true -Channel=LUMI_34 , ADC= 715, OverTh=true -Channel=LUMI_17 , ADC= 702, OverTh=true -Channel=LUMI_41 , ADC= 716, OverTh=true -Channel=LUMI_18 , ADC= 804, OverTh=true -Channel=LUMI_42 , ADC= 788, OverTh=true -Channel=LUMI_19 , ADC= 726, OverTh=true -Channel=LUMI_43 , ADC= 763, OverTh=true -Channel=LUMI_20 , ADC= 643, OverTh=true -Channel=LUMI_44 , ADC= 868, OverTh=true -Channel=LUMI_21 , ADC= 717, OverTh=true -Channel=LUMI_45 , ADC= 863, OverTh=true -Channel=LUMI_22 , ADC= 820, OverTh=true -Channel=LUMI_46 , ADC= 704, OverTh=true -Channel=MON_01 , ADC= 129, OverTh=false -Channel=MON_02 , ADC= 144, OverTh=false -Channel=MON_03 , ADC= 142, OverTh=false -Channel=MON_04 , ADC= 133, OverTh=false -Channel=TIME_05_00, ADC= 507, OverTh=false -Channel=TIME_05_08, ADC= 265, OverTh=false -Channel=TIME_29_00, ADC= 513, OverTh=false -Channel=TIME_29_08, ADC= 270, OverTh=false -Channel=TIME_05_01, ADC= 476, OverTh=false -Channel=TIME_05_09, ADC= 289, OverTh=false -Channel=TIME_29_01, ADC= 475, OverTh=false -Channel=TIME_29_09, ADC= 292, OverTh=false -Channel=TIME_05_02, ADC= 401, OverTh=false -Channel=TIME_05_10, ADC= 346, OverTh=false -Channel=TIME_29_02, ADC= 404, OverTh=false -Channel=TIME_29_10, ADC= 344, OverTh=false -Channel=TIME_05_03, ADC= 318, OverTh=false -Channel=TIME_05_11, ADC= 429, OverTh=false -Channel=TIME_29_03, ADC= 340, OverTh=false -Channel=TIME_29_11, ADC= 409, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 484, OverTh=false -Channel=TIME_29_04, ADC= 265, OverTh=false -Channel=TIME_29_12, ADC= 487, OverTh=false -Channel=TIME_05_05, ADC= 237, OverTh=false -Channel=TIME_05_13, ADC= 521, OverTh=false -Channel=TIME_29_05, ADC= 229, OverTh=false -Channel=TIME_29_13, ADC= 530, OverTh=false -Channel=TIME_05_06, ADC= 231, OverTh=false -Channel=TIME_05_14, ADC= 542, OverTh=false -Channel=TIME_29_06, ADC= 225, OverTh=false -Channel=TIME_29_14, ADC= 549, OverTh=false -Channel=TIME_05_07, ADC= 238, OverTh=false -Channel=TIME_05_15, ADC= 533, OverTh=false -Channel=TIME_29_07, ADC= 231, OverTh=false -Channel=TIME_29_15, ADC= 543, OverTh=false -Channel=TIME_11_00, ADC= 461, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 383, OverTh=false -Channel=TIME_35_08, ADC= 282, OverTh=false -Channel=TIME_11_01, ADC= 425, OverTh=false -Channel=TIME_11_09, ADC= 293, OverTh=false -Channel=TIME_35_01, ADC= 334, OverTh=false -Channel=TIME_35_09, ADC= 334, OverTh=false -Channel=TIME_11_02, ADC= 354, OverTh=false -Channel=TIME_11_10, ADC= 350, OverTh=false -Channel=TIME_35_02, ADC= 274, OverTh=false -Channel=TIME_35_10, ADC= 392, OverTh=false -Channel=TIME_11_03, ADC= 294, OverTh=false -Channel=TIME_11_11, ADC= 407, OverTh=false -Channel=TIME_35_03, ADC= 239, OverTh=false -Channel=TIME_35_11, ADC= 430, OverTh=false -Channel=TIME_11_04, ADC= 249, OverTh=false -Channel=TIME_11_12, ADC= 452, OverTh=false -Channel=TIME_35_04, ADC= 238, OverTh=false -Channel=TIME_35_12, ADC= 439, OverTh=false -Channel=TIME_11_05, ADC= 229, OverTh=false -Channel=TIME_11_13, ADC= 484, OverTh=false -Channel=TIME_35_05, ADC= 237, OverTh=false -Channel=TIME_35_13, ADC= 439, OverTh=false -Channel=TIME_11_06, ADC= 232, OverTh=false -Channel=TIME_11_14, ADC= 495, OverTh=false -Channel=TIME_35_06, ADC= 244, OverTh=false -Channel=TIME_35_14, ADC= 437, OverTh=false -Channel=TIME_11_07, ADC= 239, OverTh=false -Channel=TIME_11_15, ADC= 484, OverTh=false -Channel=TIME_35_07, ADC= 250, OverTh=false -Channel=TIME_35_15, ADC= 438, OverTh=false PrintHeader_7bb0e124 INFO # 99 Run 290683, Event 7590588 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 4, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 4, 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= 6, 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= 6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -15, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= 12, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -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= 23, OverTh=false -Channel=LUMI_20 , ADC= 128, OverTh=true -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 35, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 261, 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= 259, 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= 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= 255, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 250, OverTh=false -Channel=TIME_05_15, ADC= 279, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 193, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 193, OverTh=false -Channel=TIME_11_09, ADC= 266, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 198, OverTh=false -Channel=TIME_11_10, ADC= 267, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 204, OverTh=false -Channel=TIME_11_11, ADC= 264, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 263, OverTh=false -Channel=TIME_11_12, ADC= 246, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 333, OverTh=false -Channel=TIME_11_13, ADC= 208, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 358, OverTh=false -Channel=TIME_11_14, ADC= 184, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 352, OverTh=false -Channel=TIME_11_15, ADC= 185, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 100 Run 290683, Event 7590718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 125, OverTh=true -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 22, OverTh=false -Channel=LUMI_27 , ADC= 6, OverTh=false -Channel=LUMI_04 , ADC= 11, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 13, 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= 6, 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= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 330, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -10, OverTh=false -Channel=LUMI_07 , ADC= 0, 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= -8, 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= -7, 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= -18, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 1, OverTh=false -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -6, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 291, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 296, OverTh=false -Channel=TIME_05_01, ADC= 293, OverTh=false -Channel=TIME_05_09, ADC= 253, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 299, OverTh=false -Channel=TIME_05_02, ADC= 289, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 296, OverTh=false -Channel=TIME_05_03, ADC= 284, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 294, OverTh=false -Channel=TIME_05_04, ADC= 269, OverTh=false -Channel=TIME_05_12, ADC= 268, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 280, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 285, OverTh=false -Channel=TIME_29_05, ADC= 249, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 250, OverTh=false -Channel=TIME_05_14, ADC= 295, OverTh=false -Channel=TIME_29_06, ADC= 239, OverTh=false -Channel=TIME_29_14, ADC= 251, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 296, OverTh=false -Channel=TIME_29_07, ADC= 238, OverTh=false -Channel=TIME_29_15, ADC= 251, 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= 256, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 266, 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= 267, 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= 263, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 101 Run 290683, Event 7597263 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 7, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 13, OverTh=false -Channel=LUMI_37 , ADC= 82, OverTh=true -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 7, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 101, OverTh=true -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -24, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 16, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= 14, 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= 2, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 50, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 249, OverTh=false -Channel=TIME_05_08, ADC= 348, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 269, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 347, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 267, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 343, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 264, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 339, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 311, 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= 268, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 243, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 243, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 252, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 263, 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= 262, 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= 254, 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= 256, OverTh=false -Channel=TIME_35_11, ADC= 258, 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= 254, 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= 256, 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= 256, 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 # 102 Run 290683, Event 7597670 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, 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= 3, 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= 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= -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= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -5, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 12, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 9, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= 3, 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= 3, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 259, 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= 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= 254, 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= 255, 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= 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= 257, 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= 254, 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= 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= 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= 259, 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= 256, 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= 258, 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= 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= 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= 255, OverTh=false PrintHeader_7bb0e124 INFO # 103 Run 290683, Event 7597742 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 245, OverTh=true -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 168, OverTh=true -Channel=LUMI_02 , ADC= 645, OverTh=true -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 126, OverTh=true -Channel=LUMI_27 , ADC= 374, OverTh=true -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 14, OverTh=false -Channel=LUMI_12 , ADC= 6, OverTh=false -Channel=LUMI_36 , ADC= 15, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= 36, 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= 9, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -13, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 253, OverTh=true -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 266, OverTh=true -Channel=LUMI_32 , ADC= 6, OverTh=false -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 11, 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= 6, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= 6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 262, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 263, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 266, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 265, 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= 263, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 334, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 337, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 331, 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= 314, 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= 273, OverTh=false -Channel=TIME_35_12, ADC= 299, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 319, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 238, OverTh=false -Channel=TIME_35_14, ADC= 345, OverTh=false -Channel=TIME_11_07, ADC= 254, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 243, OverTh=false -Channel=TIME_35_15, ADC= 344, OverTh=false PrintHeader_7bb0e124 INFO # 104 Run 290683, Event 7597971 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= -2, OverTh=false -Channel=LUMI_01 , ADC= -20, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 28, OverTh=false -Channel=LUMI_26 , ADC= 2, 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= 7, OverTh=false -Channel=LUMI_12 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_38 , ADC= 6, OverTh=false -Channel=LUMI_15 , ADC= -6, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -3, 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= 0, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 235, OverTh=true -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 12, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, 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= 261, 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= 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= 261, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 295, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 371, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 452, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 264, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 460, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 264, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 264, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 262, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 261, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 258, 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 # 105 Run 290683, Event 7592297 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -17, 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= 323, OverTh=true -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= 63, OverTh=true -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= -2, OverTh=false -Channel=LUMI_36 , ADC= -7, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 9, 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= 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= 0, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= -8, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -6, OverTh=false -Channel=LUMI_07 , ADC= 297, OverTh=true -Channel=LUMI_31 , ADC= -6, OverTh=false -Channel=LUMI_08 , ADC= 2, 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= 11, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= -1, OverTh=false -Channel=LUMI_41 , ADC= 64, OverTh=true -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= 11, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -4, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 251, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 247, OverTh=false -Channel=TIME_05_01, ADC= 250, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 249, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 252, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 254, OverTh=false -Channel=TIME_05_04, ADC= 253, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 238, OverTh=false -Channel=TIME_05_05, ADC= 251, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 235, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 278, OverTh=false -Channel=TIME_29_14, ADC= 261, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 273, OverTh=false -Channel=TIME_29_15, ADC= 267, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 259, 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= 254, 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= 251, 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= 255, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 261, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 278, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 272, OverTh=false PrintHeader_7bb0e124 INFO # 106 Run 290683, Event 7592431 -PlumeRawToDigits_89428f2d 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= 6, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 11, OverTh=false -Channel=LUMI_15 , ADC= 0, 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= 2, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 15, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 9, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 9, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 9, OverTh=false -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 9, OverTh=false -Channel=LUMI_18 , ADC= 10, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 11, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 3, OverTh=false -Channel=LUMI_44 , ADC= 76, OverTh=true -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 263, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 261, 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= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 260, 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= 262, 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= 264, 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= 263, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 269, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 264, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 259, 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= 258, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 272, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 288, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 269, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 284, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 107 Run 290683, Event 7592598 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= -6, 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= -1, OverTh=false -Channel=LUMI_04 , ADC= -4, 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= 669, OverTh=true -Channel=LUMI_37 , ADC= 18, OverTh=false -Channel=LUMI_14 , ADC= 6, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -20, OverTh=false -Channel=LUMI_39 , ADC= -12, 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=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -7, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 11, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 12, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= 50, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 6, OverTh=false -Channel=LUMI_43 , ADC= 242, OverTh=true -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -3, 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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 268, OverTh=false -Channel=TIME_05_08, ADC= 144, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 275, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 143, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 273, OverTh=false -Channel=TIME_05_02, ADC= 263, OverTh=false -Channel=TIME_05_10, ADC= 144, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 274, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 152, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 272, OverTh=false -Channel=TIME_05_04, ADC= 261, OverTh=false -Channel=TIME_05_12, ADC= 205, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 270, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 261, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 278, OverTh=false -Channel=TIME_29_06, ADC= 268, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 266, 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= 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= 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= 255, 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= 259, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 258, 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= 256, 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= 258, 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= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 108 Run 290683, Event 7592877 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= -6, 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= -3, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= 9, 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= 2, OverTh=false -Channel=LUMI_14 , ADC= 9, 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= 74, OverTh=true -Channel=LUMI_40 , ADC= 7, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 9, OverTh=false -Channel=PIN_06 , ADC= -7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= 390, OverTh=true -Channel=LUMI_08 , ADC= -2, OverTh=false -Channel=LUMI_32 , ADC= -2, 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 52, OverTh=true -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= -3, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 252, OverTh=false -Channel=TIME_29_01, ADC= 263, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 249, OverTh=false -Channel=TIME_29_02, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_11, ADC= 262, 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= 257, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 259, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 257, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 265, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_03, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 261, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 263, 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= 263, OverTh=false PrintHeader_7bb0e124 INFO # 109 Run 290683, Event 7592982 -PlumeRawToDigits_89428f2d 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= 5, OverTh=false -Channel=LUMI_02 , ADC= -11, OverTh=false -Channel=LUMI_26 , ADC= 2, 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= 0, 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= 1, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= 18, 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 290, OverTh=true -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= -12, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -4, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= 12, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 21, OverTh=false -Channel=LUMI_18 , ADC= -8, 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= 21, OverTh=false -Channel=LUMI_44 , ADC= 16, OverTh=false -Channel=LUMI_21 , ADC= -13, OverTh=false -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, 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= 257, 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= 258, 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= 260, 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 254, 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= 257, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 259, 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= 255, 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= 256, OverTh=false -Channel=TIME_11_09, ADC= 256, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 258, 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= 254, OverTh=false -Channel=TIME_11_04, ADC= 255, 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= 254, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 110 Run 290683, Event 7601112 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 11, OverTh=false -Channel=LUMI_24 , ADC= 10, 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= 9, OverTh=false -Channel=LUMI_03 , ADC= 13, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= -9, OverTh=false -Channel=LUMI_12 , ADC= 8, OverTh=false -Channel=LUMI_36 , ADC= 7, 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= 6, OverTh=false -Channel=LUMI_15 , ADC= 307, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 11, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , 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= 5, OverTh=false -Channel=LUMI_32 , ADC= 15, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= -5, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 1, OverTh=false -Channel=LUMI_41 , ADC= 22, OverTh=false -Channel=LUMI_18 , ADC= 13, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 8, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 3, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 250, OverTh=false -Channel=TIME_05_08, ADC= 343, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 252, OverTh=false -Channel=TIME_05_09, ADC= 345, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 345, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 333, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 289, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 251, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 239, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 242, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 277, OverTh=false -Channel=TIME_11_08, ADC= 286, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 280, OverTh=false -Channel=TIME_11_09, ADC= 285, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 278, OverTh=false -Channel=TIME_11_10, ADC= 284, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 276, OverTh=false -Channel=TIME_11_11, ADC= 280, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 271, OverTh=false -Channel=TIME_11_12, ADC= 267, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 270, 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= 274, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 111 Run 290683, Event 7601132 -PlumeRawToDigits_89428f2d 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= 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= 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= 145, OverTh=true -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= -5, OverTh=false -Channel=LUMI_39 , ADC= -3, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -3, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 9, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 7, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= -5, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= 15, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 618, OverTh=true -Channel=LUMI_19 , ADC= -6, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 258, 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= 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= 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= 259, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 259, 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= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 258, 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= 260, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 259, 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= 259, 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= 260, OverTh=false -Channel=TIME_35_12, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 261, 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 112 Run 290683, Event 7601185 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, 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= 7, OverTh=false -Channel=LUMI_26 , ADC= 26, OverTh=false -Channel=LUMI_03 , ADC= 13, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 6, 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= -2, OverTh=false -Channel=LUMI_14 , ADC= 308, OverTh=true -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= -4, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 32, OverTh=false -Channel=LUMI_07 , ADC= 303, OverTh=true -Channel=LUMI_31 , ADC= 300, OverTh=true -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= -4, 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= 47, OverTh=false -Channel=LUMI_42 , ADC= 294, OverTh=true -Channel=LUMI_19 , ADC= 3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 264, 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= 262, OverTh=false -Channel=TIME_05_09, ADC= 260, 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= 258, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 254, 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= 256, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 260, 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= 259, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 270, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 270, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 269, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 264, OverTh=false -Channel=TIME_11_09, ADC= 268, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 264, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 265, 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= 262, 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= 263, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 261, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 113 Run 290683, Event 7601189 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 10, OverTh=false -Channel=LUMI_24 , ADC= -14, 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= 6, 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= -3, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= -8, 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= -5, OverTh=false -Channel=LUMI_39 , ADC= -5, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= -3, OverTh=false -Channel=LUMI_31 , ADC= 29, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= -7, OverTh=false -Channel=LUMI_33 , ADC= 16, OverTh=false -Channel=LUMI_10 , ADC= -10, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 44, OverTh=false -Channel=LUMI_41 , ADC= 381, OverTh=true -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 9, OverTh=false -Channel=LUMI_19 , ADC= 31, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -6, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 232, OverTh=true -Channel=LUMI_22 , ADC= -8, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 258, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 255, 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= 257, OverTh=false -Channel=TIME_29_03, ADC= 259, 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= 255, 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= 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= 259, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 252, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 251, 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= 251, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 252, 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= 253, OverTh=false -Channel=TIME_11_11, ADC= 253, 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= 251, 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= 252, 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= 252, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 114 Run 290683, Event 7601492 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 75, OverTh=true -Channel=LUMI_24 , ADC= 308, OverTh=true -Channel=LUMI_01 , ADC= 239, OverTh=true -Channel=LUMI_25 , ADC= 5, 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= 291, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_15 , ADC= 51, OverTh=true -Channel=LUMI_39 , ADC= 12, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 10, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 6, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 262, OverTh=true -Channel=LUMI_30 , ADC= 545, OverTh=true -Channel=LUMI_07 , ADC= 61, OverTh=true -Channel=LUMI_31 , ADC= 447, OverTh=true -Channel=LUMI_08 , ADC= 270, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 129, OverTh=true -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 48, 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= -16, 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= 2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 259, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 251, OverTh=false -Channel=TIME_05_04, ADC= 260, 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= 260, 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= 255, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 350, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 266, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 349, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 263, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 344, OverTh=false -Channel=TIME_11_10, ADC= 253, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 340, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 306, OverTh=false -Channel=TIME_11_12, ADC= 274, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 323, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 238, OverTh=false -Channel=TIME_11_14, ADC= 359, OverTh=false -Channel=TIME_35_06, ADC= 252, OverTh=false -Channel=TIME_35_14, ADC= 282, OverTh=false -Channel=TIME_11_07, ADC= 241, OverTh=false -Channel=TIME_11_15, ADC= 359, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 277, OverTh=false PrintHeader_7bb0e124 INFO # 115 Run 290683, Event 7601619 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 98, OverTh=true -Channel=LUMI_24 , ADC= 37, OverTh=false -Channel=LUMI_01 , ADC= 322, OverTh=true -Channel=LUMI_25 , ADC= 40, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 199, OverTh=true -Channel=LUMI_27 , ADC= -4, OverTh=false -Channel=LUMI_04 , ADC= 206, OverTh=true -Channel=LUMI_28 , ADC= 111, OverTh=true -Channel=LUMI_12 , ADC= -1, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 414, OverTh=true -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 46, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= 8, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 301, OverTh=true -Channel=LUMI_30 , ADC= 64, OverTh=true -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= -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= 365, OverTh=true -Channel=LUMI_17 , ADC= 347, OverTh=true -Channel=LUMI_41 , ADC= 377, OverTh=true -Channel=LUMI_18 , ADC= 569, OverTh=true -Channel=LUMI_42 , ADC= 51, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 260, 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= 261, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 253, OverTh=false -Channel=TIME_05_11, ADC= 258, 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= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, 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= 270, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 265, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 260, OverTh=false -Channel=TIME_11_00, ADC= 331, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 331, 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= 329, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 316, OverTh=false -Channel=TIME_11_11, ADC= 261, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 275, OverTh=false -Channel=TIME_11_12, ADC= 292, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 252, OverTh=false -Channel=TIME_11_13, ADC= 324, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 242, OverTh=false -Channel=TIME_11_14, ADC= 338, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 248, OverTh=false -Channel=TIME_11_15, ADC= 334, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 116 Run 290683, Event 7598139 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 29, OverTh=false -Channel=LUMI_01 , ADC= 15, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 133, OverTh=true -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= -3, OverTh=false -Channel=LUMI_12 , ADC= 633, OverTh=true -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 7, 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= 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=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 31, OverTh=false -Channel=LUMI_31 , ADC= 10, OverTh=false -Channel=LUMI_08 , ADC= -3, 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= 7, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 533, OverTh=true -Channel=LUMI_18 , ADC= 29, OverTh=false -Channel=LUMI_42 , ADC= 17, OverTh=false -Channel=LUMI_19 , ADC= -11, OverTh=false -Channel=LUMI_43 , ADC= 307, OverTh=true -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= -9, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 373, OverTh=true -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 275, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 250, OverTh=false -Channel=TIME_29_08, ADC= 353, OverTh=false -Channel=TIME_05_01, ADC= 277, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 251, OverTh=false -Channel=TIME_29_09, ADC= 351, OverTh=false -Channel=TIME_05_02, ADC= 273, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 351, OverTh=false -Channel=TIME_05_03, ADC= 275, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 347, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 307, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 272, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 249, OverTh=false -Channel=TIME_05_06, ADC= 260, OverTh=false -Channel=TIME_05_14, ADC= 277, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 239, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 240, OverTh=false -Channel=TIME_11_00, ADC= 337, OverTh=false -Channel=TIME_11_08, ADC= 174, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 268, OverTh=false -Channel=TIME_11_01, ADC= 334, OverTh=false -Channel=TIME_11_09, ADC= 173, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 268, OverTh=false -Channel=TIME_11_02, ADC= 334, OverTh=false -Channel=TIME_11_10, ADC= 173, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 267, OverTh=false -Channel=TIME_11_03, ADC= 319, OverTh=false -Channel=TIME_11_11, ADC= 185, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 267, OverTh=false -Channel=TIME_11_04, ADC= 289, OverTh=false -Channel=TIME_11_12, ADC= 237, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 264, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 325, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 244, OverTh=false -Channel=TIME_11_14, ADC= 362, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 354, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 117 Run 290683, Event 7598150 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 9, OverTh=false -Channel=LUMI_24 , ADC= 12, OverTh=false -Channel=LUMI_01 , ADC= 86, OverTh=true -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 500, OverTh=true -Channel=LUMI_26 , ADC= 545, OverTh=true -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 16, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 16, OverTh=false -Channel=LUMI_36 , ADC= 11, OverTh=false -Channel=LUMI_13 , ADC= 13, 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= 43, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 47, OverTh=false -Channel=LUMI_40 , ADC= 9, OverTh=false -Channel=LUMI_23 , ADC= -7, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 16, 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= 17, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 375, OverTh=true -Channel=LUMI_18 , ADC= 74, OverTh=true -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= 17, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 301, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 305, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 252, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 306, OverTh=false -Channel=TIME_29_02, ADC= 252, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 263, OverTh=false -Channel=TIME_05_11, ADC= 303, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 269, OverTh=false -Channel=TIME_05_12, ADC= 281, OverTh=false -Channel=TIME_29_04, ADC= 265, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 302, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 276, OverTh=false -Channel=TIME_05_14, ADC= 255, OverTh=false -Channel=TIME_29_06, ADC= 317, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 274, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 311, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 252, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 267, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 261, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 265, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 261, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, 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= 257, 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= 261, 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= 258, 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 # 118 Run 290683, Event 7598171 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 25, OverTh=false -Channel=LUMI_01 , ADC= -5, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= -8, 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= 1, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 7, 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= 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= 2, OverTh=false -Channel=LUMI_23 , ADC= -11, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -9, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 20, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 1, OverTh=false -Channel=LUMI_08 , ADC= 10, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 8, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= -4, 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= -4, OverTh=false -Channel=LUMI_21 , ADC= -8, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -6, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 221, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 262, OverTh=false -Channel=TIME_05_09, ADC= 221, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 260, OverTh=false -Channel=TIME_05_10, ADC= 225, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 223, 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= 240, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 263, OverTh=false -Channel=TIME_05_13, ADC= 261, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 265, OverTh=false -Channel=TIME_05_14, ADC= 265, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 266, OverTh=false -Channel=TIME_05_15, ADC= 267, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 262, 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= 258, 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= 258, OverTh=false -Channel=TIME_11_12, ADC= 254, 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= 268, 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= 279, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 275, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 119 Run 290683, Event 7598529 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 390, OverTh=true -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= -1, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 257, OverTh=true -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= 24, OverTh=false -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 42, OverTh=false -Channel=LUMI_39 , ADC= 2, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 284, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 4, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 81, OverTh=true -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 21, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= -6, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= -3, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= -5, OverTh=false -Channel=LUMI_42 , ADC= 15, OverTh=false -Channel=LUMI_19 , ADC= -1, OverTh=false -Channel=LUMI_43 , ADC= -5, 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= 1, OverTh=false -Channel=LUMI_46 , ADC= 341, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 296, 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= 296, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 289, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 289, 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= 283, OverTh=false -Channel=TIME_05_12, ADC= 260, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 268, OverTh=false -Channel=TIME_05_13, ADC= 270, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 252, OverTh=false -Channel=TIME_05_14, ADC= 305, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 250, OverTh=false -Channel=TIME_05_15, ADC= 306, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 280, OverTh=false -Channel=TIME_35_00, ADC= 261, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 282, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 263, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 284, OverTh=false -Channel=TIME_35_02, ADC= 258, OverTh=false -Channel=TIME_35_10, ADC= 266, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 281, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 273, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 262, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 264, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 263, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 251, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 120 Run 290683, Event 7595051 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 6, 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= 4, 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= -3, 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= 0, 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= 5, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 10, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 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= 260, 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= 258, 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= 259, 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= 254, 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= 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= 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 258, 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= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, 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= 255, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 121 Run 290683, Event 7595508 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -8, 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= -8, 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= 8, OverTh=false -Channel=LUMI_36 , ADC= 29, OverTh=false -Channel=LUMI_13 , ADC= -5, OverTh=false -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 18, OverTh=false -Channel=LUMI_38 , ADC= 366, OverTh=true -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= -5, OverTh=false -Channel=LUMI_47 , ADC= -3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 8, 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= 393, OverTh=true -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= 5, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 129, OverTh=true -Channel=LUMI_43 , ADC= 1, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 143, OverTh=true -Channel=LUMI_45 , ADC= -6, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= -6, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 265, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 263, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 281, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 326, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 360, OverTh=false -Channel=TIME_05_14, ADC= 286, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 359, OverTh=false -Channel=TIME_05_15, ADC= 284, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 245, OverTh=false -Channel=TIME_35_08, ADC= 375, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 262, OverTh=false -Channel=TIME_35_01, ADC= 251, OverTh=false -Channel=TIME_35_09, ADC= 376, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 371, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 354, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 302, 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= 265, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 254, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 230, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 237, OverTh=false PrintHeader_7bb0e124 INFO # 122 Run 290683, Event 7595567 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -15, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 27, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 9, 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= 3, OverTh=false -Channel=LUMI_36 , ADC= 83, OverTh=true -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 2, OverTh=false -Channel=LUMI_14 , ADC= 26, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 72, OverTh=true -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 55, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 263, OverTh=true -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= 0, OverTh=false -Channel=LUMI_09 , ADC= 80, OverTh=true -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= 1, OverTh=false -Channel=LUMI_41 , ADC= 1, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 16, OverTh=false -Channel=LUMI_19 , ADC= 244, OverTh=true -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 85, OverTh=true -Channel=LUMI_44 , ADC= 13, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 259, 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= 262, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, 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= 257, 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= 254, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 254, 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= 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 264, 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= 269, 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= 261, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 123 Run 290683, Event 7593083 -PlumeRawToDigits_89428f2d 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= 4, OverTh=false -Channel=LUMI_02 , ADC= 319, OverTh=true -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 3, 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= 0, OverTh=false -Channel=LUMI_13 , ADC= 0, 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= -3, 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=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 10, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -6, 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= 10, OverTh=false -Channel=LUMI_33 , ADC= -9, 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= 52, OverTh=true -Channel=LUMI_42 , ADC= -2, OverTh=false -Channel=LUMI_19 , ADC= 24, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 67, OverTh=true -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 254, 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= 255, OverTh=false -Channel=TIME_05_02, ADC= 252, 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= 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= 257, 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= 260, 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= 261, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 261, 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= 253, 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= 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= 257, 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= 259, 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= 255, OverTh=false -Channel=TIME_11_13, ADC= 260, 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= 271, 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= 267, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 124 Run 290683, Event 7593666 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 102, OverTh=true -Channel=LUMI_01 , ADC= 1, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 98, OverTh=true -Channel=LUMI_36 , ADC= 108, OverTh=true -Channel=LUMI_13 , ADC= 179, OverTh=true -Channel=LUMI_37 , ADC= 209, OverTh=true -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= 2, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -11, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -16, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 213, OverTh=true -Channel=LUMI_07 , ADC= 1, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 335, OverTh=true -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= -1, OverTh=false -Channel=LUMI_34 , ADC= -1, OverTh=false -Channel=LUMI_17 , ADC= 124, OverTh=true -Channel=LUMI_41 , ADC= 7, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 3, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 253, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 260, 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= 260, 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= 261, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 261, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 267, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 266, 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= 263, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 249, OverTh=false -Channel=TIME_35_08, ADC= 365, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 252, OverTh=false -Channel=TIME_35_09, ADC= 366, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 360, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 335, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 255, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 277, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 248, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 232, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 267, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 240, OverTh=false PrintHeader_7bb0e124 INFO # 125 Run 290683, Event 7593996 -PlumeRawToDigits_89428f2d 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= -2, 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= 6, 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= 6, 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= 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=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_33 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -3, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 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= 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= 254, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 257, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 256, 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= 256, 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= 258, OverTh=false -Channel=TIME_05_14, ADC= 259, 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= 261, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 261, 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= 255, OverTh=false -Channel=TIME_35_01, ADC= 258, 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= 257, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 257, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 259, 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= 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 126 Run 290683, Event 7594047 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 457, OverTh=true -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= 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= 3, 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= 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= 30, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , 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= -3, OverTh=false -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -2, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, 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= 255, 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= 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= 256, 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= 256, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 255, 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= 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= 257, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 259, 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= 260, 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= 261, 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= 259, 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= 260, 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= 257, OverTh=false -Channel=TIME_35_05, ADC= 259, 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= 257, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 127 Run 290683, Event 7594549 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 4, 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= -1, OverTh=false -Channel=LUMI_04 , ADC= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 126, OverTh=true -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= -5, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -7, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -6, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 18, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 5, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -3, OverTh=false -Channel=LUMI_18 , ADC= 20, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 22, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 4, 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= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, 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= 259, 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= 259, 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= 258, 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= 256, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 258, 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= 261, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 260, 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= 261, 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= 259, 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= 264, 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= 275, 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= 271, 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 # 128 Run 290683, Event 7605234 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -5, 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= 1, 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= -4, OverTh=false -Channel=LUMI_14 , ADC= -4, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= 6, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 13, 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= 9, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 10, OverTh=false -Channel=LUMI_18 , ADC= 10, OverTh=false -Channel=LUMI_42 , ADC= 7, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 15, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= -3, OverTh=false -Channel=LUMI_21 , ADC= 5, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 340, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 343, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 254, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 339, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 329, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 293, OverTh=false -Channel=TIME_29_04, ADC= 260, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 241, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 273, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 246, OverTh=false -Channel=TIME_29_07, ADC= 261, OverTh=false -Channel=TIME_29_15, ADC= 274, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 264, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 265, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 269, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 264, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 274, OverTh=false -Channel=TIME_11_12, ADC= 261, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 259, OverTh=false -Channel=TIME_11_05, ADC= 311, OverTh=false -Channel=TIME_11_13, ADC= 257, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 333, OverTh=false -Channel=TIME_11_14, ADC= 252, OverTh=false -Channel=TIME_35_06, ADC= 274, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 327, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 273, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 129 Run 290683, Event 7605350 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 278, OverTh=true -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= 245, OverTh=true -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 7, OverTh=false -Channel=LUMI_03 , ADC= 5, OverTh=false -Channel=LUMI_27 , ADC= 62, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 91, OverTh=true -Channel=LUMI_36 , ADC= -6, OverTh=false -Channel=LUMI_13 , ADC= 293, OverTh=true -Channel=LUMI_37 , ADC= 143, OverTh=true -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= -3, OverTh=false -Channel=LUMI_15 , ADC= 17, OverTh=false -Channel=LUMI_39 , ADC= -4, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 9, OverTh=false -Channel=LUMI_23 , ADC= 185, OverTh=true -Channel=LUMI_47 , ADC= 75, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -6, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 161, OverTh=true -Channel=LUMI_08 , ADC= 11, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= -6, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= -5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 205, OverTh=true -Channel=LUMI_18 , ADC= 157, OverTh=true -Channel=LUMI_42 , ADC= 234, OverTh=true -Channel=LUMI_19 , ADC= -4, 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= 2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 252, OverTh=true -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 345, 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= 345, 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= 343, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 338, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 298, OverTh=false -Channel=TIME_29_12, ADC= 283, 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= 333, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 245, OverTh=false -Channel=TIME_29_14, ADC= 354, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 247, OverTh=false -Channel=TIME_29_15, ADC= 355, OverTh=false -Channel=TIME_11_00, ADC= 440, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 364, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 437, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 363, OverTh=false -Channel=TIME_35_09, ADC= 251, OverTh=false -Channel=TIME_11_02, ADC= 427, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 357, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 411, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 334, OverTh=false -Channel=TIME_35_11, ADC= 263, OverTh=false -Channel=TIME_11_04, ADC= 342, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 277, OverTh=false -Channel=TIME_35_12, ADC= 310, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 405, OverTh=false -Channel=TIME_35_05, ADC= 251, OverTh=false -Channel=TIME_35_13, ADC= 348, OverTh=false -Channel=TIME_11_06, ADC= 222, OverTh=false -Channel=TIME_11_14, ADC= 474, OverTh=false -Channel=TIME_35_06, ADC= 233, OverTh=false -Channel=TIME_35_14, ADC= 381, OverTh=false -Channel=TIME_11_07, ADC= 227, OverTh=false -Channel=TIME_11_15, ADC= 463, OverTh=false -Channel=TIME_35_07, ADC= 238, OverTh=false -Channel=TIME_35_15, ADC= 379, OverTh=false PrintHeader_7bb0e124 INFO # 130 Run 290683, Event 7605357 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 422, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 7, 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= 15, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 70, OverTh=true -Channel=LUMI_37 , ADC= -5, OverTh=false -Channel=LUMI_14 , ADC= 387, OverTh=true -Channel=LUMI_38 , ADC= -6, OverTh=false -Channel=LUMI_15 , ADC= 151, OverTh=true -Channel=LUMI_39 , ADC= 5, 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= 0, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -8, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -6, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 385, OverTh=true -Channel=LUMI_30 , ADC= 321, OverTh=true -Channel=LUMI_07 , ADC= 36, 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= 38, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= 18, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 151, OverTh=true -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= -4, OverTh=false -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 8, 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= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 323, 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= 323, OverTh=false -Channel=TIME_05_09, ADC= 254, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 322, OverTh=false -Channel=TIME_05_10, ADC= 252, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 319, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 303, OverTh=false -Channel=TIME_05_12, ADC= 264, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 276, OverTh=false -Channel=TIME_05_13, ADC= 287, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 248, OverTh=false -Channel=TIME_05_14, ADC= 323, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 247, OverTh=false -Channel=TIME_05_15, ADC= 330, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 269, 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= 264, 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= 263, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 253, 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= 249, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 261, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 131 Run 290683, Event 7605411 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= 37, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= 17, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 286, OverTh=true -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= 2, OverTh=false -Channel=LUMI_13 , ADC= 9, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 277, OverTh=true -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= 10, OverTh=false -Channel=LUMI_40 , ADC= 284, OverTh=true -Channel=LUMI_23 , ADC= 5, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 242, OverTh=true -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 21, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 7, OverTh=false -Channel=LUMI_09 , ADC= 136, OverTh=true -Channel=LUMI_33 , ADC= 25, OverTh=false -Channel=LUMI_10 , ADC= 234, OverTh=true -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 16, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 184, OverTh=true -Channel=LUMI_42 , ADC= 31, OverTh=false -Channel=LUMI_19 , ADC= 25, OverTh=false -Channel=LUMI_43 , ADC= 625, OverTh=true -Channel=LUMI_20 , ADC= 2, OverTh=false -Channel=LUMI_44 , ADC= 11, OverTh=false -Channel=LUMI_21 , ADC= 6, OverTh=false -Channel=LUMI_45 , ADC= 12, OverTh=false -Channel=LUMI_22 , ADC= 152, OverTh=true -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 273, OverTh=false -Channel=TIME_05_08, ADC= 265, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 262, OverTh=false -Channel=TIME_05_01, ADC= 271, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 269, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 270, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 292, OverTh=false -Channel=TIME_05_12, ADC= 262, OverTh=false -Channel=TIME_29_04, ADC= 292, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 349, OverTh=false -Channel=TIME_05_13, ADC= 260, OverTh=false -Channel=TIME_29_05, ADC= 350, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 415, OverTh=false -Channel=TIME_05_14, ADC= 274, OverTh=false -Channel=TIME_29_06, ADC= 387, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 424, OverTh=false -Channel=TIME_05_15, ADC= 276, OverTh=false -Channel=TIME_29_07, ADC= 388, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 246, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 260, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 247, OverTh=false -Channel=TIME_35_01, ADC= 252, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 251, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 249, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 252, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 252, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 273, 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= 275, 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 # 132 Run 290683, Event 7605676 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, 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= 261, OverTh=true -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= -1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= -2, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= -3, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -7, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 14, OverTh=false -Channel=LUMI_30 , ADC= 92, OverTh=true -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 9, 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= 6, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 8, 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= 10, OverTh=false -Channel=LUMI_20 , ADC= 10, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -2, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -12, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 260, 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= 261, 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= 260, 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= 261, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 260, 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= 263, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 252, OverTh=false -Channel=TIME_29_07, ADC= 262, 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= 255, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 259, 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= 259, 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= 255, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, 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= 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= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 133 Run 290683, Event 7605770 -PlumeRawToDigits_89428f2d 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= 4, OverTh=false -Channel=LUMI_02 , ADC= 84, OverTh=true -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 320, OverTh=true -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= 0, 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= -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= 253, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= -7, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -6, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 290, OverTh=true -Channel=LUMI_31 , ADC= 318, OverTh=true -Channel=LUMI_08 , ADC= 135, OverTh=true -Channel=LUMI_32 , ADC= 0, 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= 6, 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= 7, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 263, 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= 259, OverTh=false -Channel=TIME_05_02, ADC= 253, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 263, 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= 255, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 255, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 258, 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= 255, OverTh=false -Channel=TIME_05_07, ADC= 260, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 253, OverTh=false -Channel=TIME_29_15, ADC= 254, 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= 259, 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= 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= 254, 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= 256, 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= 261, 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= 270, 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= 263, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 134 Run 290683, Event 7605840 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 2, 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= 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= -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= -1, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= -9, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= -4, 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= -5, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= -5, 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= 4, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 3, 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= 2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 2, 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= 258, 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= 259, 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= 257, OverTh=false -Channel=TIME_05_03, ADC= 260, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 258, 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= 253, 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= 256, 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= 256, OverTh=false -Channel=TIME_05_07, ADC= 258, 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= 257, 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= 258, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 257, 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= 258, 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= 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= 256, 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= 260, 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= 257, OverTh=false PrintHeader_7bb0e124 INFO # 135 Run 290683, Event 7603064 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= -4, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 6, OverTh=false -Channel=LUMI_02 , ADC= 2, 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= 10, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 11, 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= -6, 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= 6, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= 17, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -19, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 12, OverTh=false -Channel=LUMI_31 , ADC= 10, 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= 14, OverTh=false -Channel=LUMI_10 , ADC= 6, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 13, OverTh=false -Channel=LUMI_43 , ADC= -13, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, 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= 254, 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= 258, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 255, 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= 255, 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= 254, 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= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 253, 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= 254, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 254, OverTh=false -Channel=TIME_11_08, ADC= 244, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 228, OverTh=false -Channel=TIME_11_01, ADC= 256, OverTh=false -Channel=TIME_11_09, ADC= 245, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 232, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 244, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 241, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 246, OverTh=false -Channel=TIME_35_03, ADC= 249, OverTh=false -Channel=TIME_35_11, ADC= 243, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 194, OverTh=false -Channel=TIME_35_12, ADC= 247, OverTh=false -Channel=TIME_11_05, ADC= 258, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 242, OverTh=false -Channel=TIME_35_13, ADC= 249, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 264, OverTh=false -Channel=TIME_35_06, ADC= 291, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 263, OverTh=false -Channel=TIME_35_07, ADC= 282, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 136 Run 290683, Event 7603081 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -10, 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -9, 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= 5, OverTh=false -Channel=LUMI_36 , ADC= -17, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -6, OverTh=false -Channel=LUMI_14 , ADC= -1, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= -6, 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= 63, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 344, OverTh=true -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= -22, 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= 7, OverTh=false -Channel=LUMI_10 , ADC= -6, OverTh=false -Channel=LUMI_34 , ADC= -12, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= -8, OverTh=false -Channel=LUMI_18 , ADC= -8, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 275, OverTh=false -Channel=TIME_29_08, ADC= 140, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 250, OverTh=false -Channel=TIME_29_01, ADC= 271, OverTh=false -Channel=TIME_29_09, ADC= 143, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 255, OverTh=false -Channel=TIME_29_02, ADC= 265, OverTh=false -Channel=TIME_29_10, ADC= 143, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 147, OverTh=false -Channel=TIME_05_04, ADC= 256, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 177, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 249, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 271, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 296, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 269, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 294, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 258, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 260, 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= 257, OverTh=false -Channel=TIME_35_11, ADC= 261, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 250, OverTh=false -Channel=TIME_11_15, ADC= 261, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 137 Run 290683, Event 7603109 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 5, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 5, 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= 58, OverTh=true -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 5, OverTh=false -Channel=LUMI_15 , ADC= 0, OverTh=false -Channel=LUMI_39 , ADC= 48, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -4, OverTh=false -Channel=LUMI_30 , ADC= 11, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 19, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 15, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 37, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 13, OverTh=false -Channel=LUMI_19 , ADC= 8, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_46 , ADC= 4, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 253, 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= 253, 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= 256, 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= 257, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 254, 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= 259, OverTh=false -Channel=TIME_29_06, ADC= 261, 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= 263, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 259, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 260, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 248, 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= 251, 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= 251, OverTh=false -Channel=TIME_11_06, ADC= 258, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 275, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 138 Run 290683, Event 7603681 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -11, OverTh=false -Channel=LUMI_25 , ADC= 279, OverTh=true -Channel=LUMI_02 , ADC= 12, OverTh=false -Channel=LUMI_26 , ADC= 8, OverTh=false -Channel=LUMI_03 , ADC= 1, OverTh=false -Channel=LUMI_27 , ADC= 224, OverTh=true -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 213, OverTh=true -Channel=LUMI_37 , ADC= 6, 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= 1, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 252, OverTh=true -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 4, OverTh=false -Channel=LUMI_07 , ADC= 145, OverTh=true -Channel=LUMI_31 , ADC= 158, OverTh=true -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_17 , ADC= 8, OverTh=false -Channel=LUMI_41 , ADC= 189, OverTh=true -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 350, OverTh=true -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 244, OverTh=true -Channel=LUMI_44 , ADC= 3, OverTh=false -Channel=LUMI_21 , ADC= 10, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 440, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 769, OverTh=false -Channel=TIME_29_08, ADC= 254, OverTh=false -Channel=TIME_05_01, ADC= 442, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 759, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 435, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 743, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 415, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 728, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 346, OverTh=false -Channel=TIME_05_12, ADC= 313, OverTh=false -Channel=TIME_29_04, ADC= 587, OverTh=false -Channel=TIME_29_12, ADC= 352, OverTh=false -Channel=TIME_05_05, ADC= 287, OverTh=false -Channel=TIME_05_13, ADC= 398, OverTh=false -Channel=TIME_29_05, ADC= 383, OverTh=false -Channel=TIME_29_13, ADC= 540, OverTh=false -Channel=TIME_05_06, ADC= 306, OverTh=false -Channel=TIME_05_14, ADC= 464, OverTh=false -Channel=TIME_29_06, ADC= 226, OverTh=false -Channel=TIME_29_14, ADC= 753, OverTh=false -Channel=TIME_05_07, ADC= 315, OverTh=false -Channel=TIME_05_15, ADC= 458, OverTh=false -Channel=TIME_29_07, ADC= 197, OverTh=false -Channel=TIME_29_15, ADC= 793, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 258, 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= 258, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 255, 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= 254, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 264, 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= 261, 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= 261, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 139 Run 290683, Event 7603699 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 42, 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= -2, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= 108, OverTh=true -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 12, OverTh=false -Channel=LUMI_37 , ADC= 6, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 117, OverTh=true -Channel=LUMI_15 , ADC= -8, 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=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , 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= 28, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= -2, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= -4, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 1, 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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 274, 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= 272, 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= 277, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 267, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 262, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 255, 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= 252, 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= 253, 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= 260, 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= 256, OverTh=false -Channel=TIME_35_09, ADC= 253, OverTh=false -Channel=TIME_11_02, ADC= 252, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 253, 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= 255, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 252, OverTh=false -Channel=TIME_11_05, ADC= 259, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 252, OverTh=false -Channel=TIME_11_06, ADC= 262, 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= 260, 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 # 140 Run 290683, Event 7603733 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 7, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 15, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 6, OverTh=false -Channel=LUMI_27 , ADC= 12, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= -7, 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= 2, 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= 3, OverTh=false -Channel=LUMI_47 , ADC= 13, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -6, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, 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= 8, OverTh=false -Channel=LUMI_08 , ADC= -10, 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= 6, OverTh=false -Channel=LUMI_18 , ADC= -1, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 12, OverTh=false -Channel=LUMI_44 , ADC= 5, 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=MON_01 , ADC= -4, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, 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= 258, 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= 255, 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= 257, 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= 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= 257, 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= 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= 258, 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= 257, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 254, OverTh=false -Channel=TIME_35_08, ADC= 262, 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= 261, OverTh=false -Channel=TIME_11_02, ADC= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 264, 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= 262, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 262, OverTh=false -Channel=TIME_11_05, ADC= 255, 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= 256, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 252, 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= 253, OverTh=false PrintHeader_7bb0e124 INFO # 141 Run 290683, Event 7603803 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= -5, 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= -4, 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= 0, 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= -2, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -10, 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= 4, OverTh=false -Channel=LUMI_32 , ADC= 1, OverTh=false -Channel=LUMI_09 , ADC= -6, 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= 62, OverTh=true -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= -9, 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= -4, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= -2, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 254, 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= 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 257, 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= 262, 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= 259, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 255, OverTh=false -Channel=TIME_05_07, ADC= 261, 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= 261, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 266, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 261, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 251, OverTh=false -Channel=TIME_35_02, ADC= 260, OverTh=false -Channel=TIME_35_10, ADC= 258, 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= 255, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 265, 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= 276, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 267, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 142 Run 290683, Event 7599325 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 12, OverTh=false -Channel=LUMI_28 , ADC= 13, OverTh=false -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= -9, OverTh=false -Channel=LUMI_37 , ADC= 0, OverTh=false -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -6, 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= 3, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -10, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , 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= 4, OverTh=false -Channel=LUMI_08 , ADC= -3, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 17, 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= 7, OverTh=false -Channel=LUMI_41 , ADC= 0, OverTh=false -Channel=LUMI_18 , ADC= 16, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 9, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 263, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 258, 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= 254, OverTh=false -Channel=TIME_05_04, ADC= 254, 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= 256, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 279, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 270, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 270, OverTh=false -Channel=TIME_11_00, ADC= 262, 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= 260, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 260, 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= 261, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 260, OverTh=false -Channel=TIME_11_04, ADC= 260, 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= 262, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 266, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 266, OverTh=false -Channel=TIME_35_07, ADC= 253, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 143 Run 290683, Event 7599358 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 612, OverTh=true -Channel=LUMI_24 , ADC= 32, OverTh=false -Channel=LUMI_01 , ADC= 40, OverTh=false -Channel=LUMI_25 , ADC= -2, OverTh=false -Channel=LUMI_02 , ADC= 445, OverTh=true -Channel=LUMI_26 , ADC= 26, OverTh=false -Channel=LUMI_03 , ADC= 153, OverTh=true -Channel=LUMI_27 , ADC= -1, OverTh=false -Channel=LUMI_04 , ADC= 244, OverTh=true -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= -1, OverTh=false -Channel=LUMI_14 , ADC= -7, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 4, 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= 132, OverTh=true -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 13, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 13, OverTh=false -Channel=LUMI_07 , ADC= 6, OverTh=false -Channel=LUMI_31 , ADC= 497, OverTh=true -Channel=LUMI_08 , ADC= 119, OverTh=true -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= 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= 241, OverTh=true -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= 13, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 250, OverTh=false -Channel=TIME_05_08, ADC= 365, OverTh=false -Channel=TIME_29_00, ADC= 252, OverTh=false -Channel=TIME_29_08, ADC= 296, OverTh=false -Channel=TIME_05_01, ADC= 253, OverTh=false -Channel=TIME_05_09, ADC= 362, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 297, OverTh=false -Channel=TIME_05_02, ADC= 251, OverTh=false -Channel=TIME_05_10, ADC= 363, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 296, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 360, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 295, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 333, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 281, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 284, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 283, OverTh=false -Channel=TIME_05_14, ADC= 243, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 245, OverTh=false -Channel=TIME_05_07, ADC= 285, OverTh=false -Channel=TIME_05_15, ADC= 241, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 248, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 259, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 261, 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= 260, 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= 257, 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= 253, OverTh=false -Channel=TIME_11_06, ADC= 256, 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= 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 # 144 Run 290683, Event 7599753 -PlumeRawToDigits_89428f2d 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= 0, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 3, OverTh=false -Channel=LUMI_03 , ADC= 9, OverTh=false -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= 292, OverTh=true -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= 1, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 4, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 18, 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= 3, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 53, OverTh=true -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= 0, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= -1, OverTh=false -Channel=LUMI_21 , ADC= -6, OverTh=false -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 267, OverTh=false -Channel=TIME_05_08, ADC= 251, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 266, 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= 261, 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= 260, OverTh=false -Channel=TIME_05_11, ADC= 253, 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= 241, 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= 237, 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= 274, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 275, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 253, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 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= 253, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 252, 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= 254, 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= 258, OverTh=false -Channel=TIME_11_06, ADC= 254, 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= 257, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 145 Run 290683, Event 7583039 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 133, OverTh=true -Channel=LUMI_24 , ADC= 4, OverTh=false -Channel=LUMI_01 , ADC= 323, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 156, OverTh=true -Channel=LUMI_03 , ADC= 3, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 10, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 15, OverTh=false -Channel=LUMI_36 , ADC= 7, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 9, 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= 278, OverTh=true -Channel=LUMI_47 , ADC= 70, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 8, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 56, OverTh=true -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 120, OverTh=true -Channel=LUMI_31 , ADC= 3, OverTh=false -Channel=LUMI_08 , ADC= 321, OverTh=true -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= -3, OverTh=false -Channel=LUMI_34 , ADC= 240, OverTh=true -Channel=LUMI_17 , ADC= -2, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 2, OverTh=false -Channel=LUMI_42 , ADC= 59, OverTh=true -Channel=LUMI_19 , ADC= 253, OverTh=true -Channel=LUMI_43 , ADC= 5, OverTh=false -Channel=LUMI_20 , ADC= 9, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= 344, OverTh=true -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 334, 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= 337, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 334, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 330, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 299, OverTh=false -Channel=TIME_29_12, ADC= 277, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 324, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 243, OverTh=false -Channel=TIME_29_14, ADC= 348, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 256, OverTh=false -Channel=TIME_29_07, ADC= 243, OverTh=false -Channel=TIME_29_15, ADC= 342, OverTh=false -Channel=TIME_11_00, ADC= 251, OverTh=false -Channel=TIME_11_08, ADC= 359, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 243, OverTh=false -Channel=TIME_11_01, ADC= 251, OverTh=false -Channel=TIME_11_09, ADC= 360, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 246, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 359, OverTh=false -Channel=TIME_35_02, ADC= 261, OverTh=false -Channel=TIME_35_10, ADC= 250, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 349, OverTh=false -Channel=TIME_35_03, ADC= 258, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 268, OverTh=false -Channel=TIME_11_12, ADC= 306, OverTh=false -Channel=TIME_35_04, ADC= 253, OverTh=false -Channel=TIME_35_12, ADC= 251, OverTh=false -Channel=TIME_11_05, ADC= 291, OverTh=false -Channel=TIME_11_13, ADC= 251, OverTh=false -Channel=TIME_35_05, ADC= 243, OverTh=false -Channel=TIME_35_13, ADC= 250, OverTh=false -Channel=TIME_11_06, ADC= 304, OverTh=false -Channel=TIME_11_14, ADC= 235, OverTh=false -Channel=TIME_35_06, ADC= 273, OverTh=false -Channel=TIME_35_14, ADC= 251, OverTh=false -Channel=TIME_11_07, ADC= 302, OverTh=false -Channel=TIME_11_15, ADC= 242, OverTh=false -Channel=TIME_35_07, ADC= 279, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 146 Run 290683, Event 7583058 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= 77, OverTh=true -Channel=LUMI_01 , ADC= 5, OverTh=false -Channel=LUMI_25 , ADC= 5, 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= -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= 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= 88, OverTh=true -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= 0, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -5, 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= -3, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= -3, OverTh=false -Channel=LUMI_10 , ADC= -2, OverTh=false -Channel=LUMI_34 , ADC= -4, OverTh=false -Channel=LUMI_17 , ADC= -6, OverTh=false -Channel=LUMI_41 , ADC= -4, OverTh=false -Channel=LUMI_18 , ADC= -7, OverTh=false -Channel=LUMI_42 , ADC= -3, 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= -5, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, 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= 251, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 253, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 253, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 273, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 305, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 352, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 352, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 255, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 260, 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= 258, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 260, OverTh=false -Channel=TIME_11_12, ADC= 260, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 267, 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= 281, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 278, 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 # 147 Run 290683, Event 7583181 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 4, OverTh=false -Channel=LUMI_24 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_03 , ADC= 16, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 60, OverTh=true -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 15, OverTh=false -Channel=LUMI_13 , ADC= 327, OverTh=true -Channel=LUMI_37 , ADC= 23, OverTh=false -Channel=LUMI_14 , ADC= 67, OverTh=true -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 5, OverTh=false -Channel=LUMI_39 , ADC= 397, OverTh=true -Channel=LUMI_16 , ADC= 3, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 199, OverTh=true -Channel=LUMI_47 , ADC= 10, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 8, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 18, OverTh=false -Channel=LUMI_09 , ADC= 305, OverTh=true -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= 9, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 12, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 264, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 258, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 262, 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= 263, 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= 259, 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= 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= 263, 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= 263, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 277, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 275, 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= 273, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 255, OverTh=false -Channel=TIME_11_03, ADC= 274, 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= 265, OverTh=false -Channel=TIME_11_12, ADC= 261, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 272, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 279, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 251, OverTh=false -Channel=TIME_11_15, ADC= 278, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 148 Run 290683, Event 7583297 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 4, 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= 1, 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= 1, OverTh=false -Channel=LUMI_13 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 8, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , 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= 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= -1, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 4, 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= -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=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -4, 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= 258, 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= 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= 255, 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= 257, 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= 255, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 251, 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= 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= 254, 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= 256, OverTh=false -Channel=TIME_35_08, ADC= 253, 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= 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= 256, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 257, 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= 259, 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= 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= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 149 Run 290683, Event 7583307 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 6, OverTh=false -Channel=LUMI_02 , ADC= 3, OverTh=false -Channel=LUMI_26 , ADC= 6, 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= 5, OverTh=false -Channel=LUMI_12 , ADC= 132, OverTh=true -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 291, OverTh=true -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= 6, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 211, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 6, 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= 2, 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= 280, OverTh=true -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= 11, 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= 3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 259, 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= 257, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 254, 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= 254, 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= 253, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 267, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 263, 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= 250, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 252, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 259, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 259, 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= 259, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 255, 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= 260, OverTh=false -Channel=TIME_11_06, ADC= 271, 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= 269, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 150 Run 290683, Event 7583468 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 5, OverTh=false -Channel=LUMI_01 , ADC= -1, OverTh=false -Channel=LUMI_25 , ADC= 8, 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= 6, OverTh=false -Channel=LUMI_04 , ADC= 3, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 10, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= -7, 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= 13, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -10, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 12, OverTh=false -Channel=LUMI_07 , ADC= -1, OverTh=false -Channel=LUMI_31 , ADC= 5, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 15, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 23, OverTh=false -Channel=LUMI_44 , ADC= 3, 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=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 262, OverTh=false -Channel=TIME_05_08, ADC= 130, OverTh=false -Channel=TIME_29_00, ADC= 264, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 130, OverTh=false -Channel=TIME_29_01, ADC= 264, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 134, OverTh=false -Channel=TIME_29_02, ADC= 263, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 257, OverTh=false -Channel=TIME_05_11, ADC= 143, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 253, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 184, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 258, OverTh=false -Channel=TIME_05_13, ADC= 245, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 251, OverTh=false -Channel=TIME_05_06, ADC= 258, OverTh=false -Channel=TIME_05_14, ADC= 281, OverTh=false -Channel=TIME_29_06, ADC= 253, OverTh=false -Channel=TIME_29_14, ADC= 279, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 280, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 282, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 263, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 261, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, 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= 262, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 260, 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= 261, OverTh=false -Channel=TIME_11_07, ADC= 256, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 262, OverTh=false PrintHeader_7bb0e124 INFO # 151 Run 290683, Event 7591617 -PlumeRawToDigits_89428f2d 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= 8, 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= 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= -5, OverTh=false -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= -4, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 15, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 0, 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= -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= 0, 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= -2, OverTh=false -Channel=LUMI_44 , ADC= -4, OverTh=false -Channel=LUMI_21 , ADC= -5, OverTh=false -Channel=LUMI_45 , ADC= -3, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 260, 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= 255, 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= 254, 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= 257, OverTh=false -Channel=TIME_05_12, ADC= 258, 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= 259, 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= 257, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 260, 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= 260, 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= 259, 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= 261, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 261, 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= 260, OverTh=false -Channel=TIME_11_06, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 152 Run 290683, Event 7591722 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 8, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 399, OverTh=true -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 157, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 7, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 112, OverTh=true -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= 3, 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= 98, OverTh=true -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= 38, OverTh=false -Channel=LUMI_47 , ADC= 43, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= -3, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 509, OverTh=true -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 644, OverTh=true -Channel=LUMI_32 , ADC= -1, OverTh=false -Channel=LUMI_09 , ADC= 4, 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= 27, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 56, OverTh=true -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= 4, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 269, 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= 270, 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= 271, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 265, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 261, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 265, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 271, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 488, OverTh=false -Channel=TIME_35_08, ADC= 252, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 489, 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= 483, 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= 427, OverTh=false -Channel=TIME_35_11, ADC= 273, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 314, OverTh=false -Channel=TIME_35_12, ADC= 374, 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= 443, OverTh=false -Channel=TIME_11_06, ADC= 253, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 206, OverTh=false -Channel=TIME_35_14, ADC= 518, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 222, OverTh=false -Channel=TIME_35_15, ADC= 515, OverTh=false PrintHeader_7bb0e124 INFO # 153 Run 290683, Event 7591756 -PlumeRawToDigits_89428f2d 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 9, 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= 5, OverTh=false -Channel=LUMI_13 , ADC= 5, 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= -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= -7, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 7, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , 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= -2, 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= -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= 3, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 4, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= -4, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 252, 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= 255, 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= 255, 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= 257, 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= 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= 261, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 257, 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= 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= 254, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 258, 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= 287, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 341, OverTh=false -Channel=TIME_11_13, ADC= 255, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 372, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 365, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 264, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 154 Run 290683, Event 7591857 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -7, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 0, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 7, OverTh=false -Channel=LUMI_27 , ADC= 2, OverTh=false -Channel=LUMI_04 , ADC= 5, OverTh=false -Channel=LUMI_28 , ADC= 6, OverTh=false -Channel=LUMI_12 , ADC= 5, OverTh=false -Channel=LUMI_36 , ADC= 9, OverTh=false -Channel=LUMI_13 , ADC= 3, OverTh=false -Channel=LUMI_37 , ADC= 5, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 4, OverTh=false -Channel=LUMI_39 , ADC= 9, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 7, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 6, 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= 0, 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= 8, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= -13, OverTh=false -Channel=LUMI_43 , ADC= 0, OverTh=false -Channel=LUMI_20 , ADC= 0, OverTh=false -Channel=LUMI_44 , ADC= 6, 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= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 273, OverTh=false -Channel=TIME_29_00, ADC= 265, OverTh=false -Channel=TIME_29_08, ADC= 252, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 272, OverTh=false -Channel=TIME_29_01, ADC= 265, OverTh=false -Channel=TIME_29_09, ADC= 253, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 274, OverTh=false -Channel=TIME_29_02, ADC= 261, OverTh=false -Channel=TIME_29_10, ADC= 251, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 277, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 275, OverTh=false -Channel=TIME_29_04, ADC= 261, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 248, OverTh=false -Channel=TIME_05_13, ADC= 275, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 231, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 283, OverTh=false -Channel=TIME_05_07, ADC= 226, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 279, 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= 258, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 254, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 252, 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= 253, 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= 255, OverTh=false -Channel=TIME_11_12, ADC= 254, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 251, OverTh=false -Channel=TIME_11_13, ADC= 254, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 255, OverTh=false -Channel=TIME_11_14, ADC= 251, 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= 256, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 155 Run 290683, Event 7591867 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 367, OverTh=true -Channel=LUMI_24 , ADC= 5, 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= 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= 8, 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= 0, OverTh=false -Channel=LUMI_38 , ADC= 13, 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= -1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 7, OverTh=false -Channel=LUMI_09 , ADC= -6, 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= 1, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 273, OverTh=true -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, 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= 254, 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= 260, OverTh=false -Channel=TIME_29_02, ADC= 257, 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= 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= 256, OverTh=false -Channel=TIME_05_13, ADC= 255, OverTh=false -Channel=TIME_29_05, ADC= 260, 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= 261, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 259, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 258, OverTh=false -Channel=TIME_35_04, ADC= 258, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 254, 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= 256, 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= 255, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 156 Run 290683, Event 7580037 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -15, OverTh=false -Channel=LUMI_24 , ADC= 0, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 14, OverTh=false -Channel=LUMI_02 , ADC= -1, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 342, OverTh=true -Channel=LUMI_37 , ADC= 1, OverTh=false -Channel=LUMI_14 , ADC= 1, OverTh=false -Channel=LUMI_38 , ADC= 11, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 12, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= -15, OverTh=false -Channel=LUMI_47 , ADC= 17, OverTh=false -Channel=PIN_01 , ADC= 5, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 2, OverTh=false -Channel=PIN_06 , ADC= -8, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 16, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= 11, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 13, OverTh=false -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 18, OverTh=false -Channel=LUMI_41 , ADC= 12, OverTh=false -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= 141, OverTh=true -Channel=LUMI_19 , ADC= 104, OverTh=true -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 7, OverTh=false -Channel=LUMI_44 , ADC= 24, OverTh=false -Channel=LUMI_21 , ADC= 8, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 256, 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= 257, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, 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= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 285, 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= 334, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 259, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 365, 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= 367, 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= 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= 257, 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= 256, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 264, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 252, OverTh=false -Channel=TIME_11_04, ADC= 307, 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= 360, 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= 385, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 378, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 157 Run 290683, Event 7580246 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 6, OverTh=false -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= -7, OverTh=false -Channel=LUMI_26 , ADC= 11, OverTh=false -Channel=LUMI_03 , ADC= 9, 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= 4, OverTh=false -Channel=LUMI_36 , ADC= 0, OverTh=false -Channel=LUMI_13 , ADC= 7, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 26, 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= 9, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -2, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= -6, OverTh=false -Channel=LUMI_07 , ADC= -6, OverTh=false -Channel=LUMI_31 , ADC= -5, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 20, OverTh=false -Channel=LUMI_41 , ADC= -17, OverTh=false -Channel=LUMI_18 , ADC= 6, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 222, OverTh=true -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 255, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 263, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 251, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 251, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 260, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 253, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 253, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 280, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 279, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 261, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 252, 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= 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= 259, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 259, 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= 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= 261, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 158 Run 290683, Event 7580678 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 48, OverTh=false -Channel=LUMI_24 , ADC= 9, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= -11, 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= 3, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 149, OverTh=true -Channel=LUMI_36 , ADC= 24, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 393, OverTh=true -Channel=LUMI_14 , ADC= -2, OverTh=false -Channel=LUMI_38 , ADC= -7, 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= 5, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 1, OverTh=false -Channel=LUMI_07 , ADC= 30, OverTh=false -Channel=LUMI_31 , ADC= 7, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 298, OverTh=true -Channel=LUMI_09 , ADC= 6, OverTh=false -Channel=LUMI_33 , ADC= 7, 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= 5, OverTh=false -Channel=LUMI_18 , ADC= 49, 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= 10, OverTh=false -Channel=LUMI_44 , ADC= 163, OverTh=true -Channel=LUMI_21 , ADC= 255, OverTh=true -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 258, 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= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, 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= 261, 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= 258, 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= 255, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 253, 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= 261, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 255, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 267, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 254, OverTh=false -Channel=TIME_11_01, ADC= 265, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 264, OverTh=false -Channel=TIME_11_10, ADC= 255, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 260, 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= 260, 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= 259, OverTh=false -Channel=TIME_11_13, ADC= 262, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 276, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 159 Run 290683, Event 7580768 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 13, OverTh=false -Channel=LUMI_24 , ADC= 324, OverTh=true -Channel=LUMI_01 , ADC= 48, OverTh=false -Channel=LUMI_25 , ADC= 144, OverTh=true -Channel=LUMI_02 , ADC= 11, OverTh=false -Channel=LUMI_26 , ADC= 102, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 25, OverTh=false -Channel=LUMI_04 , ADC= 6, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 14, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 31, 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= 1, OverTh=false -Channel=LUMI_16 , ADC= -20, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 8, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 557, OverTh=true -Channel=LUMI_30 , ADC= 473, OverTh=true -Channel=LUMI_07 , ADC= 181, OverTh=true -Channel=LUMI_31 , ADC= 121, OverTh=true -Channel=LUMI_08 , ADC= 363, OverTh=true -Channel=LUMI_32 , ADC= 11, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= 33, OverTh=false -Channel=LUMI_41 , ADC= 22, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 23, OverTh=false -Channel=LUMI_43 , ADC= 93, OverTh=true -Channel=LUMI_20 , ADC= 381, OverTh=true -Channel=LUMI_44 , ADC= 12, OverTh=false -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 353, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 404, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 352, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 402, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 351, OverTh=false -Channel=TIME_05_10, ADC= 257, OverTh=false -Channel=TIME_29_02, ADC= 399, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 342, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 398, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 309, OverTh=false -Channel=TIME_05_12, ADC= 279, OverTh=false -Channel=TIME_29_04, ADC= 360, OverTh=false -Channel=TIME_29_12, ADC= 274, OverTh=false -Channel=TIME_05_05, ADC= 269, OverTh=false -Channel=TIME_05_13, ADC= 322, OverTh=false -Channel=TIME_29_05, ADC= 283, OverTh=false -Channel=TIME_29_13, ADC= 346, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 355, OverTh=false -Channel=TIME_29_06, ADC= 239, OverTh=false -Channel=TIME_29_14, ADC= 413, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 358, OverTh=false -Channel=TIME_29_07, ADC= 235, OverTh=false -Channel=TIME_29_15, ADC= 420, OverTh=false -Channel=TIME_11_00, ADC= 256, OverTh=false -Channel=TIME_11_08, ADC= 251, OverTh=false -Channel=TIME_35_00, ADC= 272, OverTh=false -Channel=TIME_35_08, ADC= 250, OverTh=false -Channel=TIME_11_01, ADC= 258, OverTh=false -Channel=TIME_11_09, ADC= 255, OverTh=false -Channel=TIME_35_01, ADC= 267, OverTh=false -Channel=TIME_35_09, ADC= 251, OverTh=false -Channel=TIME_11_02, ADC= 256, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 262, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 250, OverTh=false -Channel=TIME_11_04, ADC= 284, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 250, OverTh=false -Channel=TIME_11_05, ADC= 325, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 259, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 353, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 291, OverTh=false -Channel=TIME_11_07, ADC= 353, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 286, OverTh=false PrintHeader_7bb0e124 INFO # 160 Run 290683, Event 7581061 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 5, 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= 3, 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= 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 0, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 4, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 9, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 8, OverTh=false -Channel=LUMI_08 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 2, OverTh=false -Channel=LUMI_41 , ADC= 11, 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= 4, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -3, OverTh=false -Channel=MON_01 , ADC= -3, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 254, 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= 255, 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= 257, OverTh=false -Channel=TIME_29_02, ADC= 259, 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= 255, 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= 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= 258, 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= 255, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 258, OverTh=false -Channel=TIME_11_00, ADC= 260, 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= 257, 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= 259, 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= 259, 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= 259, OverTh=false -Channel=TIME_35_04, ADC= 254, 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= 256, 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= 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= 256, OverTh=false PrintHeader_7bb0e124 INFO # 161 Run 290683, Event 7581211 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 212, OverTh=true -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 93, OverTh=true -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 54, OverTh=true -Channel=LUMI_27 , ADC= 10, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= -11, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 4, OverTh=false -Channel=LUMI_14 , ADC= 8, OverTh=false -Channel=LUMI_38 , ADC= 4, OverTh=false -Channel=LUMI_15 , ADC= 2, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 51, OverTh=true -Channel=LUMI_40 , ADC= -1, OverTh=false -Channel=LUMI_23 , ADC= 79, OverTh=true -Channel=LUMI_47 , ADC= -2, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -6, OverTh=false -Channel=LUMI_30 , ADC= -2, OverTh=false -Channel=LUMI_07 , ADC= 23, OverTh=false -Channel=LUMI_31 , ADC= 20, OverTh=false -Channel=LUMI_08 , ADC= -14, 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= -3, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= -3, OverTh=false -Channel=LUMI_18 , ADC= 9, OverTh=false -Channel=LUMI_42 , ADC= 19, OverTh=false -Channel=LUMI_19 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_45 , ADC= 1, OverTh=false -Channel=LUMI_22 , ADC= 5, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 347, OverTh=false -Channel=TIME_05_08, ADC= 357, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 349, OverTh=false -Channel=TIME_05_09, ADC= 354, OverTh=false -Channel=TIME_29_01, ADC= 241, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 350, OverTh=false -Channel=TIME_05_10, ADC= 352, OverTh=false -Channel=TIME_29_02, ADC= 240, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 342, OverTh=false -Channel=TIME_05_11, ADC= 341, OverTh=false -Channel=TIME_29_03, ADC= 243, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 292, OverTh=false -Channel=TIME_05_12, ADC= 322, OverTh=false -Channel=TIME_29_04, ADC= 251, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 235, OverTh=false -Channel=TIME_05_13, ADC= 326, OverTh=false -Channel=TIME_29_05, ADC= 257, OverTh=false -Channel=TIME_29_13, ADC= 247, OverTh=false -Channel=TIME_05_06, ADC= 262, OverTh=false -Channel=TIME_05_14, ADC= 345, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 238, OverTh=false -Channel=TIME_05_07, ADC= 261, OverTh=false -Channel=TIME_05_15, ADC= 347, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 239, OverTh=false -Channel=TIME_11_00, ADC= 258, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 258, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, 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= 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 273, OverTh=false -Channel=TIME_11_14, ADC= 258, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 266, 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 # 162 Run 290683, Event 7581552 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 8, 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= -2, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= -7, OverTh=false -Channel=LUMI_28 , ADC= -1, 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= -3, 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= 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= 3, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 9, OverTh=false -Channel=LUMI_30 , ADC= 2, OverTh=false -Channel=LUMI_07 , ADC= 14, OverTh=false -Channel=LUMI_31 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= -4, OverTh=false -Channel=LUMI_41 , ADC= 7, 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= 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= 1, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= 5, OverTh=false -Channel=MON_01 , ADC= 3, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 262, 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= 261, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 259, 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= 259, 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= 256, OverTh=false -Channel=TIME_29_12, ADC= 255, 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= 258, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 265, 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= 266, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 267, OverTh=false -Channel=TIME_11_08, ADC= 255, OverTh=false -Channel=TIME_35_00, ADC= 260, OverTh=false -Channel=TIME_35_08, ADC= 253, OverTh=false -Channel=TIME_11_01, ADC= 262, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 252, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 255, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 253, OverTh=false -Channel=TIME_11_04, ADC= 257, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 253, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 269, OverTh=false -Channel=TIME_35_05, ADC= 254, OverTh=false -Channel=TIME_35_13, ADC= 252, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 282, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 273, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 163 Run 290683, Event 7581586 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 589, OverTh=true -Channel=LUMI_24 , ADC= 35, OverTh=false -Channel=LUMI_01 , ADC= 273, OverTh=true -Channel=LUMI_25 , ADC= 12, OverTh=false -Channel=LUMI_02 , ADC= 789, OverTh=true -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 26, OverTh=false -Channel=LUMI_27 , ADC= -2, OverTh=false -Channel=LUMI_04 , ADC= 4, OverTh=false -Channel=LUMI_28 , ADC= 10, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 29, OverTh=false -Channel=LUMI_13 , ADC= 26, OverTh=false -Channel=LUMI_37 , ADC= 10, OverTh=false -Channel=LUMI_14 , ADC= 8, 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= 4, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 11, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 10, OverTh=false -Channel=LUMI_30 , ADC= 160, OverTh=true -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 0, OverTh=false -Channel=LUMI_08 , ADC= 223, OverTh=true -Channel=LUMI_32 , ADC= 14, OverTh=false -Channel=LUMI_09 , ADC= -4, OverTh=false -Channel=LUMI_33 , ADC= 9, OverTh=false -Channel=LUMI_10 , ADC= 9, 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= 110, OverTh=true -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= 30, OverTh=false -Channel=LUMI_21 , ADC= 179, OverTh=true -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 261, OverTh=false -Channel=TIME_29_08, ADC= 249, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 249, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 248, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 252, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 252, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 252, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 250, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 253, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 253, OverTh=false -Channel=TIME_29_05, ADC= 252, OverTh=false -Channel=TIME_29_13, ADC= 260, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 264, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 260, 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= 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= 254, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 254, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 252, 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= 253, OverTh=false -Channel=TIME_11_04, ADC= 257, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 164 Run 290683, Event 7581718 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 3, OverTh=false -Channel=LUMI_12 , ADC= 22, OverTh=false -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= -19, 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= 0, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 11, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= -7, OverTh=false -Channel=PIN_02 , ADC= -11, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 7, OverTh=false -Channel=PIN_09 , ADC= -1, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 8, OverTh=false -Channel=LUMI_30 , ADC= -1, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= -3, OverTh=false -Channel=LUMI_08 , ADC= 8, OverTh=false -Channel=LUMI_32 , ADC= 17, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 261, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 5, OverTh=false -Channel=LUMI_18 , ADC= 15, OverTh=false -Channel=LUMI_42 , ADC= -3, OverTh=false -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 253, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 260, 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= 260, OverTh=false -Channel=TIME_29_02, ADC= 258, 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= 265, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 280, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 260, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 291, 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= 290, 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= 257, OverTh=false -Channel=TIME_11_08, ADC= 258, OverTh=false -Channel=TIME_35_00, ADC= 262, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 263, 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= 261, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 261, 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= 313, 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= 399, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 260, OverTh=false -Channel=TIME_11_06, ADC= 448, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 260, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 438, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 165 Run 290683, Event 7581927 -PlumeRawToDigits_89428f2d 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= 87, OverTh=true -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= 4, 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= 1, 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= 5, 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= 91, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 10, OverTh=false -Channel=LUMI_07 , ADC= 52, OverTh=true -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= 3, OverTh=false -Channel=LUMI_33 , ADC= 4, OverTh=false -Channel=LUMI_10 , ADC= 2, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 4, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 7, 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= 2, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, 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= 256, 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= 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= 257, 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= 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= 257, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 254, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 256, 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= 254, 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= 257, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 258, OverTh=false -Channel=TIME_11_01, ADC= 253, OverTh=false -Channel=TIME_11_09, ADC= 256, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 261, 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= 260, 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= 260, 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= 258, 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= 257, 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= 257, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 166 Run 290683, Event 7581965 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, OverTh=false -Channel=LUMI_24 , ADC= -1, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 78, OverTh=true -Channel=LUMI_26 , ADC= 0, OverTh=false -Channel=LUMI_03 , ADC= 0, OverTh=false -Channel=LUMI_27 , ADC= 475, OverTh=true -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= 12, 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= 2, OverTh=false -Channel=LUMI_39 , ADC= 5, OverTh=false -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -6, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 8, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 9, 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= 10, OverTh=false -Channel=LUMI_41 , ADC= 14, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 7, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 248, OverTh=false -Channel=TIME_05_08, ADC= 371, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 249, OverTh=false -Channel=TIME_05_09, ADC= 370, 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= 368, 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= 359, OverTh=false -Channel=TIME_29_03, ADC= 258, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 254, OverTh=false -Channel=TIME_05_12, ADC= 317, OverTh=false -Channel=TIME_29_04, ADC= 259, 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= 256, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 257, OverTh=false -Channel=TIME_05_14, ADC= 236, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 258, OverTh=false -Channel=TIME_05_15, ADC= 239, 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= 287, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 252, OverTh=false -Channel=TIME_11_09, ADC= 289, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 251, OverTh=false -Channel=TIME_11_10, ADC= 286, OverTh=false -Channel=TIME_35_02, ADC= 253, OverTh=false -Channel=TIME_35_10, ADC= 260, OverTh=false -Channel=TIME_11_03, ADC= 253, OverTh=false -Channel=TIME_11_11, ADC= 281, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 251, OverTh=false -Channel=TIME_11_12, ADC= 264, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 257, 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= 252, OverTh=false -Channel=TIME_11_14, ADC= 250, OverTh=false -Channel=TIME_35_06, ADC= 254, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 250, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 167 Run 290683, Event 7581996 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 15, OverTh=false -Channel=LUMI_24 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_03 , ADC= 10, OverTh=false -Channel=LUMI_27 , ADC= 9, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 8, OverTh=false -Channel=LUMI_12 , ADC= 20, OverTh=false -Channel=LUMI_36 , ADC= 8, OverTh=false -Channel=LUMI_13 , ADC= 9, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 11, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 1, OverTh=false -Channel=LUMI_39 , ADC= 40, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 17, OverTh=false -Channel=LUMI_47 , ADC= 67, OverTh=true -Channel=PIN_01 , ADC= 3, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= -14, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 3, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 18, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 18, OverTh=false -Channel=LUMI_31 , ADC= 14, OverTh=false -Channel=LUMI_08 , ADC= 0, OverTh=false -Channel=LUMI_32 , ADC= 4, OverTh=false -Channel=LUMI_09 , ADC= 8, OverTh=false -Channel=LUMI_33 , ADC= 6, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 7, OverTh=false -Channel=LUMI_17 , ADC= 27, OverTh=false -Channel=LUMI_41 , ADC= 77, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 35, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 9, OverTh=false -Channel=LUMI_21 , ADC= 11, OverTh=false -Channel=LUMI_45 , ADC= 9, OverTh=false -Channel=LUMI_22 , ADC= -3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, 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= 254, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 253, 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= 254, 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= 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= 254, OverTh=false -Channel=TIME_05_05, ADC= 259, OverTh=false -Channel=TIME_05_13, ADC= 258, 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= 255, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 269, OverTh=false -Channel=TIME_11_08, ADC= 254, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 269, OverTh=false -Channel=TIME_11_09, ADC= 258, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 267, OverTh=false -Channel=TIME_11_10, ADC= 259, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 265, 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= 260, OverTh=false -Channel=TIME_35_04, ADC= 256, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 254, OverTh=false -Channel=TIME_11_13, ADC= 266, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 271, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 253, OverTh=false -Channel=TIME_11_15, ADC= 271, OverTh=false -Channel=TIME_35_07, ADC= 262, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 168 Run 290683, Event 7578066 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= -7, 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= 73, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 7, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 64, OverTh=true -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= 25, OverTh=false -Channel=LUMI_38 , ADC= 8, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= -9, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= -2, OverTh=false -Channel=PIN_04 , ADC= -1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 4, 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= -6, 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= -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= -1, OverTh=false -Channel=LUMI_44 , ADC= 0, 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= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 212, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 211, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 255, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 215, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 216, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 225, OverTh=false -Channel=TIME_05_12, ADC= 251, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 257, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 229, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 280, OverTh=false -Channel=TIME_05_14, ADC= 207, OverTh=false -Channel=TIME_29_06, ADC= 263, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 276, OverTh=false -Channel=TIME_05_15, ADC= 212, OverTh=false -Channel=TIME_29_07, ADC= 263, 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= 255, 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= 259, 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= 257, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 253, 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= 250, OverTh=false -Channel=TIME_11_06, ADC= 261, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 263, OverTh=false -Channel=TIME_35_14, ADC= 250, 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= 252, OverTh=false PrintHeader_7bb0e124 INFO # 169 Run 290683, Event 7578307 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 7, 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= 3, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 7, 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= 5, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -15, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 2, 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= 92, OverTh=true -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 490, OverTh=true -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 6, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 52, OverTh=true -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= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 255, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 257, 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= 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= 255, 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= 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= 261, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 259, OverTh=false -Channel=TIME_11_00, ADC= 259, OverTh=false -Channel=TIME_11_08, ADC= 257, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 260, 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= 260, 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= 257, OverTh=false -Channel=TIME_35_11, ADC= 255, 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= 257, 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= 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= 264, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 254, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 170 Run 290683, Event 7578446 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -26, OverTh=false -Channel=LUMI_24 , ADC= -3, OverTh=false -Channel=LUMI_01 , ADC= 8, OverTh=false -Channel=LUMI_25 , ADC= 0, 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= -2, 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= 16, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 7, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= 8, OverTh=false -Channel=LUMI_39 , ADC= 218, OverTh=true -Channel=LUMI_16 , ADC= 7, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 12, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 9, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= -7, OverTh=false -Channel=PIN_06 , ADC= 2, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= -5, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= -11, OverTh=false -Channel=LUMI_09 , ADC= 14, 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= 1, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 7, OverTh=false -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 322, OverTh=true -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= -1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 260, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 261, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 260, OverTh=false -Channel=TIME_29_02, ADC= 253, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 255, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 255, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 252, OverTh=false -Channel=TIME_05_12, ADC= 254, OverTh=false -Channel=TIME_29_04, ADC= 253, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 248, OverTh=false -Channel=TIME_05_13, ADC= 254, OverTh=false -Channel=TIME_29_05, ADC= 251, OverTh=false -Channel=TIME_29_13, ADC= 256, OverTh=false -Channel=TIME_05_06, ADC= 254, OverTh=false -Channel=TIME_05_14, ADC= 253, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 254, OverTh=false -Channel=TIME_05_07, ADC= 259, OverTh=false -Channel=TIME_05_15, ADC= 252, 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= 254, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 258, 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= 254, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 261, 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= 259, 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= 260, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 256, OverTh=false -Channel=TIME_35_06, ADC= 262, OverTh=false -Channel=TIME_35_14, ADC= 256, OverTh=false -Channel=TIME_11_07, ADC= 260, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 261, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 171 Run 290683, Event 7578749 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 1, 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= 1, OverTh=false -Channel=LUMI_03 , ADC= -2, 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= -2, 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= 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= 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=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 0, OverTh=false -Channel=LUMI_31 , ADC= 6, OverTh=false -Channel=LUMI_08 , ADC= 0, 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= 5, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 3, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 10, OverTh=false -Channel=LUMI_19 , ADC= 6, 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= -1, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 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= 255, 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= 258, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 261, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, 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= 259, 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= 255, 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= 256, 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= 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= 258, OverTh=false -Channel=TIME_35_02, ADC= 255, 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= 256, 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= 257, OverTh=false -Channel=TIME_11_05, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_06, ADC= 259, 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= 255, OverTh=false PrintHeader_7bb0e124 INFO # 172 Run 290683, Event 7578759 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 298, OverTh=true -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= 283, OverTh=true -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= 792, OverTh=true -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= -1, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= 98, OverTh=true -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 2, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 6, OverTh=false -Channel=LUMI_07 , ADC= 5, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 3, OverTh=false -Channel=LUMI_32 , ADC= 8, OverTh=false -Channel=LUMI_09 , ADC= 5, 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= 1, OverTh=false -Channel=LUMI_18 , ADC= 3, OverTh=false -Channel=LUMI_42 , ADC= 354, OverTh=true -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= 7, OverTh=false -Channel=LUMI_22 , ADC= 325, OverTh=true -Channel=LUMI_46 , ADC= -4, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 2, OverTh=false -Channel=MON_04 , ADC= 1, 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= 258, 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= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 255, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 270, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 258, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 305, 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= 327, OverTh=false -Channel=TIME_05_14, ADC= 254, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 323, 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= 256, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 256, 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= 255, 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= 257, OverTh=false -Channel=TIME_11_11, ADC= 254, OverTh=false -Channel=TIME_35_03, ADC= 261, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 254, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 288, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 260, OverTh=false -Channel=TIME_35_05, ADC= 302, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 312, OverTh=false -Channel=TIME_35_14, ADC= 258, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 311, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 173 Run 290683, Event 7586234 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= 3, 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= 5, OverTh=false -Channel=LUMI_03 , ADC= 5, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 6, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 1, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 4, OverTh=false -Channel=PIN_03 , ADC= 10, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 11, OverTh=false -Channel=LUMI_30 , ADC= -14, 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= 4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -2, OverTh=false -Channel=LUMI_10 , ADC= 4, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 15, OverTh=false -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= -6, OverTh=false -Channel=LUMI_42 , ADC= 2, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= -2, OverTh=false -Channel=LUMI_44 , ADC= -7, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 8, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 254, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 257, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 260, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 258, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 260, OverTh=false -Channel=TIME_05_12, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_06, ADC= 259, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 259, OverTh=false -Channel=TIME_29_14, ADC= 267, 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= 272, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 256, OverTh=false -Channel=TIME_35_00, ADC= 252, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 259, 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= 254, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 252, OverTh=false -Channel=TIME_35_10, ADC= 256, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 254, 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= 255, OverTh=false -Channel=TIME_35_04, ADC= 255, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 252, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 260, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 270, OverTh=false -Channel=TIME_35_14, ADC= 254, OverTh=false -Channel=TIME_11_07, ADC= 259, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 269, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 174 Run 290683, Event 7586818 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 283, OverTh=true -Channel=LUMI_24 , ADC= 204, OverTh=true -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= 6, OverTh=false -Channel=LUMI_28 , ADC= 7, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 9, 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= 0, 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= 33, OverTh=false -Channel=LUMI_47 , ADC= 5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= -7, OverTh=false -Channel=PIN_04 , ADC= -9, OverTh=false -Channel=PIN_08 , ADC= 9, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 5, OverTh=false -Channel=LUMI_32 , ADC= 0, 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= 3, OverTh=false -Channel=LUMI_17 , ADC= 5, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 5, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 5, OverTh=false -Channel=LUMI_44 , ADC= 5, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 411, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 418, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 410, OverTh=false -Channel=TIME_05_09, ADC= 259, OverTh=false -Channel=TIME_29_01, ADC= 414, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 404, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 411, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 390, OverTh=false -Channel=TIME_05_11, ADC= 263, OverTh=false -Channel=TIME_29_03, ADC= 405, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 325, OverTh=false -Channel=TIME_05_12, ADC= 300, OverTh=false -Channel=TIME_29_04, ADC= 339, OverTh=false -Channel=TIME_29_12, ADC= 297, OverTh=false -Channel=TIME_05_05, ADC= 257, OverTh=false -Channel=TIME_05_13, ADC= 376, OverTh=false -Channel=TIME_29_05, ADC= 248, OverTh=false -Channel=TIME_29_13, ADC= 390, OverTh=false -Channel=TIME_05_06, ADC= 230, OverTh=false -Channel=TIME_05_14, ADC= 426, OverTh=false -Channel=TIME_29_06, ADC= 224, OverTh=false -Channel=TIME_29_14, ADC= 439, OverTh=false -Channel=TIME_05_07, ADC= 232, OverTh=false -Channel=TIME_05_15, ADC= 426, OverTh=false -Channel=TIME_29_07, ADC= 228, OverTh=false -Channel=TIME_29_15, ADC= 437, OverTh=false -Channel=TIME_11_00, ADC= 251, 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= 253, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 249, 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= 252, 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= 252, OverTh=false -Channel=TIME_11_12, ADC= 252, 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= 250, OverTh=false -Channel=TIME_35_05, ADC= 257, 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= 256, OverTh=false -Channel=TIME_35_14, ADC= 269, OverTh=false -Channel=TIME_11_07, ADC= 261, OverTh=false -Channel=TIME_11_15, ADC= 252, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 263, OverTh=false PrintHeader_7bb0e124 INFO # 175 Run 290683, Event 7579051 -PlumeRawToDigits_89428f2d 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= 7, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= -2, OverTh=false -Channel=LUMI_12 , ADC= -3, 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= 1, OverTh=false -Channel=LUMI_15 , ADC= -4, 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= -2, OverTh=false -Channel=LUMI_47 , ADC= 11, OverTh=false -Channel=PIN_01 , ADC= -5, OverTh=false -Channel=PIN_02 , ADC= 7, OverTh=false -Channel=PIN_03 , ADC= 3, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= -1, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 8, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 739, OverTh=true -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -7, 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= -4, 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= -2, OverTh=false -Channel=LUMI_18 , ADC= 31, OverTh=false -Channel=LUMI_42 , ADC= 479, OverTh=true -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= 9, OverTh=false -Channel=LUMI_20 , ADC= 4, 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= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 376, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 255, OverTh=false -Channel=TIME_05_01, ADC= 374, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 259, OverTh=false -Channel=TIME_05_02, ADC= 374, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 260, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 369, OverTh=false -Channel=TIME_05_11, ADC= 261, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 334, OverTh=false -Channel=TIME_05_12, ADC= 274, OverTh=false -Channel=TIME_29_04, ADC= 259, OverTh=false -Channel=TIME_29_12, ADC= 258, OverTh=false -Channel=TIME_05_05, ADC= 275, OverTh=false -Channel=TIME_05_13, ADC= 330, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 242, OverTh=false -Channel=TIME_05_14, ADC= 380, OverTh=false -Channel=TIME_29_06, ADC= 256, OverTh=false -Channel=TIME_29_14, ADC= 264, OverTh=false -Channel=TIME_05_07, ADC= 241, OverTh=false -Channel=TIME_05_15, ADC= 383, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 261, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 260, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 261, 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= 257, OverTh=false -Channel=TIME_11_10, ADC= 262, 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= 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= 254, OverTh=false -Channel=TIME_35_04, ADC= 258, 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= 259, OverTh=false -Channel=TIME_35_13, ADC= 255, OverTh=false -Channel=TIME_11_06, ADC= 254, OverTh=false -Channel=TIME_11_14, ADC= 280, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 260, OverTh=false -Channel=TIME_11_07, ADC= 255, OverTh=false -Channel=TIME_11_15, ADC= 275, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 176 Run 290683, Event 7579438 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 81, OverTh=true -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= 9, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 96, OverTh=true -Channel=LUMI_26 , ADC= 253, OverTh=true -Channel=LUMI_03 , ADC= 30, 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= -4, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 143, OverTh=true -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= 291, OverTh=true -Channel=LUMI_16 , ADC= 1, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= -4, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 10, OverTh=false -Channel=PIN_04 , ADC= 9, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 4, OverTh=false -Channel=LUMI_30 , ADC= -7, OverTh=false -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -13, OverTh=false -Channel=LUMI_08 , ADC= -10, OverTh=false -Channel=LUMI_32 , ADC= 3, OverTh=false -Channel=LUMI_09 , ADC= 0, OverTh=false -Channel=LUMI_33 , ADC= 81, OverTh=true -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 250, OverTh=true -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= 302, OverTh=true -Channel=LUMI_43 , ADC= 7, OverTh=false -Channel=LUMI_20 , ADC= 58, OverTh=true -Channel=LUMI_44 , ADC= -2, 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= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, 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= 259, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 255, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 259, OverTh=false -Channel=TIME_05_04, ADC= 265, OverTh=false -Channel=TIME_05_12, ADC= 259, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 254, OverTh=false -Channel=TIME_05_05, ADC= 292, OverTh=false -Channel=TIME_05_13, ADC= 258, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 255, OverTh=false -Channel=TIME_05_06, ADC= 318, OverTh=false -Channel=TIME_05_14, ADC= 266, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 318, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 255, OverTh=false -Channel=TIME_11_00, ADC= 253, OverTh=false -Channel=TIME_11_08, ADC= 261, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 261, OverTh=false -Channel=TIME_11_01, ADC= 254, OverTh=false -Channel=TIME_11_09, ADC= 260, OverTh=false -Channel=TIME_35_01, ADC= 255, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 252, OverTh=false -Channel=TIME_11_10, ADC= 263, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 260, OverTh=false -Channel=TIME_35_03, ADC= 257, 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= 265, 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= 268, 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= 273, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 277, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 177 Run 290683, Event 7579597 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 6, OverTh=false -Channel=LUMI_24 , ADC= 68, OverTh=true -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 11, OverTh=false -Channel=LUMI_02 , ADC= 5, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= 8, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 0, OverTh=false -Channel=LUMI_28 , ADC= -9, OverTh=false -Channel=LUMI_12 , ADC= -4, 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= -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= 1, OverTh=false -Channel=LUMI_23 , ADC= 16, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= -3, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= -4, OverTh=false -Channel=LUMI_07 , ADC= 24, OverTh=false -Channel=LUMI_31 , ADC= 70, OverTh=true -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= -3, OverTh=false -Channel=LUMI_10 , ADC= -1, OverTh=false -Channel=LUMI_34 , ADC= -2, OverTh=false -Channel=LUMI_17 , ADC= -5, OverTh=false -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 23, OverTh=false -Channel=LUMI_42 , ADC= -5, OverTh=false -Channel=LUMI_19 , ADC= 4, OverTh=false -Channel=LUMI_43 , ADC= -3, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= -1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 260, 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= 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= 255, 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= 253, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 252, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 258, OverTh=false -Channel=TIME_29_13, ADC= 253, OverTh=false -Channel=TIME_05_06, ADC= 258, 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= 254, OverTh=false -Channel=TIME_29_07, ADC= 259, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 263, OverTh=false -Channel=TIME_11_08, ADC= 304, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 304, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 257, OverTh=false -Channel=TIME_11_02, ADC= 266, OverTh=false -Channel=TIME_11_10, ADC= 302, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 254, OverTh=false -Channel=TIME_11_03, ADC= 264, OverTh=false -Channel=TIME_11_11, ADC= 300, OverTh=false -Channel=TIME_35_03, ADC= 253, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 278, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 260, OverTh=false -Channel=TIME_11_13, ADC= 256, OverTh=false -Channel=TIME_35_05, ADC= 260, 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= 256, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 178 Run 290683, Event 7579885 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 135, OverTh=true -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 165, OverTh=true -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= 11, OverTh=false -Channel=LUMI_26 , ADC= 5, OverTh=false -Channel=LUMI_03 , ADC= 94, OverTh=true -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= -1, OverTh=false -Channel=LUMI_13 , ADC= -12, OverTh=false -Channel=LUMI_37 , ADC= -1, OverTh=false -Channel=LUMI_14 , ADC= 135, OverTh=true -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= 115, OverTh=true -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= 445, OverTh=true -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -6, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= 0, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 15, OverTh=false -Channel=LUMI_31 , ADC= 29, OverTh=false -Channel=LUMI_08 , ADC= 110, OverTh=true -Channel=LUMI_32 , ADC= -2, OverTh=false -Channel=LUMI_09 , ADC= 255, OverTh=true -Channel=LUMI_33 , ADC= -1, OverTh=false -Channel=LUMI_10 , ADC= 71, OverTh=true -Channel=LUMI_34 , ADC= 323, OverTh=true -Channel=LUMI_17 , ADC= 24, OverTh=false -Channel=LUMI_41 , ADC= 232, OverTh=true -Channel=LUMI_18 , ADC= 80, OverTh=true -Channel=LUMI_42 , ADC= 315, OverTh=true -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 23, OverTh=false -Channel=LUMI_20 , ADC= 219, OverTh=true -Channel=LUMI_44 , ADC= 2, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 30, OverTh=false -Channel=LUMI_22 , ADC= 34, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 255, 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= 256, 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= 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= 253, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, 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= 256, OverTh=false -Channel=TIME_05_05, ADC= 261, 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= 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= 258, OverTh=false -Channel=TIME_05_15, ADC= 252, OverTh=false -Channel=TIME_29_07, ADC= 258, OverTh=false -Channel=TIME_29_15, ADC= 254, OverTh=false -Channel=TIME_11_00, ADC= 448, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 364, OverTh=false -Channel=TIME_35_08, ADC= 322, OverTh=false -Channel=TIME_11_01, ADC= 443, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 369, OverTh=false -Channel=TIME_35_09, ADC= 321, OverTh=false -Channel=TIME_11_02, ADC= 438, OverTh=false -Channel=TIME_11_10, ADC= 257, OverTh=false -Channel=TIME_35_02, ADC= 363, OverTh=false -Channel=TIME_35_10, ADC= 312, OverTh=false -Channel=TIME_11_03, ADC= 418, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 339, OverTh=false -Channel=TIME_35_11, ADC= 317, OverTh=false -Channel=TIME_11_04, ADC= 330, OverTh=false -Channel=TIME_11_12, ADC= 317, OverTh=false -Channel=TIME_35_04, ADC= 263, OverTh=false -Channel=TIME_35_12, ADC= 338, OverTh=false -Channel=TIME_11_05, ADC= 246, OverTh=false -Channel=TIME_11_13, ADC= 417, OverTh=false -Channel=TIME_35_05, ADC= 251, OverTh=false -Channel=TIME_35_13, ADC= 353, OverTh=false -Channel=TIME_11_06, ADC= 224, OverTh=false -Channel=TIME_11_14, ADC= 473, OverTh=false -Channel=TIME_35_06, ADC= 256, OverTh=false -Channel=TIME_35_14, ADC= 368, OverTh=false -Channel=TIME_11_07, ADC= 232, OverTh=false -Channel=TIME_11_15, ADC= 461, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 369, OverTh=false PrintHeader_7bb0e124 INFO # 179 Run 290683, Event 7584316 -PlumeRawToDigits_89428f2d 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= 0, 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= -1, OverTh=false -Channel=LUMI_28 , ADC= 1, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 4, OverTh=false -Channel=LUMI_13 , ADC= 6, OverTh=false -Channel=LUMI_37 , ADC= 6, 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= 3, OverTh=false -Channel=LUMI_40 , ADC= 1, OverTh=false -Channel=LUMI_23 , ADC= 3, OverTh=false -Channel=LUMI_47 , ADC= 4, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -10, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= -3, OverTh=false -Channel=PIN_07 , 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= 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= -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= 3, OverTh=false -Channel=LUMI_19 , ADC= 1, OverTh=false -Channel=LUMI_43 , ADC= 6, OverTh=false -Channel=LUMI_20 , ADC= 6, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, 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= 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= 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= 257, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 259, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 258, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 259, OverTh=false -Channel=TIME_05_05, ADC= 255, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 255, 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= 260, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 261, 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= 256, 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= 255, OverTh=false -Channel=TIME_35_09, ADC= 254, 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= 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= 259, 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= 257, 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= 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= 254, OverTh=false -Channel=TIME_35_15, ADC= 254, OverTh=false PrintHeader_7bb0e124 INFO # 180 Run 290683, Event 7584435 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 7, OverTh=false -Channel=LUMI_24 , ADC= 14, OverTh=false -Channel=LUMI_01 , ADC= 2, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= 13, 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= 11, OverTh=false -Channel=LUMI_36 , ADC= 3, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 3, OverTh=false -Channel=LUMI_14 , ADC= 173, OverTh=true -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= 6, OverTh=false -Channel=LUMI_40 , ADC= 5, OverTh=false -Channel=LUMI_23 , ADC= 21, OverTh=false -Channel=LUMI_47 , ADC= 6, OverTh=false -Channel=PIN_01 , ADC= 7, OverTh=false -Channel=PIN_02 , ADC= -9, OverTh=false -Channel=PIN_03 , ADC= -3, OverTh=false -Channel=PIN_04 , ADC= 7, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= 3, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 310, OverTh=true -Channel=LUMI_07 , ADC= 659, OverTh=true -Channel=LUMI_31 , ADC= -3, OverTh=false -Channel=LUMI_08 , ADC= -7, OverTh=false -Channel=LUMI_32 , ADC= 8, 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= 1, OverTh=false -Channel=LUMI_17 , ADC= 19, OverTh=false -Channel=LUMI_41 , ADC= 11, OverTh=false -Channel=LUMI_18 , ADC= 283, OverTh=true -Channel=LUMI_42 , ADC= 1, OverTh=false -Channel=LUMI_19 , ADC= 5, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 232, OverTh=true -Channel=LUMI_44 , ADC= 7, OverTh=false -Channel=LUMI_21 , ADC= 0, OverTh=false -Channel=LUMI_45 , ADC= 66, OverTh=true -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 259, 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= 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= 255, 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= 260, 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= 256, OverTh=false -Channel=TIME_05_05, ADC= 260, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 265, OverTh=false -Channel=TIME_05_14, ADC= 260, OverTh=false -Channel=TIME_29_06, ADC= 255, OverTh=false -Channel=TIME_29_14, ADC= 256, OverTh=false -Channel=TIME_05_07, ADC= 266, OverTh=false -Channel=TIME_05_15, ADC= 259, 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= 260, 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= 258, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 258, 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= 258, 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= 282, 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= 341, 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= 368, 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= 357, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 260, OverTh=false PrintHeader_7bb0e124 INFO # 181 Run 290683, Event 7584621 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 18, OverTh=false -Channel=LUMI_24 , ADC= 37, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 4, OverTh=false -Channel=LUMI_02 , ADC= -9, OverTh=false -Channel=LUMI_26 , ADC= 4, 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= 1, 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= 3, OverTh=false -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 0, OverTh=false -Channel=LUMI_15 , ADC= 7, OverTh=false -Channel=LUMI_39 , ADC= 1, OverTh=false -Channel=LUMI_16 , ADC= 8, OverTh=false -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 5, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= 11, OverTh=false -Channel=PIN_06 , ADC= 5, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 23, OverTh=false -Channel=LUMI_30 , ADC= 8, 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= -7, OverTh=false -Channel=LUMI_33 , ADC= 4, 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= -6, OverTh=false -Channel=LUMI_18 , ADC= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, 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= -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= -2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 256, OverTh=false -Channel=TIME_29_00, ADC= 260, OverTh=false -Channel=TIME_29_08, ADC= 256, OverTh=false -Channel=TIME_05_01, ADC= 260, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 259, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 259, 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= 259, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 261, OverTh=false -Channel=TIME_29_11, ADC= 255, OverTh=false -Channel=TIME_05_04, ADC= 261, 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= 258, 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= 261, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 263, OverTh=false -Channel=TIME_05_07, ADC= 262, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 261, 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= 257, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 257, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, 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= 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= 256, OverTh=false -Channel=TIME_11_13, ADC= 257, 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= 258, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 256, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 182 Run 290683, Event 7584655 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= 1, OverTh=false -Channel=LUMI_02 , ADC= 203, OverTh=true -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= -2, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= -8, OverTh=false -Channel=LUMI_13 , ADC= 4, 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= 5, OverTh=false -Channel=LUMI_23 , ADC= 24, OverTh=false -Channel=LUMI_47 , ADC= 8, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -8, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 12, OverTh=false -Channel=PIN_09 , ADC= 6, OverTh=false -Channel=PIN_06 , ADC= -4, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -21, OverTh=false -Channel=LUMI_07 , ADC= 11, 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= -6, OverTh=false -Channel=LUMI_33 , ADC= 0, OverTh=false -Channel=LUMI_10 , ADC= 8, OverTh=false -Channel=LUMI_34 , ADC= -3, OverTh=false -Channel=LUMI_17 , ADC= 0, OverTh=false -Channel=LUMI_41 , ADC= -4, OverTh=false -Channel=LUMI_18 , ADC= -4, OverTh=false -Channel=LUMI_42 , ADC= 3, 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= -2, OverTh=false -Channel=LUMI_21 , ADC= -3, OverTh=false -Channel=LUMI_45 , ADC= 4, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 246, OverTh=false -Channel=TIME_29_08, ADC= 371, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 250, OverTh=false -Channel=TIME_29_09, ADC= 370, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 251, OverTh=false -Channel=TIME_29_10, ADC= 368, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 257, OverTh=false -Channel=TIME_29_03, ADC= 251, OverTh=false -Channel=TIME_29_11, ADC= 362, OverTh=false -Channel=TIME_05_04, ADC= 255, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 252, OverTh=false -Channel=TIME_29_12, ADC= 324, OverTh=false -Channel=TIME_05_05, ADC= 254, OverTh=false -Channel=TIME_05_13, ADC= 257, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 265, 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= 236, OverTh=false -Channel=TIME_05_07, ADC= 253, OverTh=false -Channel=TIME_05_15, ADC= 255, OverTh=false -Channel=TIME_29_07, ADC= 257, OverTh=false -Channel=TIME_29_15, ADC= 234, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 252, 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= 253, OverTh=false -Channel=TIME_35_01, ADC= 254, 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= 258, OverTh=false -Channel=TIME_11_03, ADC= 256, 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= 255, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 266, 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= 275, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 266, OverTh=false -Channel=TIME_11_14, ADC= 259, OverTh=false -Channel=TIME_35_06, ADC= 280, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 266, OverTh=false -Channel=TIME_11_15, ADC= 257, OverTh=false -Channel=TIME_35_07, ADC= 283, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 183 Run 290683, Event 7585022 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -12, OverTh=false -Channel=LUMI_24 , ADC= 8, OverTh=false -Channel=LUMI_01 , ADC= 4, OverTh=false -Channel=LUMI_25 , ADC= 7, OverTh=false -Channel=LUMI_02 , ADC= -23, OverTh=false -Channel=LUMI_26 , ADC= 4, OverTh=false -Channel=LUMI_03 , ADC= -9, OverTh=false -Channel=LUMI_27 , ADC= -6, OverTh=false -Channel=LUMI_04 , ADC= -4, 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= 4, OverTh=false -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= -27, OverTh=false -Channel=LUMI_39 , ADC= -9, 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= 15, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 1, OverTh=false -Channel=PIN_03 , ADC= -4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= -8, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -5, OverTh=false -Channel=LUMI_30 , ADC= 0, OverTh=false -Channel=LUMI_07 , ADC= 8, OverTh=false -Channel=LUMI_31 , ADC= 5, OverTh=false -Channel=LUMI_08 , ADC= 3, 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= -2, 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= 2, OverTh=false -Channel=LUMI_19 , ADC= -7, OverTh=false -Channel=LUMI_43 , ADC= 5, 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= 0, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 254, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 253, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 254, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 253, 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= 255, OverTh=false -Channel=TIME_05_04, ADC= 255, 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= 253, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 256, OverTh=false -Channel=TIME_29_13, ADC= 251, 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= 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= 255, OverTh=false -Channel=TIME_11_00, ADC= 255, OverTh=false -Channel=TIME_11_08, ADC= 249, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 246, OverTh=false -Channel=TIME_11_01, ADC= 255, OverTh=false -Channel=TIME_11_09, ADC= 253, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 249, OverTh=false -Channel=TIME_11_02, ADC= 255, OverTh=false -Channel=TIME_11_10, ADC= 252, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 253, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 257, OverTh=false -Channel=TIME_35_03, ADC= 257, OverTh=false -Channel=TIME_35_11, ADC= 253, 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= 269, 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= 277, OverTh=false -Channel=TIME_11_14, ADC= 257, OverTh=false -Channel=TIME_35_06, ADC= 278, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 256, OverTh=false -Channel=TIME_35_07, ADC= 281, OverTh=false -Channel=TIME_35_15, ADC= 256, OverTh=false PrintHeader_7bb0e124 INFO # 184 Run 290683, Event 7585140 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -3, OverTh=false -Channel=LUMI_24 , ADC= 2, OverTh=false -Channel=LUMI_01 , ADC= -7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 42, 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= 34, OverTh=false -Channel=LUMI_36 , ADC= 2, OverTh=false -Channel=LUMI_13 , ADC= 279, OverTh=true -Channel=LUMI_37 , ADC= -3, OverTh=false -Channel=LUMI_14 , ADC= 14, OverTh=false -Channel=LUMI_38 , ADC= 2, OverTh=false -Channel=LUMI_15 , ADC= -4, OverTh=false -Channel=LUMI_39 , ADC= -2, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 19, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 136, OverTh=true -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= 4, OverTh=false -Channel=PIN_04 , ADC= 5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 4, OverTh=false -Channel=PIN_06 , ADC= 7, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= 269, OverTh=true -Channel=LUMI_30 , ADC= -10, 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= -3, OverTh=false -Channel=LUMI_33 , ADC= 108, OverTh=true -Channel=LUMI_10 , ADC= 13, OverTh=false -Channel=LUMI_34 , ADC= 3, OverTh=false -Channel=LUMI_17 , ADC= 59, OverTh=true -Channel=LUMI_41 , ADC= -2, OverTh=false -Channel=LUMI_18 , ADC= 14, OverTh=false -Channel=LUMI_42 , ADC= 3, OverTh=false -Channel=LUMI_19 , ADC= 67, OverTh=true -Channel=LUMI_43 , ADC= -8, OverTh=false -Channel=LUMI_20 , ADC= 329, OverTh=true -Channel=LUMI_44 , ADC= 72, OverTh=true -Channel=LUMI_21 , ADC= 1, OverTh=false -Channel=LUMI_45 , ADC= 2, OverTh=false -Channel=LUMI_22 , ADC= 312, OverTh=true -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 271, OverTh=false -Channel=TIME_05_08, ADC= 260, OverTh=false -Channel=TIME_29_00, ADC= 256, OverTh=false -Channel=TIME_29_08, ADC= 265, OverTh=false -Channel=TIME_05_01, ADC= 272, OverTh=false -Channel=TIME_05_09, ADC= 263, OverTh=false -Channel=TIME_29_01, ADC= 258, OverTh=false -Channel=TIME_29_09, ADC= 261, OverTh=false -Channel=TIME_05_02, ADC= 272, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 258, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 271, 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= 264, OverTh=false -Channel=TIME_05_12, ADC= 263, OverTh=false -Channel=TIME_29_04, ADC= 255, OverTh=false -Channel=TIME_29_12, ADC= 256, OverTh=false -Channel=TIME_05_05, ADC= 262, OverTh=false -Channel=TIME_05_13, ADC= 266, OverTh=false -Channel=TIME_29_05, ADC= 263, OverTh=false -Channel=TIME_29_13, ADC= 257, OverTh=false -Channel=TIME_05_06, ADC= 255, OverTh=false -Channel=TIME_05_14, ADC= 268, OverTh=false -Channel=TIME_29_06, ADC= 277, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 269, OverTh=false -Channel=TIME_29_07, ADC= 276, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 268, OverTh=false -Channel=TIME_11_08, ADC= 262, OverTh=false -Channel=TIME_35_00, ADC= 257, OverTh=false -Channel=TIME_35_08, ADC= 255, OverTh=false -Channel=TIME_11_01, ADC= 263, OverTh=false -Channel=TIME_11_09, ADC= 261, OverTh=false -Channel=TIME_35_01, ADC= 256, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 262, OverTh=false -Channel=TIME_11_10, ADC= 258, 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= 256, OverTh=false -Channel=TIME_11_04, ADC= 261, OverTh=false -Channel=TIME_11_12, ADC= 259, OverTh=false -Channel=TIME_35_04, ADC= 260, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 262, OverTh=false -Channel=TIME_11_13, ADC= 263, OverTh=false -Channel=TIME_35_05, ADC= 271, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 257, OverTh=false -Channel=TIME_11_14, ADC= 282, OverTh=false -Channel=TIME_35_06, ADC= 286, OverTh=false -Channel=TIME_35_14, ADC= 257, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 277, OverTh=false -Channel=TIME_35_07, ADC= 291, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 185 Run 290683, Event 7585183 -PlumeRawToDigits_89428f2d 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= -5, OverTh=false -Channel=LUMI_02 , ADC= -6, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= -11, 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= -1, OverTh=false -Channel=LUMI_13 , ADC= -3, OverTh=false -Channel=LUMI_37 , ADC= -4, OverTh=false -Channel=LUMI_14 , ADC= -11, 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= 3, OverTh=false -Channel=LUMI_47 , ADC= -10, OverTh=false -Channel=PIN_01 , ADC= -3, OverTh=false -Channel=PIN_02 , ADC= 0, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -5, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 347, OverTh=true -Channel=LUMI_30 , ADC= -9, 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= 4, 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= 3, OverTh=false -Channel=LUMI_41 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_20 , ADC= 4, OverTh=false -Channel=LUMI_44 , ADC= -6, 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= 8, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -3, OverTh=false -Channel=MON_04 , ADC= -1, 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= 261, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 257, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 254, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 261, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 256, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 266, OverTh=false -Channel=TIME_05_12, ADC= 256, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 260, OverTh=false -Channel=TIME_05_05, ADC= 286, 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= 296, OverTh=false -Channel=TIME_05_14, ADC= 256, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 299, 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= 259, 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= 258, 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= 259, OverTh=false -Channel=TIME_11_03, ADC= 257, OverTh=false -Channel=TIME_11_11, ADC= 256, OverTh=false -Channel=TIME_35_03, ADC= 253, 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= 255, OverTh=false -Channel=TIME_35_12, ADC= 259, OverTh=false -Channel=TIME_11_05, ADC= 257, OverTh=false -Channel=TIME_11_13, ADC= 259, OverTh=false -Channel=TIME_35_05, ADC= 255, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 259, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 186 Run 290683, Event 7585210 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -11, OverTh=false -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 354, OverTh=true -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -7, OverTh=false -Channel=LUMI_03 , ADC= -3, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 16, OverTh=false -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 4, OverTh=false -Channel=LUMI_36 , ADC= 1, OverTh=false -Channel=LUMI_13 , ADC= 59, OverTh=true -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= 1, OverTh=false -Channel=LUMI_16 , ADC= 9, OverTh=false -Channel=LUMI_40 , ADC= 6, OverTh=false -Channel=LUMI_23 , ADC= -8, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -5, OverTh=false -Channel=PIN_03 , ADC= 6, OverTh=false -Channel=PIN_04 , ADC= -9, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= 1, OverTh=false -Channel=PIN_06 , ADC= -11, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 3, OverTh=false -Channel=LUMI_30 , ADC= 16, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 13, OverTh=false -Channel=LUMI_08 , ADC= 4, OverTh=false -Channel=LUMI_32 , ADC= 2, OverTh=false -Channel=LUMI_09 , ADC= 16, OverTh=false -Channel=LUMI_33 , ADC= 1, OverTh=false -Channel=LUMI_10 , ADC= 5, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 80, OverTh=true -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= 8, OverTh=false -Channel=LUMI_19 , ADC= 28, OverTh=false -Channel=LUMI_43 , ADC= 26, OverTh=false -Channel=LUMI_20 , ADC= 146, OverTh=true -Channel=LUMI_44 , ADC= 15, OverTh=false -Channel=LUMI_21 , ADC= 2, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 7, OverTh=false -Channel=LUMI_46 , ADC= 14, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 260, OverTh=false -Channel=TIME_05_08, ADC= 257, OverTh=false -Channel=TIME_29_00, ADC= 257, OverTh=false -Channel=TIME_29_08, ADC= 261, 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= 264, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 261, 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= 259, 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= 259, 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= 255, OverTh=false -Channel=TIME_05_06, ADC= 259, 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= 254, OverTh=false -Channel=TIME_05_15, ADC= 260, 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= 259, 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= 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= 257, OverTh=false -Channel=TIME_35_02, ADC= 254, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 252, 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= 254, 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= 254, 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= 255, OverTh=false -Channel=TIME_11_14, ADC= 257, 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= 255, OverTh=false -Channel=TIME_35_07, ADC= 258, OverTh=false -Channel=TIME_35_15, ADC= 255, OverTh=false PrintHeader_7bb0e124 INFO # 187 Run 290683, Event 7585326 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -5, OverTh=false -Channel=LUMI_24 , ADC= 294, OverTh=true -Channel=LUMI_01 , ADC= 92, OverTh=true -Channel=LUMI_25 , ADC= -7, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= 6, 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= 2, OverTh=false -Channel=LUMI_36 , ADC= -4, OverTh=false -Channel=LUMI_13 , ADC= -6, OverTh=false -Channel=LUMI_37 , ADC= -2, OverTh=false -Channel=LUMI_14 , ADC= -4, OverTh=false -Channel=LUMI_38 , ADC= -5, 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= -3, OverTh=false -Channel=LUMI_23 , ADC= 74, OverTh=true -Channel=LUMI_47 , ADC= 294, OverTh=true -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 15, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= 7, OverTh=false -Channel=PIN_06 , ADC= 1, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -3, OverTh=false -Channel=LUMI_30 , ADC= -5, OverTh=false -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 15, OverTh=false -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -3, 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= 0, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= 16, 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= 80, OverTh=true -Channel=LUMI_44 , ADC= 4, OverTh=false -Channel=LUMI_21 , ADC= 296, OverTh=true -Channel=LUMI_45 , ADC= -1, OverTh=false -Channel=LUMI_22 , ADC= -1, OverTh=false -Channel=LUMI_46 , ADC= 3, OverTh=false -Channel=MON_01 , ADC= 4, OverTh=false -Channel=MON_02 , ADC= 2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 283, OverTh=false -Channel=TIME_29_08, ADC= 258, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 279, OverTh=false -Channel=TIME_29_09, ADC= 256, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 280, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 262, OverTh=false -Channel=TIME_29_03, ADC= 282, OverTh=false -Channel=TIME_29_11, ADC= 260, OverTh=false -Channel=TIME_05_04, ADC= 293, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 262, OverTh=false -Channel=TIME_05_05, ADC= 354, OverTh=false -Channel=TIME_05_13, ADC= 261, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 280, OverTh=false -Channel=TIME_05_06, ADC= 403, OverTh=false -Channel=TIME_05_14, ADC= 264, OverTh=false -Channel=TIME_29_06, ADC= 254, OverTh=false -Channel=TIME_29_14, ADC= 286, OverTh=false -Channel=TIME_05_07, ADC= 401, OverTh=false -Channel=TIME_05_15, ADC= 262, OverTh=false -Channel=TIME_29_07, ADC= 254, OverTh=false -Channel=TIME_29_15, ADC= 287, 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= 257, 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= 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= 258, OverTh=false -Channel=TIME_35_03, ADC= 266, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 262, OverTh=false -Channel=TIME_11_12, ADC= 256, OverTh=false -Channel=TIME_35_04, ADC= 315, OverTh=false -Channel=TIME_35_12, ADC= 257, OverTh=false -Channel=TIME_11_05, ADC= 261, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 351, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 262, OverTh=false -Channel=TIME_11_14, ADC= 261, OverTh=false -Channel=TIME_35_06, ADC= 377, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 268, OverTh=false -Channel=TIME_11_15, ADC= 259, OverTh=false -Channel=TIME_35_07, ADC= 376, OverTh=false -Channel=TIME_35_15, ADC= 259, OverTh=false PrintHeader_7bb0e124 INFO # 188 Run 290683, Event 7585422 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= -5, OverTh=false -Channel=LUMI_01 , ADC= -2, OverTh=false -Channel=LUMI_25 , ADC= -5, OverTh=false -Channel=LUMI_02 , ADC= -4, OverTh=false -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -4, 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= -3, 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= -4, 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= -3, OverTh=false -Channel=LUMI_47 , ADC= -1, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 8, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= 6, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= 232, OverTh=true -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -4, 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= -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= 1, OverTh=false -Channel=LUMI_42 , ADC= -5, 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= 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=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 2, 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= 254, 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= 257, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 259, OverTh=false -Channel=TIME_29_10, ADC= 254, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 259, OverTh=false -Channel=TIME_29_03, ADC= 254, OverTh=false -Channel=TIME_29_11, ADC= 256, 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= 257, OverTh=false -Channel=TIME_05_05, ADC= 259, 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= 258, 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= 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= 255, 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= 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= 255, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 256, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 257, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 253, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 259, 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= 255, 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= 255, OverTh=false -Channel=TIME_35_15, ADC= 253, OverTh=false PrintHeader_7bb0e124 INFO # 189 Run 290683, Event 7585797 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 2, OverTh=false -Channel=LUMI_24 , ADC= 11, OverTh=false -Channel=LUMI_01 , ADC= -4, OverTh=false -Channel=LUMI_25 , ADC= 30, OverTh=false -Channel=LUMI_02 , ADC= 4, OverTh=false -Channel=LUMI_26 , ADC= 121, OverTh=true -Channel=LUMI_03 , ADC= -1, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= -5, OverTh=false -Channel=LUMI_28 , ADC= 4, OverTh=false -Channel=LUMI_12 , ADC= 8, OverTh=false -Channel=LUMI_36 , ADC= 184, OverTh=true -Channel=LUMI_13 , ADC= -1, OverTh=false -Channel=LUMI_37 , ADC= 612, OverTh=true -Channel=LUMI_14 , ADC= 0, OverTh=false -Channel=LUMI_38 , ADC= 1, OverTh=false -Channel=LUMI_15 , ADC= -6, OverTh=false -Channel=LUMI_39 , ADC= 0, OverTh=false -Channel=LUMI_16 , ADC= 10, OverTh=false -Channel=LUMI_40 , ADC= -2, OverTh=false -Channel=LUMI_23 , ADC= -1, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= 0, OverTh=false -Channel=PIN_09 , ADC= 3, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= 0, OverTh=false -Channel=LUMI_06 , ADC= -18, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= -5, OverTh=false -Channel=LUMI_31 , ADC= -19, OverTh=false -Channel=LUMI_08 , ADC= 4, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 1, OverTh=false -Channel=LUMI_17 , ADC= 12, OverTh=false -Channel=LUMI_41 , ADC= 13, OverTh=false -Channel=LUMI_18 , ADC= 11, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= -6, OverTh=false -Channel=LUMI_43 , ADC= 13, OverTh=false -Channel=LUMI_20 , ADC= -13, OverTh=false -Channel=LUMI_44 , ADC= 8, OverTh=false -Channel=LUMI_21 , ADC= 3, OverTh=false -Channel=LUMI_45 , ADC= 3, OverTh=false -Channel=LUMI_22 , ADC= 6, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 265, 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= 267, OverTh=false -Channel=TIME_29_01, ADC= 262, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 255, OverTh=false -Channel=TIME_05_10, ADC= 266, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 257, OverTh=false -Channel=TIME_05_03, ADC= 261, OverTh=false -Channel=TIME_05_11, ADC= 267, OverTh=false -Channel=TIME_29_03, ADC= 262, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 280, OverTh=false -Channel=TIME_05_12, ADC= 265, OverTh=false -Channel=TIME_29_04, ADC= 262, OverTh=false -Channel=TIME_29_12, ADC= 255, OverTh=false -Channel=TIME_05_05, ADC= 335, OverTh=false -Channel=TIME_05_13, ADC= 256, OverTh=false -Channel=TIME_29_05, ADC= 262, OverTh=false -Channel=TIME_29_13, ADC= 258, OverTh=false -Channel=TIME_05_06, ADC= 382, OverTh=false -Channel=TIME_05_14, ADC= 251, OverTh=false -Channel=TIME_29_06, ADC= 262, OverTh=false -Channel=TIME_29_14, ADC= 258, OverTh=false -Channel=TIME_05_07, ADC= 377, OverTh=false -Channel=TIME_05_15, ADC= 254, OverTh=false -Channel=TIME_29_07, ADC= 262, OverTh=false -Channel=TIME_29_15, ADC= 257, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 270, OverTh=false -Channel=TIME_35_00, ADC= 256, OverTh=false -Channel=TIME_35_08, ADC= 259, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 267, OverTh=false -Channel=TIME_35_01, ADC= 258, OverTh=false -Channel=TIME_35_09, ADC= 259, OverTh=false -Channel=TIME_11_02, ADC= 258, OverTh=false -Channel=TIME_11_10, ADC= 266, 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= 263, OverTh=false -Channel=TIME_35_03, ADC= 260, OverTh=false -Channel=TIME_35_11, ADC= 259, OverTh=false -Channel=TIME_11_04, ADC= 255, OverTh=false -Channel=TIME_11_12, ADC= 263, 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= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 271, 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= 269, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 254, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 190 Run 290683, Event 7587058 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 5, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 0, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 9, OverTh=false -Channel=LUMI_03 , ADC= -12, OverTh=false -Channel=LUMI_27 , ADC= 3, OverTh=false -Channel=LUMI_04 , ADC= 2, OverTh=false -Channel=LUMI_28 , ADC= 5, OverTh=false -Channel=LUMI_12 , ADC= -6, OverTh=false -Channel=LUMI_36 , ADC= 124, OverTh=true -Channel=LUMI_13 , ADC= 0, OverTh=false -Channel=LUMI_37 , ADC= 14, OverTh=false -Channel=LUMI_14 , ADC= 2, OverTh=false -Channel=LUMI_38 , ADC= 3, OverTh=false -Channel=LUMI_15 , ADC= -15, OverTh=false -Channel=LUMI_39 , ADC= -12, OverTh=false -Channel=LUMI_16 , ADC= 2, OverTh=false -Channel=LUMI_40 , ADC= 2, OverTh=false -Channel=LUMI_23 , ADC= -10, OverTh=false -Channel=LUMI_47 , ADC= 7, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 3, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -12, OverTh=false -Channel=PIN_06 , ADC= -6, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 1, OverTh=false -Channel=LUMI_30 , ADC= 7, OverTh=false -Channel=LUMI_07 , ADC= 21, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 1, OverTh=false -Channel=LUMI_32 , ADC= 5, OverTh=false -Channel=LUMI_09 , ADC= 341, OverTh=true -Channel=LUMI_33 , ADC= 5, OverTh=false -Channel=LUMI_10 , ADC= 1, OverTh=false -Channel=LUMI_34 , ADC= 8, OverTh=false -Channel=LUMI_17 , ADC= 33, OverTh=false -Channel=LUMI_41 , ADC= 2, OverTh=false -Channel=LUMI_18 , ADC= 45, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 8, OverTh=false -Channel=LUMI_20 , ADC= 268, OverTh=true -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= 3, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= -1, OverTh=false -Channel=MON_02 , ADC= 1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 262, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 256, OverTh=false -Channel=TIME_05_09, ADC= 263, OverTh=false -Channel=TIME_29_01, ADC= 254, OverTh=false -Channel=TIME_29_09, ADC= 260, OverTh=false -Channel=TIME_05_02, ADC= 259, OverTh=false -Channel=TIME_05_10, ADC= 263, OverTh=false -Channel=TIME_29_02, ADC= 254, OverTh=false -Channel=TIME_29_10, ADC= 260, OverTh=false -Channel=TIME_05_03, ADC= 259, OverTh=false -Channel=TIME_05_11, ADC= 264, OverTh=false -Channel=TIME_29_03, ADC= 253, OverTh=false -Channel=TIME_29_11, ADC= 257, OverTh=false -Channel=TIME_05_04, ADC= 259, OverTh=false -Channel=TIME_05_12, ADC= 260, 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= 266, 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= 260, 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= 260, OverTh=false -Channel=TIME_29_07, ADC= 254, 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= 262, OverTh=false -Channel=TIME_35_08, ADC= 265, OverTh=false -Channel=TIME_11_01, ADC= 257, OverTh=false -Channel=TIME_11_09, ADC= 257, OverTh=false -Channel=TIME_35_01, ADC= 259, OverTh=false -Channel=TIME_35_09, ADC= 260, OverTh=false -Channel=TIME_11_02, ADC= 259, OverTh=false -Channel=TIME_11_10, ADC= 258, OverTh=false -Channel=TIME_35_02, ADC= 261, 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= 258, OverTh=false -Channel=TIME_11_04, ADC= 259, OverTh=false -Channel=TIME_11_12, ADC= 257, OverTh=false -Channel=TIME_35_04, ADC= 259, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 258, 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= 257, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 267, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 252, OverTh=false -Channel=TIME_35_15, ADC= 264, OverTh=false PrintHeader_7bb0e124 INFO # 191 Run 290683, Event 7587347 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 196, OverTh=true -Channel=LUMI_24 , ADC= 1, OverTh=false -Channel=LUMI_01 , ADC= 35, OverTh=false -Channel=LUMI_25 , ADC= 128, OverTh=true -Channel=LUMI_02 , ADC= 6, OverTh=false -Channel=LUMI_26 , ADC= 330, OverTh=true -Channel=LUMI_03 , ADC= 4, OverTh=false -Channel=LUMI_27 , ADC= 1, OverTh=false -Channel=LUMI_04 , ADC= 463, OverTh=true -Channel=LUMI_28 , ADC= 2, OverTh=false -Channel=LUMI_12 , ADC= 448, OverTh=true -Channel=LUMI_36 , ADC= -1, OverTh=false -Channel=LUMI_13 , ADC= 10, OverTh=false -Channel=LUMI_37 , ADC= 66, OverTh=true -Channel=LUMI_14 , ADC= 3, OverTh=false -Channel=LUMI_38 , ADC= 772, OverTh=true -Channel=LUMI_15 , ADC= -8, OverTh=false -Channel=LUMI_39 , ADC= 8, OverTh=false -Channel=LUMI_16 , ADC= 18, OverTh=false -Channel=LUMI_40 , ADC= 0, OverTh=false -Channel=LUMI_23 , ADC= 0, OverTh=false -Channel=LUMI_47 , ADC= 181, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -1, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 5, OverTh=false -Channel=PIN_09 , ADC= -5, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 406, OverTh=true -Channel=LUMI_30 , ADC= 188, OverTh=true -Channel=LUMI_07 , ADC= 121, OverTh=true -Channel=LUMI_31 , ADC= 47, OverTh=false -Channel=LUMI_08 , ADC= 6, OverTh=false -Channel=LUMI_32 , ADC= 12, OverTh=false -Channel=LUMI_09 , ADC= 551, OverTh=true -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= 128, OverTh=true -Channel=LUMI_34 , ADC= 242, OverTh=true -Channel=LUMI_17 , ADC= 6, OverTh=false -Channel=LUMI_41 , ADC= 153, OverTh=true -Channel=LUMI_18 , ADC= 256, OverTh=true -Channel=LUMI_42 , ADC= 425, OverTh=true -Channel=LUMI_19 , ADC= 0, OverTh=false -Channel=LUMI_43 , ADC= 12, OverTh=false -Channel=LUMI_20 , ADC= 6, OverTh=false -Channel=LUMI_44 , ADC= 53, OverTh=true -Channel=LUMI_21 , ADC= 178, OverTh=true -Channel=LUMI_45 , ADC= 465, OverTh=true -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 40, OverTh=false -Channel=MON_01 , ADC= -2, OverTh=false -Channel=MON_02 , ADC= -3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 361, OverTh=false -Channel=TIME_05_08, ADC= 261, OverTh=false -Channel=TIME_29_00, ADC= 416, OverTh=false -Channel=TIME_29_08, ADC= 257, OverTh=false -Channel=TIME_05_01, ADC= 360, OverTh=false -Channel=TIME_05_09, ADC= 256, OverTh=false -Channel=TIME_29_01, ADC= 413, OverTh=false -Channel=TIME_29_09, ADC= 258, OverTh=false -Channel=TIME_05_02, ADC= 357, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 412, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 351, OverTh=false -Channel=TIME_05_11, ADC= 256, OverTh=false -Channel=TIME_29_03, ADC= 409, OverTh=false -Channel=TIME_29_11, ADC= 256, OverTh=false -Channel=TIME_05_04, ADC= 319, OverTh=false -Channel=TIME_05_12, ADC= 276, OverTh=false -Channel=TIME_29_04, ADC= 359, OverTh=false -Channel=TIME_29_12, ADC= 286, OverTh=false -Channel=TIME_05_05, ADC= 262, OverTh=false -Channel=TIME_05_13, ADC= 327, OverTh=false -Channel=TIME_29_05, ADC= 270, OverTh=false -Channel=TIME_29_13, ADC= 370, OverTh=false -Channel=TIME_05_06, ADC= 242, OverTh=false -Channel=TIME_05_14, ADC= 373, OverTh=false -Channel=TIME_29_06, ADC= 230, OverTh=false -Channel=TIME_29_14, ADC= 430, OverTh=false -Channel=TIME_05_07, ADC= 242, OverTh=false -Channel=TIME_05_15, ADC= 370, OverTh=false -Channel=TIME_29_07, ADC= 232, OverTh=false -Channel=TIME_29_15, ADC= 431, OverTh=false -Channel=TIME_11_00, ADC= 372, OverTh=false -Channel=TIME_11_08, ADC= 270, OverTh=false -Channel=TIME_35_00, ADC= 246, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 373, OverTh=false -Channel=TIME_11_09, ADC= 267, OverTh=false -Channel=TIME_35_01, ADC= 249, OverTh=false -Channel=TIME_35_09, ADC= 255, OverTh=false -Channel=TIME_11_02, ADC= 370, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 248, OverTh=false -Channel=TIME_35_10, ADC= 261, OverTh=false -Channel=TIME_11_03, ADC= 356, OverTh=false -Channel=TIME_11_11, ADC= 265, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 294, OverTh=false -Channel=TIME_11_12, ADC= 307, OverTh=false -Channel=TIME_35_04, ADC= 254, OverTh=false -Channel=TIME_35_12, ADC= 258, OverTh=false -Channel=TIME_11_05, ADC= 245, OverTh=false -Channel=TIME_11_13, ADC= 373, OverTh=false -Channel=TIME_35_05, ADC= 253, OverTh=false -Channel=TIME_35_13, ADC= 254, OverTh=false -Channel=TIME_11_06, ADC= 273, OverTh=false -Channel=TIME_11_14, ADC= 395, OverTh=false -Channel=TIME_35_06, ADC= 271, OverTh=false -Channel=TIME_35_14, ADC= 255, OverTh=false -Channel=TIME_11_07, ADC= 272, OverTh=false -Channel=TIME_11_15, ADC= 385, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 252, OverTh=false PrintHeader_7bb0e124 INFO # 192 Run 290683, Event 7587379 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 3, OverTh=false -Channel=LUMI_24 , ADC= -6, OverTh=false -Channel=LUMI_01 , ADC= 27, OverTh=false -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= -5, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= 6, 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= 9, OverTh=false -Channel=LUMI_13 , ADC= -16, 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= -7, OverTh=false -Channel=LUMI_39 , ADC= -6, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -16, OverTh=false -Channel=LUMI_23 , ADC= 80, OverTh=true -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= 0, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= -2, OverTh=false -Channel=LUMI_30 , ADC= -3, OverTh=false -Channel=LUMI_07 , ADC= 4, OverTh=false -Channel=LUMI_31 , ADC= -2, OverTh=false -Channel=LUMI_08 , ADC= 84, OverTh=true -Channel=LUMI_32 , ADC= 0, OverTh=false -Channel=LUMI_09 , ADC= 14, 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= -16, 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= -6, OverTh=false -Channel=LUMI_43 , ADC= -14, 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= 0, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 3, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -3, OverTh=false -Channel=TIME_05_00, ADC= 258, OverTh=false -Channel=TIME_05_08, ADC= 259, OverTh=false -Channel=TIME_29_00, ADC= 298, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 260, OverTh=false -Channel=TIME_29_01, ADC= 298, OverTh=false -Channel=TIME_29_09, ADC= 257, OverTh=false -Channel=TIME_05_02, ADC= 256, OverTh=false -Channel=TIME_05_10, ADC= 262, OverTh=false -Channel=TIME_29_02, ADC= 294, OverTh=false -Channel=TIME_29_10, ADC= 256, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 296, OverTh=false -Channel=TIME_29_11, ADC= 258, OverTh=false -Channel=TIME_05_04, ADC= 272, OverTh=false -Channel=TIME_05_12, ADC= 257, OverTh=false -Channel=TIME_29_04, ADC= 280, OverTh=false -Channel=TIME_29_12, ADC= 267, OverTh=false -Channel=TIME_05_05, ADC= 308, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 291, OverTh=false -Channel=TIME_05_06, ADC= 331, OverTh=false -Channel=TIME_05_14, ADC= 258, OverTh=false -Channel=TIME_29_06, ADC= 250, OverTh=false -Channel=TIME_29_14, ADC= 303, OverTh=false -Channel=TIME_05_07, ADC= 331, OverTh=false -Channel=TIME_05_15, ADC= 257, OverTh=false -Channel=TIME_29_07, ADC= 249, OverTh=false -Channel=TIME_29_15, ADC= 300, OverTh=false -Channel=TIME_11_00, ADC= 257, OverTh=false -Channel=TIME_11_08, ADC= 259, OverTh=false -Channel=TIME_35_00, ADC= 259, 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= 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= 259, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 260, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 259, OverTh=false -Channel=TIME_35_11, ADC= 256, OverTh=false -Channel=TIME_11_04, ADC= 289, 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= 339, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 356, 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= 349, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 193 Run 290683, Event 7587407 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -4, OverTh=false -Channel=LUMI_24 , ADC= -7, OverTh=false -Channel=LUMI_01 , ADC= -6, OverTh=false -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= -3, OverTh=false -Channel=LUMI_26 , ADC= -1, OverTh=false -Channel=LUMI_03 , ADC= -4, OverTh=false -Channel=LUMI_27 , ADC= -5, OverTh=false -Channel=LUMI_04 , ADC= -4, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= -5, 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= -2, OverTh=false -Channel=LUMI_15 , ADC= -3, OverTh=false -Channel=LUMI_39 , ADC= -5, OverTh=false -Channel=LUMI_16 , ADC= -3, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= -7, OverTh=false -Channel=LUMI_47 , ADC= -5, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= -2, OverTh=false -Channel=PIN_08 , ADC= 4, OverTh=false -Channel=PIN_09 , ADC= -11, OverTh=false -Channel=PIN_06 , ADC= 4, OverTh=false -Channel=PIN_07 , 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= 2, OverTh=false -Channel=LUMI_09 , ADC= -4, 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= 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= 2, 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= 1, OverTh=false -Channel=LUMI_22 , ADC= 4, OverTh=false -Channel=LUMI_46 , ADC= 1, OverTh=false -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 256, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 253, OverTh=false -Channel=TIME_29_08, ADC= 259, OverTh=false -Channel=TIME_05_01, ADC= 255, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 253, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 254, OverTh=false -Channel=TIME_05_10, ADC= 259, OverTh=false -Channel=TIME_29_02, ADC= 257, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 254, OverTh=false -Channel=TIME_29_03, ADC= 256, 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= 256, 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= 259, 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= 258, 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= 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= 259, 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= 258, OverTh=false -Channel=TIME_35_02, ADC= 257, OverTh=false -Channel=TIME_35_10, ADC= 257, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 258, OverTh=false -Channel=TIME_35_03, ADC= 255, OverTh=false -Channel=TIME_35_11, ADC= 254, OverTh=false -Channel=TIME_11_04, ADC= 256, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 259, 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= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 259, 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= 261, OverTh=false -Channel=TIME_11_15, ADC= 255, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 257, OverTh=false PrintHeader_7bb0e124 INFO # 194 Run 290683, Event 7587431 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 0, 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= -3, OverTh=false -Channel=LUMI_26 , ADC= -1, 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= 0, 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= -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= -2, OverTh=false -Channel=LUMI_23 , ADC= -3, OverTh=false -Channel=LUMI_47 , ADC= 2, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= -2, OverTh=false -Channel=PIN_03 , ADC= 7, OverTh=false -Channel=PIN_04 , ADC= -3, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= -2, OverTh=false -Channel=PIN_07 , ADC= 2, OverTh=false -Channel=LUMI_06 , ADC= 2, OverTh=false -Channel=LUMI_30 , ADC= 6, 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= -3, OverTh=false -Channel=LUMI_33 , ADC= 3, 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= 1, OverTh=false -Channel=LUMI_42 , ADC= -1, OverTh=false -Channel=LUMI_19 , ADC= 3, OverTh=false -Channel=LUMI_43 , ADC= 4, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= -1, 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= 258, OverTh=false -Channel=TIME_05_09, ADC= 254, 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= 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= 259, 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= 258, 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= 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= 257, OverTh=false -Channel=TIME_05_07, ADC= 257, OverTh=false -Channel=TIME_05_15, ADC= 259, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 263, 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= 259, OverTh=false -Channel=TIME_35_09, ADC= 254, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 256, OverTh=false -Channel=TIME_35_02, ADC= 263, 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= 264, OverTh=false -Channel=TIME_35_11, ADC= 255, OverTh=false -Channel=TIME_11_04, ADC= 258, OverTh=false -Channel=TIME_11_12, ADC= 258, OverTh=false -Channel=TIME_35_04, ADC= 261, OverTh=false -Channel=TIME_35_12, ADC= 255, OverTh=false -Channel=TIME_11_05, ADC= 255, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, 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= 262, OverTh=false -Channel=TIME_35_14, ADC= 253, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 260, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 195 Run 290683, Event 7576026 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 23, OverTh=false -Channel=LUMI_24 , ADC= 10, OverTh=false -Channel=LUMI_01 , ADC= 270, OverTh=true -Channel=LUMI_25 , ADC= 2, OverTh=false -Channel=LUMI_02 , ADC= 0, OverTh=false -Channel=LUMI_26 , ADC= 2, OverTh=false -Channel=LUMI_03 , ADC= 24, OverTh=false -Channel=LUMI_27 , ADC= 0, OverTh=false -Channel=LUMI_04 , ADC= 14, OverTh=false -Channel=LUMI_28 , ADC= 124, OverTh=true -Channel=LUMI_12 , ADC= 2, OverTh=false -Channel=LUMI_36 , ADC= 28, OverTh=false -Channel=LUMI_13 , ADC= 1, OverTh=false -Channel=LUMI_37 , ADC= 11, OverTh=false -Channel=LUMI_14 , ADC= 15, OverTh=false -Channel=LUMI_38 , ADC= -5, OverTh=false -Channel=LUMI_15 , ADC= 305, OverTh=true -Channel=LUMI_39 , ADC= 45, OverTh=false -Channel=LUMI_16 , ADC= 5, OverTh=false -Channel=LUMI_40 , ADC= 10, OverTh=false -Channel=LUMI_23 , ADC= 2, OverTh=false -Channel=LUMI_47 , ADC= 1, OverTh=false -Channel=PIN_01 , ADC= 2, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 1, OverTh=false -Channel=PIN_04 , ADC= 3, OverTh=false -Channel=PIN_08 , ADC= 1, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -3, OverTh=false -Channel=LUMI_06 , ADC= 6, OverTh=false -Channel=LUMI_30 , ADC= 5, OverTh=false -Channel=LUMI_07 , ADC= 9, OverTh=false -Channel=LUMI_31 , ADC= -14, OverTh=false -Channel=LUMI_08 , ADC= 2, OverTh=false -Channel=LUMI_32 , ADC= 63, OverTh=true -Channel=LUMI_09 , ADC= 1, OverTh=false -Channel=LUMI_33 , ADC= 8, OverTh=false -Channel=LUMI_10 , ADC= 12, OverTh=false -Channel=LUMI_34 , ADC= 4, OverTh=false -Channel=LUMI_17 , ADC= 9, OverTh=false -Channel=LUMI_41 , ADC= 3, OverTh=false -Channel=LUMI_18 , ADC= 521, OverTh=true -Channel=LUMI_42 , ADC= 337, OverTh=true -Channel=LUMI_19 , ADC= -2, OverTh=false -Channel=LUMI_43 , ADC= 3, OverTh=false -Channel=LUMI_20 , ADC= 184, OverTh=true -Channel=LUMI_44 , ADC= -1, OverTh=false -Channel=LUMI_21 , ADC= 630, OverTh=true -Channel=LUMI_45 , ADC= -7, OverTh=false -Channel=LUMI_22 , ADC= 0, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -1, OverTh=false -Channel=TIME_05_00, ADC= 263, OverTh=false -Channel=TIME_05_08, ADC= 264, OverTh=false -Channel=TIME_29_00, ADC= 255, OverTh=false -Channel=TIME_29_08, ADC= 261, OverTh=false -Channel=TIME_05_01, ADC= 261, OverTh=false -Channel=TIME_05_09, ADC= 264, OverTh=false -Channel=TIME_29_01, ADC= 256, OverTh=false -Channel=TIME_29_09, ADC= 262, OverTh=false -Channel=TIME_05_02, ADC= 258, OverTh=false -Channel=TIME_05_10, ADC= 261, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 262, 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= 261, OverTh=false -Channel=TIME_05_04, ADC= 258, OverTh=false -Channel=TIME_05_12, ADC= 261, OverTh=false -Channel=TIME_29_04, ADC= 256, OverTh=false -Channel=TIME_29_12, ADC= 260, 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= 257, OverTh=false -Channel=TIME_05_06, ADC= 269, OverTh=false -Channel=TIME_05_14, ADC= 259, OverTh=false -Channel=TIME_29_06, ADC= 260, OverTh=false -Channel=TIME_29_14, ADC= 257, OverTh=false -Channel=TIME_05_07, ADC= 267, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 260, 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= 255, OverTh=false -Channel=TIME_35_08, ADC= 259, 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= 257, 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= 255, OverTh=false -Channel=TIME_11_03, ADC= 259, OverTh=false -Channel=TIME_11_11, ADC= 259, OverTh=false -Channel=TIME_35_03, ADC= 255, 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= 255, 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= 256, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 254, 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= 255, 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 # 196 Run 290683, Event 7576329 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 49, OverTh=false -Channel=LUMI_24 , ADC= 68, OverTh=true -Channel=LUMI_01 , ADC= -21, OverTh=false -Channel=LUMI_25 , ADC= -4, OverTh=false -Channel=LUMI_02 , ADC= 670, OverTh=true -Channel=LUMI_26 , ADC= -2, OverTh=false -Channel=LUMI_03 , ADC= -2, OverTh=false -Channel=LUMI_27 , ADC= 62, OverTh=true -Channel=LUMI_04 , ADC= -3, OverTh=false -Channel=LUMI_28 , ADC= -3, OverTh=false -Channel=LUMI_12 , ADC= 41, OverTh=false -Channel=LUMI_36 , ADC= -3, OverTh=false -Channel=LUMI_13 , ADC= 5, OverTh=false -Channel=LUMI_37 , ADC= 10, 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= 6, OverTh=false -Channel=LUMI_16 , ADC= 4, OverTh=false -Channel=LUMI_40 , ADC= 3, OverTh=false -Channel=LUMI_23 , ADC= 6, OverTh=false -Channel=LUMI_47 , ADC= 43, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 2, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= 1, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -2, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= 0, 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= 70, OverTh=true -Channel=LUMI_08 , ADC= -1, OverTh=false -Channel=LUMI_32 , ADC= -3, OverTh=false -Channel=LUMI_09 , ADC= -3, OverTh=false -Channel=LUMI_33 , ADC= 0, 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= 89, OverTh=true -Channel=LUMI_18 , ADC= 8, OverTh=false -Channel=LUMI_42 , ADC= -3, 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= -1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 0, OverTh=false -Channel=LUMI_22 , ADC= 8, OverTh=false -Channel=LUMI_46 , ADC= 0, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 257, OverTh=false -Channel=TIME_05_08, ADC= 252, OverTh=false -Channel=TIME_29_00, ADC= 254, OverTh=false -Channel=TIME_29_08, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_02, ADC= 257, OverTh=false -Channel=TIME_05_10, ADC= 251, OverTh=false -Channel=TIME_29_02, ADC= 255, OverTh=false -Channel=TIME_29_10, ADC= 253, 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= 256, OverTh=false -Channel=TIME_29_04, ADC= 254, OverTh=false -Channel=TIME_29_12, ADC= 253, 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= 254, OverTh=false -Channel=TIME_05_14, ADC= 257, OverTh=false -Channel=TIME_29_06, ADC= 257, OverTh=false -Channel=TIME_29_14, ADC= 253, OverTh=false -Channel=TIME_05_07, ADC= 255, OverTh=false -Channel=TIME_05_15, ADC= 260, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 256, OverTh=false -Channel=TIME_11_00, ADC= 249, OverTh=false -Channel=TIME_11_08, ADC= 346, OverTh=false -Channel=TIME_35_00, ADC= 253, OverTh=false -Channel=TIME_35_08, ADC= 294, OverTh=false -Channel=TIME_11_01, ADC= 250, OverTh=false -Channel=TIME_11_09, ADC= 345, OverTh=false -Channel=TIME_35_01, ADC= 254, OverTh=false -Channel=TIME_35_09, ADC= 294, OverTh=false -Channel=TIME_11_02, ADC= 253, OverTh=false -Channel=TIME_11_10, ADC= 338, OverTh=false -Channel=TIME_35_02, ADC= 255, OverTh=false -Channel=TIME_35_10, ADC= 292, OverTh=false -Channel=TIME_11_03, ADC= 248, OverTh=false -Channel=TIME_11_11, ADC= 328, OverTh=false -Channel=TIME_35_03, ADC= 254, OverTh=false -Channel=TIME_35_11, ADC= 281, OverTh=false -Channel=TIME_11_04, ADC= 232, OverTh=false -Channel=TIME_11_12, ADC= 299, OverTh=false -Channel=TIME_35_04, ADC= 236, OverTh=false -Channel=TIME_35_12, ADC= 261, OverTh=false -Channel=TIME_11_05, ADC= 271, OverTh=false -Channel=TIME_11_13, ADC= 258, OverTh=false -Channel=TIME_35_05, ADC= 261, OverTh=false -Channel=TIME_35_13, ADC= 249, OverTh=false -Channel=TIME_11_06, ADC= 285, OverTh=false -Channel=TIME_11_14, ADC= 241, OverTh=false -Channel=TIME_35_06, ADC= 274, OverTh=false -Channel=TIME_35_14, ADC= 246, OverTh=false -Channel=TIME_11_07, ADC= 278, OverTh=false -Channel=TIME_11_15, ADC= 242, OverTh=false -Channel=TIME_35_07, ADC= 267, OverTh=false -Channel=TIME_35_15, ADC= 247, OverTh=false PrintHeader_7bb0e124 INFO # 197 Run 290683, Event 7576439 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= -2, OverTh=false -Channel=LUMI_24 , ADC= 25, OverTh=false -Channel=LUMI_01 , ADC= -9, OverTh=false -Channel=LUMI_25 , ADC= -8, OverTh=false -Channel=LUMI_02 , ADC= -6, OverTh=false -Channel=LUMI_26 , ADC= 1, OverTh=false -Channel=LUMI_03 , ADC= -9, OverTh=false -Channel=LUMI_27 , ADC= -3, OverTh=false -Channel=LUMI_04 , ADC= 1, OverTh=false -Channel=LUMI_28 , ADC= 0, OverTh=false -Channel=LUMI_12 , ADC= -9, 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= -1, OverTh=false -Channel=LUMI_38 , ADC= -11, OverTh=false -Channel=LUMI_15 , ADC= 277, OverTh=true -Channel=LUMI_39 , ADC= 6, OverTh=false -Channel=LUMI_16 , ADC= 116, OverTh=true -Channel=LUMI_40 , ADC= 4, OverTh=false -Channel=LUMI_23 , ADC= 7, OverTh=false -Channel=LUMI_47 , ADC= 3, OverTh=false -Channel=PIN_01 , ADC= 0, OverTh=false -Channel=PIN_02 , ADC= 5, OverTh=false -Channel=PIN_03 , ADC= 2, OverTh=false -Channel=PIN_04 , ADC= -11, OverTh=false -Channel=PIN_08 , ADC= 2, OverTh=false -Channel=PIN_09 , ADC= -4, OverTh=false -Channel=PIN_06 , ADC= 0, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= 19, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= -4, OverTh=false -Channel=LUMI_31 , ADC= 4, OverTh=false -Channel=LUMI_08 , ADC= 9, OverTh=false -Channel=LUMI_32 , ADC= 9, OverTh=false -Channel=LUMI_09 , ADC= -1, OverTh=false -Channel=LUMI_33 , ADC= 3, OverTh=false -Channel=LUMI_10 , ADC= -7, OverTh=false -Channel=LUMI_34 , ADC= 5, OverTh=false -Channel=LUMI_17 , ADC= 4, OverTh=false -Channel=LUMI_41 , ADC= 16, OverTh=false -Channel=LUMI_18 , ADC= 0, OverTh=false -Channel=LUMI_42 , ADC= 4, OverTh=false -Channel=LUMI_19 , ADC= -5, OverTh=false -Channel=LUMI_43 , ADC= -7, 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= -4, OverTh=false -Channel=LUMI_46 , ADC= 80, OverTh=true -Channel=MON_01 , ADC= 0, OverTh=false -Channel=MON_02 , ADC= -1, OverTh=false -Channel=MON_03 , ADC= 1, OverTh=false -Channel=MON_04 , ADC= -2, OverTh=false -Channel=TIME_05_00, ADC= 245, OverTh=false -Channel=TIME_05_08, ADC= 362, OverTh=false -Channel=TIME_29_00, ADC= 243, OverTh=false -Channel=TIME_29_08, ADC= 416, OverTh=false -Channel=TIME_05_01, ADC= 248, OverTh=false -Channel=TIME_05_09, ADC= 362, OverTh=false -Channel=TIME_29_01, ADC= 247, OverTh=false -Channel=TIME_29_09, ADC= 415, OverTh=false -Channel=TIME_05_02, ADC= 252, OverTh=false -Channel=TIME_05_10, ADC= 355, OverTh=false -Channel=TIME_29_02, ADC= 252, OverTh=false -Channel=TIME_29_10, ADC= 411, OverTh=false -Channel=TIME_05_03, ADC= 248, OverTh=false -Channel=TIME_05_11, ADC= 342, OverTh=false -Channel=TIME_29_03, ADC= 252, OverTh=false -Channel=TIME_29_11, ADC= 404, OverTh=false -Channel=TIME_05_04, ADC= 213, OverTh=false -Channel=TIME_05_12, ADC= 290, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 331, OverTh=false -Channel=TIME_05_05, ADC= 249, OverTh=false -Channel=TIME_05_13, ADC= 252, OverTh=false -Channel=TIME_29_05, ADC= 255, OverTh=false -Channel=TIME_29_13, ADC= 248, OverTh=false -Channel=TIME_05_06, ADC= 268, OverTh=false -Channel=TIME_05_14, ADC= 239, OverTh=false -Channel=TIME_29_06, ADC= 258, OverTh=false -Channel=TIME_29_14, ADC= 219, OverTh=false -Channel=TIME_05_07, ADC= 264, OverTh=false -Channel=TIME_05_15, ADC= 244, OverTh=false -Channel=TIME_29_07, ADC= 256, OverTh=false -Channel=TIME_29_15, ADC= 230, OverTh=false -Channel=TIME_11_00, ADC= 253, 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= 258, OverTh=false -Channel=TIME_35_01, ADC= 260, OverTh=false -Channel=TIME_35_09, ADC= 258, OverTh=false -Channel=TIME_11_02, ADC= 257, OverTh=false -Channel=TIME_11_10, ADC= 260, OverTh=false -Channel=TIME_35_02, ADC= 259, OverTh=false -Channel=TIME_35_10, ADC= 259, OverTh=false -Channel=TIME_11_03, ADC= 255, OverTh=false -Channel=TIME_11_11, ADC= 259, 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= 259, OverTh=false -Channel=TIME_35_12, ADC= 254, OverTh=false -Channel=TIME_11_05, ADC= 256, OverTh=false -Channel=TIME_11_13, ADC= 253, OverTh=false -Channel=TIME_35_05, ADC= 256, OverTh=false -Channel=TIME_35_13, ADC= 258, OverTh=false -Channel=TIME_11_06, ADC= 256, OverTh=false -Channel=TIME_11_14, ADC= 253, OverTh=false -Channel=TIME_35_06, ADC= 255, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 258, OverTh=false -Channel=TIME_11_15, ADC= 253, OverTh=false -Channel=TIME_35_07, ADC= 255, OverTh=false -Channel=TIME_35_15, ADC= 258, OverTh=false PrintHeader_7bb0e124 INFO # 198 Run 290683, Event 7576776 -PlumeRawToDigits_89428f2d 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= 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= -2, OverTh=false -Channel=LUMI_04 , ADC= 0, 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= 2, 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= -5, 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= -4, OverTh=false -Channel=LUMI_47 , ADC= 0, OverTh=false -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -1, OverTh=false -Channel=PIN_04 , ADC= -4, OverTh=false -Channel=PIN_08 , ADC= -4, OverTh=false -Channel=PIN_09 , ADC= 5, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -2, OverTh=false -Channel=LUMI_06 , ADC= 0, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 10, OverTh=false -Channel=LUMI_31 , ADC= 6, 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= 4, OverTh=false -Channel=LUMI_34 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_19 , ADC= 2, OverTh=false -Channel=LUMI_43 , ADC= 2, OverTh=false -Channel=LUMI_20 , ADC= 5, 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= 3, OverTh=false -Channel=LUMI_46 , ADC= -1, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -1, OverTh=false -Channel=MON_04 , ADC= 1, OverTh=false -Channel=TIME_05_00, ADC= 256, 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= 259, 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= 254, OverTh=false -Channel=TIME_29_02, ADC= 256, OverTh=false -Channel=TIME_29_10, ADC= 259, OverTh=false -Channel=TIME_05_03, ADC= 256, OverTh=false -Channel=TIME_05_11, ADC= 260, OverTh=false -Channel=TIME_29_03, ADC= 258, 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= 255, 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= 259, 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= 257, 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= 254, OverTh=false -Channel=TIME_35_00, ADC= 255, OverTh=false -Channel=TIME_35_08, ADC= 254, 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= 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= 254, OverTh=false -Channel=TIME_11_03, ADC= 258, OverTh=false -Channel=TIME_11_11, ADC= 253, 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= 258, 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= 259, OverTh=false -Channel=TIME_35_05, ADC= 258, OverTh=false -Channel=TIME_35_13, ADC= 256, OverTh=false -Channel=TIME_11_06, ADC= 259, OverTh=false -Channel=TIME_11_14, ADC= 255, OverTh=false -Channel=TIME_35_06, ADC= 259, OverTh=false -Channel=TIME_35_14, ADC= 253, 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 # 199 Run 290683, Event 7577028 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 117, OverTh=true -Channel=LUMI_24 , ADC= 3, OverTh=false -Channel=LUMI_01 , ADC= 6, OverTh=false -Channel=LUMI_25 , ADC= 3, OverTh=false -Channel=LUMI_02 , ADC= -2, OverTh=false -Channel=LUMI_26 , ADC= 13, OverTh=false -Channel=LUMI_03 , ADC= 2, OverTh=false -Channel=LUMI_27 , ADC= 161, OverTh=true -Channel=LUMI_04 , ADC= 8, OverTh=false -Channel=LUMI_28 , ADC= -1, OverTh=false -Channel=LUMI_12 , ADC= 9, OverTh=false -Channel=LUMI_36 , ADC= 465, OverTh=true -Channel=LUMI_13 , ADC= 207, OverTh=true -Channel=LUMI_37 , ADC= 110, OverTh=true -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= 228, OverTh=true -Channel=LUMI_16 , ADC= -1, OverTh=false -Channel=LUMI_40 , ADC= -4, OverTh=false -Channel=LUMI_23 , ADC= 413, OverTh=true -Channel=LUMI_47 , ADC= 15, OverTh=false -Channel=PIN_01 , ADC= -1, OverTh=false -Channel=PIN_02 , ADC= 6, OverTh=false -Channel=PIN_03 , ADC= 0, OverTh=false -Channel=PIN_04 , ADC= -12, OverTh=false -Channel=PIN_08 , ADC= -5, OverTh=false -Channel=PIN_09 , ADC= 10, OverTh=false -Channel=PIN_06 , ADC= 6, OverTh=false -Channel=PIN_07 , ADC= 1, OverTh=false -Channel=LUMI_06 , ADC= 5, OverTh=false -Channel=LUMI_30 , ADC= 3, OverTh=false -Channel=LUMI_07 , ADC= 7, OverTh=false -Channel=LUMI_31 , ADC= 175, OverTh=true -Channel=LUMI_08 , ADC= 6, OverTh=false -Channel=LUMI_32 , ADC= 253, OverTh=true -Channel=LUMI_09 , ADC= -2, OverTh=false -Channel=LUMI_33 , ADC= 7, OverTh=false -Channel=LUMI_10 , ADC= 284, OverTh=true -Channel=LUMI_34 , ADC= 0, OverTh=false -Channel=LUMI_17 , ADC= 136, OverTh=true -Channel=LUMI_41 , ADC= 4, OverTh=false -Channel=LUMI_18 , ADC= 85, OverTh=true -Channel=LUMI_42 , ADC= 304, OverTh=true -Channel=LUMI_19 , ADC= -3, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 13, OverTh=false -Channel=LUMI_44 , ADC= 0, OverTh=false -Channel=LUMI_21 , ADC= -1, OverTh=false -Channel=LUMI_45 , ADC= 6, OverTh=false -Channel=LUMI_22 , ADC= 2, OverTh=false -Channel=LUMI_46 , ADC= 2, OverTh=false -Channel=MON_01 , ADC= 1, OverTh=false -Channel=MON_02 , ADC= -2, OverTh=false -Channel=MON_03 , ADC= -2, OverTh=false -Channel=MON_04 , ADC= 2, OverTh=false -Channel=TIME_05_00, ADC= 301, OverTh=false -Channel=TIME_05_08, ADC= 255, OverTh=false -Channel=TIME_29_00, ADC= 258, OverTh=false -Channel=TIME_29_08, ADC= 251, OverTh=false -Channel=TIME_05_01, ADC= 300, OverTh=false -Channel=TIME_05_09, ADC= 257, OverTh=false -Channel=TIME_29_01, ADC= 261, OverTh=false -Channel=TIME_29_09, ADC= 255, OverTh=false -Channel=TIME_05_02, ADC= 301, OverTh=false -Channel=TIME_05_10, ADC= 256, OverTh=false -Channel=TIME_29_02, ADC= 262, OverTh=false -Channel=TIME_29_10, ADC= 253, OverTh=false -Channel=TIME_05_03, ADC= 292, 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= 274, OverTh=false -Channel=TIME_05_12, ADC= 266, OverTh=false -Channel=TIME_29_04, ADC= 257, OverTh=false -Channel=TIME_29_12, ADC= 252, OverTh=false -Channel=TIME_05_05, ADC= 253, OverTh=false -Channel=TIME_05_13, ADC= 284, OverTh=false -Channel=TIME_29_05, ADC= 254, OverTh=false -Channel=TIME_29_13, ADC= 250, OverTh=false -Channel=TIME_05_06, ADC= 253, OverTh=false -Channel=TIME_05_14, ADC= 311, OverTh=false -Channel=TIME_29_06, ADC= 261, OverTh=false -Channel=TIME_29_14, ADC= 260, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 308, OverTh=false -Channel=TIME_29_07, ADC= 260, OverTh=false -Channel=TIME_29_15, ADC= 262, OverTh=false -Channel=TIME_11_00, ADC= 260, OverTh=false -Channel=TIME_11_08, ADC= 250, OverTh=false -Channel=TIME_35_00, ADC= 259, OverTh=false -Channel=TIME_35_08, ADC= 256, OverTh=false -Channel=TIME_11_01, ADC= 260, OverTh=false -Channel=TIME_11_09, ADC= 251, OverTh=false -Channel=TIME_35_01, ADC= 257, OverTh=false -Channel=TIME_35_09, ADC= 256, OverTh=false -Channel=TIME_11_02, ADC= 261, OverTh=false -Channel=TIME_11_10, ADC= 253, 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= 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= 258, 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= 258, OverTh=false -Channel=TIME_35_05, ADC= 260, OverTh=false -Channel=TIME_35_13, ADC= 259, OverTh=false -Channel=TIME_11_06, ADC= 272, OverTh=false -Channel=TIME_11_14, ADC= 260, OverTh=false -Channel=TIME_35_06, ADC= 258, OverTh=false -Channel=TIME_35_14, ADC= 262, OverTh=false -Channel=TIME_11_07, ADC= 274, OverTh=false -Channel=TIME_11_15, ADC= 258, OverTh=false -Channel=TIME_35_07, ADC= 259, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false PrintHeader_7bb0e124 INFO # 200 Run 290683, Event 7577151 -PlumeRawToDigits_89428f2d DEBUG Found ADCs: -Channel=LUMI_00 , ADC= 346, OverTh=true -Channel=LUMI_24 , ADC= 242, OverTh=true -Channel=LUMI_01 , ADC= 7, OverTh=false -Channel=LUMI_25 , ADC= -3, OverTh=false -Channel=LUMI_02 , ADC= 1, OverTh=false -Channel=LUMI_26 , ADC= 26, 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= 487, OverTh=true -Channel=LUMI_36 , ADC= 10, OverTh=false -Channel=LUMI_13 , ADC= 4, OverTh=false -Channel=LUMI_37 , ADC= 318, OverTh=true -Channel=LUMI_14 , ADC= 473, OverTh=true -Channel=LUMI_38 , ADC= -1, OverTh=false -Channel=LUMI_15 , ADC= 239, OverTh=true -Channel=LUMI_39 , ADC= 3, OverTh=false -Channel=LUMI_16 , ADC= 328, OverTh=true -Channel=LUMI_40 , ADC= 49, OverTh=false -Channel=LUMI_23 , ADC= 33, OverTh=false -Channel=LUMI_47 , ADC= 405, OverTh=true -Channel=PIN_01 , ADC= 1, OverTh=false -Channel=PIN_02 , ADC= -4, OverTh=false -Channel=PIN_03 , ADC= -5, OverTh=false -Channel=PIN_04 , ADC= -7, OverTh=false -Channel=PIN_08 , ADC= -2, OverTh=false -Channel=PIN_09 , ADC= -9, OverTh=false -Channel=PIN_06 , ADC= -5, OverTh=false -Channel=PIN_07 , ADC= -1, OverTh=false -Channel=LUMI_06 , ADC= -1, OverTh=false -Channel=LUMI_30 , ADC= 119, OverTh=true -Channel=LUMI_07 , ADC= 3, OverTh=false -Channel=LUMI_31 , ADC= 2, OverTh=false -Channel=LUMI_08 , ADC= 12, OverTh=false -Channel=LUMI_32 , ADC= -4, OverTh=false -Channel=LUMI_09 , ADC= 2, OverTh=false -Channel=LUMI_33 , ADC= -4, OverTh=false -Channel=LUMI_10 , ADC= 0, OverTh=false -Channel=LUMI_34 , ADC= 2, OverTh=false -Channel=LUMI_17 , ADC= 7, OverTh=false -Channel=LUMI_41 , ADC= -1, OverTh=false -Channel=LUMI_18 , ADC= 82, OverTh=true -Channel=LUMI_42 , ADC= 119, OverTh=true -Channel=LUMI_19 , ADC= -7, OverTh=false -Channel=LUMI_43 , ADC= -2, OverTh=false -Channel=LUMI_20 , ADC= 308, OverTh=true -Channel=LUMI_44 , ADC= 1, OverTh=false -Channel=LUMI_21 , ADC= 4, OverTh=false -Channel=LUMI_45 , ADC= 5, OverTh=false -Channel=LUMI_22 , ADC= -2, OverTh=false -Channel=LUMI_46 , ADC= -2, OverTh=false -Channel=MON_01 , ADC= 2, OverTh=false -Channel=MON_02 , ADC= 0, OverTh=false -Channel=MON_03 , ADC= 0, OverTh=false -Channel=MON_04 , ADC= 0, OverTh=false -Channel=TIME_05_00, ADC= 259, OverTh=false -Channel=TIME_05_08, ADC= 258, OverTh=false -Channel=TIME_29_00, ADC= 297, OverTh=false -Channel=TIME_29_08, ADC= 350, OverTh=false -Channel=TIME_05_01, ADC= 259, OverTh=false -Channel=TIME_05_09, ADC= 255, OverTh=false -Channel=TIME_29_01, ADC= 294, OverTh=false -Channel=TIME_29_09, ADC= 348, OverTh=false -Channel=TIME_05_02, ADC= 261, OverTh=false -Channel=TIME_05_10, ADC= 258, OverTh=false -Channel=TIME_29_02, ADC= 297, OverTh=false -Channel=TIME_29_10, ADC= 348, OverTh=false -Channel=TIME_05_03, ADC= 258, OverTh=false -Channel=TIME_05_11, ADC= 258, OverTh=false -Channel=TIME_29_03, ADC= 294, OverTh=false -Channel=TIME_29_11, ADC= 347, OverTh=false -Channel=TIME_05_04, ADC= 257, OverTh=false -Channel=TIME_05_12, ADC= 255, OverTh=false -Channel=TIME_29_04, ADC= 273, OverTh=false -Channel=TIME_29_12, ADC= 326, OverTh=false -Channel=TIME_05_05, ADC= 256, OverTh=false -Channel=TIME_05_13, ADC= 259, OverTh=false -Channel=TIME_29_05, ADC= 247, OverTh=false -Channel=TIME_29_13, ADC= 299, OverTh=false -Channel=TIME_05_06, ADC= 256, OverTh=false -Channel=TIME_05_14, ADC= 261, OverTh=false -Channel=TIME_29_06, ADC= 236, OverTh=false -Channel=TIME_29_14, ADC= 292, OverTh=false -Channel=TIME_05_07, ADC= 254, OverTh=false -Channel=TIME_05_15, ADC= 258, OverTh=false -Channel=TIME_29_07, ADC= 236, OverTh=false -Channel=TIME_29_15, ADC= 291, OverTh=false -Channel=TIME_11_00, ADC= 261, OverTh=false -Channel=TIME_11_08, ADC= 291, OverTh=false -Channel=TIME_35_00, ADC= 258, OverTh=false -Channel=TIME_35_08, ADC= 257, OverTh=false -Channel=TIME_11_01, ADC= 261, OverTh=false -Channel=TIME_11_09, ADC= 290, 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= 290, OverTh=false -Channel=TIME_35_02, ADC= 256, OverTh=false -Channel=TIME_35_10, ADC= 258, OverTh=false -Channel=TIME_11_03, ADC= 254, OverTh=false -Channel=TIME_11_11, ADC= 288, OverTh=false -Channel=TIME_35_03, ADC= 256, OverTh=false -Channel=TIME_35_11, ADC= 258, OverTh=false -Channel=TIME_11_04, ADC= 244, OverTh=false -Channel=TIME_11_12, ADC= 265, OverTh=false -Channel=TIME_35_04, ADC= 257, OverTh=false -Channel=TIME_35_12, ADC= 256, OverTh=false -Channel=TIME_11_05, ADC= 241, OverTh=false -Channel=TIME_11_13, ADC= 268, OverTh=false -Channel=TIME_35_05, ADC= 257, OverTh=false -Channel=TIME_35_13, ADC= 257, OverTh=false -Channel=TIME_11_06, ADC= 252, OverTh=false -Channel=TIME_11_14, ADC= 263, OverTh=false -Channel=TIME_35_06, ADC= 257, OverTh=false -Channel=TIME_35_14, ADC= 259, OverTh=false -Channel=TIME_11_07, ADC= 257, OverTh=false -Channel=TIME_11_15, ADC= 260, OverTh=false -Channel=TIME_35_07, ADC= 257, OverTh=false -Channel=TIME_35_15, ADC= 261, OverTh=false -PlumeDigitMonitor_9abf3184 INFO Booked 719 Histogram(s) : 1D=571 2D=23 3D=0 1DProf=125 2DProf=0 3DProf=0 -PlumeRawToDigits_89428f2d INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +PlumeDigitMonitor_b0f85c8c INFO Booked 604 Histogram(s) : 1D=471 2D=21 3D=0 1DProf=112 2DProf=0 3DProf=0 +PlumeLEDMonitor_34b7705b INFO Booked 121 Histogram(s) : 1D=121 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 +PlumeRawToDigits_e2724fbc INFO Booked 1 Histogram(s) : 1D=1 2D=0 3D=0 1DProf=0 2DProf=0 3DProf=0 ApplicationMgr INFO Application Manager Stopped successfully -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} +PlumeTuple_4a35a9a2 SUCCESS Booked 1 N-Tuples and 0 Event Tag Collections +PlumeTuple_4a35a9a2 SUCCESS List of booked N-Tuples in directory "FILE1/PlumeTuple_4a35a9a2" +PlumeTuple_4a35a9a2 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_9abf3184 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| - PlumeTuple/PlumeTuple_d36bf254 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeDigitMonitor/PlumeDigitMonitor_b0f85c8c #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeTuple/PlumeTuple_4a35a9a2 #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| + PlumeLEDMonitor/PlumeLEDMonitor_34b7705b #=200 Sum=200 Eff=|( 100.0000 +- 0.00000 )%| HLTControlFlowMgr INFO Histograms converted successfully according to request. NTupleSvc INFO NTuples saved successfully ApplicationMgr INFO Application Manager Finalized successfully @@ -24445,294 +243,194 @@ MDFIOAlg INFO Number of counters : 2 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "#banks in raw event" | 200 | 126270 | 631.35 | 0.47697 | 631.00 | 632.00 | | "event size statistics (KBytes)" | 306 | 9508 | 31.072 | 6.6638 | 23.000 | 68.000 | -PlumeDigitMonitor_9abf3184 INFO Number of counters : 1 +PlumeDigitMonitor_b0f85c8c INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "Number of ADC over threshold for LUMI" | 200 | 792 | 3.9600 | 4.2660 | 0.0000 | 22.000 | PrintHeader_7bb0e124 INFO Number of counters : 1 | Counter | # | sum | mean/eff^* | rms/err^* | min | max | | "EventCount" | 200 | -PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDigitMonitor_9abf3184" : 571 +PlumeDigitMonitor_b0f85c8c INFO 1D histograms in directory "PlumeDigitMonitor_b0f85c8c" : 471 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | adc_LUMI_00_Beam1 | "ADC for LUMI_00/Beam1" | 15 | 1.1667 | 2.5734 | -0.45032 | -0.64504 | | adc_LUMI_00_Beam2 | "ADC for LUMI_00/Beam2" | 11 | -0.13636 | 2.8690 | 1.4809 | 1.8468 | | adc_LUMI_00_BeamCrossing | "ADC for LUMI_00/BeamCrossing" | 170 | 56.959 | 141.73 | 3.6412 | 15.412 | | adc_LUMI_00_NoBeam | "ADC for LUMI_00/NoBeam" | 3 | 1.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_00_NoBeam_calib_signals | "ADC for LUMI_00/NoBeam/calib signals" | 1 | 694.5 | 0.0000 | 0 | 0 | | adc_LUMI_01_Beam1 | "ADC for LUMI_01/Beam1" | 15 | 1.8333 | 4.2999 | -0.12318 | 1.1403 | | adc_LUMI_01_Beam2 | "ADC for LUMI_01/Beam2" | 11 | -1.5 | 2.4495 | -0.33402 | -1.0455 | | adc_LUMI_01_BeamCrossing | "ADC for LUMI_01/BeamCrossing" | 170 | 37.771 | 99.381 | 3.0913 | 9.0632 | | adc_LUMI_01_NoBeam | "ADC for LUMI_01/NoBeam" | 3 | 1.1667 | 2.4944 | 0.3818 | -1.5 | - | adc_LUMI_01_NoBeam_calib_signals | "ADC for LUMI_01/NoBeam/calib signals" | 1 | 628.5 | 0.0000 | 0 | 0 | | adc_LUMI_02_Beam1 | "ADC for LUMI_02/Beam1" | 15 | 1.8333 | 4.9351 | 1.6701 | 1.4528 | | adc_LUMI_02_Beam2 | "ADC for LUMI_02/Beam2" | 11 | -0.86364 | 1.8227 | 0.36625 | -1.0538 | | adc_LUMI_02_BeamCrossing | "ADC for LUMI_02/BeamCrossing" | 170 | 45.859 | 132.90 | 3.5899 | 13.23 | | adc_LUMI_02_NoBeam | "ADC for LUMI_02/NoBeam" | 3 | -0.83333 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_02_NoBeam_calib_signals | "ADC for LUMI_02/NoBeam/calib signals" | 1 | 760.5 | 0.0000 | 0 | 0 | | adc_LUMI_03_Beam1 | "ADC for LUMI_03/Beam1" | 15 | 0.9 | 2.1541 | -0.043222 | 0.16825 | | adc_LUMI_03_Beam2 | "ADC for LUMI_03/Beam2" | 11 | -0.68182 | 2.4427 | -0.57463 | -0.86042 | | adc_LUMI_03_BeamCrossing | "ADC for LUMI_03/BeamCrossing" | 170 | 14.694 | 43.678 | 4.5186 | 22.414 | | adc_LUMI_03_NoBeam | "ADC for LUMI_03/NoBeam" | 3 | -1.1667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_03_NoBeam_calib_signals | "ADC for LUMI_03/NoBeam/calib signals" | 1 | 709.5 | 0.0000 | 0 | 0 | | adc_LUMI_04_Beam1 | "ADC for LUMI_04/Beam1" | 15 | 1.3 | 4.3848 | 1.8237 | 2.787 | | adc_LUMI_04_Beam2 | "ADC for LUMI_04/Beam2" | 11 | 8.0455 | 26.424 | 2.8326 | 6.0553 | | adc_LUMI_04_BeamCrossing | "ADC for LUMI_04/BeamCrossing" | 170 | 13.365 | 51.878 | 6.3136 | 43.95 | | adc_LUMI_04_NoBeam | "ADC for LUMI_04/NoBeam" | 3 | 2.8333 | 2.6247 | 0.6309 | -1.5 | - | adc_LUMI_04_NoBeam_calib_signals | "ADC for LUMI_04/NoBeam/calib signals" | 1 | 701.5 | 0.0000 | 0 | 0 | | adc_LUMI_06_Beam1 | "ADC for LUMI_06/Beam1" | 15 | 2.1667 | 2.4676 | 1.4771 | 2.7106 | | adc_LUMI_06_Beam2 | "ADC for LUMI_06/Beam2" | 11 | 37.318 | 110.22 | 2.835 | 6.0622 | | adc_LUMI_06_BeamCrossing | "ADC for LUMI_06/BeamCrossing" | 170 | 58.2 | 133.25 | 2.6129 | 6.4811 | | adc_LUMI_06_NoBeam | "ADC for LUMI_06/NoBeam" | 3 | 4.1667 | 3.6818 | -0.13506 | -1.5 | - | adc_LUMI_06_NoBeam_calib_signals | "ADC for LUMI_06/NoBeam/calib signals" | 1 | 676.5 | 0.0000 | 0 | 0 | | adc_LUMI_07_Beam1 | "ADC for LUMI_07/Beam1" | 15 | 3.1667 | 3.8413 | 0.60796 | -0.64217 | | adc_LUMI_07_Beam2 | "ADC for LUMI_07/Beam2" | 11 | 5.5909 | 15.156 | 2.6365 | 5.3691 | | adc_LUMI_07_BeamCrossing | "ADC for LUMI_07/BeamCrossing" | 170 | 35.282 | 90.157 | 3.7114 | 15.947 | | adc_LUMI_07_NoBeam | "ADC for LUMI_07/NoBeam" | 3 | 0.16667 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_07_NoBeam_calib_signals | "ADC for LUMI_07/NoBeam/calib signals" | 1 | 781.5 | 0.0000 | 0 | 0 | | adc_LUMI_08_Beam1 | "ADC for LUMI_08/Beam1" | 15 | 0.43333 | 2.0483 | 0.18301 | -0.47155 | | adc_LUMI_08_Beam2 | "ADC for LUMI_08/Beam2" | 11 | -0.77273 | 1.5428 | 0.31304 | -0.030527 | | adc_LUMI_08_BeamCrossing | "ADC for LUMI_08/BeamCrossing" | 170 | 41.276 | 112.92 | 3.6225 | 14.908 | | adc_LUMI_08_NoBeam | "ADC for LUMI_08/NoBeam" | 3 | 0.83333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_08_NoBeam_calib_signals | "ADC for LUMI_08/NoBeam/calib signals" | 1 | 711.5 | 0.0000 | 0 | 0 | | adc_LUMI_09_Beam1 | "ADC for LUMI_09/Beam1" | 15 | 0.43333 | 2.0806 | -0.35536 | 0.33868 | | adc_LUMI_09_Beam2 | "ADC for LUMI_09/Beam2" | 11 | 34.682 | 112.87 | 2.843 | 6.0896 | | adc_LUMI_09_BeamCrossing | "ADC for LUMI_09/BeamCrossing" | 170 | 37.4 | 105.98 | 3.4152 | 11.443 | | adc_LUMI_09_NoBeam | "ADC for LUMI_09/NoBeam" | 3 | 2.1667 | 0.94281 | 0.70711 | -1.5 | - | adc_LUMI_09_NoBeam_calib_signals | "ADC for LUMI_09/NoBeam/calib signals" | 1 | 756.5 | 0.0000 | 0 | 0 | | adc_LUMI_10_Beam1 | "ADC for LUMI_10/Beam1" | 15 | 3.3 | 2.4819 | 0.51698 | -0.74827 | | adc_LUMI_10_Beam2 | "ADC for LUMI_10/Beam2" | 11 | -0.22727 | 2.3390 | 0.26666 | -0.17812 | | adc_LUMI_10_BeamCrossing | "ADC for LUMI_10/BeamCrossing" | 170 | 18.765 | 69.795 | 4.7644 | 23.309 | | adc_LUMI_10_NoBeam | "ADC for LUMI_10/NoBeam" | 3 | 0.83333 | 3.3993 | 0.528 | -1.5 | - | adc_LUMI_10_NoBeam_calib_signals | "ADC for LUMI_10/NoBeam/calib signals" | 1 | 853.5 | 0.0000 | 0 | 0 | | adc_LUMI_12_Beam1 | "ADC for LUMI_12/Beam1" | 15 | 3.5 | 4.5314 | 1.1478 | 0.84171 | | adc_LUMI_12_Beam2 | "ADC for LUMI_12/Beam2" | 11 | 10.773 | 35.448 | 2.8119 | 5.9846 | | adc_LUMI_12_BeamCrossing | "ADC for LUMI_12/BeamCrossing" | 170 | 51.541 | 144.16 | 4.1625 | 20.921 | | adc_LUMI_12_NoBeam | "ADC for LUMI_12/NoBeam" | 3 | 0.83333 | 2.0548 | 0.23906 | -1.5 | - | adc_LUMI_12_NoBeam_calib_signals | "ADC for LUMI_12/NoBeam/calib signals" | 1 | 716.5 | 0.0000 | 0 | 0 | | adc_LUMI_13_Beam1 | "ADC for LUMI_13/Beam1" | 15 | 1.7 | 2.4000 | 0.053241 | -0.76273 | | adc_LUMI_13_Beam2 | "ADC for LUMI_13/Beam2" | 11 | -1.1364 | 2.3845 | 0.129 | -1.3517 | | adc_LUMI_13_BeamCrossing | "ADC for LUMI_13/BeamCrossing" | 170 | 42.476 | 125.36 | 4.2171 | 19.794 | | adc_LUMI_13_NoBeam | "ADC for LUMI_13/NoBeam" | 3 | 1.8333 | 2.6247 | 0.6309 | -1.5 | - | adc_LUMI_13_NoBeam_calib_signals | "ADC for LUMI_13/NoBeam/calib signals" | 1 | 766.5 | 0.0000 | 0 | 0 | | adc_LUMI_14_Beam1 | "ADC for LUMI_14/Beam1" | 15 | 2.1667 | 1.2472 | -0.17563 | -1.6102 | | adc_LUMI_14_Beam2 | "ADC for LUMI_14/Beam2" | 11 | -1.0455 | 1.6160 | 0.27558 | -1.1385 | | adc_LUMI_14_BeamCrossing | "ADC for LUMI_14/BeamCrossing" | 170 | 33.682 | 94.370 | 3.1071 | 8.8763 | | adc_LUMI_14_NoBeam | "ADC for LUMI_14/NoBeam" | 3 | 2.1667 | 1.2472 | -0.3818 | -1.5 | - | adc_LUMI_14_NoBeam_calib_signals | "ADC for LUMI_14/NoBeam/calib signals" | 1 | 661.5 | 0.0000 | 0 | 0 | | adc_LUMI_15_Beam1 | "ADC for LUMI_15/Beam1" | 15 | -0.43333 | 2.5682 | -0.23926 | -1.3011 | | adc_LUMI_15_Beam2 | "ADC for LUMI_15/Beam2" | 11 | 0.68182 | 2.7574 | 0.35693 | -1.1955 | | adc_LUMI_15_BeamCrossing | "ADC for LUMI_15/BeamCrossing" | 170 | 22.941 | 72.562 | 3.3934 | 10.974 | | adc_LUMI_15_NoBeam | "ADC for LUMI_15/NoBeam" | 3 | -0.5 | 1.4142 | -0.70711 | -1.5 | - | adc_LUMI_15_NoBeam_calib_signals | "ADC for LUMI_15/NoBeam/calib signals" | 1 | 843.5 | 0.0000 | 0 | 0 | | adc_LUMI_16_Beam1 | "ADC for LUMI_16/Beam1" | 15 | 2.5 | 4.9126 | 1.7781 | 3.1195 | | adc_LUMI_16_Beam2 | "ADC for LUMI_16/Beam2" | 11 | 1.2273 | 1.9113 | -0.46747 | -0.73918 | | adc_LUMI_16_BeamCrossing | "ADC for LUMI_16/BeamCrossing" | 170 | 19.806 | 63.059 | 4.4802 | 21.661 | | adc_LUMI_16_NoBeam | "ADC for LUMI_16/NoBeam" | 3 | 0.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_16_NoBeam_calib_signals | "ADC for LUMI_16/NoBeam/calib signals" | 1 | 637.5 | 0.0000 | 0 | 0 | | adc_LUMI_17_Beam1 | "ADC for LUMI_17/Beam1" | 15 | 1.9 | 2.8937 | 0.85383 | 0.29995 | | adc_LUMI_17_Beam2 | "ADC for LUMI_17/Beam2" | 11 | -1.1364 | 1.5535 | -0.90907 | -0.17025 | | adc_LUMI_17_BeamCrossing | "ADC for LUMI_17/BeamCrossing" | 170 | 35.741 | 102.21 | 4.1765 | 19.303 | | adc_LUMI_17_NoBeam | "ADC for LUMI_17/NoBeam" | 3 | 1.5 | 1.4142 | 0.70711 | -1.5 | - | adc_LUMI_17_NoBeam_calib_signals | "ADC for LUMI_17/NoBeam/calib signals" | 1 | 702.5 | 0.0000 | 0 | 0 | | adc_LUMI_18_Beam1 | "ADC for LUMI_18/Beam1" | 15 | 2.7 | 3.7452 | 0.62772 | 0.16913 | | adc_LUMI_18_Beam2 | "ADC for LUMI_18/Beam2" | 11 | 1.4091 | 3.0587 | -0.86708 | -0.0099795 | | adc_LUMI_18_BeamCrossing | "ADC for LUMI_18/BeamCrossing" | 170 | 47.482 | 119.32 | 3.4032 | 12.455 | | adc_LUMI_18_NoBeam | "ADC for LUMI_18/NoBeam" | 3 | 0.83333 | 2.0548 | 0.23906 | -1.5 | - | adc_LUMI_18_NoBeam_calib_signals | "ADC for LUMI_18/NoBeam/calib signals" | 1 | 804.5 | 0.0000 | 0 | 0 | | adc_LUMI_19_Beam1 | "ADC for LUMI_19/Beam1" | 15 | 3.9 | 4.1601 | 0.59402 | -0.11673 | | adc_LUMI_19_Beam2 | "ADC for LUMI_19/Beam2" | 11 | 0.22727 | 3.3054 | 0.0895 | -1.4935 | | adc_LUMI_19_BeamCrossing | "ADC for LUMI_19/BeamCrossing" | 170 | 24.224 | 68.889 | 3.4356 | 11.147 | | adc_LUMI_19_NoBeam | "ADC for LUMI_19/NoBeam" | 3 | 5.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_19_NoBeam_calib_signals | "ADC for LUMI_19/NoBeam/calib signals" | 1 | 726.5 | 0.0000 | 0 | 0 | | adc_LUMI_20_Beam1 | "ADC for LUMI_20/Beam1" | 15 | 2.7 | 3.3705 | 0.65231 | -0.3786 | | adc_LUMI_20_Beam2 | "ADC for LUMI_20/Beam2" | 11 | 0.40909 | 1.5048 | 0.63499 | -0.51055 | | adc_LUMI_20_BeamCrossing | "ADC for LUMI_20/BeamCrossing" | 170 | 37.512 | 108.23 | 4.3595 | 22.619 | | adc_LUMI_20_NoBeam | "ADC for LUMI_20/NoBeam" | 3 | 2.1667 | 2.0548 | -0.23906 | -1.5 | - | adc_LUMI_20_NoBeam_calib_signals | "ADC for LUMI_20/NoBeam/calib signals" | 1 | 643.5 | 0.0000 | 0 | 0 | | adc_LUMI_21_Beam1 | "ADC for LUMI_21/Beam1" | 15 | 1.9 | 2.9620 | 1.0239 | 0.77689 | | adc_LUMI_21_Beam2 | "ADC for LUMI_21/Beam2" | 11 | -0.68182 | 1.9455 | -0.11386 | -0.6204 | | adc_LUMI_21_BeamCrossing | "ADC for LUMI_21/BeamCrossing" | 170 | 23.882 | 84.644 | 4.5703 | 23.081 | | adc_LUMI_21_NoBeam | "ADC for LUMI_21/NoBeam" | 3 | 0.5 | 0.81650 | 0 | -1.5 | - | adc_LUMI_21_NoBeam_calib_signals | "ADC for LUMI_21/NoBeam/calib signals" | 1 | 717.5 | 0.0000 | 0 | 0 | | adc_LUMI_22_Beam1 | "ADC for LUMI_22/Beam1" | 15 | -0.43333 | 2.3514 | 0.073889 | -1.0788 | | adc_LUMI_22_Beam2 | "ADC for LUMI_22/Beam2" | 11 | 2.1364 | 2.3845 | 0.75606 | -0.13692 | | adc_LUMI_22_BeamCrossing | "ADC for LUMI_22/BeamCrossing" | 170 | 22.047 | 82.936 | 4.2178 | 19.319 | | adc_LUMI_22_NoBeam | "ADC for LUMI_22/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_22_NoBeam_calib_signals | "ADC for LUMI_22/NoBeam/calib signals" | 1 | 820.5 | 0.0000 | 0 | 0 | | adc_LUMI_23_Beam1 | "ADC for LUMI_23/Beam1" | 15 | 1.0333 | 2.4998 | -0.0010622 | -0.85337 | | adc_LUMI_23_Beam2 | "ADC for LUMI_23/Beam2" | 11 | -1.6818 | 2.1666 | -0.73089 | -0.30075 | | adc_LUMI_23_BeamCrossing | "ADC for LUMI_23/BeamCrossing" | 170 | 41.153 | 115.72 | 3.9306 | 18.043 | | adc_LUMI_23_NoBeam | "ADC for LUMI_23/NoBeam" | 3 | -0.16667 | 1.6997 | -0.528 | -1.5 | - | adc_LUMI_23_NoBeam_calib_signals | "ADC for LUMI_23/NoBeam/calib signals" | 1 | 743.5 | 0.0000 | 0 | 0 | | adc_LUMI_24_Beam1 | "ADC for LUMI_24/Beam1" | 15 | 2.3 | 2.8798 | 0.016078 | -0.8911 | | adc_LUMI_24_Beam2 | "ADC for LUMI_24/Beam2" | 11 | 1.0455 | 3.7017 | -0.015109 | 0.16575 | | adc_LUMI_24_BeamCrossing | "ADC for LUMI_24/BeamCrossing" | 170 | 46.712 | 118.02 | 3.2445 | 10.606 | | adc_LUMI_24_NoBeam | "ADC for LUMI_24/NoBeam" | 3 | 2.1667 | 1.6997 | 0.528 | -1.5 | - | adc_LUMI_24_NoBeam_calib_signals | "ADC for LUMI_24/NoBeam/calib signals" | 1 | 655.5 | 0.0000 | 0 | 0 | | adc_LUMI_25_Beam1 | "ADC for LUMI_25/Beam1" | 15 | 1.0333 | 3.7214 | 1.0366 | 2.4541 | | adc_LUMI_25_Beam2 | "ADC for LUMI_25/Beam2" | 11 | 9.1364 | 24.945 | 2.7795 | 5.87 | | adc_LUMI_25_BeamCrossing | "ADC for LUMI_25/BeamCrossing" | 170 | 26.935 | 95.324 | 5.1029 | 30.275 | | adc_LUMI_25_NoBeam | "ADC for LUMI_25/NoBeam" | 3 | 1.8333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_25_NoBeam_calib_signals | "ADC for LUMI_25/NoBeam/calib signals" | 1 | 703.5 | 0.0000 | 0 | 0 | | adc_LUMI_26_Beam1 | "ADC for LUMI_26/Beam1" | 15 | 2.7 | 4.0365 | 2.4939 | 6.2801 | | adc_LUMI_26_Beam2 | "ADC for LUMI_26/Beam2" | 11 | 1.7727 | 1.5428 | -0.015959 | -1.0109 | | adc_LUMI_26_BeamCrossing | "ADC for LUMI_26/BeamCrossing" | 170 | 25.588 | 72.308 | 4.1331 | 19.767 | | adc_LUMI_26_NoBeam | "ADC for LUMI_26/NoBeam" | 3 | 1.5 | 0.0000 | 0 | 0 | - | adc_LUMI_26_NoBeam_calib_signals | "ADC for LUMI_26/NoBeam/calib signals" | 1 | 623.5 | 0.0000 | 0 | 0 | | adc_LUMI_27_Beam1 | "ADC for LUMI_27/Beam1" | 15 | 1.6333 | 2.6043 | -0.46323 | -0.82515 | | adc_LUMI_27_Beam2 | "ADC for LUMI_27/Beam2" | 11 | -0.22727 | 3.0179 | 0.41282 | -1.1411 | | adc_LUMI_27_BeamCrossing | "ADC for LUMI_27/BeamCrossing" | 170 | 17.129 | 67.633 | 4.8976 | 24.599 | | adc_LUMI_27_NoBeam | "ADC for LUMI_27/NoBeam" | 3 | 0.83333 | 0.94281 | -0.70711 | -1.5 | - | adc_LUMI_27_NoBeam_calib_signals | "ADC for LUMI_27/NoBeam/calib signals" | 1 | 830.5 | 0.0000 | 0 | 0 | | adc_LUMI_28_Beam1 | "ADC for LUMI_28/Beam1" | 15 | 1.4333 | 2.1124 | 1.4032 | 2.0159 | | adc_LUMI_28_Beam2 | "ADC for LUMI_28/Beam2" | 11 | 1.1364 | 2.1856 | -1.2552 | 1.4241 | | adc_LUMI_28_BeamCrossing | "ADC for LUMI_28/BeamCrossing" | 170 | 6.5824 | 30.470 | 9.0592 | 92.197 | | adc_LUMI_28_NoBeam | "ADC for LUMI_28/NoBeam" | 3 | -0.16667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_28_NoBeam_calib_signals | "ADC for LUMI_28/NoBeam/calib signals" | 1 | 757.5 | 0.0000 | 0 | 0 | | adc_LUMI_30_Beam1 | "ADC for LUMI_30/Beam1" | 15 | 1.6333 | 4.2405 | 0.14869 | 0.13345 | | adc_LUMI_30_Beam2 | "ADC for LUMI_30/Beam2" | 11 | 1.2273 | 4.2446 | 0.68874 | -0.19748 | | adc_LUMI_30_BeamCrossing | "ADC for LUMI_30/BeamCrossing" | 170 | 36.341 | 104.20 | 3.9186 | 17.292 | | adc_LUMI_30_NoBeam | "ADC for LUMI_30/NoBeam" | 3 | 0.83333 | 1.8856 | 0.70711 | -1.5 | - | adc_LUMI_30_NoBeam_calib_signals | "ADC for LUMI_30/NoBeam/calib signals" | 1 | 694.5 | 0.0000 | 0 | 0 | | adc_LUMI_31_Beam1 | "ADC for LUMI_31/Beam1" | 15 | 3.8333 | 7.6999 | -0.16515 | 1.6463 | | adc_LUMI_31_Beam2 | "ADC for LUMI_31/Beam2" | 11 | -0.31818 | 1.9917 | -0.87293 | -0.18948 | | adc_LUMI_31_BeamCrossing | "ADC for LUMI_31/BeamCrossing" | 170 | 29.806 | 88.570 | 3.5815 | 12.339 | | adc_LUMI_31_NoBeam | "ADC for LUMI_31/NoBeam" | 3 | 3.1667 | 2.3570 | 0.70711 | -1.5 | - | adc_LUMI_31_NoBeam_calib_signals | "ADC for LUMI_31/NoBeam/calib signals" | 1 | 784.5 | 0.0000 | 0 | 0 | | adc_LUMI_32_Beam1 | "ADC for LUMI_32/Beam1" | 15 | 0.23333 | 1.9137 | 0.72514 | -0.048391 | | adc_LUMI_32_Beam2 | "ADC for LUMI_32/Beam2" | 11 | 0.95455 | 2.0165 | 0.76477 | -0.10956 | | adc_LUMI_32_BeamCrossing | "ADC for LUMI_32/BeamCrossing" | 170 | 16.706 | 89.402 | 9.0461 | 91.897 | | adc_LUMI_32_NoBeam | "ADC for LUMI_32/NoBeam" | 3 | 1.8333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_32_NoBeam_calib_signals | "ADC for LUMI_32/NoBeam/calib signals" | 1 | 692.5 | 0.0000 | 0 | 0 | | adc_LUMI_33_Beam1 | "ADC for LUMI_33/Beam1" | 15 | 0.83333 | 2.4676 | 0.20016 | -0.84978 | | adc_LUMI_33_Beam2 | "ADC for LUMI_33/Beam2" | 11 | 1.3182 | 2.6222 | -0.95131 | -0.05474 | | adc_LUMI_33_BeamCrossing | "ADC for LUMI_33/BeamCrossing" | 170 | 12.682 | 47.349 | 5.3071 | 31.241 | | adc_LUMI_33_NoBeam | "ADC for LUMI_33/NoBeam" | 3 | -0.83333 | 1.2472 | -0.3818 | -1.5 | - | adc_LUMI_33_NoBeam_calib_signals | "ADC for LUMI_33/NoBeam/calib signals" | 1 | 794.5 | 0.0000 | 0 | 0 | | adc_LUMI_34_Beam1 | "ADC for LUMI_34/Beam1" | 15 | 1.8333 | 2.4404 | 0.078488 | -0.70606 | | adc_LUMI_34_Beam2 | "ADC for LUMI_34/Beam2" | 11 | 27.227 | 84.861 | 2.8428 | 6.0891 | | adc_LUMI_34_BeamCrossing | "ADC for LUMI_34/BeamCrossing" | 170 | 19.959 | 71.042 | 3.999 | 14.826 | | adc_LUMI_34_NoBeam | "ADC for LUMI_34/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_34_NoBeam_calib_signals | "ADC for LUMI_34/NoBeam/calib signals" | 1 | 715.5 | 0.0000 | 0 | 0 | | adc_LUMI_36_Beam1 | "ADC for LUMI_36/Beam1" | 15 | 1.3 | 2.3721 | -0.51068 | -0.73647 | | adc_LUMI_36_Beam2 | "ADC for LUMI_36/Beam2" | 11 | -0.40909 | 2.0651 | -0.12183 | -1.1956 | | adc_LUMI_36_BeamCrossing | "ADC for LUMI_36/BeamCrossing" | 170 | 27.241 | 94.976 | 5.447 | 33.082 | | adc_LUMI_36_NoBeam | "ADC for LUMI_36/NoBeam" | 3 | 0.16667 | 0.94281 | 0.70711 | -1.5 | - | adc_LUMI_36_NoBeam_calib_signals | "ADC for LUMI_36/NoBeam/calib signals" | 1 | 732.5 | 0.0000 | 0 | 0 | | adc_LUMI_37_Beam1 | "ADC for LUMI_37/Beam1" | 15 | 1.3667 | 2.6043 | 0.48588 | -0.8379 | | adc_LUMI_37_Beam2 | "ADC for LUMI_37/Beam2" | 11 | -1.2273 | 2.2194 | -0.44535 | -0.50756 | | adc_LUMI_37_BeamCrossing | "ADC for LUMI_37/BeamCrossing" | 170 | 27.088 | 89.324 | 4.0801 | 17.34 | | adc_LUMI_37_NoBeam | "ADC for LUMI_37/NoBeam" | 3 | 1.5 | 3.7417 | 0.3818 | -1.5 | - | adc_LUMI_37_NoBeam_calib_signals | "ADC for LUMI_37/NoBeam/calib signals" | 1 | 818.5 | 0.0000 | 0 | 0 | | adc_LUMI_38_Beam1 | "ADC for LUMI_38/Beam1" | 15 | 1.1 | 2.2450 | 1.0705 | -0.019274 | | adc_LUMI_38_Beam2 | "ADC for LUMI_38/Beam2" | 11 | 1.0455 | 2.8401 | -0.083237 | -1.2529 | | adc_LUMI_38_BeamCrossing | "ADC for LUMI_38/BeamCrossing" | 170 | 21.953 | 86.052 | 5.6367 | 37.44 | | adc_LUMI_38_NoBeam | "ADC for LUMI_38/NoBeam" | 3 | 0.83333 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_38_NoBeam_calib_signals | "ADC for LUMI_38/NoBeam/calib signals" | 1 | 711.5 | 0.0000 | 0 | 0 | | adc_LUMI_39_Beam1 | "ADC for LUMI_39/Beam1" | 15 | 1.1667 | 1.8135 | 1.3736 | 2.4839 | | adc_LUMI_39_Beam2 | "ADC for LUMI_39/Beam2" | 11 | 1.1364 | 2.9317 | 0.25135 | 0.38427 | | adc_LUMI_39_BeamCrossing | "ADC for LUMI_39/BeamCrossing" | 170 | 14.824 | 56.937 | 4.5722 | 21.025 | | adc_LUMI_39_NoBeam | "ADC for LUMI_39/NoBeam" | 3 | -0.16667 | 0.47140 | 0.70711 | -1.5 | - | adc_LUMI_39_NoBeam_calib_signals | "ADC for LUMI_39/NoBeam/calib signals" | 1 | 805.5 | 0.0000 | 0 | 0 | | adc_LUMI_40_Beam1 | "ADC for LUMI_40/Beam1" | 15 | 0.7 | 2.5612 | -0.056184 | -0.4304 | | adc_LUMI_40_Beam2 | "ADC for LUMI_40/Beam2" | 11 | -0.31818 | 1.4025 | -0.72065 | 0.0453 | | adc_LUMI_40_BeamCrossing | "ADC for LUMI_40/BeamCrossing" | 170 | 10.229 | 52.728 | 6.8763 | 48.098 | | adc_LUMI_40_NoBeam | "ADC for LUMI_40/NoBeam" | 3 | 1.1667 | 3.0912 | 0.65201 | -1.5 | - | adc_LUMI_40_NoBeam_calib_signals | "ADC for LUMI_40/NoBeam/calib signals" | 1 | 798.5 | 0.0000 | 0 | 0 | | adc_LUMI_41_Beam1 | "ADC for LUMI_41/Beam1" | 15 | 1.2333 | 7.5230 | -2.4543 | 6.3856 | | adc_LUMI_41_Beam2 | "ADC for LUMI_41/Beam2" | 11 | 0.59091 | 2.3142 | -0.066564 | -0.79581 | | adc_LUMI_41_BeamCrossing | "ADC for LUMI_41/BeamCrossing" | 170 | 40.153 | 106.25 | 3.2104 | 9.4665 | | adc_LUMI_41_NoBeam | "ADC for LUMI_41/NoBeam" | 3 | 1.1667 | 2.4944 | 0.3818 | -1.5 | - | adc_LUMI_41_NoBeam_calib_signals | "ADC for LUMI_41/NoBeam/calib signals" | 1 | 716.5 | 0.0000 | 0 | 0 | | adc_LUMI_42_Beam1 | "ADC for LUMI_42/Beam1" | 15 | 3.3 | 3.9362 | 0.63466 | 0.21765 | | adc_LUMI_42_Beam2 | "ADC for LUMI_42/Beam2" | 11 | 2.3182 | 2.9793 | 1.1459 | 0.45829 | | adc_LUMI_42_BeamCrossing | "ADC for LUMI_42/BeamCrossing" | 170 | 41.1 | 103.20 | 3.1221 | 9.8541 | | adc_LUMI_42_NoBeam | "ADC for LUMI_42/NoBeam" | 3 | 4.5 | 4.2426 | 0.70711 | -1.5 | - | adc_LUMI_42_NoBeam_calib_signals | "ADC for LUMI_42/NoBeam/calib signals" | 1 | 788.5 | 0.0000 | 0 | 0 | | adc_LUMI_43_Beam1 | "ADC for LUMI_43/Beam1" | 15 | 3.7667 | 4.4939 | 1.3981 | 1.7906 | | adc_LUMI_43_Beam2 | "ADC for LUMI_43/Beam2" | 11 | 2.4091 | 4.8515 | 0.73849 | 0.16565 | | adc_LUMI_43_BeamCrossing | "ADC for LUMI_43/BeamCrossing" | 170 | 28.041 | 81.494 | 4.2734 | 20.814 | | adc_LUMI_43_NoBeam | "ADC for LUMI_43/NoBeam" | 3 | 1.8333 | 3.2998 | -0.2948 | -1.5 | - | adc_LUMI_43_NoBeam_calib_signals | "ADC for LUMI_43/NoBeam/calib signals" | 1 | 763.5 | 0.0000 | 0 | 0 | | adc_LUMI_44_Beam1 | "ADC for LUMI_44/Beam1" | 15 | -0.033333 | 1.4079 | 0.5697 | 0.61259 | | adc_LUMI_44_Beam2 | "ADC for LUMI_44/Beam2" | 11 | -1.0455 | 1.6713 | 0.5465 | -0.44377 | | adc_LUMI_44_BeamCrossing | "ADC for LUMI_44/BeamCrossing" | 170 | 10.418 | 49.684 | 7.4442 | 63.378 | | adc_LUMI_44_NoBeam | "ADC for LUMI_44/NoBeam" | 3 | -1.5 | 1.4142 | 0.70711 | -1.5 | - | adc_LUMI_44_NoBeam_calib_signals | "ADC for LUMI_44/NoBeam/calib signals" | 1 | 868.5 | 0.0000 | 0 | 0 | | adc_LUMI_45_Beam1 | "ADC for LUMI_45/Beam1" | 15 | 1.7667 | 1.8785 | 0.5166 | 0.66467 | | adc_LUMI_45_Beam2 | "ADC for LUMI_45/Beam2" | 11 | 1.5909 | 2.1086 | 0.054813 | -0.20175 | | adc_LUMI_45_BeamCrossing | "ADC for LUMI_45/BeamCrossing" | 170 | 12.894 | 58.294 | 5.8628 | 35.029 | | adc_LUMI_45_NoBeam | "ADC for LUMI_45/NoBeam" | 3 | 0.83333 | 1.2472 | 0.3818 | -1.5 | - | adc_LUMI_45_NoBeam_calib_signals | "ADC for LUMI_45/NoBeam/calib signals" | 1 | 863.5 | 0.0000 | 0 | 0 | | adc_LUMI_46_Beam1 | "ADC for LUMI_46/Beam1" | 15 | 0.5 | 1.4142 | 0 | -0.5 | | adc_LUMI_46_Beam2 | "ADC for LUMI_46/Beam2" | 11 | 0.22727 | 1.5428 | 0.1645 | -1.4835 | | adc_LUMI_46_BeamCrossing | "ADC for LUMI_46/BeamCrossing" | 170 | 7.9118 | 46.417 | 7.026 | 48.579 | | adc_LUMI_46_NoBeam | "ADC for LUMI_46/NoBeam" | 3 | 0.16667 | 0.47140 | -0.70711 | -1.5 | - | adc_LUMI_46_NoBeam_calib_signals | "ADC for LUMI_46/NoBeam/calib signals" | 1 | 704.5 | 0.0000 | 0 | 0 | | adc_LUMI_47_Beam1 | "ADC for LUMI_47/Beam1" | 15 | 2.3 | 2.9484 | 0.49251 | 0.59839 | | adc_LUMI_47_Beam2 | "ADC for LUMI_47/Beam2" | 11 | 8.2273 | 26.444 | 2.8019 | 5.9541 | | adc_LUMI_47_BeamCrossing | "ADC for LUMI_47/BeamCrossing" | 170 | 31.888 | 91.589 | 4.3611 | 21.037 | | adc_LUMI_47_NoBeam | "ADC for LUMI_47/NoBeam" | 3 | -0.16667 | 0.94281 | -0.70711 | -1.5 | - | adc_LUMI_47_NoBeam_calib_signals | "ADC for LUMI_47/NoBeam/calib signals" | 1 | 707.5 | 0.0000 | 0 | 0 | | adc_LUMI_Beam1 | "ADC for LUMI/Beam1" | 660 | 1.7182 | 3.6006 | 0.46046 | 7.8479 | | adc_LUMI_Beam2 | "ADC for LUMI/Beam2" | 484 | 3.4194 | 29.794 | 11.161 | 132.42 | | adc_LUMI_BeamCrossing | "ADC for LUMI/BeamCrossing" | 7480 | 28.96 | 93.072 | 4.5799 | 25.251 | - | adc_LUMI_NoBeam | "ADC for LUMI/NoBeam" | 132 | 1.1364 | 2.3396 | 1.1337 | 1.7423 | - | adc_MON_01_Beam1 | "ADC for MON_01/Beam1" | 15 | -0.16667 | 1.4453 | 0.068699 | -0.86442 | - | adc_MON_01_Beam2 | "ADC for MON_01/Beam2" | 11 | 0.5 | 1.5374 | -0.45031 | -0.81953 | - | adc_MON_01_BeamCrossing | "ADC for MON_01/BeamCrossing" | 170 | 0.19412 | 1.3977 | 0.38696 | 0.78553 | - | adc_MON_01_NoBeam | "ADC for MON_01/NoBeam" | 4 | 33.25 | 55.571 | 1.1545 | -0.66681 | - | adc_MON_02_Beam1 | "ADC for MON_02/Beam1" | 15 | 0.43333 | 1.2365 | -0.29654 | -1.0564 | - | adc_MON_02_Beam2 | "ADC for MON_02/Beam2" | 11 | 0.31818 | 0.71582 | 0.28268 | -1.0265 | - | adc_MON_02_BeamCrossing | "ADC for MON_02/BeamCrossing" | 170 | 0.16471 | 1.4223 | -0.021838 | 0.35598 | - | adc_MON_02_NoBeam | "ADC for MON_02/NoBeam" | 4 | 36.25 | 62.499 | 1.1546 | -0.66678 | - | adc_MON_03_Beam1 | "ADC for MON_03/Beam1" | 15 | -0.36667 | 1.3597 | 0.076136 | -1.1374 | - | adc_MON_03_Beam2 | "ADC for MON_03/Beam2" | 11 | 0.22727 | 1.5428 | 0.75867 | -0.29311 | - | adc_MON_03_BeamCrossing | "ADC for MON_03/BeamCrossing" | 170 | -0.1 | 1.2291 | -0.034978 | -0.14687 | - | adc_MON_03_NoBeam | "ADC for MON_03/NoBeam" | 4 | 35.75 | 61.633 | 1.1545 | -0.66678 | - | adc_MON_04_Beam1 | "ADC for MON_04/Beam1" | 15 | 0.36667 | 0.88443 | -0.31522 | -0.71204 | - | adc_MON_04_Beam2 | "ADC for MON_04/Beam2" | 11 | 0.77273 | 1.6564 | 0.76174 | -0.10281 | - | adc_MON_04_BeamCrossing | "ADC for MON_04/BeamCrossing" | 170 | 0.035294 | 1.3112 | 0.040558 | -0.35894 | - | adc_MON_04_NoBeam | "ADC for MON_04/NoBeam" | 4 | 32.75 | 58.195 | 1.1515 | -0.66914 | - | adc_MON_Beam1 | "ADC for MON/Beam1" | 60 | 0.066667 | 1.2957 | -0.21578 | -0.82656 | - | adc_MON_Beam2 | "ADC for MON/Beam2" | 44 | 0.45455 | 1.4295 | 0.50003 | 0.22541 | - | adc_MON_BeamCrossing | "ADC for MON/BeamCrossing" | 680 | 0.073529 | 1.3473 | 0.13226 | 0.30626 | - | adc_MON_NoBeam | "ADC for MON/NoBeam" | 16 | 34.5 | 59.559 | 1.1628 | -0.63174 | - | adc_PIN_01_Beam1 | "ADC for PIN_01/Beam1" | 15 | -0.1 | 2.6026 | 0.14795 | -0.43161 | - | adc_PIN_01_Beam2 | "ADC for PIN_01/Beam2" | 11 | 1.0455 | 1.7768 | -0.074738 | -0.071229 | - | adc_PIN_01_BeamCrossing | "ADC for PIN_01/BeamCrossing" | 170 | 0.47059 | 2.5973 | -0.084532 | -0.030407 | - | adc_PIN_01_NoBeam | "ADC for PIN_01/NoBeam" | 4 | 16.25 | 27.914 | 1.1406 | -0.6773 | - | adc_PIN_02_Beam1 | "ADC for PIN_02/Beam1" | 15 | 0.033333 | 4.0144 | 0.42348 | -0.81616 | - | adc_PIN_02_Beam2 | "ADC for PIN_02/Beam2" | 11 | 1.5909 | 3.5021 | 0.5846 | -0.86541 | - | adc_PIN_02_BeamCrossing | "ADC for PIN_02/BeamCrossing" | 170 | 0.72353 | 4.7487 | 0.05457 | -0.19893 | - | adc_PIN_02_NoBeam | "ADC for PIN_02/NoBeam" | 4 | 20.25 | 34.259 | 1.1443 | -0.67434 | - | adc_PIN_03_Beam1 | "ADC for PIN_03/Beam1" | 15 | 0.9 | 4.8415 | -0.35416 | -0.50037 | - | adc_PIN_03_Beam2 | "ADC for PIN_03/Beam2" | 11 | 1.4091 | 5.4848 | -0.45992 | -0.83145 | - | adc_PIN_03_BeamCrossing | "ADC for PIN_03/BeamCrossing" | 170 | 1.0118 | 4.3821 | 0.037908 | 0.44028 | - | adc_PIN_03_NoBeam | "ADC for PIN_03/NoBeam" | 4 | 18 | 29.168 | 1.152 | -0.6688 | - | adc_PIN_04_Beam1 | "ADC for PIN_04/Beam1" | 15 | 1.1 | 3.2000 | 0.4502 | -0.62585 | - | adc_PIN_04_Beam2 | "ADC for PIN_04/Beam2" | 11 | 1.5 | 3.4378 | 0.65785 | -0.58 | - | adc_PIN_04_BeamCrossing | "ADC for PIN_04/BeamCrossing" | 170 | 0.23529 | 4.5717 | 0.19366 | 0.047467 | - | adc_PIN_04_NoBeam | "ADC for PIN_04/NoBeam" | 4 | 23.5 | 31.329 | 1.1206 | -0.69058 | - | adc_PIN_06_Beam1 | "ADC for PIN_06/Beam1" | 15 | -0.7 | 4.2771 | -0.097339 | -1.3223 | - | adc_PIN_06_Beam2 | "ADC for PIN_06/Beam2" | 11 | 1.3182 | 3.3253 | -0.3006 | -1.4138 | - | adc_PIN_06_BeamCrossing | "ADC for PIN_06/BeamCrossing" | 170 | 0.51176 | 4.6552 | 0.040117 | -0.4561 | - | adc_PIN_06_NoBeam | "ADC for PIN_06/NoBeam" | 4 | 16.25 | 29.609 | 1.1501 | -0.67016 | - | adc_PIN_07_Beam1 | "ADC for PIN_07/Beam1" | 15 | 0.033333 | 1.4079 | -0.42637 | -0.6226 | - | adc_PIN_07_Beam2 | "ADC for PIN_07/Beam2" | 11 | 0.22727 | 1.2856 | 0.5176 | -0.6034 | - | adc_PIN_07_BeamCrossing | "ADC for PIN_07/BeamCrossing" | 170 | 0.029412 | 1.2328 | 0.026531 | -0.075352 | - | adc_PIN_07_NoBeam | "ADC for PIN_07/NoBeam" | 4 | 1.25 | 0.82916 | 0.49338 | -1.3719 | - | adc_PIN_08_Beam1 | "ADC for PIN_08/Beam1" | 15 | 1.6333 | 7.0509 | 0.0029804 | -1.2279 | - | adc_PIN_08_Beam2 | "ADC for PIN_08/Beam2" | 11 | 0.5 | 3.7659 | 0.59236 | -0.59714 | - | adc_PIN_08_BeamCrossing | "ADC for PIN_08/BeamCrossing" | 170 | 0.18824 | 4.9065 | -0.31406 | 0.17115 | - | adc_PIN_08_NoBeam | "ADC for PIN_08/NoBeam" | 4 | 19.75 | 35.124 | 1.1448 | -0.67397 | - | adc_PIN_09_Beam1 | "ADC for PIN_09/Beam1" | 15 | 1.3667 | 4.2874 | -0.90313 | 0.080374 | - | adc_PIN_09_Beam2 | "ADC for PIN_09/Beam2" | 11 | -0.77273 | 4.3712 | -0.36442 | 0.54775 | - | adc_PIN_09_BeamCrossing | "ADC for PIN_09/BeamCrossing" | 170 | 0.61765 | 4.7202 | 0.066276 | -0.48337 | - | adc_PIN_09_NoBeam | "ADC for PIN_09/NoBeam" | 4 | 20.75 | 39.334 | 1.1156 | -0.69406 | - | adc_PIN_Beam1 | "ADC for PIN/Beam1" | 120 | 0.53333 | 4.3261 | 0.10945 | 0.10847 | - | adc_PIN_Beam2 | "ADC for PIN/Beam2" | 88 | 0.85227 | 3.6744 | -0.076609 | 0.56582 | - | adc_PIN_BeamCrossing | "ADC for PIN/BeamCrossing" | 1360 | 0.47353 | 4.1781 | 0.038545 | 0.50935 | - | adc_PIN_NoBeam | "ADC for PIN/NoBeam" | 32 | 17 | 31.161 | 1.3825 | 0.045346 | + | adc_LUMI_NoBeam | "ADC for LUMI/NoBeam" | 176 | 186.02 | 321.83 | 1.189 | -0.53281 | | adc_TIME | "ADC for all timing channels" | 12800 | 264.85 | 32.206 | 5.5346 | 49.363 | | adc_TIME_05_00_Beam1 | "ADC for TIME_05_00/Beam1" | 15 | 257.37 | 2.3907 | -0.89611 | 0.091531 | | adc_TIME_05_00_Beam2 | "ADC for TIME_05_00/Beam2" | 11 | 256.68 | 0.93597 | 0.29688 | -0.85244 | @@ -24993,7 +691,7 @@ PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDig | adc_TIME_Beam1 | "ADC for TIME/Beam1" | 960 | 257.22 | 1.7097 | 0.17615 | 1.0854 | | adc_TIME_Beam2 | "ADC for TIME/Beam2" | 704 | 257.18 | 1.7039 | 0.52655 | 0.9005 | | adc_TIME_BeamCrossing | "ADC for TIME/BeamCrossing" | 10880 | 265.56 | 32.944 | 5.2714 | 47.537 | - | adc_TIME_NoBeam | "ADC for TIME/NoBeam" | 192 | 257.33 | 1.6029 | -0.20442 | 0.75859 | + | adc_TIME_NoBeam | "ADC for TIME/NoBeam" | 256 | 284.1 | 70.318 | 2.4317 | 4.6663 | | amp_sshape_err_tot_11 | "S-shape amplitude error for 11" | 5 | 6.475 | 1.0779 | -0.1197 | -1.6519 | | amp_sshape_err_tot_29 | "S-shape amplitude error for 29" | 5 | 6.8167 | 0.12472 | -0.3818 | -1.5 | | amp_sshape_err_tot_35 | "S-shape amplitude error for 35" | 5 | 5.3833 | 1.1557 | -0.70314 | -1.5 | @@ -25024,128 +722,239 @@ PlumeDigitMonitor_9abf3184 INFO 1D histograms in directory "PlumeDig | time_sshape_tot_29 | "Inflection point for 29" | 5 | 4.232 | 0.78969 | -1.3775 | 0.073259 | | time_sshape_tot_35 | "Inflection point for 35" | 5 | 3.416 | 0.94981 | -1.3325 | 0.031746 | | time_sshape_tot_5 | "Inflection point for 5" | 5 | 3.976 | 0.77958 | -1.3945 | 0.098599 | -PlumeRawToDigits_89428f2d INFO 1D histograms in directory "PlumeRawToDigits_89428f2d" : 1 +PlumeLEDMonitor_34b7705b INFO 1D histograms in directory "PlumeLEDMonitor_34b7705b" : 121 + | ID | Title | # | Mean | RMS | Skewness | Kurtosis | + | adc_LUMI_00 | "ADC for LUMI_00" | 1 | 694.5 | 0.0000 | 0 | 0 | + | adc_LUMI_01 | "ADC for LUMI_01" | 1 | 628.5 | 0.0000 | 0 | 0 | + | adc_LUMI_02 | "ADC for LUMI_02" | 1 | 760.5 | 0.0000 | 0 | 0 | + | adc_LUMI_03 | "ADC for LUMI_03" | 1 | 709.5 | 0.0000 | 0 | 0 | + | adc_LUMI_04 | "ADC for LUMI_04" | 1 | 701.5 | 0.0000 | 0 | 0 | + | adc_LUMI_06 | "ADC for LUMI_06" | 1 | 676.5 | 0.0000 | 0 | 0 | + | adc_LUMI_07 | "ADC for LUMI_07" | 1 | 781.5 | 0.0000 | 0 | 0 | + | adc_LUMI_08 | "ADC for LUMI_08" | 1 | 711.5 | 0.0000 | 0 | 0 | + | adc_LUMI_09 | "ADC for LUMI_09" | 1 | 756.5 | 0.0000 | 0 | 0 | + | adc_LUMI_10 | "ADC for LUMI_10" | 1 | 853.5 | 0.0000 | 0 | 0 | + | adc_LUMI_12 | "ADC for LUMI_12" | 1 | 716.5 | 0.0000 | 0 | 0 | + | adc_LUMI_13 | "ADC for LUMI_13" | 1 | 766.5 | 0.0000 | 0 | 0 | + | adc_LUMI_14 | "ADC for LUMI_14" | 1 | 661.5 | 0.0000 | 0 | 0 | + | adc_LUMI_15 | "ADC for LUMI_15" | 1 | 843.5 | 0.0000 | 0 | 0 | + | adc_LUMI_16 | "ADC for LUMI_16" | 1 | 637.5 | 0.0000 | 0 | 0 | + | adc_LUMI_17 | "ADC for LUMI_17" | 1 | 702.5 | 0.0000 | 0 | 0 | + | adc_LUMI_18 | "ADC for LUMI_18" | 1 | 804.5 | 0.0000 | 0 | 0 | + | adc_LUMI_19 | "ADC for LUMI_19" | 1 | 726.5 | 0.0000 | 0 | 0 | + | adc_LUMI_20 | "ADC for LUMI_20" | 1 | 643.5 | 0.0000 | 0 | 0 | + | adc_LUMI_21 | "ADC for LUMI_21" | 1 | 717.5 | 0.0000 | 0 | 0 | + | adc_LUMI_22 | "ADC for LUMI_22" | 1 | 820.5 | 0.0000 | 0 | 0 | + | adc_LUMI_23 | "ADC for LUMI_23" | 1 | 743.5 | 0.0000 | 0 | 0 | + | adc_LUMI_24 | "ADC for LUMI_24" | 1 | 655.5 | 0.0000 | 0 | 0 | + | adc_LUMI_25 | "ADC for LUMI_25" | 1 | 703.5 | 0.0000 | 0 | 0 | + | adc_LUMI_26 | "ADC for LUMI_26" | 1 | 623.5 | 0.0000 | 0 | 0 | + | adc_LUMI_27 | "ADC for LUMI_27" | 1 | 830.5 | 0.0000 | 0 | 0 | + | adc_LUMI_28 | "ADC for LUMI_28" | 1 | 757.5 | 0.0000 | 0 | 0 | + | adc_LUMI_30 | "ADC for LUMI_30" | 1 | 694.5 | 0.0000 | 0 | 0 | + | adc_LUMI_31 | "ADC for LUMI_31" | 1 | 784.5 | 0.0000 | 0 | 0 | + | adc_LUMI_32 | "ADC for LUMI_32" | 1 | 692.5 | 0.0000 | 0 | 0 | + | adc_LUMI_33 | "ADC for LUMI_33" | 1 | 794.5 | 0.0000 | 0 | 0 | + | adc_LUMI_34 | "ADC for LUMI_34" | 1 | 715.5 | 0.0000 | 0 | 0 | + | adc_LUMI_36 | "ADC for LUMI_36" | 1 | 732.5 | 0.0000 | 0 | 0 | + | adc_LUMI_37 | "ADC for LUMI_37" | 1 | 818.5 | 0.0000 | 0 | 0 | + | adc_LUMI_38 | "ADC for LUMI_38" | 1 | 711.5 | 0.0000 | 0 | 0 | + | adc_LUMI_39 | "ADC for LUMI_39" | 1 | 805.5 | 0.0000 | 0 | 0 | + | adc_LUMI_40 | "ADC for LUMI_40" | 1 | 798.5 | 0.0000 | 0 | 0 | + | adc_LUMI_41 | "ADC for LUMI_41" | 1 | 716.5 | 0.0000 | 0 | 0 | + | adc_LUMI_42 | "ADC for LUMI_42" | 1 | 788.5 | 0.0000 | 0 | 0 | + | adc_LUMI_43 | "ADC for LUMI_43" | 1 | 763.5 | 0.0000 | 0 | 0 | + | adc_LUMI_44 | "ADC for LUMI_44" | 1 | 868.5 | 0.0000 | 0 | 0 | + | adc_LUMI_45 | "ADC for LUMI_45" | 1 | 863.5 | 0.0000 | 0 | 0 | + | adc_LUMI_46 | "ADC for LUMI_46" | 1 | 704.5 | 0.0000 | 0 | 0 | + | adc_LUMI_47 | "ADC for LUMI_47" | 1 | 707.5 | 0.0000 | 0 | 0 | + | adc_MON_01 | "ADC for MON_01" | 1 | 129.5 | 0.0000 | 0 | 0 | + | adc_MON_02 | "ADC for MON_02" | 1 | 144.5 | 0.0000 | 0 | 0 | + | adc_MON_03 | "ADC for MON_03" | 1 | 142.5 | 0.0000 | 0 | 0 | + | adc_MON_04 | "ADC for MON_04" | 1 | 133.5 | 0.0000 | 0 | 0 | + | adc_PIN_01 | "ADC for PIN_01" | 1 | 64.5 | 0.0000 | 0 | 0 | + | adc_PIN_02 | "ADC for PIN_02" | 1 | 79.5 | 0.0000 | 0 | 0 | + | adc_PIN_03 | "ADC for PIN_03" | 1 | 68.5 | 0.0000 | 0 | 0 | + | adc_PIN_04 | "ADC for PIN_04" | 1 | 77.5 | 0.0000 | 0 | 0 | + | adc_PIN_06 | "ADC for PIN_06" | 1 | 67.5 | 0.0000 | 0 | 0 | + | adc_PIN_07 | "ADC for PIN_07" | 1 | 0.5 | 0.0000 | 0 | 0 | + | adc_PIN_08 | "ADC for PIN_08" | 1 | 80.5 | 0.0000 | 0 | 0 | + | adc_PIN_09 | "ADC for PIN_09" | 1 | 88.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_00 | "ADC for TIME_05_00" | 1 | 507.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_01 | "ADC for TIME_05_01" | 1 | 476.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_02 | "ADC for TIME_05_02" | 1 | 401.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_03 | "ADC for TIME_05_03" | 1 | 318.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_04 | "ADC for TIME_05_04" | 1 | 266.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_05 | "ADC for TIME_05_05" | 1 | 237.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_06 | "ADC for TIME_05_06" | 1 | 231.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_07 | "ADC for TIME_05_07" | 1 | 238.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_08 | "ADC for TIME_05_08" | 1 | 265.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_09 | "ADC for TIME_05_09" | 1 | 289.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_10 | "ADC for TIME_05_10" | 1 | 346.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_11 | "ADC for TIME_05_11" | 1 | 429.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_12 | "ADC for TIME_05_12" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_13 | "ADC for TIME_05_13" | 1 | 521.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_14 | "ADC for TIME_05_14" | 1 | 542.5 | 0.0000 | 0 | 0 | + | adc_TIME_05_15 | "ADC for TIME_05_15" | 1 | 533.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_00 | "ADC for TIME_11_00" | 1 | 461.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_01 | "ADC for TIME_11_01" | 1 | 425.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_02 | "ADC for TIME_11_02" | 1 | 354.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_03 | "ADC for TIME_11_03" | 1 | 294.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_04 | "ADC for TIME_11_04" | 1 | 249.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_05 | "ADC for TIME_11_05" | 1 | 229.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_06 | "ADC for TIME_11_06" | 1 | 232.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_07 | "ADC for TIME_11_07" | 1 | 239.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_08 | "ADC for TIME_11_08" | 1 | 264.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_09 | "ADC for TIME_11_09" | 1 | 293.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_10 | "ADC for TIME_11_10" | 1 | 350.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_11 | "ADC for TIME_11_11" | 1 | 407.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_12 | "ADC for TIME_11_12" | 1 | 452.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_13 | "ADC for TIME_11_13" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_14 | "ADC for TIME_11_14" | 1 | 495.5 | 0.0000 | 0 | 0 | + | adc_TIME_11_15 | "ADC for TIME_11_15" | 1 | 484.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_00 | "ADC for TIME_29_00" | 1 | 513.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_01 | "ADC for TIME_29_01" | 1 | 475.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_02 | "ADC for TIME_29_02" | 1 | 404.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_03 | "ADC for TIME_29_03" | 1 | 340.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_04 | "ADC for TIME_29_04" | 1 | 265.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_05 | "ADC for TIME_29_05" | 1 | 229.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_06 | "ADC for TIME_29_06" | 1 | 225.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_07 | "ADC for TIME_29_07" | 1 | 231.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_08 | "ADC for TIME_29_08" | 1 | 270.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_09 | "ADC for TIME_29_09" | 1 | 292.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_10 | "ADC for TIME_29_10" | 1 | 344.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_11 | "ADC for TIME_29_11" | 1 | 409.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_12 | "ADC for TIME_29_12" | 1 | 487.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_13 | "ADC for TIME_29_13" | 1 | 530.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_14 | "ADC for TIME_29_14" | 1 | 549.5 | 0.0000 | 0 | 0 | + | adc_TIME_29_15 | "ADC for TIME_29_15" | 1 | 543.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_00 | "ADC for TIME_35_00" | 1 | 383.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_01 | "ADC for TIME_35_01" | 1 | 334.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_02 | "ADC for TIME_35_02" | 1 | 274.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_03 | "ADC for TIME_35_03" | 1 | 239.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_04 | "ADC for TIME_35_04" | 1 | 238.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_05 | "ADC for TIME_35_05" | 1 | 237.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_06 | "ADC for TIME_35_06" | 1 | 244.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_07 | "ADC for TIME_35_07" | 1 | 250.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_08 | "ADC for TIME_35_08" | 1 | 282.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_09 | "ADC for TIME_35_09" | 1 | 334.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_10 | "ADC for TIME_35_10" | 1 | 392.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_11 | "ADC for TIME_35_11" | 1 | 430.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_12 | "ADC for TIME_35_12" | 1 | 439.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_13 | "ADC for TIME_35_13" | 1 | 439.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_14 | "ADC for TIME_35_14" | 1 | 437.5 | 0.0000 | 0 | 0 | + | adc_TIME_35_15 | "ADC for TIME_35_15" | 1 | 438.5 | 0.0000 | 0 | 0 | + | odin_calib_type | "ODIN CalibrationType" | 1 | 2 | 0.0000 | 0 | 0 | +PlumeRawToDigits_e2724fbc INFO 1D histograms in directory "PlumeRawToDigits_e2724fbc" : 1 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | | SumADCPerChannel | "Sum of ADCs per channel" | 24800 | 73.931 | 36.095 | -0.42106 | -0.96015 | -PlumeDigitMonitor_9abf3184 INFO 1D profile histograms in directory "PlumeDigitMonitor_9abf3184" : 125 +PlumeDigitMonitor_b0f85c8c INFO 1D profile histograms in directory "PlumeDigitMonitor_b0f85c8c" : 112 | ID | Title | # | Mean | RMS | Skewness | Kurtosis | - | bcid_adc_LUMI_00 | "ADC vs BCID for LUMI_00" | 200 | 1852.8 | 768.00 | -0.54793 | 0.0045384 | - | bcid_adc_LUMI_01 | "ADC vs BCID for LUMI_01" | 200 | 2030.9 | 749.29 | -0.84935 | 0.12097 | - | bcid_adc_LUMI_02 | "ADC vs BCID for LUMI_02" | 200 | 2012 | 808.72 | -0.52701 | -0.51684 | - | bcid_adc_LUMI_03 | "ADC vs BCID for LUMI_03" | 200 | 1908.3 | 701.62 | -0.17087 | 0.0042769 | - | bcid_adc_LUMI_04 | "ADC vs BCID for LUMI_04" | 200 | 2077.7 | 692.55 | -0.12753 | -0.17315 | - | bcid_adc_LUMI_06 | "ADC vs BCID for LUMI_06" | 200 | 1801.1 | 904.67 | -0.321 | -0.54062 | - | bcid_adc_LUMI_07 | "ADC vs BCID for LUMI_07" | 200 | 1803.2 | 804.62 | -0.47842 | -0.16292 | - | bcid_adc_LUMI_08 | "ADC vs BCID for LUMI_08" | 200 | 1919.9 | 591.46 | 0.10658 | 0.069319 | - | bcid_adc_LUMI_09 | "ADC vs BCID for LUMI_09" | 200 | 2006.9 | 855.63 | -0.49857 | -0.061777 | - | bcid_adc_LUMI_10 | "ADC vs BCID for LUMI_10" | 200 | 1868.1 | 837.89 | -0.57254 | -0.35559 | - | bcid_adc_LUMI_12 | "ADC vs BCID for LUMI_12" | 200 | 2008.1 | 822.96 | -0.76991 | 0.0037367 | - | bcid_adc_LUMI_13 | "ADC vs BCID for LUMI_13" | 200 | 1982.6 | 805.96 | -0.82518 | 0.045741 | - | bcid_adc_LUMI_14 | "ADC vs BCID for LUMI_14" | 200 | 1993.5 | 703.45 | -0.7294 | 0.40349 | - | bcid_adc_LUMI_15 | "ADC vs BCID for LUMI_15" | 200 | 1849.5 | 773.37 | -0.6824 | -0.053441 | - | bcid_adc_LUMI_16 | "ADC vs BCID for LUMI_16" | 200 | 2043.7 | 833.47 | -0.61636 | -0.39803 | - | bcid_adc_LUMI_17 | "ADC vs BCID for LUMI_17" | 200 | 1927.4 | 885.24 | -0.69911 | -0.58496 | - | bcid_adc_LUMI_18 | "ADC vs BCID for LUMI_18" | 200 | 1815.6 | 902.70 | -0.64772 | -0.68462 | - | bcid_adc_LUMI_19 | "ADC vs BCID for LUMI_19" | 200 | 1946.7 | 799.24 | -0.56645 | -0.34988 | - | bcid_adc_LUMI_20 | "ADC vs BCID for LUMI_20" | 200 | 2027.8 | 823.78 | -0.86693 | -0.26631 | - | bcid_adc_LUMI_21 | "ADC vs BCID for LUMI_21" | 200 | 1859.9 | 919.46 | -0.75436 | -0.65839 | - | bcid_adc_LUMI_22 | "ADC vs BCID for LUMI_22" | 200 | 1580.8 | 828.78 | -0.305 | -0.65649 | - | bcid_adc_LUMI_23 | "ADC vs BCID for LUMI_23" | 200 | 1968 | 698.52 | -0.66313 | 0.26485 | - | bcid_adc_LUMI_24 | "ADC vs BCID for LUMI_24" | 200 | 1820 | 714.24 | -0.45285 | 0.32772 | - | bcid_adc_LUMI_25 | "ADC vs BCID for LUMI_25" | 200 | 2173.3 | 866.74 | -1.1377 | 0.38193 | - | bcid_adc_LUMI_26 | "ADC vs BCID for LUMI_26" | 200 | 1922.9 | 954.78 | -0.57253 | -0.84156 | - | bcid_adc_LUMI_27 | "ADC vs BCID for LUMI_27" | 200 | 1508.8 | 882.02 | -0.29287 | -1.0226 | - | bcid_adc_LUMI_28 | "ADC vs BCID for LUMI_28" | 200 | 1851.9 | 591.92 | 0.069391 | 0.37677 | - | bcid_adc_LUMI_30 | "ADC vs BCID for LUMI_30" | 200 | 1934.9 | 742.68 | -0.33003 | -0.040843 | - | bcid_adc_LUMI_31 | "ADC vs BCID for LUMI_31" | 200 | 1900.1 | 737.88 | -0.22526 | -0.20224 | - | bcid_adc_LUMI_32 | "ADC vs BCID for LUMI_32" | 200 | 1790 | 609.19 | 0.52714 | 0.48573 | - | bcid_adc_LUMI_33 | "ADC vs BCID for LUMI_33" | 200 | 1722.9 | 823.66 | -0.32946 | -0.27437 | - | bcid_adc_LUMI_34 | "ADC vs BCID for LUMI_34" | 200 | 2265.6 | 837.04 | -1.0675 | 0.72721 | - | bcid_adc_LUMI_36 | "ADC vs BCID for LUMI_36" | 200 | 1592.2 | 882.04 | 0.032616 | -0.87081 | - | bcid_adc_LUMI_37 | "ADC vs BCID for LUMI_37" | 200 | 1683.8 | 816.08 | -0.082953 | -0.82541 | - | bcid_adc_LUMI_38 | "ADC vs BCID for LUMI_38" | 200 | 2055.8 | 727.39 | -0.30892 | -0.40765 | - | bcid_adc_LUMI_39 | "ADC vs BCID for LUMI_39" | 200 | 1674.3 | 757.48 | -0.45324 | -0.28481 | - | bcid_adc_LUMI_40 | "ADC vs BCID for LUMI_40" | 200 | 2151.9 | 614.40 | -0.47317 | 0.17765 | - | bcid_adc_LUMI_41 | "ADC vs BCID for LUMI_41" | 200 | 1804.4 | 963.69 | -0.67202 | -0.9543 | - | bcid_adc_LUMI_42 | "ADC vs BCID for LUMI_42" | 200 | 1959.6 | 772.29 | -0.27054 | -0.52159 | - | bcid_adc_LUMI_43 | "ADC vs BCID for LUMI_43" | 200 | 1896.4 | 794.93 | -0.82878 | -0.10264 | - | bcid_adc_LUMI_44 | "ADC vs BCID for LUMI_44" | 200 | 1841.8 | 862.82 | -0.50111 | -0.59283 | - | bcid_adc_LUMI_45 | "ADC vs BCID for LUMI_45" | 200 | 1959.3 | 840.54 | -0.48453 | -0.60757 | - | bcid_adc_LUMI_46 | "ADC vs BCID for LUMI_46" | 200 | 1636 | 864.61 | -0.62806 | -0.53632 | - | bcid_adc_LUMI_47 | "ADC vs BCID for LUMI_47" | 200 | 2137.9 | 773.72 | -0.9801 | 0.53769 | - | bcid_adc_MON_01 | "ADC vs BCID for MON_01" | 200 | 1822.1 | 720.46 | 0.036535 | 0.17346 | - | bcid_adc_MON_02 | "ADC vs BCID for MON_02" | 200 | 1781.3 | 658.65 | 0.011034 | 0.48238 | - | bcid_adc_MON_03 | "ADC vs BCID for MON_03" | 200 | 1734.9 | 717.99 | -0.084384 | 0.33338 | - | bcid_adc_MON_04 | "ADC vs BCID for MON_04" | 200 | 1756.9 | 729.22 | -0.1352 | 0.27864 | - | bcid_adc_PIN_01 | "ADC vs BCID for PIN_01" | 200 | 1893.1 | 860.85 | -0.38761 | -0.60828 | - | bcid_adc_PIN_02 | "ADC vs BCID for PIN_02" | 200 | 1872.7 | 875.02 | -0.39385 | -0.61906 | - | bcid_adc_PIN_03 | "ADC vs BCID for PIN_03" | 200 | 1839.4 | 894.06 | -0.33748 | -0.57031 | - | bcid_adc_PIN_04 | "ADC vs BCID for PIN_04" | 200 | 1881.3 | 857.71 | -0.482 | -0.4627 | - | bcid_adc_PIN_06 | "ADC vs BCID for PIN_06" | 200 | 1926.9 | 867.10 | -0.47067 | -0.61624 | - | bcid_adc_PIN_07 | "ADC vs BCID for PIN_07" | 200 | 1989.1 | 871.66 | -0.41374 | -0.61938 | - | bcid_adc_PIN_08 | "ADC vs BCID for PIN_08" | 200 | 1826.2 | 846.63 | -0.33054 | -0.64636 | - | bcid_adc_PIN_09 | "ADC vs BCID for PIN_09" | 200 | 1805.2 | 856.59 | -0.30779 | -0.64535 | - | bcid_adc_TIME_05_00 | "ADC vs BCID for TIME_05_00" | 200 | 1883.9 | 908.34 | -0.45292 | -0.74433 | - | bcid_adc_TIME_05_01 | "ADC vs BCID for TIME_05_01" | 200 | 1884 | 908.40 | -0.45326 | -0.74317 | - | bcid_adc_TIME_05_02 | "ADC vs BCID for TIME_05_02" | 200 | 1883.5 | 909.86 | -0.45285 | -0.74963 | - | bcid_adc_TIME_05_03 | "ADC vs BCID for TIME_05_03" | 200 | 1884.3 | 910.97 | -0.45377 | -0.7535 | - | bcid_adc_TIME_05_04 | "ADC vs BCID for TIME_05_04" | 200 | 1888.5 | 910.84 | -0.45664 | -0.75353 | - | bcid_adc_TIME_05_05 | "ADC vs BCID for TIME_05_05" | 200 | 1894 | 910.66 | -0.46467 | -0.7526 | - | bcid_adc_TIME_05_06 | "ADC vs BCID for TIME_05_06" | 200 | 1900.8 | 907.43 | -0.47623 | -0.73707 | - | bcid_adc_TIME_05_07 | "ADC vs BCID for TIME_05_07" | 200 | 1900.9 | 907.43 | -0.47665 | -0.73662 | - | bcid_adc_TIME_05_08 | "ADC vs BCID for TIME_05_08" | 200 | 1874.9 | 924.24 | -0.4473 | -0.7997 | - | bcid_adc_TIME_05_09 | "ADC vs BCID for TIME_05_09" | 200 | 1875.1 | 923.77 | -0.44793 | -0.79786 | - | bcid_adc_TIME_05_10 | "ADC vs BCID for TIME_05_10" | 200 | 1875.2 | 923.13 | -0.44745 | -0.79562 | - | bcid_adc_TIME_05_11 | "ADC vs BCID for TIME_05_11" | 200 | 1875.1 | 921.71 | -0.44523 | -0.79205 | - | bcid_adc_TIME_05_12 | "ADC vs BCID for TIME_05_12" | 200 | 1879.9 | 917.40 | -0.44834 | -0.77717 | - | bcid_adc_TIME_05_13 | "ADC vs BCID for TIME_05_13" | 200 | 1883.5 | 910.93 | -0.45013 | -0.75486 | - | bcid_adc_TIME_05_14 | "ADC vs BCID for TIME_05_14" | 200 | 1884.2 | 906.80 | -0.45371 | -0.73799 | - | bcid_adc_TIME_05_15 | "ADC vs BCID for TIME_05_15" | 200 | 1884.4 | 906.73 | -0.45372 | -0.73737 | - | bcid_adc_TIME_11_00 | "ADC vs BCID for TIME_11_00" | 200 | 1892.9 | 920.77 | -0.47571 | -0.77202 | - | bcid_adc_TIME_11_01 | "ADC vs BCID for TIME_11_01" | 200 | 1892.3 | 921.08 | -0.47499 | -0.77354 | - | bcid_adc_TIME_11_02 | "ADC vs BCID for TIME_11_02" | 200 | 1892.4 | 922.06 | -0.47542 | -0.77657 | - | bcid_adc_TIME_11_03 | "ADC vs BCID for TIME_11_03" | 200 | 1892.2 | 921.66 | -0.47314 | -0.7772 | - | bcid_adc_TIME_11_04 | "ADC vs BCID for TIME_11_04" | 200 | 1891.4 | 918.07 | -0.46539 | -0.77235 | - | bcid_adc_TIME_11_05 | "ADC vs BCID for TIME_11_05" | 200 | 1891.8 | 912.57 | -0.45631 | -0.76082 | - | bcid_adc_TIME_11_06 | "ADC vs BCID for TIME_11_06" | 200 | 1891.6 | 910.29 | -0.45258 | -0.75691 | - | bcid_adc_TIME_11_07 | "ADC vs BCID for TIME_11_07" | 200 | 1891.5 | 910.99 | -0.45308 | -0.75844 | - | bcid_adc_TIME_11_08 | "ADC vs BCID for TIME_11_08" | 200 | 1879.2 | 921.91 | -0.45167 | -0.79321 | - | bcid_adc_TIME_11_09 | "ADC vs BCID for TIME_11_09" | 200 | 1878.7 | 922.22 | -0.45075 | -0.79462 | - | bcid_adc_TIME_11_10 | "ADC vs BCID for TIME_11_10" | 200 | 1878.6 | 921.50 | -0.45002 | -0.79178 | - | bcid_adc_TIME_11_11 | "ADC vs BCID for TIME_11_11" | 200 | 1879.7 | 920.13 | -0.45081 | -0.78737 | - | bcid_adc_TIME_11_12 | "ADC vs BCID for TIME_11_12" | 200 | 1884.9 | 919.62 | -0.45595 | -0.78215 | - | bcid_adc_TIME_11_13 | "ADC vs BCID for TIME_11_13" | 200 | 1892.3 | 920.13 | -0.47201 | -0.77233 | - | bcid_adc_TIME_11_14 | "ADC vs BCID for TIME_11_14" | 200 | 1896.6 | 920.14 | -0.48203 | -0.76525 | - | bcid_adc_TIME_11_15 | "ADC vs BCID for TIME_11_15" | 200 | 1894.9 | 920.45 | -0.47927 | -0.76874 | - | bcid_adc_TIME_29_00 | "ADC vs BCID for TIME_29_00" | 200 | 1895.3 | 906.91 | -0.46675 | -0.73628 | - | bcid_adc_TIME_29_01 | "ADC vs BCID for TIME_29_01" | 200 | 1895.1 | 907.56 | -0.46646 | -0.73849 | - | bcid_adc_TIME_29_02 | "ADC vs BCID for TIME_29_02" | 200 | 1895.5 | 908.42 | -0.46737 | -0.74093 | - | bcid_adc_TIME_29_03 | "ADC vs BCID for TIME_29_03" | 200 | 1895.1 | 908.97 | -0.46774 | -0.74329 | - | bcid_adc_TIME_29_04 | "ADC vs BCID for TIME_29_04" | 200 | 1894.1 | 911.42 | -0.46621 | -0.75256 | - | bcid_adc_TIME_29_05 | "ADC vs BCID for TIME_29_05" | 200 | 1894.5 | 913.88 | -0.46818 | -0.76079 | - | bcid_adc_TIME_29_06 | "ADC vs BCID for TIME_29_06" | 200 | 1892.4 | 914.60 | -0.46736 | -0.76284 | - | bcid_adc_TIME_29_07 | "ADC vs BCID for TIME_29_07" | 200 | 1892.5 | 914.09 | -0.46714 | -0.76075 | - | bcid_adc_TIME_29_08 | "ADC vs BCID for TIME_29_08" | 200 | 1888.4 | 916.37 | -0.46407 | -0.76556 | - | bcid_adc_TIME_29_09 | "ADC vs BCID for TIME_29_09" | 200 | 1887.6 | 915.91 | -0.46245 | -0.76546 | - | bcid_adc_TIME_29_10 | "ADC vs BCID for TIME_29_10" | 200 | 1887.6 | 915.10 | -0.46188 | -0.7635 | - | bcid_adc_TIME_29_11 | "ADC vs BCID for TIME_29_11" | 200 | 1886.5 | 914.57 | -0.45882 | -0.76336 | - | bcid_adc_TIME_29_12 | "ADC vs BCID for TIME_29_12" | 200 | 1887.9 | 912.54 | -0.45811 | -0.75796 | - | bcid_adc_TIME_29_13 | "ADC vs BCID for TIME_29_13" | 200 | 1891.9 | 909.03 | -0.4602 | -0.74556 | - | bcid_adc_TIME_29_14 | "ADC vs BCID for TIME_29_14" | 200 | 1896 | 905.86 | -0.46647 | -0.73223 | - | bcid_adc_TIME_29_15 | "ADC vs BCID for TIME_29_15" | 200 | 1895.6 | 905.98 | -0.46691 | -0.7336 | - | bcid_adc_TIME_35_00 | "ADC vs BCID for TIME_35_00" | 200 | 1874 | 919.27 | -0.43734 | -0.79575 | - | bcid_adc_TIME_35_01 | "ADC vs BCID for TIME_35_01" | 200 | 1874.5 | 919.43 | -0.43842 | -0.7966 | - | bcid_adc_TIME_35_02 | "ADC vs BCID for TIME_35_02" | 200 | 1875.6 | 919.93 | -0.43968 | -0.79664 | - | bcid_adc_TIME_35_03 | "ADC vs BCID for TIME_35_03" | 200 | 1878.4 | 919.56 | -0.44281 | -0.79481 | - | bcid_adc_TIME_35_04 | "ADC vs BCID for TIME_35_04" | 200 | 1882.8 | 919.06 | -0.4494 | -0.78902 | - | bcid_adc_TIME_35_05 | "ADC vs BCID for TIME_35_05" | 200 | 1886.9 | 918.55 | -0.45556 | -0.78441 | - | bcid_adc_TIME_35_06 | "ADC vs BCID for TIME_35_06" | 200 | 1892.4 | 916.05 | -0.46324 | -0.77229 | - | bcid_adc_TIME_35_07 | "ADC vs BCID for TIME_35_07" | 200 | 1891.6 | 916.06 | -0.46269 | -0.77261 | - | bcid_adc_TIME_35_08 | "ADC vs BCID for TIME_35_08" | 200 | 1886.2 | 916.00 | -0.45094 | -0.77827 | - | bcid_adc_TIME_35_09 | "ADC vs BCID for TIME_35_09" | 200 | 1886 | 915.80 | -0.44958 | -0.77777 | - | bcid_adc_TIME_35_10 | "ADC vs BCID for TIME_35_10" | 200 | 1885.5 | 915.56 | -0.44823 | -0.77642 | - | bcid_adc_TIME_35_11 | "ADC vs BCID for TIME_35_11" | 200 | 1884.6 | 914.89 | -0.44758 | -0.77547 | - | bcid_adc_TIME_35_12 | "ADC vs BCID for TIME_35_12" | 200 | 1881.9 | 916.13 | -0.44489 | -0.78167 | - | bcid_adc_TIME_35_13 | "ADC vs BCID for TIME_35_13" | 200 | 1877.7 | 917.37 | -0.44085 | -0.78893 | - | bcid_adc_TIME_35_14 | "ADC vs BCID for TIME_35_14" | 200 | 1871.6 | 918.83 | -0.43561 | -0.79706 | - | bcid_adc_TIME_35_15 | "ADC vs BCID for TIME_35_15" | 200 | 1872.1 | 918.69 | -0.43548 | -0.79523 | + | bcid_adc_LUMI_00 | "ADC vs BCID for LUMI_00" | 199 | 1870.6 | 790.60 | -0.60177 | -0.09168 | + | bcid_adc_LUMI_01 | "ADC vs BCID for LUMI_01" | 199 | 2070.8 | 770.20 | -0.99161 | 0.22884 | + | bcid_adc_LUMI_02 | "ADC vs BCID for LUMI_02" | 199 | 2050.9 | 834.59 | -0.65176 | -0.5061 | + | bcid_adc_LUMI_03 | "ADC vs BCID for LUMI_03" | 199 | 1990.1 | 765.92 | -0.46886 | -0.21436 | + | bcid_adc_LUMI_04 | "ADC vs BCID for LUMI_04" | 199 | 2210.9 | 726.85 | -0.61433 | 0.16011 | + | bcid_adc_LUMI_06 | "ADC vs BCID for LUMI_06" | 199 | 1814.3 | 931.05 | -0.35473 | -0.65137 | + | bcid_adc_LUMI_07 | "ADC vs BCID for LUMI_07" | 199 | 1829.9 | 849.99 | -0.54918 | -0.37268 | + | bcid_adc_LUMI_08 | "ADC vs BCID for LUMI_08" | 199 | 1951.8 | 610.16 | -0.035557 | -0.04376 | + | bcid_adc_LUMI_09 | "ADC vs BCID for LUMI_09" | 199 | 2051.3 | 888.71 | -0.63142 | -0.099947 | + | bcid_adc_LUMI_10 | "ADC vs BCID for LUMI_10" | 199 | 1935.5 | 921.76 | -0.74785 | -0.57055 | + | bcid_adc_LUMI_12 | "ADC vs BCID for LUMI_12" | 199 | 2040.6 | 845.89 | -0.87066 | 0.021964 | + | bcid_adc_LUMI_13 | "ADC vs BCID for LUMI_13" | 199 | 2022.4 | 835.67 | -0.94776 | 0.064412 | + | bcid_adc_LUMI_14 | "ADC vs BCID for LUMI_14" | 199 | 2038.2 | 727.87 | -0.89717 | 0.48621 | + | bcid_adc_LUMI_15 | "ADC vs BCID for LUMI_15" | 199 | 1897.1 | 832.79 | -0.81295 | -0.24125 | + | bcid_adc_LUMI_16 | "ADC vs BCID for LUMI_16" | 199 | 2125 | 880.93 | -0.86911 | -0.28336 | + | bcid_adc_LUMI_17 | "ADC vs BCID for LUMI_17" | 199 | 1964.7 | 925.44 | -0.79502 | -0.63807 | + | bcid_adc_LUMI_18 | "ADC vs BCID for LUMI_18" | 199 | 1837.4 | 942.56 | -0.69201 | -0.80311 | + | bcid_adc_LUMI_19 | "ADC vs BCID for LUMI_19" | 199 | 2002.8 | 846.37 | -0.73938 | -0.3961 | + | bcid_adc_LUMI_20 | "ADC vs BCID for LUMI_20" | 199 | 2070.5 | 851.21 | -1.0004 | -0.18805 | + | bcid_adc_LUMI_21 | "ADC vs BCID for LUMI_21" | 199 | 1903.2 | 983.88 | -0.84364 | -0.79043 | + | bcid_adc_LUMI_22 | "ADC vs BCID for LUMI_22" | 199 | 1578.8 | 907.36 | -0.27192 | -1.0472 | + | bcid_adc_LUMI_23 | "ADC vs BCID for LUMI_23" | 199 | 2005.8 | 721.92 | -0.80389 | 0.29306 | + | bcid_adc_LUMI_24 | "ADC vs BCID for LUMI_24" | 199 | 1838.2 | 739.10 | -0.51292 | 0.17953 | + | bcid_adc_LUMI_25 | "ADC vs BCID for LUMI_25" | 199 | 2256.9 | 896.32 | -1.4175 | 0.83223 | + | bcid_adc_LUMI_26 | "ADC vs BCID for LUMI_26" | 199 | 1969.2 | 1010.6 | -0.68286 | -0.92945 | + | bcid_adc_LUMI_27 | "ADC vs BCID for LUMI_27" | 199 | 1487.6 | 988.24 | -0.19768 | -1.4411 | + | bcid_adc_LUMI_28 | "ADC vs BCID for LUMI_28" | 199 | 2005.8 | 702.32 | -0.57171 | -0.091479 | + | bcid_adc_LUMI_30 | "ADC vs BCID for LUMI_30" | 199 | 1971.1 | 771.99 | -0.45655 | -0.12947 | + | bcid_adc_LUMI_31 | "ADC vs BCID for LUMI_31" | 199 | 1944 | 778.66 | -0.37937 | -0.36047 | + | bcid_adc_LUMI_32 | "ADC vs BCID for LUMI_32" | 199 | 1835.8 | 667.37 | 0.29304 | -0.13298 | + | bcid_adc_LUMI_33 | "ADC vs BCID for LUMI_33" | 199 | 1766.1 | 945.07 | -0.42592 | -0.84695 | + | bcid_adc_LUMI_34 | "ADC vs BCID for LUMI_34" | 199 | 2390.6 | 854.71 | -1.5394 | 1.7641 | + | bcid_adc_LUMI_36 | "ADC vs BCID for LUMI_36" | 199 | 1592.4 | 945.03 | 0.029865 | -1.1452 | + | bcid_adc_LUMI_37 | "ADC vs BCID for LUMI_37" | 199 | 1699.2 | 880.18 | -0.12931 | -1.1194 | + | bcid_adc_LUMI_38 | "ADC vs BCID for LUMI_38" | 199 | 2139.4 | 760.53 | -0.60891 | -0.27076 | + | bcid_adc_LUMI_39 | "ADC vs BCID for LUMI_39" | 199 | 1698.1 | 857.66 | -0.48489 | -0.82547 | + | bcid_adc_LUMI_40 | "ADC vs BCID for LUMI_40" | 199 | 2386.5 | 590.56 | -1.6517 | 3.5922 | + | bcid_adc_LUMI_41 | "ADC vs BCID for LUMI_41" | 199 | 1826.1 | 1008.9 | -0.70857 | -1.0663 | + | bcid_adc_LUMI_42 | "ADC vs BCID for LUMI_42" | 199 | 1999.7 | 803.06 | -0.40614 | -0.58837 | + | bcid_adc_LUMI_43 | "ADC vs BCID for LUMI_43" | 199 | 1943 | 843.76 | -0.95746 | -0.17841 | + | bcid_adc_LUMI_44 | "ADC vs BCID for LUMI_44" | 199 | 1944.9 | 1006.9 | -0.74659 | -0.92771 | + | bcid_adc_LUMI_45 | "ADC vs BCID for LUMI_45" | 199 | 2095.1 | 947.90 | -0.87342 | -0.60699 | + | bcid_adc_LUMI_46 | "ADC vs BCID for LUMI_46" | 199 | 1656.2 | 1039.7 | -0.58107 | -1.2514 | + | bcid_adc_LUMI_47 | "ADC vs BCID for LUMI_47" | 199 | 2206.5 | 794.67 | -1.2367 | 0.93193 | + | bcid_adc_TIME_05_00 | "ADC vs BCID for TIME_05_00" | 199 | 1886.6 | 912.20 | -0.46031 | -0.75571 | + | bcid_adc_TIME_05_01 | "ADC vs BCID for TIME_05_01" | 199 | 1886.6 | 912.03 | -0.46021 | -0.75387 | + | bcid_adc_TIME_05_02 | "ADC vs BCID for TIME_05_02" | 199 | 1885.7 | 912.93 | -0.45868 | -0.75867 | + | bcid_adc_TIME_05_03 | "ADC vs BCID for TIME_05_03" | 199 | 1886 | 913.42 | -0.45842 | -0.76068 | + | bcid_adc_TIME_05_04 | "ADC vs BCID for TIME_05_04" | 199 | 1890 | 912.89 | -0.46063 | -0.75946 | + | bcid_adc_TIME_05_05 | "ADC vs BCID for TIME_05_05" | 199 | 1895.4 | 912.48 | -0.46831 | -0.75773 | + | bcid_adc_TIME_05_06 | "ADC vs BCID for TIME_05_06" | 199 | 1902.2 | 909.17 | -0.47984 | -0.74181 | + | bcid_adc_TIME_05_07 | "ADC vs BCID for TIME_05_07" | 199 | 1902.3 | 909.23 | -0.48037 | -0.74151 | + | bcid_adc_TIME_05_08 | "ADC vs BCID for TIME_05_08" | 199 | 1876.3 | 926.34 | -0.45098 | -0.80591 | + | bcid_adc_TIME_05_09 | "ADC vs BCID for TIME_05_09" | 199 | 1876.7 | 926.06 | -0.45196 | -0.80464 | + | bcid_adc_TIME_05_10 | "ADC vs BCID for TIME_05_10" | 199 | 1877.1 | 925.87 | -0.45227 | -0.80372 | + | bcid_adc_TIME_05_11 | "ADC vs BCID for TIME_05_11" | 199 | 1877.4 | 925.11 | -0.45123 | -0.80212 | + | bcid_adc_TIME_05_12 | "ADC vs BCID for TIME_05_12" | 199 | 1882.6 | 921.22 | -0.45532 | -0.78836 | + | bcid_adc_TIME_05_13 | "ADC vs BCID for TIME_05_13" | 199 | 1886.4 | 914.96 | -0.45779 | -0.7667 | + | bcid_adc_TIME_05_14 | "ADC vs BCID for TIME_05_14" | 199 | 1887.2 | 910.90 | -0.4616 | -0.75008 | + | bcid_adc_TIME_05_15 | "ADC vs BCID for TIME_05_15" | 199 | 1887.4 | 910.76 | -0.46148 | -0.74925 | + | bcid_adc_TIME_11_00 | "ADC vs BCID for TIME_11_00" | 199 | 1895.5 | 924.33 | -0.48253 | -0.78174 | + | bcid_adc_TIME_11_01 | "ADC vs BCID for TIME_11_01" | 199 | 1894.7 | 924.37 | -0.48126 | -0.78254 | + | bcid_adc_TIME_11_02 | "ADC vs BCID for TIME_11_02" | 199 | 1894.4 | 924.80 | -0.48065 | -0.78409 | + | bcid_adc_TIME_11_03 | "ADC vs BCID for TIME_11_03" | 199 | 1893.9 | 923.94 | -0.4775 | -0.7835 | + | bcid_adc_TIME_11_04 | "ADC vs BCID for TIME_11_04" | 199 | 1892.8 | 920.02 | -0.46914 | -0.7778 | + | bcid_adc_TIME_11_05 | "ADC vs BCID for TIME_11_05" | 199 | 1893.2 | 914.35 | -0.45981 | -0.76588 | + | bcid_adc_TIME_11_06 | "ADC vs BCID for TIME_11_06" | 199 | 1892.9 | 912.08 | -0.45612 | -0.76202 | + | bcid_adc_TIME_11_07 | "ADC vs BCID for TIME_11_07" | 199 | 1892.8 | 912.83 | -0.45671 | -0.76371 | + | bcid_adc_TIME_11_08 | "ADC vs BCID for TIME_11_08" | 199 | 1880.7 | 924.01 | -0.45545 | -0.79934 | + | bcid_adc_TIME_11_09 | "ADC vs BCID for TIME_11_09" | 199 | 1880.3 | 924.56 | -0.45494 | -0.80144 | + | bcid_adc_TIME_11_10 | "ADC vs BCID for TIME_11_10" | 199 | 1880.5 | 924.29 | -0.45503 | -0.79994 | + | bcid_adc_TIME_11_11 | "ADC vs BCID for TIME_11_11" | 199 | 1882 | 923.37 | -0.45668 | -0.79683 | + | bcid_adc_TIME_11_12 | "ADC vs BCID for TIME_11_12" | 199 | 1887.4 | 923.20 | -0.46261 | -0.79237 | + | bcid_adc_TIME_11_13 | "ADC vs BCID for TIME_11_13" | 199 | 1895 | 923.89 | -0.47921 | -0.78266 | + | bcid_adc_TIME_11_14 | "ADC vs BCID for TIME_11_14" | 199 | 1899.5 | 923.91 | -0.4894 | -0.77539 | + | bcid_adc_TIME_11_15 | "ADC vs BCID for TIME_11_15" | 199 | 1897.6 | 924.16 | -0.48645 | -0.77878 | + | bcid_adc_TIME_29_00 | "ADC vs BCID for TIME_29_00" | 199 | 1898.3 | 910.80 | -0.47463 | -0.74715 | + | bcid_adc_TIME_29_01 | "ADC vs BCID for TIME_29_01" | 199 | 1897.8 | 911.17 | -0.47374 | -0.74859 | + | bcid_adc_TIME_29_02 | "ADC vs BCID for TIME_29_02" | 199 | 1897.8 | 911.49 | -0.47357 | -0.74952 | + | bcid_adc_TIME_29_03 | "ADC vs BCID for TIME_29_03" | 199 | 1897.1 | 911.57 | -0.47295 | -0.75054 | + | bcid_adc_TIME_29_04 | "ADC vs BCID for TIME_29_04" | 199 | 1895.7 | 913.47 | -0.47028 | -0.75829 | + | bcid_adc_TIME_29_05 | "ADC vs BCID for TIME_29_05" | 199 | 1895.8 | 915.67 | -0.47172 | -0.76577 | + | bcid_adc_TIME_29_06 | "ADC vs BCID for TIME_29_06" | 199 | 1893.7 | 916.36 | -0.47081 | -0.76778 | + | bcid_adc_TIME_29_07 | "ADC vs BCID for TIME_29_07" | 199 | 1893.9 | 915.91 | -0.47068 | -0.76583 | + | bcid_adc_TIME_29_08 | "ADC vs BCID for TIME_29_08" | 199 | 1889.9 | 918.49 | -0.46809 | -0.77157 | + | bcid_adc_TIME_29_09 | "ADC vs BCID for TIME_29_09" | 199 | 1889.3 | 918.20 | -0.46679 | -0.77198 | + | bcid_adc_TIME_29_10 | "ADC vs BCID for TIME_29_10" | 199 | 1889.6 | 917.79 | -0.46701 | -0.77118 | + | bcid_adc_TIME_29_11 | "ADC vs BCID for TIME_29_11" | 199 | 1888.8 | 917.78 | -0.4649 | -0.77255 | + | bcid_adc_TIME_29_12 | "ADC vs BCID for TIME_29_12" | 199 | 1890.6 | 916.35 | -0.46544 | -0.76886 | + | bcid_adc_TIME_29_13 | "ADC vs BCID for TIME_29_13" | 199 | 1894.9 | 913.12 | -0.46831 | -0.75715 | + | bcid_adc_TIME_29_14 | "ADC vs BCID for TIME_29_14" | 199 | 1899.1 | 910.00 | -0.47491 | -0.7438 | + | bcid_adc_TIME_29_15 | "ADC vs BCID for TIME_29_15" | 199 | 1898.7 | 910.08 | -0.47523 | -0.74504 | + | bcid_adc_TIME_35_00 | "ADC vs BCID for TIME_35_00" | 199 | 1876.1 | 922.29 | -0.4427 | -0.80479 | + | bcid_adc_TIME_35_01 | "ADC vs BCID for TIME_35_01" | 199 | 1876.3 | 922.05 | -0.44309 | -0.80445 | + | bcid_adc_TIME_35_02 | "ADC vs BCID for TIME_35_02" | 199 | 1877.1 | 922.10 | -0.44353 | -0.80308 | + | bcid_adc_TIME_35_03 | "ADC vs BCID for TIME_35_03" | 199 | 1879.7 | 921.46 | -0.44623 | -0.80039 | + | bcid_adc_TIME_35_04 | "ADC vs BCID for TIME_35_04" | 199 | 1884.1 | 920.96 | -0.45291 | -0.79452 | + | bcid_adc_TIME_35_05 | "ADC vs BCID for TIME_35_05" | 199 | 1888.3 | 920.44 | -0.45911 | -0.78978 | + | bcid_adc_TIME_35_06 | "ADC vs BCID for TIME_35_06" | 199 | 1893.8 | 917.96 | -0.46697 | -0.77764 | + | bcid_adc_TIME_35_07 | "ADC vs BCID for TIME_35_07" | 199 | 1893.1 | 918.02 | -0.46651 | -0.77811 | + | bcid_adc_TIME_35_08 | "ADC vs BCID for TIME_35_08" | 199 | 1887.8 | 918.23 | -0.45517 | -0.78469 | + | bcid_adc_TIME_35_09 | "ADC vs BCID for TIME_35_09" | 199 | 1888 | 918.44 | -0.45459 | -0.78538 | + | bcid_adc_TIME_35_10 | "ADC vs BCID for TIME_35_10" | 199 | 1887.7 | 918.66 | -0.4541 | -0.78537 | + | bcid_adc_TIME_35_11 | "ADC vs BCID for TIME_35_11" | 199 | 1887 | 918.29 | -0.45401 | -0.78533 | + | bcid_adc_TIME_35_12 | "ADC vs BCID for TIME_35_12" | 199 | 1884.3 | 919.61 | -0.45134 | -0.79181 | + | bcid_adc_TIME_35_13 | "ADC vs BCID for TIME_35_13" | 199 | 1880.2 | 920.83 | -0.44715 | -0.79919 | + | bcid_adc_TIME_35_14 | "ADC vs BCID for TIME_35_14" | 199 | 1873.9 | 922.25 | -0.44163 | -0.8074 | + | bcid_adc_TIME_35_15 | "ADC vs BCID for TIME_35_15" | 199 | 1874.4 | 922.12 | -0.44152 | -0.80558 | diff --git a/Pr/PrAlgorithms/CMakeLists.txt b/Pr/PrAlgorithms/CMakeLists.txt index de3251475dfc136c0e203df18371e21ba8dc9b93..9bac6b5864909b57b6132d40608a1763a5bb1369 100644 --- a/Pr/PrAlgorithms/CMakeLists.txt +++ b/Pr/PrAlgorithms/CMakeLists.txt @@ -28,6 +28,7 @@ gaudi_add_module(PrAlgorithms src/PrStoreSciFiHits.cpp src/PrStoreUTHit.cpp src/HitsEmptyProducer.cpp + src/ForceToolInstantiation.cpp LINK Boost::container Boost::headers diff --git a/Pr/PrAlgorithms/src/ForceToolInstantiation.cpp b/Pr/PrAlgorithms/src/ForceToolInstantiation.cpp new file mode 100644 index 0000000000000000000000000000000000000000..73ecb104bc16d50a88853eaf20a97eb19a21b9ea --- /dev/null +++ b/Pr/PrAlgorithms/src/ForceToolInstantiation.cpp @@ -0,0 +1,37 @@ +/***********************************************************************************\ +* (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations * +* * +* This software is distributed under the terms of the Apache version 2 licence, * +* copied verbatim in the file "LICENSE". * +* * +* 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 "LHCbAlgs/Consumer.h" + +/** + * @brief Forces instantiation of the provided tool + * + * This template class is designed to handle cases where certain algorithms (such as FunTuple) + * cannot directly create required tools due to framework limitations. + * By creating a separate algorithm that forces instantiation of the tool, the latter can be referred to + * by name. + * + * The current algorithm has to be added to the control flow for correct operation. + * + * @param Tool The ToolHandle of the required tool + */ + +class ForceToolInstantiation final : public LHCb::Algorithm::Consumer { +public: + ForceToolInstantiation( const std::string& name, ISvcLocator* pSvcLocator ) : Consumer( name, pSvcLocator, {} ){}; + + void operator()() const override{}; + +private: + PublicToolHandle m_tool{ this, "Tool", "" }; +}; + +DECLARE_COMPONENT_WITH_ID( ForceToolInstantiation, "ForceToolInstantiation" ) diff --git a/Pr/PrAlgorithms/src/PrDownTrack.h b/Pr/PrAlgorithms/src/PrDownTrack.h index 4d14f96e9b4ddbbbb73c959216f4a3ce3047fb70..4a4391bd7299d47cfabd01691ae083c0c56066fd 100644 --- a/Pr/PrAlgorithms/src/PrDownTrack.h +++ b/Pr/PrAlgorithms/src/PrDownTrack.h @@ -32,41 +32,42 @@ namespace Downstream { public: const LHCb::Pr::UT::Hits* hits = nullptr; int hit{ 0 }; - float x{ 0 }, z{ 0 }; + float x{ 0 }, x0{ 0 }, dxdy{ 0 }, z{ 0 }; float projection{ 0 }; using F = SIMDWrapper::scalar::types::float_v; using I = SIMDWrapper::scalar::types::int_v; - Hit( const LHCb::Pr::UT::Hits* _hits, const int _hit, float _x, float _z, float _proj ) - : hits( _hits ), hit( _hit ), x( _x ), z( _z ), projection( _proj ) {} + Hit( const LHCb::Pr::UT::Hits* _hits, const int _hit, float _x, float _x0, float _dxdy, float _z, float _proj ) + : hits( _hits ), hit( _hit ), x( _x ), x0( _x0 ), dxdy( _dxdy ), z( _z ), projection( _proj ) {} - [[nodiscard]] auto lhcbID() const { + [[nodiscard, gnu::always_inline]] inline auto lhcbID() const { const auto mH = getScalarHit(); const auto chanID = mH.get().cast(); return bit_cast( LHCb::LHCbID( LHCb::Detector::UT::ChannelID( chanID ) ).lhcbID() ); } - [[nodiscard]] int planeCode() const { + [[nodiscard, gnu::always_inline]] inline int planeCode() const { const auto mH = getScalarHit(); auto lhcbid = mH.get().cast(); return ( lhcbid & static_cast( UTInfo::MasksBits::HalfLayerMask ) ) >> static_cast( UTInfo::MasksBits::HalfLayerBits ); } - [[nodiscard]] auto weight() const { + [[nodiscard, gnu::always_inline]] inline auto weight() const { const auto mH = getScalarHit(); return mH.get().cast(); } - [[nodiscard]] auto sin() const { + [[nodiscard, gnu::always_inline]] inline auto sin() const { const auto mH = getScalarHit(); - return -mH.get().cast() * mH.get().cast(); + return -dxdy * mH.get().cast(); } - [[nodiscard]] auto zAtYEq0() const { + [[nodiscard, gnu::always_inline]] inline auto zAtYEq0() const { const auto mH = getScalarHit(); return mH.get().cast(); } - [[nodiscard]] bool isYCompatible( const float y, const float tol ) const { + [[nodiscard, gnu::always_inline]] inline auto z0() const { return z; } + [[nodiscard, gnu::always_inline]] inline bool isYCompatible( const float y, const float tol ) const { const auto mH = getScalarHit(); const auto yMin = std::min( mH.get().cast(), mH.get().cast() ); @@ -74,9 +75,20 @@ namespace Downstream { std::max( mH.get().cast(), mH.get().cast() ); return ( ( ( yMin - tol ) <= y ) && ( y <= ( yMax + tol ) ) ); } - [[nodiscard]] inline auto xAt( const float y ) const { + template + [[nodiscard, gnu::always_inline]] inline float_t xAtY( const float_t y ) const { + return x0 + y * dxdy; + } + [[nodiscard, gnu::always_inline]] inline auto dxDy() const { return dxdy; } + [[nodiscard, gnu::always_inline]] inline auto ymin() const { + const auto mH = getScalarHit(); + return std::min( mH.get().cast(), + mH.get().cast() ); + } + [[nodiscard, gnu::always_inline]] inline auto ymax() const { const auto mH = getScalarHit(); - return mH.get().cast() + y * mH.get().cast(); + return std::max( mH.get().cast(), + mH.get().cast() ); } }; @@ -96,6 +108,81 @@ namespace Downstream { lhs.lhcbID() < rhs.lhcbID() ); }; + /** + * @namespace Downstream::SOA + * Provides structure-of-arrays (SOA) representations and proxies, optimized for SIMD processing. + * + * @struct Downstream::SOA::Hits + * SOA collection of UT hits. Only selected variables are buffered. + * Container has an idx field which may store the index of the same hit in hitHandler. + * + * @author Volodymyr Svintozelskyi + * @date 2025-06-08 + */ + namespace SOA { + struct HitsTag { + // Extrapolation + struct x0 : LHCb::Event::float_field {}; + struct z0 : LHCb::Event::float_field {}; + struct dxdy : LHCb::Event::float_field {}; + struct weight : LHCb::Event::float_field {}; + struct ymin : LHCb::Event::float_field {}; + struct ymax : LHCb::Event::float_field {}; + struct idx : LHCb::Event::int_field {}; + + template + using hits_t = LHCb::Event::SOACollection; + }; + + struct Hits : HitsTag::hits_t { + using base_t = typename HitsTag::hits_t; + using tag_t = HitsTag; + using base_t::allocator_type; + Hits( Zipping::ZipFamilyNumber zipIdentifier = Zipping::generateZipIdentifier(), allocator_type alloc = {} ) + : base_t{ std::move( zipIdentifier ), std::move( alloc ) } {} + + // Constructor used by zipping machinery when making a copy of a zip + Hits( Zipping::ZipFamilyNumber zn, Hits const& old ) : base_t{ std::move( zn ), old } {} + + // Define an minimal custom proxy for this track + template + struct HitsProxy : LHCb::Event::Proxy { + using base_t = typename LHCb::Event::Proxy; + using base_t::base_t; + using base_t::width; + + [[nodiscard, gnu::always_inline]] inline auto x0() const { return this->template get(); } + [[nodiscard, gnu::always_inline]] inline auto z0() const { return this->template get(); } + [[nodiscard, gnu::always_inline]] inline auto dxdy() const { return this->template get(); } + [[nodiscard, gnu::always_inline]] inline auto weight() const { return this->template get(); } + [[nodiscard, gnu::always_inline]] inline auto sin() const { return -dxdy() / sqrt( 1.f + dxdy() * dxdy() ); } + [[nodiscard, gnu::always_inline]] inline auto idx() const { return this->template get(); } + [[nodiscard, gnu::always_inline]] inline auto ymin() const { return this->template get(); } + [[nodiscard, gnu::always_inline]] inline auto ymax() const { return this->template get(); } + + template + [[nodiscard, gnu::always_inline]] inline auto xAtY( const float_t y ) const { + return x0() + y * dxdy(); + } + + [[gnu::always_inline]] inline void copyFromScalarHit( const Downstream::Hit& hit, unsigned idx = 0 ) const + requires( simd == SIMDWrapper::InstructionSet::Scalar ) + { + this->template field().set( hit.x0 ); + this->template field().set( hit.z ); + this->template field().set( hit.dxDy() ); + this->template field().set( hit.weight() ); + this->template field().set( idx ); + this->template field().set( hit.ymin() ); + this->template field().set( hit.ymax() ); + } + }; + + template + using proxy_type = HitsProxy; + }; + } // namespace SOA + } // namespace Downstream /** @class PrDownTrack PrDownTrack.h @@ -119,8 +206,11 @@ public: // using Hits = boost::container::static_vector; // Until we can put a bound on the number of hits, use a small_vector + PrDownTrack() = default; + PrDownTrack( Gaudi::TrackVectorF stateVector, float stateZ, float zUT, LHCb::span magnetParams, - LHCb::span yParams, LHCb::span momPar, float magnetScale ) + LHCb::span yParams, LHCb::span momPar, float magnetScale, + bool useYSlopefromSeed ) : m_stateVector( stateVector ), m_stateZ( stateZ ), m_zUT( zUT ) { const auto tx2 = stateTx() * stateTx(); @@ -139,8 +229,10 @@ public: const float dSlope = std::abs( m_slopeX - stateTx() ); const float dSlope2 = dSlope * dSlope; - const float by = stateY() / ( stateZ + ( yParams[0] * fabs( stateTy() ) * zMagnet + yParams[1] ) * dSlope2 ); - m_slopeY = by * ( 1. + yParams[0] * fabs( by ) * dSlope2 ); + const float by = useYSlopefromSeed + ? stateTy() + : stateY() / ( stateZ + ( yParams[0] * fabs( stateTy() ) * zMagnet + yParams[1] ) * dSlope2 ); + m_slopeY = useYSlopefromSeed ? stateTy() : by * ( 1. + yParams[0] * fabs( by ) * dSlope2 ); const float yMagnet = stateY() + dz * by - yParams[1] * by * dSlope2; @@ -161,7 +253,7 @@ public: m_weightXMag = 1.0 / ( errXMag * errXMag ); m_weightYMag = 1.0 / ( errYMag * errYMag ); - m_magnet = Gaudi::XYZPoint( xMagnet, yMagnet, zMagnet ); + m_magnet = Gaudi::XYZPointF( xMagnet, yMagnet, zMagnet ); //=== Save for reference m_displX = 0.; @@ -172,30 +264,33 @@ public: } /// getters - float stateX() const noexcept { return m_stateVector[0]; } - float stateY() const noexcept { return m_stateVector[1]; } - float stateZ() const noexcept { return m_stateZ; } - float stateTx() const noexcept { return m_stateVector[2]; } - float stateTy() const noexcept { return m_stateVector[3]; } - float stateQoP() const noexcept { return m_stateVector[4]; } - Hits& hits() noexcept { return m_hits; } - const Hits& hits() const noexcept { return m_hits; } - float xMagnet() const noexcept { return m_magnet.x(); } - float yMagnet() const noexcept { return m_magnet.y(); } - float zMagnet() const noexcept { return m_magnet.z(); } - float slopeX() const noexcept { return m_slopeX; } - float slopeY() const noexcept { return m_slopeY; } - float weightXMag() const noexcept { return m_weightXMag; } - float weightYMag() const noexcept { return m_weightYMag; } - float chi2() const noexcept { return m_chi2; } - float zUT() const noexcept { return m_zUT; } + [[gnu::always_inline]] inline float stateX() const noexcept { return m_stateVector[0]; } + [[gnu::always_inline]] inline float stateY() const noexcept { return m_stateVector[1]; } + [[gnu::always_inline]] inline float stateZ() const noexcept { return m_stateZ; } + [[gnu::always_inline]] inline float stateTx() const noexcept { return m_stateVector[2]; } + [[gnu::always_inline]] inline float stateTy() const noexcept { return m_stateVector[3]; } + [[gnu::always_inline]] inline float stateQoP() const noexcept { return m_stateVector[4]; } + [[gnu::always_inline]] inline Hits& hits() noexcept { return m_hits; } + [[gnu::always_inline]] inline const Hits& hits() const noexcept { return m_hits; } + [[gnu::always_inline]] inline float xMagnet() const noexcept { return m_magnet.x(); } + [[gnu::always_inline]] inline float yMagnet() const noexcept { return m_magnet.y(); } + [[gnu::always_inline]] inline float zMagnet() const noexcept { return m_magnet.z(); } + [[gnu::always_inline]] inline float slopeX() const noexcept { return m_slopeX; } + [[gnu::always_inline]] inline float slopeY() const noexcept { return m_slopeY; } + [[gnu::always_inline]] inline float weightXMag() const noexcept { return m_weightXMag; } + [[gnu::always_inline]] inline float weightYMag() const noexcept { return m_weightYMag; } + [[gnu::always_inline]] inline float chi2() const noexcept { return m_chi2; } + [[gnu::always_inline]] inline float zUT() const noexcept { return m_zUT; } + [[gnu::always_inline]] inline float displX() const noexcept { return m_displX; } + [[gnu::always_inline]] inline float displY() const noexcept { return m_displY; } /// setters void setSlopeX( float slopeX ) noexcept { m_slopeX = slopeX; } void setChi2( float chi2 ) noexcept { m_chi2 = chi2; } // functions - [[gnu::always_inline]] inline float xAtZ( float z ) const noexcept { + template + [[gnu::always_inline]] inline float_t xAtZ( float_t z ) const noexcept { const float curvature = 1.6e-5 * ( stateTx() - m_slopeX ); return xMagnet() + ( z - zMagnet() ) * m_slopeX + curvature * ( z - m_zUT ) * ( z - m_zUT ); } @@ -205,7 +300,8 @@ public: return xStart + ( z - zStart ) * m_slopeX; } - [[gnu::always_inline]] inline float yAtZ( float z ) const noexcept { + template + [[gnu::always_inline]] inline float_t yAtZ( float_t z ) const noexcept { return yMagnet() + m_displY + ( z - zMagnet() ) * slopeY(); } @@ -230,15 +326,20 @@ public: } [[gnu::always_inline]] inline float distance( const Downstream::Hit& hit ) const noexcept { - return hit.xAt( yAtZ( hit.z ) ) - xAtZ( hit.z ); + return hit.xAtY( yAtZ( hit.z ) ) - xAtZ( hit.z ); + } + + template + [[gnu::always_inline]] inline auto distance( const HitProxy& hit ) const noexcept { + return hit.x0() + hit.dxdy() * yAtZ( hit.z0() ) - xAtZ( hit.z0() ); } [[gnu::always_inline]] inline float distanceLinear( const Downstream::Hit& hit, float zStart, float xStart ) const noexcept { - return hit.xAt( yAtZ( hit.z ) ) - xAtZLinear( hit.z, zStart, xStart ); + return hit.xAtY( yAtZ( hit.z ) ) - xAtZLinear( hit.z, zStart, xStart ); } - bool isYCompatible( const float tol ) const noexcept { + [[gnu::always_inline]] inline bool isYCompatible( const float tol ) const noexcept { return std ::all_of( m_hits.begin(), m_hits.end(), [&]( const auto& hit ) { return hit.isYCompatible( yAtZ( hit.z ), tol ); } ); } @@ -270,3 +371,171 @@ private: // collection of downstream tracks... From PatDownTrack using PrDownTracks = std::vector; + +template +class PrIncompleteDownTrack final { + using int_t = typename simd_t::int_v; + using float_t = typename simd_t::float_v; + using mask_t = typename simd_t::mask_v; + +public: + PrIncompleteDownTrack( const PrDownTrack& _track, const LHCb::LinAlg::Vec& _fit_res ) + : track( _track ), fit_res( _fit_res ) {} + + [[gnu::always_inline]] inline const float_t dx() const { return fit_res( 0 ); } + + [[gnu::always_inline]] inline const float_t dsl() const { return fit_res( 1 ); } + + [[gnu::always_inline]] inline const float_t dy() const + requires( dim == 3 ) + { + return fit_res( 2 ); + } + + [[gnu::always_inline]] inline const float_t mag_x() const { return track.xMagnet() + dx(); } + + [[gnu::always_inline]] inline const float_t slopeX() const { return track.slopeX() + dsl(); } + + [[gnu::always_inline]] inline const float_t displX() const { return track.displX() + dx(); } + + [[gnu::always_inline]] inline const float_t displY() const { + if constexpr ( dim == 2 ) { + return 0.f; + } else { + return track.displY() + dy(); + }; + } + + [[gnu::always_inline]] inline const float_t curvature() const { return 1.6e-5 * ( track.stateTx() - slopeX() ); } + + template + [[gnu::always_inline]] inline const float_t xAtZ( const arg_t z ) const { + return mag_x() + ( z - track.zMagnet() ) * slopeX() + curvature() * ( z - track.zUT() ) * ( z - track.zUT() ); + } + + template + [[gnu::always_inline]] inline const float_t yAtZ( const arg_t z ) const { + return track.yMagnet() + displY() + ( z - track.zMagnet() ) * track.slopeY(); + } + + template + [[gnu::always_inline]] inline const float_t chi2( const HitProxy& newhit, const float y_tol ) const + requires( dim == 3 ) + { + float_t chi2 = displX() * displX() * track.weightXMag() + displY() * displY() * track.weightYMag(); + mask_t ycompatible( true ); + + for ( const auto& h : track.hits() ) { + const auto y = yAtZ( h.z0() ); + const auto dist = h.xAtY( y ) - xAtZ( h.z0() ); + chi2 += dist * dist * h.weight(); + ycompatible = ycompatible & ( y >= ( h.ymin() - y_tol ) ) & ( y <= ( h.ymax() + y_tol ) ); + } + + const auto track_xAtZ = xAtZ( newhit.z0() ); + const auto track_yAtZ = yAtZ( newhit.z0() ); + const auto hit_xAtY = newhit.xAtY( track_yAtZ ); + chi2 += newhit.weight() * ( hit_xAtY - track_xAtZ ) * ( hit_xAtY - track_xAtZ ); + if ( track.hits().size() > 2 ) chi2 /= ( track.hits().size() - 2 ); + + ycompatible = + ycompatible & ( track_yAtZ >= ( newhit.ymin() - y_tol ) ) & ( track_yAtZ <= ( newhit.ymax() + y_tol ) ); + return select( ycompatible, chi2, std::numeric_limits::max() ); + } + + template + [[gnu::always_inline]] inline const float_t chi2( const HitProxyA& firstHit, const HitProxyB& secondHit ) const + requires( dim == 2 ) + { + float_t chi2 = displX() * displX() * track.weightXMag(); + + const auto getDev2 = [&]( const auto& hit ) { + const auto v = hit.xAtY( yAtZ( hit.z0() ) ) - xAtZ( hit.z0() ); + return v * v; + }; + + chi2 += firstHit.weight() * getDev2( firstHit ); + chi2 += secondHit.weight() * getDev2( secondHit ); + + return chi2; + } + + template + [[gnu::always_inline]] void inline compressstore( PrDownTracks& output, const mask_t hit_ok, const float_t chi2, + const int_t idx, const Downstream::Hits& preSelHits ) const + requires( dim == 3 ) + { + + if ( !any( hit_ok ) ) return; + + std::array chi2_buf, dx_buf, dsl_buf, dy_buf; + std::array idx_buf; + + // Move the results from simd vectors to the arrays, so we can iterate over them + chi2.compressstore( hit_ok, chi2_buf.data() ); + dx().compressstore( hit_ok, dx_buf.data() ); + dsl().compressstore( hit_ok, dsl_buf.data() ); + dy().compressstore( hit_ok, dy_buf.data() ); + idx.compressstore( hit_ok, idx_buf.data() ); + + // Finally store the fitted tracks in the output vector + const short ngoodhits = popcount( hit_ok ); + output.reserve( output.size() + ngoodhits ); + + for ( short i = 0; i < ngoodhits; i++ ) { + auto& greatTrack = output.emplace_back( track ); + greatTrack.hits().push_back( preSelHits[idx_buf[i]] ); + greatTrack.updateX( dx_buf[i], dsl_buf[i] ); + greatTrack.updateY( dy_buf[i] ); + greatTrack.setChi2( chi2_buf[i] ); + + if constexpr ( update_proj ) { + for ( auto& hit : greatTrack.hits() ) { + const float dist = greatTrack.distance( hit ); + hit.projection = dist; + } + } + } + } + + template + [[gnu::always_inline]] void inline compressstore( PrDownTracks& output, const mask_t hit_ok, const float_t chi2, + const int_t idx, const HitProxy& firstHit, + const Downstream::Hits& preSelHits ) const + requires( dim == 2 ) + { + if ( !any( hit_ok ) ) return; + + std::array chi2_buf, dx_buf, dsl_buf; + std::array idx_buf; + + // Move the results from simd vectors to the arrays, so we can iterate over them + chi2.compressstore( hit_ok, chi2_buf.data() ); + dx().compressstore( hit_ok, dx_buf.data() ); + dsl().compressstore( hit_ok, dsl_buf.data() ); + idx.compressstore( hit_ok, idx_buf.data() ); + + // Finally store the fitted tracks in the output vector + const short ngoodhits = popcount( hit_ok ); + output.reserve( output.size() + ngoodhits ); + + for ( short i = 0; i < ngoodhits; i++ ) { + auto& greatTrack = output.emplace_back( track ); + greatTrack.hits().push_back( firstHit ); + greatTrack.hits().push_back( preSelHits[idx_buf[i]] ); + greatTrack.updateX( dx_buf[i], dsl_buf[i] ); + greatTrack.setChi2( chi2_buf[i] ); + + if constexpr ( update_proj ) { + for ( auto& hit : greatTrack.hits() ) { + const float dist = greatTrack.distance( hit ); + hit.projection = dist; + } + } + } + } + +private: + const PrDownTrack& track; + const LHCb::LinAlg::Vec& fit_res; +}; diff --git a/Pr/PrAlgorithms/src/PrLongLivedTracking.cpp b/Pr/PrAlgorithms/src/PrLongLivedTracking.cpp index 28acdc1b29ebe5f4c2c5eabd662cb7ab4be6e419..4f7f274fde05ab575ee7726ec2f4f41bb78ea78b 100644 --- a/Pr/PrAlgorithms/src/PrLongLivedTracking.cpp +++ b/Pr/PrAlgorithms/src/PrLongLivedTracking.cpp @@ -66,6 +66,10 @@ class PrLongLivedTracking using SeedTracks = LHCb::Pr::Seeding::Tracks; using DownstreamTracks = LHCb::Pr::Downstream::Tracks; + using simd_t = SIMDWrapper::best::types; + using float_v = simd_t::float_v; + using mask_v = simd_t::mask_v; + public: // - InputLocation: Input location of seed tracks // - OutputLocation: Output location of downstream tracks. @@ -95,28 +99,32 @@ public: const LHCb::UTDAQ::GeomCache& geometry, const DeMagnet& magnet ) const override { // create my state holding all needed mutable variables. std::array preSelHits; - Downstream::Hits matchingXHits; - Downstream::Hits uHitsTemp; + Downstream::SOA::Hits matchingXHits; + Downstream::SOA::Hits uHitsTemp; // -- track collections PrDownTracks goodXTracks; PrDownTracks goodXUTracks; PrDownTracks trackCandidates; - matchingXHits.reserve( 64 ); - trackCandidates.reserve( 16 ); - goodXTracks.reserve( 8 ); - goodXUTracks.reserve( 8 ); - uHitsTemp.reserve( 64 ); + matchingXHits.reserve( 128 ); + trackCandidates.reserve( 128 ); + goodXTracks.reserve( 10 ); + goodXUTracks.reserve( 10 ); + uHitsTemp.reserve( 80 ); //========================================================================== // Get the output container //========================================================================== - DownstreamTracks finalTracks{ &InputTracks, Zipping::generateZipIdentifier(), LHCb::getMemResource( evtCtx ) }; + DownstreamTracks finalTracks{ &InputTracks, + m_highMassTuning.value() ? DownstreamTracks::History::PrDownstreamHighMass + : DownstreamTracks::History::PrDownstream, + Zipping::generateZipIdentifier(), LHCb::getMemResource( evtCtx ) }; + finalTracks.reserve( InputTracks.size() ); const float magScaleFactor = magnet.signedRelativeCurrent(); - bool magnetOff = std::abs( magScaleFactor ) > 1e-6 ? false : true; + const bool magnetOff = std::abs( magScaleFactor ) < 1e-6; m_nSeeds += InputTracks.size(); @@ -135,8 +143,8 @@ public: const auto state = _tr.StatePosDir( LHCb::Event::Enum::State::Location::EndT ); Gaudi::TrackVectorF stateVector{ state.x().cast(), state.y().cast(), state.tx().cast(), state.ty().cast(), _tr.qOverP().cast() }; - PrDownTrack refTrack( stateVector, state.z().cast(), m_zUT, m_zMagnetParams.value(), m_yParams.value(), - m_momentumParams.value(), magScaleFactor * ( -1 ) ); + PrDownTrack refTrack( stateVector, state.z().cast(), m_zUT.value(), m_zMagnetParams.value(), m_yParams.value(), + m_momentumParams.value(), magScaleFactor * ( -1 ), m_highMassTuning.value() ); // -- Veto particles coming from the beam pipe. if ( insideBeampipe( refTrack ) ) continue; @@ -165,8 +173,8 @@ public: nXTrack += createTrackCandidates( trackCandidates, refTrack, preSelHits, matchingXHits, uHitsTemp, goodXTracks, goodXUTracks, { 0, 3, 1, 2 }, false ); - bool has4LayerTrack = false; - for ( PrDownTrack& track : trackCandidates ) { has4LayerTrack |= track.hits().size() == 4; } + const bool has4LayerTrack = std::any_of( trackCandidates.begin(), trackCandidates.end(), + []( const PrDownTrack& track ) { return track.hits().size() == 4; } ); if ( !has4LayerTrack ) { nXTrack += createTrackCandidates( trackCandidates, refTrack, preSelHits, matchingXHits, uHitsTemp, goodXTracks, @@ -183,15 +191,19 @@ public: auto bestCandidateScore = std::numeric_limits::infinity(); std::vector downstream_tracks_mlp_datas; - downstream_tracks_mlp_datas.reserve( 16 ); + downstream_tracks_mlp_datas.reserve( trackCandidates.size() ); + + std::sort( preSelHits[0].begin(), preSelHits[0].end(), Downstream::IncreaseByProj ); + std::sort( preSelHits[3].begin(), preSelHits[3].end(), Downstream::IncreaseByProj ); for ( PrDownTrack& track : trackCandidates ) { if ( has4LayerTrack && track.hits().size() < 4 ) continue; addOverlapRegions( track, preSelHits ); - if ( track.chi2() > m_maxChi2 || insideBeampipe( track ) || track.hits().size() < m_MinNumUTHits || - track.hits().size() > m_MaxNumUTHits ) + if ( ( track.chi2() > m_maxChi2.value() || insideBeampipe( track ) || + track.hits().size() < m_MinNumUTHits.value() || track.hits().size() > m_MaxNumUTHits.value() ) || + ( m_highMassTuning.value() && track.pt() < m_minPt.value() ) ) continue; downstream_tracks_mlp_datas.emplace_back( track, _tr ); @@ -204,7 +216,8 @@ public: } ); for ( MLP::PrLongLivedTracking::DataType_t& track_data : downstream_tracks_mlp_datas ) { - if ( bestCandidateScore > track_data.ghost_probability && track_data.ghost_probability < m_maxGhostProb ) { + if ( bestCandidateScore > track_data.ghost_probability && + track_data.ghost_probability < m_maxGhostProb.value() ) { bestCandidate = track_data.m_downstream_track; bestCandidateScore = track_data.ghost_probability; } @@ -223,11 +236,17 @@ private: // currently // DataObjectReadHandle m_ForwardTracks { this, "ForwardTracks" LHCb::TrackLocation::Forward }; // DataObjectReadHandle m_MatchTracks { this, "MatchTracks", LHCb::TrackLocation::Match }; + Gaudi::Property m_highMassTuning{ this, "UseHighMassTunings", false }; // - XPredTolConst: x-window for preselection is XPredTolConst/p + XPredTolOffset Gaudi::Property m_xPredTolConst{ this, "XPredTolConst", 200. * Gaudi::Units::mm* Gaudi::Units::GeV }; // - XPredTolOffset: x-window for preselection is XPredTolConst/p + XPredTolOffset Gaudi::Property m_xPredTolOffset{ this, "XPredTolOffset", 6. * Gaudi::Units::mm }; + // - YPredTolConst: y-window for preselection is XPredTol/YPredTolConst + YPredTolOffset + Gaudi::Property m_yPredTolConst{ this, "YPredTolConst", 2.0 }; + // - YPredTolOffset: y-window for preselection is XPredTol/YPredTolConst + YPredTolOffset + Gaudi::Property m_yPredTolOffset{ this, "YPredTolOffset", 7.5 * Gaudi::Units::mm }; + // - TolMatchConst: x-window for matching x hits is TolMatchConst/p + TolMatchOffset Gaudi::Property m_tolMatchConst{ this, "TolMatchConst", 20000. }; // - TolMatchOffset: x-window for matching x hits is TolMatchConst/p + TolMatchOffset @@ -251,7 +270,7 @@ private: // - MinUTy: half-height of of beampipe rectangle Gaudi::Property m_minUTy{ this, "MinUTy", 25. * Gaudi::Units::mm }; // - MaxGhostProb: Maximum ghost probability for tracks - Gaudi::Property m_maxGhostProb{ this, "MaxGhostProb", 0.75 }; + Gaudi::Property m_maxGhostProb{ this, "GhostProbCut", 0.75 }; // Define parameters for MC09 field, zState = 9410 // - ZMagnetParams: Parameters to determine the z-position of the magnet point. Tune with PrKsParams. @@ -266,7 +285,7 @@ private: // - ZUTa: z-position of first UT station Gaudi::Property m_zUTa{ this, "ZUTa", 2350. * Gaudi::Units::mm }; // - InitialMinPt: Minimum pT of the track from initial estimate - Gaudi::Property m_initialMinPt{ this, "InitialMinPt", 0. * Gaudi::Units::MeV }; + Gaudi::Property m_initialMinPt{ this, "InitialMinPt", 20. * Gaudi::Units::MeV }; // - InitialMinMomentum: Minimum momentum of the track from initial estimate Gaudi::Property m_initialMinMomentum{ this, "InitialMinMomentum", 1400. * Gaudi::Units::MeV }; // - MinPt: Minimum pT of the track @@ -281,7 +300,7 @@ private: // -- Parameter to reject seed track which are likely ghosts // - FisherCut: Cut on Fisher-discriminant to reject bad seed tracks. - Gaudi::Property m_seedCut{ this, "FisherCut", -1.0 }; + // Gaudi::Property m_seedCut{ this, "FisherCut", -1.0 }; // -- Parameters for the cut on deltaP (momentum estimate from Seeding and Downstream kink) // - MaxDeltaPConst: Window for deltaP is: MaxDeltaPConst/p + MaxDeltaPOffset @@ -297,9 +316,9 @@ private: // XCorrestionOffset Gaudi::Property m_xCorrectionOffset{ this, "XCorrestionOffset", 0.4 }; // - MaxXTracks: Maximum number of x-tracklets to process further - Gaudi::Property m_maxXTracks{ this, "MaxXTracks", 2 }; + Gaudi::Property m_maxXTracks{ this, "MaxXTracks", 3 }; // - MaxChi2DistXTracks: Maximum chi2 difference to x-tracklet with best chi2 - Gaudi::Property m_maxChi2DistXTracks{ this, "MaxChi2DistXTracks", 0.2 }; + // Gaudi::Property m_maxChi2DistXTracks{ this, "MaxChi2DistXTracks", 0.2 }; // - MaxXUTracks: Maximum number of xu-tracklets to process further Gaudi::Property m_maxXUTracks{ this, "MaxXUTracks", 3 }; Gaudi::Property m_fitXProjChi2Offset{ this, "FitXProjChi2Offset", 4.5 }; @@ -315,11 +334,11 @@ private: // If false only hits and T-tracks from good longtracks are removed. // The criterion for this is the Chi2 of the longtracks from the fit. // - RemoveUsed: Remove seed tracks and used UT hits (with chi2-cut on long track)? - Gaudi::Property m_removeUsed{ this, "RemoveUsed", false }; + // Gaudi::Property m_removeUsed{ this, "RemoveUsed", false }; // - RemoveAll: Remove seed tracks and used UT hits (withoug chi2-cut on long track)? - Gaudi::Property m_removeAll{ this, "RemoveAll", false }; + // Gaudi::Property m_removeAll{ this, "RemoveAll", false }; // - LongChi2: Chi2-cut for the removal - Gaudi::Property m_longChi2{ this, "LongChi2", 1.5 }; + // Gaudi::Property m_longChi2{ this, "LongChi2", 1.5 }; // properties Gaudi::Property m_weightsfilename{ this, "WeightsFileName", @@ -337,9 +356,10 @@ private: // void prepareSeeds(const Tracks& inTracks, std::vector& myInTracks)const; ///< Tag already used T-Seeds int createTrackCandidates( PrDownTracks& trackCandidates, const PrDownTrack& refTrack, - std::array& preSelHits, Downstream::Hits matchingXHits, - Downstream::Hits uHitsTemp, PrDownTracks goodXTracks, PrDownTracks goodXUTracks, + std::array& preSelHits, Downstream::SOA::Hits& matchingXHits, + Downstream::SOA::Hits& uHitsTemp, PrDownTracks& goodXTracks, PrDownTracks& goodXUTracks, const std::array plane_indx, bool skip_second_layer = false ) const { + int nXTrack = 0; for ( auto& myHit : preSelHits[plane_indx[0]] ) { @@ -352,11 +372,11 @@ private: const float slopeX = ( track.xMagnet() - posX ) / ( track.zMagnet() - meanZ ); track.setSlopeX( slopeX ); - if ( ( std::abs( track.momentum() ) < m_initialMinMomentum ) || ( track.pt() < m_initialMinPt ) ) continue; + if ( ( std::abs( track.momentum() ) < m_initialMinMomentum.value() ) || ( track.pt() < m_initialMinPt.value() ) ) + continue; // -- Fit x projection - findMatchingHits( track, preSelHits[plane_indx[1]], matchingXHits ); - fitXProjection( track, myHit, matchingXHits, goodXTracks, skip_second_layer ); + createXTracks( track, myHit, preSelHits[plane_indx[1]], matchingXHits, goodXTracks, skip_second_layer ); nXTrack += goodXTracks.size(); @@ -371,9 +391,9 @@ private: for ( PrDownTrack& xuTrack : goodXUTracks ) { addVHits( xuTrack, preSelHits[plane_indx[3]] ); if ( xuTrack.hits().size() < 3 ) continue; - simplyFit( xuTrack ); + simplyFit( xuTrack ); // fitAndRemove( xuTrack ); - if ( xuTrack.chi2() > m_maxChi2 || !xuTrack.isYCompatible( m_yTol ) ) continue; + if ( xuTrack.chi2() > m_maxChi2.value() || !xuTrack.isYCompatible( m_yTol.value() ) ) continue; trackCandidates.push_back( std::move( xuTrack ) ); } // Loop over good xu tracks } // Loop over good x tracks @@ -388,16 +408,16 @@ private: const LHCb::Pr::Hits& hitHandler, const LHCb::UTDAQ::GeomCache& geom ) const { // - Max Pt around 100 MeV for strange particle decay -> maximum displacement is in 1/p. - float xPredTol = m_xPredTolOffset; + float xPredTol = m_xPredTolOffset.value(); // P dependance + overal tol. auto p = std::abs( track.momentum() ); - if ( p > 1e-6 ) xPredTol = m_xPredTolConst / p + m_xPredTolOffset; - const float yTol = xPredTol / 2.0 + 7.5; // this is a little vague and not the final word + if ( p > 1e-6 ) xPredTol = m_xPredTolConst.value() / p + m_xPredTolOffset.value(); + const float yTol = xPredTol / m_yPredTolConst.value() + m_yPredTolOffset.value(); // -- a correction turns out to be beneficial // -- maybe to compensate tracks not coming from 0/0 (?) - const float correction = xPosCorrection( track ); + const float correction = m_highMassTuning.value() ? 0.0f : xPosCorrection( track ); for ( auto& i : preSelHits ) i.clear(); @@ -456,7 +476,8 @@ private: auto xx = mH.get().cast() + y * dxDy; if ( xPredTol < std::abs( pos - xx ) ) continue; // go from -x to +x - preSelHits[layer].emplace_back( &hitHandler, itHit, xx, zLayer, fabs( xx - pos ) ); + preSelHits[layer].emplace_back( &hitHandler, itHit, xx, mH.get().cast(), + mH.get().cast(), zLayer, xx - pos ); } } } @@ -465,6 +486,36 @@ private: std::sort( preSelHits[1].begin(), preSelHits[1].end(), Downstream::IncreaseByProj ); std::sort( preSelHits[2].begin(), preSelHits[2].end(), Downstream::IncreaseByProj ); } + //======================================================================== + // Fill matrices + //========================================================================= + template + [[gnu::always_inline]] inline void fillFitMatrices2D( LHCb::LinAlg::MatSym& mat, + LHCb::LinAlg::Vec& rhs, const HitProxy& hit, + const TrackProxy& track ) const { + const auto dz = 0.001 * ( hit.z0() - track.zMagnet() ); + const auto w = hit.weight(); + const auto t = hit.sin(); + + mat( 0, 0 ) += w; + mat( 1, 0 ) += w * dz; + mat( 1, 1 ) += w * dz * dz; + mat( 2, 0 ) += w * t; + mat( 2, 1 ) += w * dz * t; + mat( 2, 2 ) += w * t * t; + + if constexpr ( useProj ) { + const auto dist = hit.projection; + rhs( 0 ) += w * dist; + rhs( 1 ) += w * dist * dz; + rhs( 2 ) += w * dist * t; + } else { + const auto dist = track.distance( hit ); + rhs( 0 ) += w * dist; + rhs( 1 ) += w * dist * dz; + rhs( 2 ) += w * dist * t; + } + } //========================================================================= // Fit and remove the worst hit, as long as over tolerance @@ -479,35 +530,15 @@ private: again = false; //== Fit, using the magnet point as constraint. - float mat[6], rhs[3]; - mat[0] = track.weightXMag(); - mat[1] = 0.; - mat[2] = 0.; - mat[3] = 0.; - mat[4] = 0.; - mat[5] = 0.; - rhs[0] = track.dxMagnet() * track.weightXMag(); - rhs[1] = 0.; - rhs[2] = 0.; + auto mat = LHCb::LinAlg::initialize_with_zeros>(); + auto rhs = LHCb::LinAlg::initialize_with_zeros>(); + mat( 0, 0 ) = track.weightXMag(); + rhs( 0 ) = track.dxMagnet() * track.weightXMag(); std::array differentPlanes = { 0, 0, 0, 0 }; for ( auto& hit : track.hits() ) { - const float dz = 0.001 * ( hit.z - track.zMagnet() ); - const float dist = track.distance( hit ); - const float w = hit.weight(); - const float t = hit.sin(); - - mat[0] += w; - mat[1] += w * dz; - mat[2] += w * dz * dz; - mat[3] += w * t; - mat[4] += w * dz * t; - mat[5] += w * t * t; - rhs[0] += w * dist; - rhs[1] += w * dist * dz; - rhs[2] += w * dist * t; - + fillFitMatrices2D( mat, rhs, hit, track ); // -- check how many different layers have fired differentPlanes[hit.planeCode()]++; } @@ -517,17 +548,16 @@ private: const std::uint8_t nbUV = differentPlanes[1] + differentPlanes[2]; // -- solve the equation and update the parameters of the track - CholeskyDecomp decomp( mat ); - if ( !decomp ) { + auto [success, inv_M] = mat.invChol(); + if ( !success ) { track.setChi2( 1e42 ); return; - } else { - decomp.Solve( rhs ); } + const auto res = inv_M * rhs; - const float dx = rhs[0]; - const float dsl = 0.001 * rhs[1]; - const float dy = rhs[2]; + const float dx = res( 0 ); + const float dsl = 0.001 * res( 1 ); + const float dy = res( 2 ); if ( nbUV < 4 ) track.updateX( dx, dsl ); track.updateY( dy ); @@ -542,7 +572,7 @@ private: Downstream::Hit& hit = *itH; const float yTrackAtZ = track.yAtZ( hit.z ); - if ( !hit.isYCompatible( yTrackAtZ, m_yTol ) ) { + if ( !hit.isYCompatible( yTrackAtZ, m_yTol.value() ) ) { track.hits().erase( itH ); if ( 2 < track.hits().size() ) again = true; break; @@ -563,7 +593,7 @@ private: if ( track.hits().size() > 2 ) chi2 /= ( track.hits().size() - 2 ); track.setChi2( chi2 ); - if ( m_maxChi2 < chi2 && track.hits().size() > 3 && maxDist > 0 ) { + if ( m_maxChi2.value() < chi2 && track.hits().size() > 3 && maxDist > 0 ) { track.hits().erase( worst ); again = true; } @@ -572,59 +602,27 @@ private: //========================================================================= // Simplified fit function that only fits and does not perform outlier removal //========================================================================= - template void simplyFit( PrDownTrack& track ) const { //== Fit, using the magnet point as constraint. - float mat[6], rhs[3]; - mat[0] = track.weightXMag(); - mat[1] = 0.; - mat[2] = 0.; - mat[3] = 0.; - mat[4] = 0.; - mat[5] = 0.; - rhs[0] = track.dxMagnet() * track.weightXMag(); - rhs[1] = 0.; - rhs[2] = 0.; - - // for ( std::int8_t iHit = 0; iHit < nHits; ++iHit ) { - for ( const auto& hit : track.hits() ) { - const float dz = 0.001 * ( hit.z - track.zMagnet() ); - const float w = hit.weight(); - const float t = hit.sin(); - - mat[0] += w; - mat[1] += w * dz; - mat[2] += w * dz * dz; - mat[3] += w * t; - mat[4] += w * dz * t; - mat[5] += w * t * t; - - if constexpr ( useProjections ) { - const float dist = hit.projection; - rhs[0] += w * dist; - rhs[1] += w * dist * dz; - rhs[2] += w * dist * t; - } else { - const float dist = track.distance( hit ); - rhs[0] += w * dist; - rhs[1] += w * dist * dz; - rhs[2] += w * dist * t; - } - } + auto mat = LHCb::LinAlg::initialize_with_zeros>(); + auto rhs = LHCb::LinAlg::initialize_with_zeros>(); + mat( 0, 0 ) = track.weightXMag(); + rhs( 0 ) = track.dxMagnet() * track.weightXMag(); + + for ( const auto& hit : track.hits() ) { fillFitMatrices2D( mat, rhs, hit, track ); } // -- solve the equation and update the parameters of the track - CholeskyDecomp decomp( mat ); - if ( !decomp ) { + auto [success, inv_M] = mat.invChol(); + if ( !success ) { track.setChi2( 1e42 ); return; - } else { - decomp.Solve( rhs ); } + const auto res = inv_M * rhs; - const float dx = rhs[0]; - const float dsl = 0.001 * rhs[1]; - const float dy = rhs[2]; + const float dx = res( 0 ); + const float dsl = 0.001 * res( 1 ); + const float dy = res( 2 ); track.updateX( dx, dsl ); track.updateY( dy ); @@ -643,26 +641,141 @@ private: } //========================================================================= - // Collect the hits in the other x layer + // Simplified fit function that only fits and does not perform outlier removal //========================================================================= - void findMatchingHits( const PrDownTrack& track, const Downstream::Hits& preSelHits, - Downstream::Hits& matchingXHits ) const { + void simplyFitSIMD( PrDownTrack& track, const Downstream::SOA::Hits& hits_soa, const Downstream::Hits& preSelHits, + PrDownTracks& output, float maxChi2 ) const { + output.clear(); + + auto mat = LHCb::LinAlg::initialize_with_zeros>(); + auto rhs = LHCb::LinAlg::initialize_with_zeros>(); + mat( 0, 0 ) = track.weightXMag(); + rhs( 0 ) = track.dxMagnet() * track.weightXMag(); + + // Fill the matrices using the already stored hits in a track object + // This part is the same for all the U-hits + for ( const auto& hit : track.hits() ) { fillFitMatrices2D( mat, rhs, hit, track ); } + + // Add the U hit and do magic + for ( const auto& hit : hits_soa.simd() ) { + + auto mat_int = mat; + auto rhs_int = rhs; + + fillFitMatrices2D( mat_int, rhs_int, hit, track ); + + auto [success, inv_M] = mat_int.invChol(); + if ( !any( success ) ) { continue; }; + + auto res = inv_M * rhs_int; + res( 1 ) *= 0.001; + + PrIncompleteDownTrack test_track( track, res ); + const auto chi2 = test_track.chi2( hit, m_yTol.value() ); + + // Check the constraints + const auto hit_ok = ( success & ( chi2 < maxChi2 ) & hit.loop_mask() ); + if ( !any( hit_ok ) ) { continue; } + + test_track.compressstore( output, hit_ok, chi2, hit.idx(), preSelHits ); + } + } + + /** + * @brief Creates X tracks by combining two X-hits and performing a fit. + * + * This function attempts to extend a given track with a given firstHit by matching it with hits in the second X + * layer. It first selects hits within a matching window, then performs a fit using SIMD instructions. Tracks passing + * the fit quality criteria are added to the output collection. + * + * @param track The downstream track to be extended. + * @param firstHit The first hit associated with the track. + * @param preSelHits Preselected hits in the X layers to be considered for matching. + * @param matchingXHits Buffer container for hits that match the seed track within the matching window. + * @param goodXTracks Output container for successfully fitted X tracks. + * @param skip_second_layer If true, forces the tracks to have only one X hit, effectively skipping the second layer. + * + */ + void createXTracks( const PrDownTrack& track, const Downstream::Hit& firstHit, const Downstream::Hits& preSelHits, + Downstream::SOA::Hits& matchingXHits, PrDownTracks& goodXTracks, + const bool skip_second_layer ) const { + + // Prepare the buffers + goodXTracks.clear(); matchingXHits.clear(); - if ( preSelHits.empty() ) return; - const float tol = - std::min( m_maxWindow.value(), m_tolMatchOffset + m_tolMatchConst * std::abs( track.stateQoP() ) ); + if ( preSelHits.empty() ) { + // 3-hit case handling + auto& tr = goodXTracks.emplace_back( track ); + tr.hits().push_back( firstHit ); + return; + }; + + const float tol = std::min( m_maxWindow.value(), + m_tolMatchOffset.value() + m_tolMatchConst.value() * std::abs( track.stateQoP() ) ); + const float maxChi2 = m_fitXProjChi2Offset.value() + m_fitXProjChi2Const.value() / std::abs( track.momentum() ); + const float xPred = track.xAtZ( preSelHits.front().z ); + // -- The x search seems sensitive to the ordering, so we do not use a binary search here to find the starting point for ( auto& hit : preSelHits ) { const float adist = std::abs( hit.x - xPred ); - if ( adist <= tol ) { matchingXHits.push_back( hit ); } + if ( adist <= tol ) { + auto newhit = matchingXHits.emplace_back(); + newhit.copyFromScalarHit( hit, std::distance( preSelHits.data(), &hit ) ); + } + } + + // Perform the fit + const auto w1 = firstHit.weight(); + const auto d1 = track.distance( firstHit ); + const auto dz1 = firstHit.z - track.zMagnet(); + + for ( const auto& secondHit : matchingXHits.simd() ) { + + const auto w2 = secondHit.weight(); + const auto d2 = track.distance( secondHit ); + const auto dz2 = secondHit.z0() - track.zMagnet(); + + constexpr float scale = 0.0009765625f; // = 1/1024; just to make it a power of 2 + const auto mat = + std::array{ scale * ( track.weightXMag() + w1 + w2 ), scale * scale * ( w1 * dz1 + w2 * dz2 ), + scale * scale * scale * ( w1 * dz1 * dz1 + w2 * dz2 * dz2 ) }; + const auto rhs = + std::array{ scale * ( w1 * d1 + w2 * d2 ), scale * scale * ( w1 * d1 * dz1 + w2 * d2 * dz2 ) }; + + // Solve linear system + const auto det = mat[0] * mat[2] - mat[1] * mat[1]; + LHCb::LinAlg::Vec fit_res; + fit_res( 0 ) = ( mat[2] * rhs[0] - mat[1] * rhs[1] ) / det; + fit_res( 1 ) = scale * ( mat[0] * rhs[1] - mat[1] * rhs[0] ) / det; + + PrIncompleteDownTrack test_track( track, fit_res ); + const auto chi2 = test_track.chi2( firstHit, secondHit ); + + const auto hit_ok = ( chi2 < maxChi2 ) & secondHit.loop_mask(); + if ( none( hit_ok ) ) continue; + // If we found smth during the second pass we should reject everything, + // as those tracks are supposed to be reconstructed during the first pass + if ( any( hit_ok ) && skip_second_layer ) return; + + test_track.compressstore( goodXTracks, hit_ok, chi2, secondHit.idx(), firstHit, preSelHits ); + } + + if ( goodXTracks.size() > m_maxXTracks.value() ) { + // We have more than m_maxXTracks, sort by the distance from the track to a new hit and keep only the best ones + std::partial_sort( goodXTracks.begin(), goodXTracks.begin() + m_maxXTracks.value(), goodXTracks.end(), + [&]( const PrDownTrack& lhs, const PrDownTrack& rhs ) { + return std::abs( lhs.hits().back().x - xPred ) < std::abs( rhs.hits().back().x - xPred ); + } ); + goodXTracks.erase( goodXTracks.begin() + m_maxXTracks.value(), goodXTracks.end() ); } - std::sort( matchingXHits.begin(), matchingXHits.end(), - [xPred]( const Downstream::Hit& lhs, const Downstream::Hit& rhs ) { - return std::abs( lhs.x - xPred ) < std::abs( rhs.x - xPred ); - } ); + if ( goodXTracks.empty() ) { + // 3-hit case handling + auto& tr = goodXTracks.emplace_back( track ); + tr.hits().push_back( firstHit ); + } } //========================================================================= @@ -693,9 +806,9 @@ private: } // Create a state at zUTa - newTrack.field().setPosition( static_cast( track.xAtZ( m_zUTa ) ), - static_cast( track.yAtZ( m_zUTa ) ), - static_cast( m_zUTa ) ); + newTrack.field().setPosition( static_cast( track.xAtZ( m_zUTa.value() ) ), + static_cast( track.yAtZ( m_zUTa.value() ) ), + static_cast( m_zUTa.value() ) ); newTrack.field().setDirection( static_cast( track.slopeX() ), static_cast( track.slopeY() ) ); newTrack.field().setQOverP( static_cast( 1.0 / track.momentum() ) ); @@ -704,7 +817,7 @@ private: //========================================================================= // Add the U hits. //========================================================================= - void addUHits( PrDownTrack& track, const Downstream::Hits& preSelHits, Downstream::Hits& uHitsTemp, + void addUHits( PrDownTrack& track, const Downstream::Hits& preSelHits, Downstream::SOA::Hits& uHitsTemp, PrDownTracks& goodXUTracks ) const { goodXUTracks.clear(); @@ -712,7 +825,7 @@ private: uHitsTemp.clear(); - const float tol = m_tolUOffset + m_tolUConst / std::abs( track.momentum() ); + const float tol = m_tolUOffset.value() + m_tolUConst.value() / std::abs( track.momentum() ); // -- these numbers are a little arbitrary float minChi2 = ( track.hits().size() == 1 ) ? 800 : 300; @@ -722,42 +835,39 @@ private: const float zStart = preSelHits[0].z; const float xStart = track.xAtZ( zStart ); - for ( const auto& hit : preSelHits ) { - // const float dist = track.distance( hit ); - const float dist = track.distanceLinear( hit, xStart, zStart ); - if ( std::abs( dist ) > tol ) continue; - // hit.projection = dist; - uHitsTemp.push_back( hit ); - uHitsTemp.back().projection = dist; - } + // -- binary search to find the starting point. The sorting is not perfect, that's why we add a 1mm tolerance + const auto itBeg = + std::lower_bound( preSelHits.begin(), preSelHits.end(), tol, [&]( const Downstream::Hit& hit, float tol ) { + return track.distanceLinear( hit, xStart, zStart ) < -tol - 1.0; + } ); - std::sort( uHitsTemp.begin(), uHitsTemp.end(), Downstream::IncreaseByAbsProj ); + for ( auto it = itBeg; it < preSelHits.end(); ++it ) { + const Downstream::Hit& hit = *it; + const float dist = track.distanceLinear( hit, xStart, zStart ); - for ( auto& hit : track.hits() ) { hit.projection = track.distance( hit ); } + if ( dist > tol + 1.0 ) break; + if ( std::abs( dist ) > tol ) continue; - for ( const auto& hit : uHitsTemp ) { - auto& greatTrack = goodXUTracks.emplace_back( track ); + auto newhit = uHitsTemp.emplace_back(); + newhit.copyFromScalarHit( hit, std::distance( preSelHits.data(), &hit ) ); + } - greatTrack.hits().push_back( hit ); - // fitAndRemove( greatTrack ); - simplyFit( greatTrack ); + for ( auto& hit : track.hits() ) { hit.projection = track.distance( hit ); } - // -- it's sorted - if ( greatTrack.chi2() > minChi2 ) { - goodXUTracks.pop_back(); - break; - } + simplyFitSIMD( track, uHitsTemp, preSelHits, goodXUTracks, minChi2 ); - if ( !greatTrack.isYCompatible( m_yTol ) ) { - goodXUTracks.pop_back(); - continue; - } - - if ( goodXUTracks.size() >= m_maxXUTracks ) { break; } + // If we have more than m_maxXUTracks, sort by chi2 and keep only the best ones + constexpr auto IncreaseByChi2 = []( const PrDownTrack& lhs, const PrDownTrack& rhs ) { + return lhs.chi2() < rhs.chi2(); + }; + if ( goodXUTracks.size() > m_maxXUTracks.value() ) { + std::partial_sort( goodXUTracks.begin(), goodXUTracks.begin() + m_maxXUTracks.value(), goodXUTracks.end(), + IncreaseByChi2 ); + goodXUTracks.erase( goodXUTracks.begin() + m_maxXUTracks.value(), goodXUTracks.end() ); } // 3-hit case handling - if ( ( goodXUTracks.size() == 0 ) && ( track.hits().size() == 2 ) ) { goodXUTracks.emplace_back( track ); } + if ( ( goodXUTracks.empty() ) && ( track.hits().size() == 2 ) ) { goodXUTracks.emplace_back( track ); } } //========================================================================= @@ -767,7 +877,8 @@ private: if ( preSelHits.empty() ) { return; } const auto p = std::abs( track.momentum() ); - const float tol = ( track.hits().size() == 2 ) ? m_tolUOffset + m_tolUConst / p : m_tolVOffset + m_tolVConst / p; + const float tol = ( track.hits().size() == 2 ) ? m_tolUOffset.value() + m_tolUConst.value() / p + : m_tolVOffset.value() + m_tolVConst.value() / p; // Find the closest hit to the track // It's enough to look at the closest hit only, since absolute majority of the tracks @@ -779,11 +890,17 @@ private: const float zStart = preSelHits[0].z; const float xStart = track.xAtZ( zStart ); - for ( auto& hit : preSelHits ) { - // const float dist = track.distance( hit ); + // -- binary search to find the starting point. The sorting is not perfect, that's why we add a 1mm tolerance + const auto itBeg = + std::lower_bound( preSelHits.begin(), preSelHits.end(), tol, [&]( const Downstream::Hit& hit, float tol ) { + return track.distanceLinear( hit, xStart, zStart ) < -tol - 1.0; + } ); + + for ( auto it = itBeg; it < preSelHits.end(); ++it ) { + const auto& hit = *it; const float dist = track.distanceLinear( hit, xStart, zStart ); + if ( dist > tol + 1.0 ) break; if ( std::abs( dist ) > tol ) continue; - // hit.projection = dist; if ( std::abs( dist ) < std::abs( bestDist ) ) { bestDist = dist; bestHit = &hit; @@ -794,77 +911,11 @@ private: if ( bestHit ) { track.hits().push_back( *bestHit ); track.hits().back().projection = bestDist; - simplyFit( track ); - // fitAndRemove( track ); + simplyFit( track ); } track.sortFinalHits(); } - // void tagUsedUT( const Track* tr ) const; ///< Tag hits that were already used elsewhere - - //============================================================================= - // Fit the projection in the zx plane, one hit in each x layer - //============================================================================= - void fitXProjection( const PrDownTrack& track, const Downstream::Hit& firstHit, const Downstream::Hits& matchingXHits, - PrDownTracks& goodXTracks, const bool skip_second_layer ) const { - goodXTracks.clear(); - - const float maxChi2 = m_fitXProjChi2Offset + m_fitXProjChi2Const / std::abs( track.momentum() ); - - // Catch if there is no second hit in other station - for ( const auto& hit : matchingXHits ) { - auto& tr = goodXTracks.emplace_back( track ); - xFit( tr, firstHit, hit ); - - if ( tr.chi2() > maxChi2 ) { - goodXTracks.pop_back(); - continue; - } - - tr.hits().push_back( firstHit ); - tr.hits().push_back( hit ); - - if ( goodXTracks.size() >= 3 ) { break; } - } - - if ( skip_second_layer && goodXTracks.size() != 0 ) { - goodXTracks.clear(); - return; - } - - // 3-hit case handling - if ( goodXTracks.size() == 0 ) { - auto& tr = goodXTracks.emplace_back( track ); - tr.hits().push_back( firstHit ); - } - } - - //========================================================================= - // Check if the new candidate is better than the old one - //========================================================================= - bool acceptCandidate( const PrDownTrack& track, bool magnetOff ) const { - const int nbMeasureOK = track.hits().size(); - - //== Enough measures to have Chi2/ndof. - if ( nbMeasureOK < 3 ) { return false; } - - // -- use a tighter chi2 for 3 hit tracks - // -- as they are more likely to be ghosts - const float maxChi2 = ( nbMeasureOK == 3 ) ? m_maxChi2ThreeHits : m_maxChi2; - - //== Good enough Chi2/ndof - if ( maxChi2 < track.chi2() ) { return false; } - - //== Compatible momentum - const float p = track.momentum(); - const float deltaP = p * track.stateQoP() - 1.; - - if ( maxDeltaP( track ) < fabs( deltaP ) && !magnetOff ) { return false; } - if ( std::abs( p ) < m_minMomentum || track.pt() < m_minPt ) { return false; } - - return true; - } - //============================================================================= // This is needed for tracks which have more than one x hit in one layer // Maybe we could make this smarter and do it for every track and add the 'second best' @@ -885,13 +936,21 @@ private: const float zStart = preSelHits[planeCode].front().z; const float xStart = track.xAtZ( zStart ); - for ( const auto& hit : preSelHits[planeCode] ) { + // -- binary search to find the starting point. The sorting is not perfect, that's why we add a 1mm tolerance + const auto itBeg = + std::lower_bound( preSelHits[planeCode].begin(), preSelHits[planeCode].end(), 3 * m_overlapTol.value(), + [&]( const Downstream::Hit& hit, float tol ) { return hit.x - trackHit.x < -tol - 3.0; } ); + + for ( auto it = itBeg; it < preSelHits[planeCode].end(); ++it ) { // -- the displacement in z between overlap modules is larger than 1mm // -- given that the overlap will be in the same layer as the hit on the track, we can do some heuristics for // the distance before calculating the real one - if ( std::abs( hit.z - trackHit.z ) < 1.0 || std::abs( hit.x - trackHit.x ) > 3 * m_overlapTol ) continue; - if ( m_overlapTol > std::abs( track.distanceLinear( hit, xStart, zStart ) ) && - hit.isYCompatible( track.yAtZ( hit.z ), m_yTol ) ) { + const auto& hit = *it; + if ( hit.x - trackHit.x > 3 * m_overlapTol.value() + 3.0 ) break; + if ( std::abs( hit.z - trackHit.z ) < 1.0 || std::abs( hit.x - trackHit.x ) > 3 * m_overlapTol.value() ) + continue; + if ( m_overlapTol.value() > std::abs( track.distanceLinear( hit, xStart, zStart ) ) && + hit.isYCompatible( track.yAtZ( hit.z ), m_yTol.value() ) ) { // -- preSelHits is not used anymore track.hits().push_back( std::move( hit ) ); hitAdded = true; @@ -905,74 +964,21 @@ private: } } - //============================================================================= - // Evaluate the Fisher discriminant for a preselection of seed tracks - //============================================================================= - /* float evaluateFisher( const Track* track ) { - const unsigned int nbIT = std::count_if( track->lhcbIDs().begin(), track->lhcbIDs().end(), - [](const LHCb::LHCbID id){ return id.isIT();}); - float nbITD = static_cast(nbIT); - float lhcbIDSizeD = static_cast(track->lhcbIDs().size()); - std::array vals = { track->chi2PerDoF(), track->p(), track->pt(), nbITD, lhcbIDSizeD }; - - return getFisher( vals ); - } */ - - //========================================================================= - // Fit hits in x layers, using the magnet point as constraint. - //========================================================================= - void xFit( PrDownTrack& track, const Downstream::Hit& hit1, const Downstream::Hit& hit2 ) const { - - const auto w1 = hit1.weight(); - const auto w2 = hit2.weight(); - - auto d1 = track.distance( hit1 ); - auto d2 = track.distance( hit2 ); - - const auto dz1 = hit1.z - track.zMagnet(); - const auto dz2 = hit2.z - track.zMagnet(); - - auto mat = std::array{ track.weightXMag() + w1 + w2, w1 * dz1 + w2 * dz2, w1 * dz1 * dz1 + w2 * dz2 * dz2 }; - auto rhs = std::array{ w1 * d1 + w2 * d2, w1 * d1 * dz1 + w2 * d2 * dz2 }; - - // Solve linear system - const float det = mat[0] * mat[2] - mat[1] * mat[1]; - const float dx = ( mat[2] * rhs[0] - mat[1] * rhs[1] ) / det; - const float dsl = ( mat[0] * rhs[1] - mat[1] * rhs[0] ) / det; - - track.updateX( dx, dsl ); - - d1 = track.distance( hit1 ); - d2 = track.distance( hit2 ); - - const float chi2 = track.initialChi2() + w1 * d1 * d1 + w2 * d2 * d2; - track.setChi2( chi2 ); - } - /// Does this track point inside the beampipe? bool insideBeampipe( const PrDownTrack& track ) const { - return ( m_minUTx > fabs( track.xAtZ( m_zUTa ) ) ) && ( m_minUTy > fabs( track.yAtZ( m_zUTa ) ) ); + return ( m_minUTx.value() > fabs( track.xAtZ( m_zUTa.value() ) ) ) && + ( m_minUTy.value() > fabs( track.yAtZ( m_zUTa.value() ) ) ); } - /// Helper to evaluate the Fisher discriminant - /* float getFisher(const std::array vals) { - float c_fishConst = -1.69860581797; - std::array c_fishCoefficients = {-0.241020410138, 3.03197732663e-07, -1.14400162824e-05, - 0.126857153245, 0.122359738469}; - float fishVal = c_fishConst; - for(int i = 0; i < 5; i++) fishVal += vals[i] * c_fishCoefficients[i]; - return fishVal; - } */ - /// Helper to evaluate the maximum discrepancy between momentum from kink and curvature in T-stations float maxDeltaP( const PrDownTrack& track ) const { - return m_maxDeltaPConst / std::abs( track.momentum() ) + m_maxDeltaPOffset; + return m_maxDeltaPConst.value() / std::abs( track.momentum() ) + m_maxDeltaPOffset.value(); } /// Helper to evaluate the correction to the x position in the UT float xPosCorrection( const PrDownTrack& track ) const { auto p = track.momentum(); - return std::copysign( m_xCorrectionOffset + m_xCorrectionConst / std::abs( p ), p ); + return std::copysign( m_xCorrectionOffset.value() + m_xCorrectionConst.value() / std::abs( p ), p ); } // -- counters diff --git a/Pr/PrAlgorithms/src/PrResidualPrUTHits.cpp b/Pr/PrAlgorithms/src/PrResidualPrUTHits.cpp index 4e383fb81beaf5195b2a906b86d7c787c86224d4..7e95106cc155255c4d6da0b19961b27f0700ffcd 100644 --- a/Pr/PrAlgorithms/src/PrResidualPrUTHits.cpp +++ b/Pr/PrAlgorithms/src/PrResidualPrUTHits.cpp @@ -13,6 +13,8 @@ #include "Event/PrHits.h" #include "Event/PrLongTracks.h" #include "Event/PrUpstreamTracks.h" +#include "Event/Track.h" +#include "UTDAQ/UTDAQHelper.h" #include "UTDAQ/UTInfo.h" #include "UTDet/DeUTDetector.h" @@ -48,11 +50,16 @@ public: { typename base_class_t::KeyValue{ "TracksLocation", "" }, typename base_class_t::KeyValue{ "PrUTHitsLocation", "" } }, typename base_class_t::KeyValue{ "PrUTHitsOutput", "" } ) {} + + mutable Gaudi::Accumulators::AveragingCounter m_inHits{ this, "# Hits in input container" }; + mutable Gaudi::Accumulators::AveragingCounter m_outHits{ this, "# Hits in output container" }; + mutable Gaudi::Accumulators::AveragingCounter m_vetoedHits{ this, "# Hits that are vetoed" }; }; // Declaration of the Algorithm Factory DECLARE_COMPONENT_WITH_ID( PrResidualPrUTHits, "PrResidualPrUTHits" ) DECLARE_COMPONENT_WITH_ID( PrResidualPrUTHits, "PrResidualPrUTHits_Upstream" ) +DECLARE_COMPONENT_WITH_ID( PrResidualPrUTHits, "PrResidualPrUTHits_v1Tracks" ) //============================================================================= // Main execution @@ -62,20 +69,40 @@ LHCb::Pr::UT::Hits PrResidualPrUTHits::operator()( const EventContext& evtCtx const LHCb::Pr::UT::Hits& uthithandler ) const { LHCb::Pr::UT::Hits tmp{ Zipping::generateZipIdentifier(), LHCb::getMemResource( evtCtx ) }; - // mark used UT hits const unsigned int nhits = uthithandler.nHits(); + m_inHits += nhits; tmp.reserve( nhits ); boost::dynamic_bitset<> used{ nhits, false }; - /// mark used SciFi Hits - for ( const auto& track : tracks.scalar() ) { - const int nuthits = track.nUTHits().cast(); - for ( int idx = 0; idx < nuthits; idx++ ) { - const int index = track.ut_index( idx ).cast(); - if ( index >= 0 ) used[index] = true; + /// mark used UT hits + if constexpr ( std::is_same_v ) { + for ( const auto& track : tracks ) { + for ( const auto id : track->lhcbIDs() ) { + if ( id.isUT() ) { + const auto sectorID = id.utID().sectorFullID(); + const auto indexs = uthithandler.indices( sectorID ); + for ( int idx = indexs.first; idx != indexs.second; idx++ ) { + if ( uthithandler.lhcbid( idx ) == id ) { + used[idx] = true; + break; + } + } + } + } + } + } else { + /// mark used UT Hits + for ( const auto& track : tracks.scalar() ) { + const int nuthits = track.nUTHits().cast(); + for ( int idx = 0; idx < nuthits; idx++ ) { + const int index = track.ut_index( idx ).cast(); + if ( index >= 0 ) used[index] = true; + } } } + m_vetoedHits += used.count(); + for ( auto fullchan = 0; fullchan < static_cast( UTInfo::MaxNumberOfSectors ); fullchan++ ) { const auto indexs = uthithandler.indices( fullchan ); @@ -84,5 +111,9 @@ LHCb::Pr::UT::Hits PrResidualPrUTHits::operator()( const EventContext& evtCtx tmp.copyHit( fullchan, idx, uthithandler ); } } + m_outHits += tmp.size(); + + assert( tmp.size() + used.count() == nhits && "# output hits + # vetoed hits != # input hits" ); + return tmp; } diff --git a/Pr/PrConverters/src/fromPrTracksV1Track.cpp b/Pr/PrConverters/src/fromPrTracksV1Track.cpp index 9dd844a21733c06b3317ee37574584a756de2738..855fc5342355ffbe78cc3c8abda42b16dcc084fa 100644 --- a/Pr/PrConverters/src/fromPrTracksV1Track.cpp +++ b/Pr/PrConverters/src/fromPrTracksV1Track.cpp @@ -289,7 +289,10 @@ namespace LHCb::Converters::Track::v1 { outTrack->setType( ConversionInfo::Type( inTrack.backward() ) ); else outTrack->setType( ConversionInfo::Type ); - outTrack->setHistory( ConversionInfo::PrHistory ); + if constexpr ( std::is_same_v ) + outTrack->setHistory( inTracks.history() ); + else + outTrack->setHistory( ConversionInfo::PrHistory ); outTracks.insert( outTrack, inTrack.indices().cast() ); } return outTracks; diff --git a/Pr/PrConverters/tests/refs/convert_tracks.ref b/Pr/PrConverters/tests/refs/convert_tracks.ref index 759556d46cd173c7cadff4525d9740e67ee904c3..28cc54389adac28e6e4bf9ca9cc9916ca5cee20b 100644 --- a/Pr/PrConverters/tests/refs/convert_tracks.ref +++ b/Pr/PrConverters/tests/refs/convert_tracks.ref @@ -7,6 +7,7 @@ |-data_flow_file = '' (default: '') |-data_type = 'Upgrade' (default: 'Upgrade') |-dddb_tag = 'dddb-20171126' (default: '') +|-dstformat = (default: ) |-event_store = 'HiveWhiteBoard' (default: 'HiveWhiteBoard') |-evt_max = 100 (default: -1) |-first_evt = 0 (default: 0) diff --git a/Pr/PrConverters/tests/refs/convert_tracks.ref.detdesc b/Pr/PrConverters/tests/refs/convert_tracks.ref.detdesc index 54e4c11f64e50bdfb55213630700b2fba2cd1383..4e35c64dd5b3a2e6f29453c551011faf8274546e 100644 --- a/Pr/PrConverters/tests/refs/convert_tracks.ref.detdesc +++ b/Pr/PrConverters/tests/refs/convert_tracks.ref.detdesc @@ -7,6 +7,7 @@ |-data_flow_file = '' (default: '') |-data_type = 'Upgrade' (default: 'Upgrade') |-dddb_tag = 'dddb-20171126' (default: '') +|-dstformat = (default: ) |-event_store = 'HiveWhiteBoard' (default: 'HiveWhiteBoard') |-evt_max = 100 (default: -1) |-first_evt = 0 (default: 0) diff --git a/Pr/PrPixel/CMakeLists.txt b/Pr/PrPixel/CMakeLists.txt index 1251c911b35300a6ccfeb55df1ca96339c9f9eb0..8102e5c70c717112a8b6906774c5b6eb5205506e 100644 --- a/Pr/PrPixel/CMakeLists.txt +++ b/Pr/PrPixel/CMakeLists.txt @@ -21,6 +21,7 @@ gaudi_add_module(PrPixel src/VeloKalman.cpp src/PrVPHitsToVPLightClusters.cpp src/VeloHeavyFlavourTracking.cpp + src/VeloCloneKiller.cpp LINK Gaudi::GaudiAlgLib LHCb::DAQEventLib diff --git a/Pr/PrPixel/src/VeloCloneKiller.cpp b/Pr/PrPixel/src/VeloCloneKiller.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b7bf721e73090b2167b5c05124f0b289faa23eca --- /dev/null +++ b/Pr/PrPixel/src/VeloCloneKiller.cpp @@ -0,0 +1,152 @@ +/*****************************************************************************\ +* (c) Copyright 2000-2025 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. * +\*****************************************************************************/ + +// Gaudi +#include "LHCbAlgs/Transformer.h" + +// LHCb +#include "Event/PrHits.h" +#include "Event/PrVeloTracks.h" +#include "Kernel/LHCbID.h" +#include "Kernel/VPConstants.h" +#include "LHCbMath/MatVec.h" +#include "VPDet/VPDetPaths.h" + +namespace { + template + F segment_distance( const LHCb::LinAlg::Vec& p, const LHCb::LinAlg::Vec& p1, + const LHCb::LinAlg::Vec& p2 ) { + auto u = p2 - p1; + auto AP = p - p1; + return sqrt( AP.cross( u ).mag2() / u.mag2() ); + } + + template + struct TrackRef { + TrackRef( unsigned idx, LHCb::LinAlg::Vec p1, LHCb::LinAlg::Vec p2 ) + : idx( idx ), p1( p1 ), p2( p2 ), tx( ( p2.x() - p1.x() ) / ( p2.z() - p1.z() ) ) {} + unsigned idx; + LHCb::LinAlg::Vec p1; + LHCb::LinAlg::Vec p2; + F tx; + }; +} // namespace + +class VeloCloneKiller : public LHCb::Algorithm::MultiTransformer( + const EventContext&, const LHCb::Pr::Velo::Tracks&, const LHCb::Pr::VP::Hits& )> { +public: + VeloCloneKiller( const std::string& name, ISvcLocator* pSvcLocator ) + : MultiTransformer( name, pSvcLocator, { KeyValue{ "InputTracksLocation", "" }, KeyValue{ "HitsLocation", "" } }, + { KeyValue{ "OutputTracksLocation", "" } } ) {} + + std::tuple operator()( const EventContext& evtCtx, const LHCb::Pr::Velo::Tracks& input_tracks, + const LHCb::Pr::VP::Hits& velo_hits ) const override { + std::tuple result{ LHCb::Pr::Velo::Tracks{ + input_tracks.backward(), Zipping::generateZipIdentifier(), LHCb::getMemResource( evtCtx ) } }; + auto& [out] = result; + out.reserve( input_tracks.size() ); + + using TracksTag = LHCb::Pr::Velo::Tag; + + std::vector is_clone; + is_clone.resize( input_tracks.size() ); + + auto hits = velo_hits.scalar(); + auto tracks = input_tracks.scalar(); + + std::vector> sortedTracks; + sortedTracks.reserve( input_tracks.size() ); + + for ( unsigned i = 0; i < tracks.size(); i++ ) { + auto t = tracks[i]; + auto t_hits = t.template field(); + auto tp0 = hits[t_hits[0].get().cast()].template get(); + auto tp1 = hits[t_hits[t_hits.size().cast() - 1].get().cast()] + .template get(); + + sortedTracks.emplace_back( i, tp0, tp1 ); + } + + std::sort( std::begin( sortedTracks ), std::end( sortedTracks ), + []( const auto& a, const auto& b ) { return a.tx.cast() < b.tx.cast(); } ); + + for ( unsigned i = 0; i < sortedTracks.size(); i++ ) { + if ( is_clone[i] ) continue; + auto t1p0 = sortedTracks[i].p1; + auto t1p1 = sortedTracks[i].p2; + auto tx1 = sortedTracks[i].tx; + + bool clone = false; + int clone_idx = -1; + for ( unsigned j = i + 1; j < sortedTracks.size(); j++ ) { + if ( is_clone[j] ) continue; + + auto tx2 = sortedTracks[j].tx; + if ( tx2.cast() - tx1.cast() > m_tx_threshold ) break; + + auto t2p0 = sortedTracks[j].p1; + auto t2p1 = sortedTracks[j].p2; + + auto d0 = segment_distance( t1p0, t2p0, t2p1 ).cast(); + auto d1 = segment_distance( t1p1, t2p0, t2p1 ).cast(); + auto d2 = segment_distance( t2p0, t1p0, t1p1 ).cast(); + auto d3 = segment_distance( t2p1, t1p0, t1p1 ).cast(); + + clone = ( d0 < m_threshold ) && ( d1 < m_threshold ) && ( d2 < m_threshold ) && ( d3 < m_threshold ); + + if ( clone ) { + is_clone[j] = true; + clone_idx = j; + break; + } + } + + int copy_idx = out.size(); + out.copy_back( tracks[sortedTracks[i].idx] ); + + if ( clone ) { // merge tracks (keep hits order, remove duplicates) + auto tout = out.scalar()[copy_idx].template field(); + auto t1 = tracks[sortedTracks[i].idx].template field(); + auto t2 = tracks[sortedTracks[clone_idx].idx].template field(); + tout.resize( 0 ); + int a = 0; + int b = 0; + while ( a < t1.size().cast() || b < t2.size().cast() ) { + auto hout = tout.emplace_back(); + auto ia = ( a < t1.size().cast() ) ? t1[a].get().cast() : 0x7FFFFFFF; + auto ib = ( b < t2.size().cast() ) ? t2[b].get().cast() : 0x7FFFFFFF; + if ( ia > ib ) { + hout.template field().set( ib ); + hout.template field().set( t2[b].get() ); + b++; + } else { + hout.template field().set( ia ); + hout.template field().set( t1[a].get() ); + a++; + b += ( ia == ib ); + } + } + } + } + + m_nbCloneRemoved += input_tracks.size() - out.size(); + + return result; + } + +private: + mutable Gaudi::Accumulators::SummingCounter<> m_nbCloneRemoved{ this, "Nb of removed clones" }; + Gaudi::Property m_threshold{ this, "Threshold", 0.07f }; // Max distance (in mm) of any point on one segment to + // the line defined by the other track + Gaudi::Property m_tx_threshold{ this, "TxThreshold", 0.001f }; // slope threshold for early exit +}; + +DECLARE_COMPONENT( VeloCloneKiller ) diff --git a/Rec/RecAlgs/src/LumiPVs_nobeamline.cpp b/Rec/RecAlgs/src/LumiPVs_nobeamline.cpp index 3235b435a5437426ea9c2b52f0a5188addfa6d0f..63ba3087034bd162e36f0d7cd22d4fae39d01af8 100644 --- a/Rec/RecAlgs/src/LumiPVs_nobeamline.cpp +++ b/Rec/RecAlgs/src/LumiPVs_nobeamline.cpp @@ -71,7 +71,11 @@ void LumiPVs_nobeamline::operator()( const LHCb::ODIN& odin, const InputVeloTrac for ( const auto& kvp : decreport ) { sc = tuple->column( kvp.first, kvp.second.decision() ); } sc = tuple->farray( - { { "PV_nTracks", +[]( const RecPV& pv ) -> double { return pv.tracks().size(); } }, + { { "PV_nTrBw", + +[]( const RecPV& pv ) { + return std::ranges::count_if( pv.tracks(), []( const auto& t ) { return t->isVeloBackward(); } ); + } }, + { "PV_nTracks", +[]( const RecPV& pv ) -> int { return pv.tracks().size(); } }, { "PV_chi2ndof", +[]( const RecPV& pv ) { return pv.chi2() / pv.nDoF(); } }, { "PVX", +[]( const RecPV& pv ) { return pv.position().x(); } }, { "PVY", +[]( const RecPV& pv ) { return pv.position().y(); } }, diff --git a/ReleaseNotes/v38r10.md b/ReleaseNotes/v38r10.md new file mode 100644 index 0000000000000000000000000000000000000000..aa86c7994b30b0d9adcdeba17b6a0a84f414d301 --- /dev/null +++ b/ReleaseNotes/v38r10.md @@ -0,0 +1,35 @@ +2025-08-10 Rec v38r10 +=== + +This version uses +Lbcom [v37r10](../../../../Lbcom/-/tags/v37r10), +LHCb [v57r10](../../../../LHCb/-/tags/v57r10), +Gaudi [v40r0](../../../../Gaudi/-/tags/v40r0), +Detector [v3r3p2](../../../../Detector/-/tags/v3r3p2) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. +Built relative to Rec [v38r9](/../../tags/v38r9), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + + + +### Enhancements ~enhancement + + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + + + +### Documentation ~Documentation + + +### Other + +- Update References for: LHCb!5267 based on lhcb-2025-patches-mr/666, !4538 (@lhcbsoft) diff --git a/ReleaseNotes/v38r11.md b/ReleaseNotes/v38r11.md new file mode 100644 index 0000000000000000000000000000000000000000..403a67c35fa4fa4b7dbaa293fe58768848de3576 --- /dev/null +++ b/ReleaseNotes/v38r11.md @@ -0,0 +1,43 @@ +2025-09-03 Rec v38r11 +=== + +This version uses +Lbcom [v37r11](../../../../Lbcom/-/tags/v37r11), +LHCb [v57r11](../../../../LHCb/-/tags/v57r11), +Detector [v3r3p3](../../../../Detector/-/tags/v3r3p3), +Gaudi [v40r0](../../../../Gaudi/-/tags/v40r0) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. +Built relative to Rec [v38r10](/../../tags/v38r10), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + + + +### Enhancements ~enhancement + +- ~Composites | Reduce combinatorics in checkOverlap, !4397 (@ahennequ) +- ~Monitoring ~Conditions | Suppression warnings in BeamSpotMonitor, !4483 (@spradlin) + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + +- ~Build | Fixes for sanitizer builds, !3928 (@rmatev) + + +### Documentation ~Documentation + + +### Other + +- ~Calo | Adding gamma to energy, !4501 (@jmarchan) [#19] +- ~Calo | Fix CaloESLCorrections conditions path, !4305 (@jmarchan) +- ~Composites | Update DecayLengthSignificance and Lifetime functions to use the same math, !4520 (@wouter) +- Update References for: LHCb!5278, Panoptes!531 based on lhcb-2025-patches-mr/687, !4544 (@lhcbsoft) +- Following stdout changes in Gaudi v40r0 for 2025-patches, !4540 (@msaur) +- Add option to write output of BeamSpotMon as json file, !4536 (@freiss) diff --git a/ReleaseNotes/v38r12.md b/ReleaseNotes/v38r12.md new file mode 100644 index 0000000000000000000000000000000000000000..9c912d2de3354733bd5b9f7d71fc27ca28b93e33 --- /dev/null +++ b/ReleaseNotes/v38r12.md @@ -0,0 +1,37 @@ +2025-09-09 Rec v38r12 +=== + +This version uses +Lbcom [v37r12](../../../../Lbcom/-/tags/v37r12), +LHCb [v57r12](../../../../LHCb/-/tags/v57r12), +Detector [v3r3p3](../../../../Detector/-/tags/v3r3p3), +Gaudi [v40r0](../../../../Gaudi/-/tags/v40r0) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. +Built relative to Rec [v38r11](/../../tags/v38r11), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + +- Fix access of ProtoParticle tool to GlobalChargedPIDs for 2025-patches, !4579 (@msaur) + + +### Enhancements ~enhancement + +- ~Monitoring ~Conditions | BeamSpotMonitor can track IR conditions produced by third parties, !4564 (@spradlin) + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + + + +### Documentation ~Documentation + + +### Other + +- ~Calo | Add gamma correction to non-cluster ecal energies, !4580 (@mveghel) diff --git a/ReleaseNotes/v38r13.md b/ReleaseNotes/v38r13.md new file mode 100644 index 0000000000000000000000000000000000000000..364acdbd275bf28be30e60b48de0975c889e96be --- /dev/null +++ b/ReleaseNotes/v38r13.md @@ -0,0 +1,41 @@ +2025-10-06 Rec v38r13 +=== + +This version uses +Lbcom [v37r13](../../../../Lbcom/-/tags/v37r13), +LHCb [v57r13](../../../../LHCb/-/tags/v57r13), +Detector [v3r3p3](../../../../Detector/-/tags/v3r3p3), +Gaudi [v40r0](../../../../Gaudi/-/tags/v40r0) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. +Built relative to Rec [v38r12](/../../tags/v38r12), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + +- ~Calo | Fix follow up from Rec!4850, !4588 (@mveghel) + + +### Enhancements ~enhancement + + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + + + +### Documentation ~Documentation + + +### Other + +- ~Tracking | Add additional track states for T-Tracks and improve a starting position for ParticleVertexFitter, !4572 (@vsvintoz) +- ~Functors | Enable DOCA to accept not just two indices and one object, but also two objects for 2025-patches, !4565 (@msaur) +- ~Functors | New DOCA and IP functors for T-Tracks, !4542 (@vsvintoz) [#12,#5,#8] +- Make TrackCompactVertex' decayProducts satisfy std::ranges::viewable_range [2025-patches], !4608 (@msaur) +- Backport of general ML interface developments on 2025-patches, !4602 (@mveghel) +- Added multiple scattering contribution, !4552 (@rlitvino) diff --git a/ReleaseNotes/v38r14.md b/ReleaseNotes/v38r14.md new file mode 100644 index 0000000000000000000000000000000000000000..68bce502c0be9023a42253936ed3afdcd1b0ca5e --- /dev/null +++ b/ReleaseNotes/v38r14.md @@ -0,0 +1,35 @@ +2025-10-20 Rec v38r14 +=== + +This version uses +Lbcom [v37r14](../../../../Lbcom/-/tags/v37r14), +LHCb [v57r14](../../../../LHCb/-/tags/v57r14), +Detector [v3r3p3](../../../../Detector/-/tags/v3r3p3), +Gaudi [v40r0](../../../../Gaudi/-/tags/v40r0) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. New format, uDST, is introduced for Run 3 MC. +Built relative to Rec [v38r13](/../../tags/v38r13), with the following changes: + +### New features ~"new feature" +~Simulation | Modify the MCTruthAndBkgCat Algorithm to automatically select the MC particles' location, !4448 (@zejia) + + +### Fixes ~"bug fix" ~workaround + + + +### Enhancements ~enhancement + + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + + + +### Documentation ~Documentation + + +### Other + +- Update References for: LHCb!5166, Rec!4448, Moore!5027, DaVinci!1299, LHCbIntegrationTests!106 based on lhcb-2025-patches-mr/872, !4640 (@lhcbsoft) diff --git a/ReleaseNotes/v38r7.md b/ReleaseNotes/v38r7.md new file mode 100644 index 0000000000000000000000000000000000000000..56d2790d269e7e2018c65d890fa0ac388d45736e --- /dev/null +++ b/ReleaseNotes/v38r7.md @@ -0,0 +1,44 @@ +2025-06-27 Rec v38r7 +=== + +This version uses +Lbcom [v37r7](../../../../Lbcom/-/tags/v37r7), +LHCb [v57r7](../../../../LHCb/-/tags/v57r7), +Gaudi [v39r4](../../../../Gaudi/-/tags/v39r4), +Detector [v3r3p1](../../../../Detector/-/tags/v3r3p1) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. +Built relative to Rec [v38r6](/../../tags/v38r6), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + +- ~Functors | Add missing `decltype(auto)`, !4417 (@graven) [#615] +- Put cloned vertices on the TES, !4423 (@ahennequ) + + +### Enhancements ~enhancement + + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + + + +### Documentation ~Documentation + + +### Other + +- ~Tracking | Update ghost prob counters in TBTC, !4361 (@decianm) +- ~Monitoring | Bug fix in VertexCompare where histgrams were corrupted, !4393 (@sponce) +- ~Monitoring | Update TrackVertexMonitor and revive TrackMonitorNT, !4322 (@wouter) +- ~Monitoring ~Luminosity | Update Plume TAE plots and add LED monitoring, !4339 (@fferrari) +- ~Luminosity | Adding Backwards Tracks variable in Lumi PV tupling, !4399 (@allightb) +- Update References for: Rec!4339, MooreOnline!587 based on lhcb-2025-patches-mr/460, !4452 (@lhcbsoft) +- [2025-patches] Move pre-commit check for copyright notice, !4420 (@cburr) +- Add unbiased residual monitor for UT in 2025-patches, !4018 (@hawu) diff --git a/ReleaseNotes/v38r8.md b/ReleaseNotes/v38r8.md new file mode 100644 index 0000000000000000000000000000000000000000..73dcb333d709e0511ce0fcda5e11b361635e518a --- /dev/null +++ b/ReleaseNotes/v38r8.md @@ -0,0 +1,44 @@ +2025-07-13 Rec v38r8 +=== + +This version uses +Lbcom [v37r8](../../../../Lbcom/-/tags/v37r8), +LHCb [v57r8](../../../../LHCb/-/tags/v57r8), +Gaudi [v39r4](../../../../Gaudi/-/tags/v39r4), +Detector [v3r3p2](../../../../Detector/-/tags/v3r3p2) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. +Built relative to Rec [v38r7](/../../tags/v38r7), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + + + +### Enhancements ~enhancement + + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + + + +### Documentation ~Documentation + + +### Other + +- ~Tracking | Improving BSM Efficiencies of the PrLongLivedTracking with separate SM and high mass tunings, !4434 (@pehoffma) +- ~Tracking | PrLongLivedTracking speedup with SIMD, !4427 (@vsvintoz) [#614] +- ~RICH | RICH Photon Reco : Tune reserve to consume less memory, !4473 (@ahennequ) +- Update References for: LHCb!5208 based on lhcb-2025-patches-mr/588, !4489 (@lhcbsoft) +- Add C++ algorithm to do the PV-constraint momentum estimate for L0 -> pi p, !4467 (@ldufour) +- Avoid loading RecSummary via cppyy to reduce time/memory usage to `2025-patches`, !4466 (@msaur) +- Update PrCloneKiller, !4464 (@decianm) +- Follow LHCb5168, !4453 (@decianm) +- Fix for LTIME and DLS NaNs aiming for TS, !4450 (@wmorren) [#620] +- Velo clone killer algorithm, !4367 (@ahennequ) diff --git a/ReleaseNotes/v38r8p1.md b/ReleaseNotes/v38r8p1.md new file mode 100644 index 0000000000000000000000000000000000000000..11d45562165f1339b489fe488a5ffc5e2b9e9109 --- /dev/null +++ b/ReleaseNotes/v38r8p1.md @@ -0,0 +1,34 @@ +2025-07-19 Rec v38r8p1 +=== + +This version uses +Lbcom [v37r8](../../../../Lbcom/-/tags/v37r8), +LHCb [v57r8](../../../../LHCb/-/tags/v57r8), +Gaudi [v39r4](../../../../Gaudi/-/tags/v39r4), +Detector [v3r3p2](../../../../Detector/-/tags/v3r3p2) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. +Built relative to Rec [v38r8](/../../tags/v38r8), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + +- ~Functors | Fix decay time computation used for LTIME functor, !4492 (@wouter) + + +### Enhancements ~enhancement + + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + + + +### Documentation ~Documentation + + +### Other diff --git a/ReleaseNotes/v38r9.md b/ReleaseNotes/v38r9.md new file mode 100644 index 0000000000000000000000000000000000000000..7f277fb901824d38c1e3f71ee8806a4407e47926 --- /dev/null +++ b/ReleaseNotes/v38r9.md @@ -0,0 +1,40 @@ +2025-08-10 Rec v38r9 +=== + +This version uses +Lbcom [v37r9](../../../../Lbcom/-/tags/v37r9), +LHCb [v57r9](../../../../LHCb/-/tags/v57r9), +Gaudi [v39r4](../../../../Gaudi/-/tags/v39r4), +Detector [v3r3p2](../../../../Detector/-/tags/v3r3p2) and +LCG [106c](http://lcginfo.cern.ch/release/106c/) with ROOT 6.32.10. + +This version is released on the `2025-patches` branch. +Built relative to Rec [v38r8](/../../tags/v38r8), with the following changes: + +### New features ~"new feature" + + + +### Fixes ~"bug fix" ~workaround + +- ~Composites | Fix error in indexing in DecayLengthSignificance function, !4508 (@wouter) +- ~Functors | Fix decay time computation used for LTIME functor, !4492 (@wouter) + + +### Enhancements ~enhancement + + + +### Code cleanups and changes to tests ~modernisation ~cleanup ~testing + + + +### Documentation ~Documentation + + +### Other + +- Fix gilatb pipeline on 2025-patches, !4514 (@msaur) +- Update References for: LHCb!5179, Rec!4469, Allen!2089, Moore!5073, Alignment!688 based on lhcb-2025-patches-mr/633, !4513 (@lhcbsoft) +- Prepare Rec v38r8p1, !4507 (@msaur) +- Backward compatible changes to be able to build with Gaudi v40, !4469 (@clemenci) diff --git a/Rich/RichFutureRecPhotonAlgorithms/src/RichSIMDQuarticPhotonReco.cpp b/Rich/RichFutureRecPhotonAlgorithms/src/RichSIMDQuarticPhotonReco.cpp index 957c0f74cfa0759eb2030d291f9110a551a5bd42..e63d932318fd6d3e377eb2aa62ada3fd79801dd8 100644 --- a/Rich/RichFutureRecPhotonAlgorithms/src/RichSIMDQuarticPhotonReco.cpp +++ b/Rich/RichFutureRecPhotonAlgorithms/src/RichSIMDQuarticPhotonReco.cpp @@ -234,7 +234,7 @@ SIMDQuarticPhotonReco::operator()( const LHCb::RichTrackSegment::Vector& seg auto& [photons, relations, mirrorData] = outData; // guess at reserve size. Better to be a bit to big than too small... - const auto resSize = ( segments.size() * pixels.size() ) / 8; + const auto resSize = ( segments.size() * pixels.size() ) / 32; photons.reserve( resSize ); relations.reserve( resSize ); // only need to reserve mirror data vector if it is to be filled. diff --git a/Tr/PatPV/CMakeLists.txt b/Tr/PatPV/CMakeLists.txt index 470918c58b61ef0e34d13732a931e3424cdfa000..c307832d7529daea2622394fa0f9069c6f553a91 100644 --- a/Tr/PatPV/CMakeLists.txt +++ b/Tr/PatPV/CMakeLists.txt @@ -31,7 +31,6 @@ gaudi_add_module(PatPV src/SimplePVSeedTool.cpp src/TrackBeamLineVertexFinder.cpp src/TrackBeamLineVertexFinderSoA.cpp - src/TrackPVFinderUtils.cpp src/TrackUnbiasedPVFinderSoA.cpp src/PatPVLeftRightFinderMerger.cpp src/PatPVConverters.cpp diff --git a/Tr/PatPV/src/AdaptivePV3DFitter.cpp b/Tr/PatPV/src/AdaptivePV3DFitter.cpp index f8354ed1b309b1809b1d2fc1bcf09d54c4941b36..27bc56bcf749c686f8b69b313059e7e4ddb64e8c 100644 --- a/Tr/PatPV/src/AdaptivePV3DFitter.cpp +++ b/Tr/PatPV/src/AdaptivePV3DFitter.cpp @@ -23,8 +23,9 @@ public: using extends::extends; // Fitting StatusCode fitVertex( const Gaudi::XYZPoint& seedPoint, LHCb::span tracks, - LHCb::RecVertex& vtx, std::vector& tracks2remove, - IGeometryInfo const& geometry ) const override; + LHCb::RecVertex& vtx, std::vector& tracks2remove ) const override; + + using IPVFitter::fitVertex; private: Gaudi::Property m_minTr{ this, "MinTracks", 4, "Minimum number of tracks to make a vertex" }; @@ -136,7 +137,7 @@ namespace { //============================================================================= StatusCode AdaptivePV3DFitter::fitVertex( const Gaudi::XYZPoint& seedPoint, LHCb::span rTracks, LHCb::RecVertex& vtx, - std::vector& tracks2remove, IGeometryInfo const& ) const { + std::vector& tracks2remove ) const { tracks2remove.clear(); // position at which derivatives are evaluated diff --git a/Tr/PatPV/src/LSAdaptPV3DFitter.cpp b/Tr/PatPV/src/LSAdaptPV3DFitter.cpp index 747451bc1b7a573500078fa322c39562ac0b40c6..8b78271c19f98c6cba69a193af37980564177f26 100644 --- a/Tr/PatPV/src/LSAdaptPV3DFitter.cpp +++ b/Tr/PatPV/src/LSAdaptPV3DFitter.cpp @@ -24,8 +24,9 @@ public: using extends::extends; // Fitting StatusCode fitVertex( const Gaudi::XYZPoint& seedPoint, LHCb::span tracks, - LHCb::RecVertex& vtx, std::vector& tracks2remove, - IGeometryInfo const& geometry ) const override; + LHCb::RecVertex& vtx, std::vector& tracks2remove ) const override; + + using IPVFitter::fitVertex; private: Gaudi::Property m_maxDeltaZ{ this, "maxDeltaZ", 0.0005 * Gaudi::Units::mm, "Fit convergence condition" }; @@ -96,8 +97,7 @@ DECLARE_COMPONENT( LSAdaptPV3DFitter ) // Least square adaptive fitting method //============================================================================= StatusCode LSAdaptPV3DFitter::fitVertex( const Gaudi::XYZPoint& seedPoint, LHCb::span rTracks, - LHCb::RecVertex& vtx, std::vector& tracks2remove, - IGeometryInfo const& ) const { + LHCb::RecVertex& vtx, std::vector& tracks2remove ) const { if ( msgLevel( MSG::DEBUG ) ) debug() << "================Test==================" << endmsg; tracks2remove.clear(); diff --git a/Tr/PatPV/src/LSAdaptPVFitter.cpp b/Tr/PatPV/src/LSAdaptPVFitter.cpp index fab67f13c2519f0eeda4ab8543b14bd8547469b8..f28eb6e328525c2ec630c4d00ec943e6c8326a4d 100644 --- a/Tr/PatPV/src/LSAdaptPVFitter.cpp +++ b/Tr/PatPV/src/LSAdaptPVFitter.cpp @@ -26,6 +26,12 @@ public: LHCb::RecVertex& vtx, std::vector& tracks2remove, IGeometryInfo const& geometry ) const override; + // Fitting + StatusCode fitVertex( const Gaudi::XYZPoint&, LHCb::span, LHCb::RecVertex&, + std::vector& ) const override { + throw GaudiException( __PRETTY_FUNCTION__, "not implemented", StatusCode::FAILURE ); + } + private: Gaudi::Property m_minTr{ this, "MinTracks", 5, [this]( auto& ) { diff --git a/Tr/PatPV/src/ParticleUnbiasedPVAdder.cpp b/Tr/PatPV/src/ParticleUnbiasedPVAdder.cpp index 2b671364fa7a8b8dfec2db1ac1f8481e91ae1db1..fee34fb7632bc743348d867f25dcd8f47df9ea3f 100644 --- a/Tr/PatPV/src/ParticleUnbiasedPVAdder.cpp +++ b/Tr/PatPV/src/ParticleUnbiasedPVAdder.cpp @@ -12,8 +12,7 @@ #include "GaudiKernel/KeyedContainer.h" #include "LHCbAlgs/Transformer.h" #include "TrackKernel/PrimaryVertexUtils.h" - -#include "TrackPVFinderUtils.h" +#include "TrackKernel/TrackPVFinderUtils.h" using namespace LHCb::TrackPVFinder; using Particles = LHCb::Particles; diff --git a/Tr/PatPV/src/PatPVConverters.cpp b/Tr/PatPV/src/PatPVConverters.cpp index e576e71adf8606ad1482a1f9a9f4262df136bd46..97aa803010b8e272b048b7cbdd444f230d885ec5 100644 --- a/Tr/PatPV/src/PatPVConverters.cpp +++ b/Tr/PatPV/src/PatPVConverters.cpp @@ -14,7 +14,7 @@ #include "Event/RecVertex_v2.h" #include "Event/Track.h" #include "LHCbAlgs/Transformer.h" -#include "TrackPVFinderUtils.h" +#include "TrackKernel/TrackPVFinderUtils.h" // boost includes #include @@ -196,7 +196,8 @@ public: // create the output container LHCb::Event::PV::PrimaryVertexContainer pvcontainer; // fill it - LHCb::TrackPVFinder::populateFromRecVertices( pvcontainer, recvertices ); + LHCb::TrackPVFinder::populateFromRecVertices( + pvcontainer, LHCb::make_span( std::to_address( recvertices.begin() ), recvertices.size() ) ); // in debug mode: call the vertex fit if ( msgLevel() == MSG::DEBUG ) { debug() << "Test: refit and compare result for all vertices" << endmsg; diff --git a/Tr/PatPV/src/RecVertexAsExtendedPrimaryVertexFitter.cpp b/Tr/PatPV/src/RecVertexAsExtendedPrimaryVertexFitter.cpp index 9ddbc355f251933b08dc9f54747484a64daa494d..33be6823dc7d202ec282b89274c6fe1fd8b3a76c 100644 --- a/Tr/PatPV/src/RecVertexAsExtendedPrimaryVertexFitter.cpp +++ b/Tr/PatPV/src/RecVertexAsExtendedPrimaryVertexFitter.cpp @@ -12,7 +12,7 @@ #include "Event/RecVertex.h" #include "GaudiAlg/GaudiTool.h" #include "TrackInterfaces/IPVFitter.h" -#include "TrackPVFinderUtils.h" +#include "TrackKernel/TrackPVFinderUtils.h" using namespace LHCb::Event::PV; @@ -33,9 +33,9 @@ public: // Standard constructor using extends::extends; // Fitting + using IPVFitter::fitVertex; StatusCode fitVertex( const Gaudi::XYZPoint& seedPoint, LHCb::span tracks, - LHCb::RecVertex& recvertex, std::vector& tracks2remove, - IGeometryInfo const& ) const override { + LHCb::RecVertex& recvertex, std::vector& tracks2remove ) const override { // convert the RecVertex to en extendedprimaryvertex diff --git a/Tr/PatPV/src/SimplePVFitter.cpp b/Tr/PatPV/src/SimplePVFitter.cpp index acb2b6fb297e66e0d93408873e083fa217a7d55c..c583d3cf7d533498a2082cc7891a9d608b9b77ee 100644 --- a/Tr/PatPV/src/SimplePVFitter.cpp +++ b/Tr/PatPV/src/SimplePVFitter.cpp @@ -26,6 +26,12 @@ public: LHCb::RecVertex& vtx, std::vector& tracks2remove, IGeometryInfo const& geometry ) const override; + // Fitting + StatusCode fitVertex( const Gaudi::XYZPoint&, LHCb::span, LHCb::RecVertex&, + std::vector& ) const override { + throw GaudiException( __PRETTY_FUNCTION__, "not implemented", StatusCode::FAILURE ); + } + private: Gaudi::Property m_minTr{ this, "MinTracks", 5, [this]( auto& ) { diff --git a/Tr/PatPV/src/TrackBeamLineVertexFinderSoA.cpp b/Tr/PatPV/src/TrackBeamLineVertexFinderSoA.cpp index 7fd13710eadf7f085fe3255dbc1cece175ae04ec..f81782d70d7435600150dd72b8475a8d3bf3c675 100644 --- a/Tr/PatPV/src/TrackBeamLineVertexFinderSoA.cpp +++ b/Tr/PatPV/src/TrackBeamLineVertexFinderSoA.cpp @@ -25,7 +25,7 @@ # include "Timer.h" #endif -#include "TrackPVFinderUtils.h" +#include "TrackKernel/TrackPVFinderUtils.h" // boost includes #include diff --git a/Tr/PatPV/src/TrackUnbiasedPVFinderSoA.cpp b/Tr/PatPV/src/TrackUnbiasedPVFinderSoA.cpp index 85dce148401d4a92c9e45fdc85b209eabe58d2d2..58b48998a184d87ce05841f80073c953eaa144c2 100644 --- a/Tr/PatPV/src/TrackUnbiasedPVFinderSoA.cpp +++ b/Tr/PatPV/src/TrackUnbiasedPVFinderSoA.cpp @@ -27,7 +27,7 @@ # include "TrackKernel/Timer.h" #endif -#include "TrackPVFinderUtils.h" +#include "TrackKernel/TrackPVFinderUtils.h" // std includes #include diff --git a/Tr/PrKalmanFilter/include/PrKalmanFilter/KF.h b/Tr/PrKalmanFilter/include/PrKalmanFilter/KF.h index 95f56c15c32128de4f44b07ea14d759f94f72b62..1bb137e4c53ab9b9933f18862ca849c790f8b7b4 100644 --- a/Tr/PrKalmanFilter/include/PrKalmanFilter/KF.h +++ b/Tr/PrKalmanFilter/include/PrKalmanFilter/KF.h @@ -1223,7 +1223,7 @@ namespace LHCb::Pr::Tracks::Fit { } else if constexpr ( isDownstream ) { - return std::make_unique( History::PrDownstream, Type::Downstream, PatRecStatus::PatRecIDs ); + return std::make_unique( tracks.history(), Type::Downstream, PatRecStatus::PatRecIDs ); } else if constexpr ( isUpstream ) { @@ -1308,7 +1308,7 @@ namespace LHCb::Pr::Tracks::Fit { if constexpr ( isLong ) return tracks.history(); else if constexpr ( isDownstream ) - return LHCb::Event::Enum::Track::History::PrDownstream; + return tracks.history(); else if constexpr ( isVelo ) return LHCb::Event::Enum::Track::History::PrPixel; else if constexpr ( isSeed ) @@ -1358,9 +1358,7 @@ namespace LHCb::Pr::Tracks::Fit { auto id = track.ft_lhcbID( i ); new_track.template field()[i].template field().set( id ); } - if constexpr ( isDownstream ) - new_track.field().set( track.seed_track_index() ); - else if constexpr ( isLong ) + if constexpr ( isDownstream || isLong ) new_track.field().set( track.trackSeed() ); else if constexpr ( isSeed ) new_track.field().set( track.indices() ); diff --git a/Tr/TrackExtrapolators/src/TrackStateProvider.cpp b/Tr/TrackExtrapolators/src/TrackStateProvider.cpp index a24e0661b6297730cc62e4e12a4128c9c3403bb3..4c0fb9aa1fdc7ff0ce2a3d260ba3128e6e91f15d 100644 --- a/Tr/TrackExtrapolators/src/TrackStateProvider.cpp +++ b/Tr/TrackExtrapolators/src/TrackStateProvider.cpp @@ -178,12 +178,11 @@ private: /// shared between threads. If there would be multiple threads processing data in /// the same event store, this would NOT be thread-safe. /// basically: the event store is _in the current setup_ effecitvely thread-local - static constexpr auto loc = "TrackStateProviderCache"; - using CacheTES = AnyDataWrapper; - auto d = getIfExists( loc ); + using CacheTES = AnyDataWrapper; + auto d = getIfExists( m_cachelocation ); if ( !d ) { d = new CacheTES( TrackCaches{} ); - put( d, loc ); + put( d, m_cachelocation ); } return d->getData(); } @@ -198,6 +197,10 @@ private: // mutable DataObjectHandle> m_caches{this, Gaudi::DataHandle::Writer, "CacheLocation", // "TrackStateProviderCache"}; + // Depending on TrackStateProvider configuration, the resulting track extrapolation might differ. + // In this case we can't simply reuse the cache created by standard configuration (as it's stored in TES). + std::string m_cachelocation = std::string( "TrackStateProviderCache_" ) + name(); + ToolHandle m_extrapolator{ this, "Extrapolator", "TrackMasterExtrapolator" }; ToolHandle m_interpolator{ this, "Interpolator", "TrackInterpolator" }; @@ -366,6 +369,17 @@ TrackCache TrackStateProvider::createCacheEntry( TkCacheKey key, const LHCb::Tra } } + // the same for T-Tracks + if ( track.type() == LHCb::Track::Types::Ttrack ) { + for ( const auto& loc : { std::pair{ LHCb::State::Location::EndMagnet, StateParameters::ZEndMag }, + std::pair{ LHCb::State::Location::MidMagnet, StateParameters::ZMidMag }, + std::pair{ LHCb::State::Location::BegMagnet, StateParameters::ZBegMag }, + std::pair{ LHCb::State::Location::EndUT, StateParameters::ZEndUT }, + std::pair{ LHCb::State::Location::EndVelo, StateParameters::ZEndVelo } } ) { + if ( !track.stateAt( loc.first ) ) { addState( tc, loc.second, geometry, loc.first ); } + } + } + // make sure all tracks (incl. Downstream) get assigned a state at // the beamline. this is useful for the trajectory approximation. if ( ( track.hasVelo() || track.hasUT() ) && track.firstState().location() != LHCb::State::Location::ClosestToBeam && diff --git a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref index 3f19c7c9668963e338ae3b81ebadd861652e914f..ed91f6b52bb88d34511eba61d5387ea4c39890cf 100644 --- a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref +++ b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref @@ -7,6 +7,7 @@ |-data_flow_file = '' (default: '') |-data_type = 'Upgrade' (default: 'Upgrade') |-dddb_tag = 'dddb-20180815' (default: '') +|-dstformat = (default: ) |-event_store = 'HiveWhiteBoard' (default: 'HiveWhiteBoard') |-evt_max = 1 (default: -1) |-first_evt = 0 (default: 0) diff --git a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.armv8.1_a b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.armv8.1_a index d67c57afaa219f6e613934218c89204c018ed088..db4227cee4186fa985500cae0b52358301460e3c 100644 --- a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.armv8.1_a +++ b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.armv8.1_a @@ -7,6 +7,7 @@ |-data_flow_file = '' (default: '') |-data_type = 'Upgrade' (default: 'Upgrade') |-dddb_tag = 'dddb-20180815' (default: '') +|-dstformat = (default: ) |-event_store = 'HiveWhiteBoard' (default: 'HiveWhiteBoard') |-evt_max = 1 (default: -1) |-first_evt = 0 (default: 0) diff --git a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.detdesc b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.detdesc index df358da68d475de58359e596ccd3644578abe263..521e181f92057e0706a8773f440ce88f1b2f0392 100644 --- a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.detdesc +++ b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.detdesc @@ -7,6 +7,7 @@ |-data_flow_file = '' (default: '') |-data_type = 'Upgrade' (default: 'Upgrade') |-dddb_tag = 'dddb-20180815' (default: '') +|-dstformat = (default: ) |-event_store = 'HiveWhiteBoard' (default: 'HiveWhiteBoard') |-evt_max = 1 (default: -1) |-first_evt = 0 (default: 0) diff --git a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.x86_64_v3-detdesc-opt b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.x86_64_v3-detdesc-opt index ee91dd475bbe26d9516bc0e6e49ce4cc73510a26..ad47862bb3b064420179590a8195e567be6f7c22 100644 --- a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.x86_64_v3-detdesc-opt +++ b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.x86_64_v3-detdesc-opt @@ -7,6 +7,7 @@ |-data_flow_file = '' (default: '') |-data_type = 'Upgrade' (default: 'Upgrade') |-dddb_tag = 'dddb-20180815' (default: '') +|-dstformat = (default: ) |-event_store = 'HiveWhiteBoard' (default: 'HiveWhiteBoard') |-evt_max = 1 (default: -1) |-first_evt = 0 (default: 0) diff --git a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.x86_64_v3-opt b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.x86_64_v3-opt index c25cfb26a5ed408e2981e695a90679c708710508..1731faeb9f2d862dc6cbfafd3fa5c10261d62a17 100644 --- a/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.x86_64_v3-opt +++ b/Tr/TrackExtrapolators/tests/refs/test_extrapolators.ref.x86_64_v3-opt @@ -7,6 +7,7 @@ |-data_flow_file = '' (default: '') |-data_type = 'Upgrade' (default: 'Upgrade') |-dddb_tag = 'dddb-20180815' (default: '') +|-dstformat = (default: ) |-event_store = 'HiveWhiteBoard' (default: 'HiveWhiteBoard') |-evt_max = 1 (default: -1) |-first_evt = 0 (default: 0) diff --git a/Tr/TrackFitEvent/src/PrKalmanFitResult.cpp b/Tr/TrackFitEvent/src/PrKalmanFitResult.cpp index b2c52a6d984c1ba59666f3c5f2247f7ada41a05b..35e570da4cf0fb4ef73eb13b4642bd1f65720d29 100644 --- a/Tr/TrackFitEvent/src/PrKalmanFitResult.cpp +++ b/Tr/TrackFitEvent/src/PrKalmanFitResult.cpp @@ -40,20 +40,19 @@ namespace LHCb { } ChiSquare PrKalmanFitResult::chi2Upstream() const { - auto upstream_chi2 = ChiSquare{}; + auto upstream_chi2 = ChiSquare{ 0, -number_of_trackparameters }; for ( auto const& node : fitnodes ) { - if ( node.type() == Pr::Tracks::Fit::Node::Type::UTHit ) { + if ( node.type() == Pr::Tracks::Fit::Node::Type::UTHit || node.type() == Pr::Tracks::Fit::Node::Type::VPHit ) { upstream_chi2 += node.delta_chi2[Pr::Tracks::Fit::Node::backward]; } } - upstream_chi2 += chi2Velo(); return upstream_chi2; } ChiSquare PrKalmanFitResult::chi2Downstream() const { auto down_chi2 = ChiSquare{ 0, -number_of_trackparameters }; for ( auto const& node : fitnodes ) { - if ( node.type() == Pr::Tracks::Fit::Node::Type::FTHit ) { + if ( node.type() == Pr::Tracks::Fit::Node::Type::FTHit || node.type() == Pr::Tracks::Fit::Node::Type::MuonHit ) { down_chi2 += node.delta_chi2[Pr::Tracks::Fit::Node::forward]; } } @@ -63,5 +62,13 @@ namespace LHCb { ChiSquare PrKalmanFitResult::chi2Match() const { return chi2() - chi2Upstream() - chi2Downstream(); } /// TODO PrKalmanFilter does not support muon tracks at the moment - ChiSquare PrKalmanFitResult::chi2Muon() const { return ChiSquare{}; } + ChiSquare PrKalmanFitResult::chi2Muon() const { + auto muon_chi2 = ChiSquare{ 0, -number_of_trackparameters }; + for ( auto const& node : fitnodes ) { + if ( node.type() == Pr::Tracks::Fit::Node::Type::MuonHit ) { + muon_chi2 += node.delta_chi2[Pr::Tracks::Fit::Node::forward]; + } + } + return muon_chi2; + } } // namespace LHCb diff --git a/Tr/TrackInterfaces/include/TrackInterfaces/IPVFitter.h b/Tr/TrackInterfaces/include/TrackInterfaces/IPVFitter.h index 5c25b35724ba038cf84b48267abc8aae730bbafd..cca943769b7c71202695d51204c94cc2e7b45ebf 100644 --- a/Tr/TrackInterfaces/include/TrackInterfaces/IPVFitter.h +++ b/Tr/TrackInterfaces/include/TrackInterfaces/IPVFitter.h @@ -25,15 +25,21 @@ namespace LHCb { struct IPVFitter : extend_interfaces { DeclareInterfaceID( IPVFitter, 4, 0 ); + + virtual StatusCode fitVertex( const Gaudi::XYZPoint& seedPoint, LHCb::span tracks, + LHCb::RecVertex& vtx, std::vector& tracks2remove ) const = 0; + virtual StatusCode fitVertex( const Gaudi::XYZPoint& seedPoint, LHCb::span tracks, LHCb::RecVertex& vtx, std::vector& tracks2remove, - IGeometryInfo const& geometry ) const = 0; + IGeometryInfo const& ) const { + return fitVertex( seedPoint, tracks, vtx, tracks2remove ); + } - std::optional fit( const Gaudi::XYZPoint& seedPoint, LHCb::span tracks, - IGeometryInfo const& geometry ) const { + std::optional fit( const Gaudi::XYZPoint& seedPoint, + LHCb::span tracks ) const { std::vector tracks2remove; LHCb::RecVertex vtx; - if ( fitVertex( seedPoint, tracks, vtx, tracks2remove, geometry ).isSuccess() ) return vtx; + if ( fitVertex( seedPoint, tracks, vtx, tracks2remove ).isSuccess() ) return vtx; return {}; } }; diff --git a/Tr/TrackInterfaces/include/TrackInterfaces/ITrackVertexer.h b/Tr/TrackInterfaces/include/TrackInterfaces/ITrackVertexer.h index 10600dbd975103a51d721080110f383dbe36a43b..9559fc299973b6c526fcd0c547eba767611e6397 100644 --- a/Tr/TrackInterfaces/include/TrackInterfaces/ITrackVertexer.h +++ b/Tr/TrackInterfaces/include/TrackInterfaces/ITrackVertexer.h @@ -23,6 +23,7 @@ namespace LHCb { class TwoProngVertex; class State; class RecVertex; + class VertexBase; } // namespace LHCb /** @@ -34,19 +35,18 @@ struct ITrackVertexer : extend_interfaces { DeclareInterfaceID( ITrackVertexer, 4, 0 ); - virtual std::unique_ptr fit( const LHCb::State& stateA, const LHCb::State& stateB, - IGeometryInfo const& geometry ) const = 0; - virtual std::unique_ptr fit( LHCb::span states, - IGeometryInfo const& geometry ) const = 0; + virtual std::unique_ptr fit( const LHCb::State& stateA, const LHCb::State& stateB ) const = 0; + virtual std::unique_ptr fit( LHCb::span states ) const = 0; virtual std::unique_ptr fit( LHCb::span tracks, - IGeometryInfo const& geometry ) const = 0; - virtual bool computeDecayLength( const LHCb::TwoProngVertex& vertex, const LHCb::RecVertex& pv, double& chi2, - double& decaylength, double& decaylengtherr ) const = 0; + IGeometryInfo const& geometry ) const = 0; + virtual bool computeDecayLength( const LHCb::TwoProngVertex& vertex, const LHCb::VertexBase& pv, double& chi2, + double& decaylength, double& decaylengtherr ) const = 0; /// Return the ip chi2 for a track (uses stateprovider, not good for /// HLT: better call routine below with track->firstState()) - virtual double ipchi2( const LHCb::Track& track, const LHCb::RecVertex& pv, IGeometryInfo const& geometry ) const = 0; + virtual double ipchi2( const LHCb::Track& track, const LHCb::VertexBase& pv, + IGeometryInfo const& geometry ) const = 0; /// Return the ip chi2 for a track state - virtual double ipchi2( const LHCb::State& state, const LHCb::RecVertex& pv, IGeometryInfo const& geometry ) const = 0; + virtual double ipchi2( const LHCb::State& state, const LHCb::VertexBase& pv ) const = 0; }; diff --git a/Tr/TrackKernel/CMakeLists.txt b/Tr/TrackKernel/CMakeLists.txt index 8795a61a8d13b84fb7b33f686c5b534307a96810..10ac7f3ef7b69e6e79345210f788350b99747eda 100644 --- a/Tr/TrackKernel/CMakeLists.txt +++ b/Tr/TrackKernel/CMakeLists.txt @@ -24,6 +24,7 @@ gaudi_add_library(TrackKernel src/TrackStateVertex.cpp src/TrackTraj.cpp src/TrajVertex.cpp + src/TrackPVFinderUtils.cpp LINK PUBLIC Gaudi::GaudiKernel diff --git a/Tr/PatPV/src/TrackPVFinderUtils.h b/Tr/TrackKernel/include/TrackKernel/TrackPVFinderUtils.h similarity index 99% rename from Tr/PatPV/src/TrackPVFinderUtils.h rename to Tr/TrackKernel/include/TrackKernel/TrackPVFinderUtils.h index 4fe4074a7b1df3f440b917402f14007ff5c857bf..1ab5b8b7dc824620be041e1fbb89c6abd5699a40 100644 --- a/Tr/PatPV/src/TrackPVFinderUtils.h +++ b/Tr/TrackKernel/include/TrackKernel/TrackPVFinderUtils.h @@ -49,7 +49,7 @@ namespace LHCb::TrackPVFinder { void populateFromVeloTracks( PrimaryVertexContainer& pvdata ); /// Fill PrimaryVertex data object from RecVertices and associated tracks - void populateFromRecVertices( PrimaryVertexContainer& pvcontainer, const RecVertex::Range& recvertices ); + void populateFromRecVertices( PrimaryVertexContainer& pvcontainer, LHCb::span recvertices ); /// Reassigns the labels from the PV tracks to the vertices. This is needed if a selection has been made to the /// vertices. diff --git a/Tr/PatPV/src/TrackPVFinderUtils.cpp b/Tr/TrackKernel/src/TrackPVFinderUtils.cpp similarity index 98% rename from Tr/PatPV/src/TrackPVFinderUtils.cpp rename to Tr/TrackKernel/src/TrackPVFinderUtils.cpp index 220b67eed890c14377a02148a4149068abc646a0..11ee2b9277ea39fb9611842df439b9128546368f 100644 --- a/Tr/PatPV/src/TrackPVFinderUtils.cpp +++ b/Tr/TrackKernel/src/TrackPVFinderUtils.cpp @@ -8,7 +8,7 @@ * granted to it by virtue of its status as an Intergovernmental Organization * * or submit itself to any jurisdiction. * \*****************************************************************************/ -#include "TrackPVFinderUtils.h" +#include "TrackKernel/TrackPVFinderUtils.h" namespace LHCb::TrackPVFinder { @@ -50,7 +50,7 @@ namespace LHCb::TrackPVFinder { populateFromVeloTracks( pvdata ); } - void populateFromRecVertices( PrimaryVertexContainer& pvcontainer, const RecVertex::Range& recvertices ) { + void populateFromRecVertices( PrimaryVertexContainer& pvcontainer, LHCb::span recvertices ) { auto& vertices = pvcontainer.vertices; vertices.clear(); vertices.resize( recvertices.size() ); diff --git a/Tr/TrackMonitors/CMakeLists.txt b/Tr/TrackMonitors/CMakeLists.txt index 7df9da0b54490b32ad269f73cc6b007ba7424571..8678eee9ea59081b71414a1378fbbaf519c0c517 100644 --- a/Tr/TrackMonitors/CMakeLists.txt +++ b/Tr/TrackMonitors/CMakeLists.txt @@ -36,11 +36,13 @@ gaudi_add_module(TrackMonitors src/TrackVPOverlapMonitor.cpp src/UTHitEfficiencyMonitor.cpp src/UTTrackMonitor.cpp + src/UTTrackResidualMonitor.cpp src/UTGlobalEffMon.cpp src/VPTrackMonitor.cpp src/VPHitEfficiencyMonitor.cpp src/VertexCompare.cpp src/BeamSpotMonitor.cpp + src/TrackMonitorNT.cpp LINK AIDA::aida Gaudi::GaudiAlgLib diff --git a/Tr/TrackMonitors/src/BeamSpotMonitor.cpp b/Tr/TrackMonitors/src/BeamSpotMonitor.cpp index d3248a466002ffb674191f0214a27742342132da..6a33f9908521c77556e9463b0d3d08c848f4acef 100644 --- a/Tr/TrackMonitors/src/BeamSpotMonitor.cpp +++ b/Tr/TrackMonitors/src/BeamSpotMonitor.cpp @@ -11,16 +11,19 @@ #include "Event/ODIN.h" #include "Event/RecVertex.h" +#include "LHCbDet/InteractionRegion.h" #include #include #include #include #include +#include #include #include #include #include +#include #include #include #include @@ -33,6 +36,9 @@ namespace { /// Meta-enum for directing how to handle inconceivably large differences meta_enum_class( IncHandType, int, Unknown = 0, WarnUpdate, WarnSkip, ExceptionThrow ); + /// Meta-enum for handling initialization and external updates of IRConditions + meta_enum_class( IRCondInitStrat, int, Unknown = 0, Autonomous, FromDBFile, FromCond ); + /// Unbiased sample covariance calculator for off-diagonals template auto calculate_spread_offdiag( X const& x, X const& y, XX const& xy ) { @@ -78,7 +84,10 @@ namespace { } // namespace -class BeamSpotMonitor : public LHCb::Algorithm::Consumer { +class BeamSpotMonitor + : public LHCb::Algorithm::Consumer> { public: SmartIF m_publishSvc; @@ -87,7 +96,8 @@ public: BeamSpotMonitor( const std::string& name, ISvcLocator* pSvcLocator ); /// Algorithm execute - void operator()( LHCb::ODIN const&, PVView const& pvcontainer ) const override; + void operator()( LHCb::ODIN const&, PVView const& pvcontainer, + LHCb::Conditions::InteractionRegion const& ) const override; /// Initialization and finalization StatusCode initialize() override; @@ -97,11 +107,14 @@ public: return Consumer::finalize(); } + StatusCode stop() override; + /// Internal representation of cached conditions struct IRConditionsCache { /// Cache variables unsigned nPVs{ 0 }; unsigned runNumber{ 0 }; + int dbFileVer{ -1 }; std::array position{ 0.0, 0.0, 0.0 }; std::array spread{ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; @@ -118,8 +131,13 @@ private: /// Initialize histograms that have configuration properties, like axis limts void init_configurable_histos() const; + /// Initialize/update cache from the external sources + bool init_cache_from_dbfile( bool log = false ) const; + bool init_cache_from_ircond( LHCb::Conditions::InteractionRegion const&, unsigned runnum = 0, + bool log = false ) const; + /// Non-thread-safe part of the event loop --- resetting and publishing - void check_and_publish_reset( LHCb::ODIN const& ) const; + void check_and_publish_reset( LHCb::ODIN const&, LHCb::Conditions::InteractionRegion const& ) const; /// Conditions for and implementation of copying accumulating ctrs to cache bool check_cache_counters( LHCb::ODIN const& ) const; @@ -130,6 +148,8 @@ private: bool check_publish() const; bool ymlWriter() const; + void write_json_file( std::string const& ) const; + /// Reset the accumulators bool check_reset_accumulators( const unsigned ) const; void reset_accumulators( const unsigned ) const; @@ -217,6 +237,14 @@ private: // Output configuration properties //........................................................................... + /// Initialization strategy. Also controls interactions with independent + /// producers of IRConditions + // meta_enum_class( IRCondInitStrat, int, Unknown = 0, Autonomous, FromDBFile, FromCond); + Gaudi::Property m_initStrat{ + this, "IRCondInitStrategy", IRCondInitStrat::Autonomous, + "How to initialize internal IR conditions reference and track independent producers of IR conditions. Allowed " + "values are 'Autonomous', 'FromDBFile', and 'FromCond'" }; + /// Report conditions to log (INFO) Gaudi::Property m_condToLog{ this, "LogConditions", false, "Write conditions to logfile with level INFO when updating" }; @@ -229,6 +257,8 @@ private: "/group/online/hlt/conditions.run3/lhcb-conditions-database" }; Gaudi::Property m_conditionsPathInDb{ this, "conditionsPathInDb", "Conditions/LHCb/Online/InteractionRegion.yml/.pool" }; + // bin file path + Gaudi::Property m_json_name{ this, "JsonFile", "", "path where json file is saved" }; /// Use IPublishSvc Online Gaudi::Property m_onlineMode{ this, "OnlineMode", false, "Running in Online" }; @@ -236,6 +266,9 @@ private: "Name used to publish online conditions" }; Gaudi::Property m_pubSvcName{ this, "PublishSvc", "LHCb::PublishSvc", "Publishing Svc implementing IPublishSvc" }; + Gaudi::Property m_pubErrorTo{ + this, "PublishErrorsTo", "AlignmentMessenger", + "Name used to publish conditions errors and warnings, such as suppression warnings" }; // Accumulation configuration properties //........................................................................... @@ -302,8 +335,9 @@ private: //--------------------------------------------------------------------------- mutable IRConditionsCache m_cache; - // PublishSvc message buffer - mutable std::string m_pub_msg; + // PublishSvc message buffers + mutable std::string m_pub_msg; // Buffer for conditions + mutable std::string m_pub_error; // Buffer for warnings and errors // Histograms //--------------------------------------------------------------------------- @@ -463,13 +497,18 @@ BeamSpotMonitor::BeamSpotMonitor( const std::string& name, ISvcLocator* pSvcLoca : Consumer{ name, pSvcLocator, { KeyValue{ "ODINLocation", LHCb::ODINLocation::Default }, - KeyValue{ "PVContainer", LHCb::RecVertexLocation::Primary } } } {} + KeyValue{ "PVContainer", LHCb::RecVertexLocation::Primary }, + KeyValue{ "InteractionRegionCache", "AlgorithmSpecific-" + name + "-InteractionRegion" } } } {} //============================================================================= /// Initialization //============================================================================= StatusCode BeamSpotMonitor::initialize() { return Consumer::initialize().andThen( [&] { + // This is only needed to have a fallback in case the IR condition does not exist. + LHCb::Conditions::InteractionRegion::addConditionDerivation( this, + inputLocation() ); + init_configurable_histos(); // Check configured threshold @@ -520,18 +559,6 @@ StatusCode BeamSpotMonitor::initialize() { if ( !std::filesystem::exists( conditions_dir ) ) { std::filesystem::create_directories( conditions_dir ); if ( msgLevel( MSG::DEBUG ) ) debug() << "Created " << conditions_dir.string() << endmsg; - } else { // Try to initialize cache from most recent conditions - const auto max_version_nr = find_max_version_number( conditions_dir ); - if ( max_version_nr >= 0 ) { - const std::filesystem::path conditions_file = conditions_dir / ( "v" + std::to_string( max_version_nr ) ); - - info() << "Initializing cache from conditions file " << conditions_file.string() << endmsg; - m_cache.loadYAMLFile( conditions_file ); - - YAML::Emitter condEmi; - m_cache.emitYAML( condEmi ); - info() << "Cache initialized from file with contents:\n" << condEmi.c_str() << endmsg; - } } } catch ( const std::filesystem::filesystem_error& expt ) { // TODO: consider whether this is a recoverable condition. @@ -546,12 +573,26 @@ StatusCode BeamSpotMonitor::initialize() { throw GaudiException( "Cannot access incident service of type PublishSvc.", name(), StatusCode::FAILURE ); } m_publishSvc->declarePubItem( m_knownAsName, m_pub_msg ); + m_publishSvc->declarePubItem( m_pubErrorTo, m_pub_error ); } } + + if ( m_initStrat == IRCondInitStrat::FromDBFile && !init_cache_from_dbfile( true ) ) { + warning() << "Attempt to initialize cached reference conditions from DB file failed" << endmsg; + } } ); } -/// Initialize histograms that depende on properties +StatusCode BeamSpotMonitor::stop() { + if ( m_json_name.value() != "" ) { + info() << "stopping and writing json file to" << m_json_name.value() << endmsg; + write_json_file( m_json_name ); + } + + return StatusCode::SUCCESS; +} + +/// Initialize histograms that depend on properties void BeamSpotMonitor::init_configurable_histos() const { // Histograms for individual PVs relative to conditions // Axis limits are not independent properties---based on limits for raw 2D PVs @@ -598,11 +639,65 @@ void BeamSpotMonitor::init_configurable_histos() const { ( m_histIRCondSpreadZZMax - m_histIRCondSpreadZZMin ) / 2 } ); } +/// Initialize/update cache from the most recent DB file +bool BeamSpotMonitor::init_cache_from_dbfile( bool log ) const { + const std::filesystem::path conditions_dir = + std::filesystem::path( m_conditionsDbPath.value() ) / std::filesystem::path( m_conditionsPathInDb.value() ); + const auto max_version_nr = find_max_version_number( conditions_dir ); + if ( max_version_nr >= 0 ) { + // Reload if DB v number has changed. + if ( max_version_nr != m_cache.dbFileVer ) { + const std::filesystem::path conditions_file = conditions_dir / ( "v" + std::to_string( max_version_nr ) ); + + if ( log ) info() << "Initializing cache from conditions file " << conditions_file.string() << endmsg; + + m_cache.loadYAMLFile( conditions_file ); + m_cache.dbFileVer = max_version_nr; + + if ( log ) { + YAML::Emitter condEmi; + m_cache.emitYAML( condEmi ); + + info() << "Cache initialized from file with contents:\n" << condEmi.c_str() << endmsg; + } + } + return true; + } + return false; +} + +/// Initialize/update cache from InteractionRegion conditions +bool BeamSpotMonitor::init_cache_from_ircond( LHCb::Conditions::InteractionRegion const& ircond, unsigned runnum, + bool log ) const { + + if ( log ) info() << "Initializing cache from run-time conditions" << endmsg; + + ircond.avgPosition.GetCoordinates( m_cache.position.begin(), m_cache.position.end() ); + std::copy( ircond.spread.begin(), ircond.spread.end(), m_cache.spread.begin() ); + m_cache.runNumber = runnum; + m_cache.nPVs = 1; + m_cache.dbFileVer = -1; + + if ( log ) { + YAML::Emitter condEmi; + m_cache.emitYAML( condEmi ); + + info() << "Cache initialized from run-time conditions with values:\n" << condEmi.c_str() << endmsg; + } + return true; +} + //============================================================================= // Algorithm execution //============================================================================= -void BeamSpotMonitor::operator()( LHCb::ODIN const& odin, PVView const& pvcontainer ) const { - check_and_publish_reset( odin ); +void BeamSpotMonitor::operator()( LHCb::ODIN const& odin, PVView const& pvcontainer, + LHCb::Conditions::InteractionRegion const& ircond ) const { + std::scoped_lock lock{ m_mutex }; + // Initialize the cache, if it has not been done yet. + if ( m_cache.nPVs == 0 && m_initStrat == IRCondInitStrat::FromCond ) { + init_cache_from_ircond( ircond, odin.runNumber(), true ); + } + check_and_publish_reset( odin, ircond ); // Skip this event if it is from a run prior to the one we are accumulating. if ( odin.runNumber() < m_accRunNumber ) return; @@ -644,12 +739,18 @@ void BeamSpotMonitor::operator()( LHCb::ODIN const& odin, PVView const& pvcontai //============================================================================= // Non-thread-safe resetting and publishing //============================================================================= -void BeamSpotMonitor::check_and_publish_reset( LHCb::ODIN const& odin ) const { - std::scoped_lock lock{ m_mutex }; - +void BeamSpotMonitor::check_and_publish_reset( LHCb::ODIN const& odin, + LHCb::Conditions::InteractionRegion const& ircond ) const { // Handle cacheing and publication before processing the event. const auto curRunNumber = odin.runNumber(); if ( check_reset_accumulators( curRunNumber ) ) { + // Update the cache from external source + if ( m_initStrat == IRCondInitStrat::FromDBFile ) { + init_cache_from_dbfile(); + } else if ( m_initStrat == IRCondInitStrat::FromCond ) { + init_cache_from_ircond( ircond, odin.runNumber() ); + } + if ( check_cache_counters( odin ) ) { // Copy values of accumulating counters to cache cache_counters(); @@ -705,6 +806,7 @@ bool BeamSpotMonitor::check_reset_accumulators( const unsigned curRunNumber ) co // Cache the counters //============================================================================= void BeamSpotMonitor::cache_counters() const { + m_cache.dbFileVer = -1; // Not based on a file. m_cache.nPVs = m_pvXPosCtr.nEntries(); m_cache.runNumber = m_accRunNumber; @@ -720,6 +822,45 @@ void BeamSpotMonitor::cache_counters() const { m_cache.spread[5] = m_pvZPosCtr.unbiased_sample_variance(); } +void BeamSpotMonitor::write_json_file( std::string const& filename ) const { + + unsigned long n_entries = m_pvXPosCtr.nEntries(); + double sum_x = m_pvXPosCtr.sum(); + double sum_y = m_pvYPosCtr.sum(); + double sum_z = m_pvZPosCtr.sum(); + double sum2_x = m_pvXPosCtr.sum2(); + double sum2_y = m_pvYPosCtr.sum2(); + double sum2_z = m_pvZPosCtr.sum2(); + unsigned long n_entries_prod = m_pvXYProdCtr.nEntries(); + double sum_xy = m_pvXYProdCtr.sum(); + double sum_zx = m_pvZXProdCtr.sum(); + double sum_yz = m_pvYZProdCtr.sum(); + info() << "writing json file with: " << endmsg; + info() << "m_pvXPosCtr.nEntries: " << m_pvXPosCtr.nEntries() << " " << n_entries << endmsg; + info() << "m_pvXPosCtr.sum: " << m_pvXPosCtr.sum() << " " << sum_x << endmsg; + info() << "m_pvYPosCtr.sum: " << m_pvYPosCtr.sum() << " " << sum_y << endmsg; + info() << "m_pvZPosCtr.sum: " << m_pvZPosCtr.sum() << " " << sum_z << endmsg; + info() << "m_pvXPosCtr.sum2: " << m_pvXPosCtr.sum2() << " " << sum2_x << endmsg; + info() << "m_pvYPosCtr.sum2: " << m_pvYPosCtr.sum2() << " " << sum2_y << endmsg; + info() << "m_pvZPosCtr.sum2: " << m_pvZPosCtr.sum2() << " " << sum2_z << endmsg; + info() << "m_pvXYProdCtr.nEntries: " << m_pvXYProdCtr.nEntries() << " " << n_entries_prod << endmsg; + info() << " m_pvXYProdCtr.sum: " << m_pvXYProdCtr.sum() << " " << sum_xy << endmsg; + info() << " m_pvZXProdCtr.sum: " << m_pvZXProdCtr.sum() << " " << sum_zx << endmsg; + info() << " m_pvYZProdCtr.sum: " << m_pvYZProdCtr.sum() << " " << sum_yz << endmsg; + + auto convert = []( auto const& c ) { + nlohmann::json out; + to_json( out, c ); + return out; + }; + + std::ofstream o( filename ); + o << nlohmann::json{ { "pvXPosCtr", convert( m_pvXPosCtr ) }, { "pvYPosCtr", convert( m_pvYPosCtr ) }, + { "pvZPosCtr", convert( m_pvZPosCtr ) }, { "pvXYProdCtr", convert( m_pvXYProdCtr ) }, + { "pvZXProdCtr", convert( m_pvZXProdCtr ) }, { "pvYZProdCtr", convert( m_pvYZProdCtr ) } } + << std::endl; +} + //============================================================================= // Reset the accumulators //============================================================================= @@ -777,8 +918,18 @@ bool BeamSpotMonitor::check_conceivable() const { StatusCode::FAILURE ); return false; case IncHandType::WarnSkip: + if ( m_onlineMode ) { + m_pub_error = std::string( "WARNING:InteractionRegion update during run " ) + std::to_string( m_accRunNumber ) + + std::string( " would exceed threshold. Suppressing update" ); + m_publishSvc->updateItem( m_pubErrorTo ); + } return false; case IncHandType::WarnUpdate: + if ( m_onlineMode ) { + m_pub_error = std::string( "WARNING:InteractionRegion update during run " ) + std::to_string( m_accRunNumber ) + + std::string( " exceeded threshold. Please check" ); + m_publishSvc->updateItem( m_pubErrorTo ); + } return true; case IncHandType::Unknown: return true; @@ -914,6 +1065,7 @@ bool BeamSpotMonitor::ymlWriter() const { info() << "Writing new conditions file " << full_conditions_path.string() << endmsg; // Outfile. + m_cache.dbFileVer = max_version_nr + 1; std::ofstream logging( full_conditions_path.string().c_str() ); logging << ymlBuff.c_str() << std::endl; logging.close(); diff --git a/Tr/TrackMonitors/src/TrackFitMatchMonitor.cpp b/Tr/TrackMonitors/src/TrackFitMatchMonitor.cpp index ae8c8b8a3bf450bb03ceed22a10ded931f4504e0..86e7c260e5da14804fe5a69eed8af38dfa5125d9 100644 --- a/Tr/TrackMonitors/src/TrackFitMatchMonitor.cpp +++ b/Tr/TrackMonitors/src/TrackFitMatchMonitor.cpp @@ -43,7 +43,7 @@ public: private: // Trackers that have plots produced (may need to change in order to get the relevant Trackers from some centralized // variable rather than hard-coding them) - enum struct Trackers { VeloUT = 0, TUT, VeloT }; + enum struct Trackers { VeloUT = 0, TUT, VeloT, MuonT }; template void plotDelta( Trackers tracker, const TNode& node, bool upstream ) const; @@ -206,9 +206,10 @@ private: , dty_pull_ty_profile{ owner, Tracker + "/dty pull vs ty", Tracker + " dty pull vs ty", { 20, -0.25, 0.25 } } {} }; // map to associate tracking sub-detector to the relevant struct of histograms - std::array, 3> m_histograms = [&] { + std::array, 4> m_histograms = [&] { auto create = [&]( Trackers t ) { return std::make_unique( this, toString( t ) ); }; - return std::array{ create( Trackers::VeloUT ), create( Trackers::TUT ), create( Trackers::VeloT ) }; + return std::array{ create( Trackers::VeloUT ), create( Trackers::TUT ), create( Trackers::VeloT ), + create( Trackers::MuonT ) }; }(); /** Friend function for converting enum values to strings **/ @@ -220,6 +221,8 @@ private: return "T-UT"; case Trackers::VeloT: return "Velo-T"; + case Trackers::MuonT: + return "Muon-T"; } throw GaudiException( "Unknown Tracker enum value", __func__, StatusCode::FAILURE ); } @@ -381,7 +384,8 @@ template void TrackFitMatchMonitor::fill( const TFitResult& fitResult, const LHCb::Track& track ) const { if ( nodes( fitResult ).size() <= 0 ) return; - const typename TFitResult::NodeType *lastVelo( nullptr ), *firstUT( nullptr ), *lastUT( nullptr ), *firstT( nullptr ); + const typename TFitResult::NodeType *lastVelo( nullptr ), *firstUT( nullptr ), *lastUT( nullptr ), *firstT( nullptr ), + *firstMuon{ nullptr }; // The appropriate function node( TFitResult* ) will be found using ADL. // For TrackFitResult or KalmanFitResult it returns Range of LHCb::FitNodes, see TrackFitResult.h and FitNode.h // For PrKalmanFitResult it returns std::span of PrFitNodes, see PrKalmanFitResult.h and PrFitNode.h @@ -396,6 +400,8 @@ void TrackFitMatchMonitor::fill( const TFitResult& fitResult, const LHCb::Track& if ( !lastUT || lastUT->z() < node.z() ) lastUT = &node; } else if ( node.isFT() ) { if ( !firstT || firstT->z() > node.z() ) firstT = &node; + } else if ( node.isMuon() ) { + if ( !firstMuon || firstMuon->z() > node.z() ) firstMuon = &node; } } if ( lastVelo ) { @@ -406,6 +412,7 @@ void TrackFitMatchMonitor::fill( const TFitResult& fitResult, const LHCb::Track& plotDelta( Trackers::VeloT, *firstT, true ); } } + if ( firstMuon && firstT ) plotDelta( Trackers::MuonT, *firstMuon, true ); // inspired by the problems we see in the field. see also UT field study LHCb::HitPattern hitpattern{ track.lhcbIDs() }; diff --git a/Tr/TrackMonitors/src/TrackMonitor.cpp b/Tr/TrackMonitors/src/TrackMonitor.cpp index d603348b861b0d3cdfb31cf26dfc3afaa0d4a2bc..52020fb9a586d9f00957f2f103579805454ab5cc 100644 --- a/Tr/TrackMonitors/src/TrackMonitor.cpp +++ b/Tr/TrackMonitors/src/TrackMonitor.cpp @@ -60,7 +60,7 @@ namespace { const std::vector HitTypeName{ "VPX", "VPY", "VP2D", "UT", "FT", "Muon" }; // TODO: not sure if these values still make sense for Run3? - constexpr auto HitTypeMaxRes = std::array{ 0.1, 0.1, 0.1, 0.5, 1.0, 10.0 }; + constexpr auto HitTypeMaxRes = std::array{ 0.1, 0.1, 0.1, 0.5, 1.0, 200.0 }; template inline HitType hittypemap( const TNode& node ) { if ( node.isMuon() ) @@ -346,10 +346,6 @@ StatusCode TrackMonitor::initialize() { } void TrackMonitor::initializeHistogramMap() { - // range for residuals for different hittypes - const std::vector> range{ - { { "8", 0., 100. }, { "9", 0., 50. }, { "10", 0., 100. }, { "11", 0., 50. }, { "12", 0., 100. } } }; - if ( m_splitByType ) { // make seperate histogrammer for each requested type for ( const auto& t : m_typesToMonitor ) { diff --git a/Tr/TrackMonitors/src/TrackMonitorNT.cpp b/Tr/TrackMonitors/src/TrackMonitorNT.cpp new file mode 100644 index 0000000000000000000000000000000000000000..54d0f4d0421bd039a47c498cbfac9e981be93193 --- /dev/null +++ b/Tr/TrackMonitors/src/TrackMonitorNT.cpp @@ -0,0 +1,221 @@ +/*****************************************************************************\ +* (c) Copyright 2000-2019 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/KalmanFitResult.h" +#include "Event/PrKalmanFitResult.h" +#include "Event/PrimaryVertices.h" +#include "Event/State.h" +#include "Event/Track.h" +#include "GaudiAlg/GaudiTupleAlg.h" +#include "Kernel/HitPattern.h" +#include "Kernel/LHCbID.h" +#include "LHCbAlgs/Consumer.h" +#include "TrackKernel/PrimaryVertexUtils.h" + +/* + * Class for track monitoring + * @date 7-4-2025 + */ + +namespace { + + template + void fillT( Tuples::Tuple& theTuple, const char* column, const S& value ) { + theTuple->column( column, T( value ) ).ignore( /* AUTOMATICALLY ADDED FOR gaudi/Gaudi!763 */ ); + } + + // FIXME: we could template this on the PV container, if needed. + using Vertices = LHCb::Event::PV::PrimaryVertexContainer; + + void fillChi2PerDoF( Tuples::Tuple& tuple, const char* column, const LHCb::ChiSquare& chi2 ) { + fillT( tuple, column, ( chi2.nDoF() > 0 ? chi2.chi2PerDoF() : 0.0 ) ); + } + + template + void fillFitResult( Tuples::Tuple& tuple, const T& fitResult ) { + fillT( tuple, "nActiveMeasurements", fitResult.nActiveMeasurements() ); + fillT( tuple, "nFitIter", fitResult.nIter() ); + fillT( tuple, "pScatter", fitResult.pScatter() ); + const auto fitnodes = nodes( fitResult ); + fillT( + tuple, "noutlier", + std::count_if( std::begin( fitnodes ), std::end( fitnodes ), []( const auto& n ) { return n.isOutlier(); } ) ); + fillChi2PerDoF( tuple, "chi2dofVelo", fitResult.chi2Velo() ); + fillChi2PerDoF( tuple, "chi2dofDownstream", fitResult.chi2Downstream() ); + fillChi2PerDoF( tuple, "chi2dofMatch", fitResult.chi2Match() ); + fillChi2PerDoF( tuple, "chi2dofMuon", fitResult.chi2Muon() ); + } + + void fillTuple( Tuples::Tuple tuple, const LHCb::Track::Range& tracks, + const LHCb::Event::PV::PrimaryVertexContainer& pvs ) { + + int itrack = 0; + + // compute some extra info per pv. rather expensive so do only once + struct PVExtraInfo { + unsigned nTracks{ 0 }; + float totalWeight{ 0 }; + float totalChi2{ 0 }; + }; + + std::vector pvinfo; + const auto pvtracks = pvs.tracks.scalar(); + for ( const auto& vertex : pvs ) { + PVExtraInfo info; + for ( int trkindex = vertex.begin(); trkindex != vertex.end(); ++trkindex ) { + const auto pvtrack = pvtracks[trkindex]; + const auto weight = pvtrack.weight().cast(); + if ( weight > 0 ) { + info.totalWeight += weight; + info.totalChi2 += pvtrack.ipchi2().cast(); + ++info.nTracks; + } + } + pvinfo.emplace_back( info ); + } + + for ( const LHCb::Track* track : tracks ) { + // keep track of track multiplicity + fillT( tuple, "itrack", itrack++ ); + fillT( tuple, "ntrack", tracks.size() ); + fillT( tuple, "nPV", pvs.size() ); + + // fill lot's of info from the track + const auto& state = track->firstState(); + const auto trkx = state.x(); + const auto trky = state.y(); + const auto trkz = state.z(); + const auto trktx = state.tx(); + const auto trkty = state.ty(); + fillT( tuple, "x", trkx ); + fillT( tuple, "y", trky ); + fillT( tuple, "z", trkz ); + fillT( tuple, "tx", trktx ); + fillT( tuple, "ty", trkty ); + fillT( tuple, "qOverP", state.qOverP() ); + fillT( tuple, "eta", track->pseudoRapidity() ); + fillT( tuple, "phi", track->phi() ); + fillT( tuple, "chi2", track->chi2() ); + fillT( tuple, "ndof", track->nDoF() ); + fillT( tuple, "ghostprob", track->ghostProbability() ); + fillT( tuple, "type", track->type() ); + fillT( tuple, "backward", track->isVeloBackward() ); + const auto& ids = track->lhcbIDs(); + fillT( tuple, "nUThits", + std::count_if( ids.begin(), ids.end(), []( const LHCb::LHCbID& id ) { return id.isUT(); } ) ); + fillT( tuple, "nVPhits", + std::count_if( ids.begin(), ids.end(), []( const LHCb::LHCbID& id ) { return id.isVP(); } ) ); + fillT( tuple, "nFThits", + std::count_if( ids.begin(), ids.end(), []( const LHCb::LHCbID& id ) { return id.isFT(); } ) ); + + // If the fit result it available, fill a bit more + fillT( tuple, "trackWasFitted", track->fitResult() != nullptr ); + if ( track->fitResult() ) { + auto prFitResult = dynamic_cast( track->fitResult() ); + if ( prFitResult ) + fillFitResult( tuple, *prFitResult ); + else { + auto masterFitResult = dynamic_cast( track->fitResult() ); + if ( masterFitResult ) fillFitResult( tuple, *masterFitResult ); + } + } + + // Fill some info from the hitpattern + LHCb::HitPattern hitpattern{ ids }; + fillT( tuple, "numVeloStations", hitpattern.numVeloStations() ); + fillT( tuple, "numVeloStationsOverlap", hitpattern.numVeloStationsOverlap() ); + fillT( tuple, "numVeloHoles", hitpattern.numVeloHoles() ); + fillT( tuple, "numUTLayers", hitpattern.numUT() ); + fillT( tuple, "numFTLayers", hitpattern.numFT() ); + fillT( tuple, "numFTHoles", hitpattern.numFTHoles() ); + fillT( tuple, "numVeloA", hitpattern.numVeloA() ); + fillT( tuple, "numVeloC", hitpattern.numVeloC() ); + + // get the closest PV and unbias. there are various ways to do this. + // the most efficient one is to first find the closest PV, then unbias is. + const auto pvindex = LHCb::bestPVIndex( pvs, trkx, trky, trkz, trktx, trkty ); + if ( pvindex != LHCb::Event::PV::PVIndexInvalid ) { + // extract the velo segment ID needed for unbiasing + auto veloid = LHCb::Event::PV::uniqueVeloSegmentID( ids ); + // put this into an array, and get the unbiased PV + std::array vetoedvelotracks{ veloid }; + const auto pv = LHCb::Event::PV::unbiasedVertex( pvs, pvindex, vetoedvelotracks ); + // fill some info on the PV (without the track) + const auto pvx = pv.position().x(); + const auto pvy = pv.position().y(); + const auto pvz = pv.position().z(); + fillT( tuple, "pvx", pvx ); + fillT( tuple, "pvy", pvy ); + fillT( tuple, "pvz", pvz ); + fillT( tuple, "pvntracks", pvinfo[pvindex].nTracks ); + fillT( tuple, "pvtotalweight", pvinfo[pvindex].totalWeight ); + fillT( tuple, "pvchi2dof", pvinfo[pvindex].totalChi2 / ( 2 * pvinfo[pvindex].nTracks - 3 ) ); + fillT( tuple, "pvxerr", std::sqrt( pv.covMatrix()( 0, 0 ) ) ); + fillT( tuple, "pvyerr", std::sqrt( pv.covMatrix()( 1, 1 ) ) ); + fillT( tuple, "pvzerr", std::sqrt( pv.covMatrix()( 2, 2 ) ) ); + // compute the track state at the z-position of the vertex + auto stateAtPV = state; + stateAtPV.linearTransportTo( pvz ); + const auto dx = stateAtPV.x() - pvx; + const auto dy = stateAtPV.y() - pvy; + // fill ipX and ipY. once this compiles, we also add the errors + fillT( tuple, "x", stateAtPV.x() ); + fillT( tuple, "y", stateAtPV.y() ); + fillT( tuple, "z", stateAtPV.z() ); + fillT( tuple, "xerr", std::sqrt( stateAtPV.covariance()( 0, 0 ) ) ); + fillT( tuple, "yerr", std::sqrt( stateAtPV.covariance()( 1, 1 ) ) ); + fillT( tuple, "ipx", dx ); + fillT( tuple, "ipy", dy ); + + // compute the contribution from the PV to ipX and ipX errors + ROOT::Math::SMatrix H; + H( 0, 0 ) = H( 1, 1 ) = 1; + H( 2, 0 ) = -stateAtPV.tx(); + H( 2, 1 ) = -stateAtPV.ty(); + const Gaudi::SymMatrix2x2 Vpv = ROOT::Math::Similarity( ROOT::Math::Transpose( H ), pv.covMatrix() ); + fillT( tuple, "pvipxerr", std::sqrt( Vpv( 0, 0 ) ) ); + fillT( tuple, "pvipyerr", std::sqrt( Vpv( 1, 1 ) ) ); + fillT( tuple, "ipxerr", std::sqrt( stateAtPV.covariance()( 0, 0 ) + Vpv( 0, 0 ) ) ); + fillT( tuple, "ipyerr", std::sqrt( stateAtPV.covariance()( 1, 1 ) + Vpv( 1, 1 ) ) ); + + // compute the IP chi2 (including the PV error) + const Gaudi::SymMatrix2x2 V = Vpv + stateAtPV.covariance().Sub( 0, 0 ); + const Gaudi::Vector2 residual{ dx, dy }; + Gaudi::SymMatrix2x2 W = V; + W.InvertChol(); + fillT( tuple, "ipchi2", ROOT::Math::Similarity( residual, W ) ); + + // compute the distance to the next PV. PVs should be ordered in z. + // the sign of deltazpv will tell if the next or previous is closer. + std::optional deltazpv; + if ( pvindex > 0 ) deltazpv = pvs[pvindex - 1].position().z() - pvz; + if ( pvindex < pvs.size() - 1 ) { + const auto nextpvdz = pvs[pvindex + 1].position().z() - pvz; + if ( !deltazpv || std::abs( nextpvdz ) < std::abs( *deltazpv ) ) deltazpv = nextpvdz; + } + fillT( tuple, "nextclosestpvdz", deltazpv ? *deltazpv : 9999. ); + } + tuple->write().ignore(); + } + } +} // namespace + +class TrackMonitorNT final : public LHCb::Algorithm::Consumer> { +public: + TrackMonitorNT( const std::string& name, ISvcLocator* pSvcLocator ) + : Consumer( name, pSvcLocator, + { KeyValue{ "TrackContainer", LHCb::TrackLocation::Velo }, + KeyValue{ "PVContainer", LHCb::Event::PV::DefaultLocation } } ) {} + void operator()( const LHCb::Track::Range& tracks, const Vertices& pvs ) const override { + return fillTuple( nTuple( "tracks", "", CLID_ColumnWiseTuple ), tracks, pvs ); + } +}; +DECLARE_COMPONENT( TrackMonitorNT ) diff --git a/Tr/TrackMonitors/src/TrackParticleMonitor.cpp b/Tr/TrackMonitors/src/TrackParticleMonitor.cpp index 4cd79c9fa578c694d222363727858b4cc378935f..3b50a7a20219e4c9e70a5f000d5507c86bffe8ef 100644 --- a/Tr/TrackMonitors/src/TrackParticleMonitor.cpp +++ b/Tr/TrackMonitors/src/TrackParticleMonitor.cpp @@ -124,6 +124,8 @@ private: mutable Gaudi::Accumulators::Histogram<1> track_ipY; mutable Gaudi::Accumulators::Histogram<1> vertex_chi2; mutable Gaudi::Accumulators::Histogram<1> vertex_chi2prob; + mutable Gaudi::Accumulators::Histogram<1> vertex_doca; + mutable Gaudi::Accumulators::Histogram<1> vertex_docapull; mutable Gaudi::Accumulators::Histogram<1> vertex_x_pos; mutable Gaudi::Accumulators::Histogram<1> vertex_y_pos; mutable Gaudi::Accumulators::Histogram<1> vertex_z_pos; @@ -149,8 +151,10 @@ private: { 50, -M_PI, M_PI } } , track_ipX{ owner, "trackIPx", "Track IPx", { 100, -0.1, 0.1, "IPx [mm]" } } , track_ipY{ owner, "trackIPy", "Track IPy", { 100, -0.1, 0.1, "IPy [mm]" } } - , vertex_chi2{ owner, "chi2", "vertex chi2", { 100, 0, 5, "#chi^2" } } + , vertex_chi2{ owner, "chi2", "vertex chi2", { 100, 0, 10, "#chi^2" } } , vertex_chi2prob{ owner, "chi2prob", "vertex chi2prob", { 100, 0, 1, "#chi^2 probability" } } + , vertex_doca{ owner, "doca", "two-prong doca", { 100, -0.15, 0.15 } } + , vertex_docapull{ owner, "docapull", "two-prong doca pull", { 100, -5, 5 } } , vertex_x_pos{ owner, "vtxx", "x position of vertex", { 100, -x_range, x_range, "x [mm]" } } , vertex_y_pos{ owner, "vtxy", "y position of vertex", { 100, -y_range, y_range, "y [mm]" } } , vertex_z_pos{ owner, "vtxz", "z position of vertex", { 100, -z_range, z_range, "z [mm]" } } @@ -187,7 +191,10 @@ private: mutable Gaudi::Accumulators::Histogram<1> matt; mutable Gaudi::Accumulators::Histogram<1> openingAngle; mutable Gaudi::Accumulators::Histogram<1> ipchi2; + mutable Gaudi::Accumulators::Histogram<1> decaylength; mutable Gaudi::Accumulators::Histogram<1> dls; + mutable Gaudi::Accumulators::Histogram<1> ipx; + mutable Gaudi::Accumulators::Histogram<1> ipy; BiasHistos( const TrackParticleMonitor* owner, float const& min_mass, float const& max_mass, float const& pdiff_range, unsigned int const& mass_bins, unsigned int const& pdiff_bins, @@ -229,7 +236,10 @@ private: { bins_angles * 5, 0, M_PI, "phiMatt [rad]" } } , openingAngle{ owner, "openingangle", "Opening angle", { bins_angles * 5, 0, 0.3, "Opening angle [rad]" } } , ipchi2{ owner, "ipchi2", "IP chi2", { 50, 0, 20 } } - , dls{ owner, "dls", "decay length significance", { 50, -5, 5 } } {} + , decaylength{ owner, "decaylength", "decay length [mm]", { 50, -1.0, 1.0 } } + , dls{ owner, "dls", "decay length significance", { 50, -5, 5 } } + , ipx{ owner, "ipx", "mother IP x", { 50, -0.1, 0.1 } } + , ipy{ owner, "ipy", "mother IP y", { 50, -0.1, 0.1 } } {} }; // Profile histograms of mass vs bias variables @@ -462,6 +472,10 @@ void TrackParticleMonitor::operator()( LHCb::Particle::Range const& particles, D double tx = p4.x() / p4.z(); double ty = p4.y() / p4.z(); + // For visualization we would like to have a 'doca-pull' + const auto twoprongdoca = LHCb::StateVertexUtils::doca( *states.front(), *states.back() ); + const auto twoprongchi2 = LHCb::StateVertexUtils::vertexChi2( *states.front(), *states.back() ); + // DECAY PLANE ANGLES // Unit vector perp. to the decay plane @@ -479,6 +493,9 @@ void TrackParticleMonitor::operator()( LHCb::Particle::Range const& particles, D // Vertex histograms ++track_vertex_histos.vertex_chi2[chi2]; ++track_vertex_histos.vertex_chi2prob[chi2prob]; + ++track_vertex_histos.vertex_doca[twoprongdoca]; + ++track_vertex_histos.vertex_docapull[std::sqrt( twoprongchi2 ) * ( twoprongdoca > 0 ? 1 : -1 )]; + ++track_vertex_histos.vertex_x_pos[vertex.position().x()]; ++track_vertex_histos.vertex_y_pos[vertex.position().y()]; ++track_vertex_histos.vertex_z_pos[vertex.position().z()]; @@ -521,12 +538,16 @@ void TrackParticleMonitor::operator()( LHCb::Particle::Range const& particles, D ++bias.matt[phimatt]; ++bias.openingAngle[openangle]; if ( particle->pv() ) { + const auto dx = vertex.position() - particle->pv()->position(); + ++bias.ipx[dx.x() - dx.z() * tx]; + ++bias.ipy[dx.y() - dx.z() * ty]; // FIXME: what a mess this has become. I also don't manage to call it anymore with the output of TrackStateVertex auto [chi2, decaylength, decaylength_err] = LHCb::StateVertexUtils::computeChiSquare( referencePoint( *particle ), threeMomentum( *particle ), LHCb::Event::covMatrix( *particle ), endVertexPos( *( particle->pv() ) ), posCovMatrix( *( particle->pv() ) ) ); if ( decaylength_err > 0 ) { ++bias.ipchi2[chi2.cast()]; + ++bias.decaylength[decaylength.cast()]; ++bias.dls[decaylength.cast() / decaylength_err.cast()]; } } diff --git a/Tr/TrackMonitors/src/TrackVPOverlapMonitor.cpp b/Tr/TrackMonitors/src/TrackVPOverlapMonitor.cpp index 2becdff241db98f2e658e3b894dab5b3b769615f..63d7f9014f275a2c482d76d7443f200a9abf035d 100644 --- a/Tr/TrackMonitors/src/TrackVPOverlapMonitor.cpp +++ b/Tr/TrackMonitors/src/TrackVPOverlapMonitor.cpp @@ -302,7 +302,7 @@ namespace LHCb::Tr::Monitor { ++m_Aresidual_y_vs_station[{ nodeA.vpid.station(), nodeA.residualY }]; ++m_Cresidual_x_vs_station[{ nodeA.vpid.station(), nodeC.residualX }]; ++m_Cresidual_y_vs_station[{ nodeA.vpid.station(), nodeC.residualY }]; - } else { + } else if ( inode->vpid.sensor() != jnode->vpid.sensor() ) { // Collect nodes in different sensors ont he same module. These are always consecutive. // Ladder map: { L0: CLI, L1: NLO, L2, NSI, L3: CSO } // Expected overlaps: CLI-NLO, CSO-NSI, CLI-NSI; Not allowed: CSO-CLI, NLO-NSI and CSO-NLO @@ -377,7 +377,8 @@ namespace LHCb::Tr::Monitor { ++m_overlap_residual_y_CSO_NSI[{ module, localresidual.y() }]; ++module_CSO_NSI_histo[module]; } else { - warning() << "How can these sensors overlap?: " << sensor1 << " " << sensor2 << endmsg; + warning() << "How can these sensors overlap?: " << sensor1 << " " << sensor2 + << " rx:" << localresidual.x() << " ry:" << localresidual.y() << endmsg; } if ( m_expertMode.value() ) { diff --git a/Tr/TrackMonitors/src/TrackVertexMonitor.cpp b/Tr/TrackMonitors/src/TrackVertexMonitor.cpp index 985be3d208ffac4d695950d8bcf534a430d9fc72..8e5a7c33a80104899da49bbad1069400444b15f8 100644 --- a/Tr/TrackMonitors/src/TrackVertexMonitor.cpp +++ b/Tr/TrackMonitors/src/TrackVertexMonitor.cpp @@ -15,7 +15,10 @@ #include "Event/Track.h" #include "Event/TwoProngVertex.h" #include "LHCbDet/InteractionRegion.h" +#include "LHCbMath/StateVertexUtils.h" #include "TrackInterfaces/ITrackVertexer.h" +#include "TrackKernel/PrimaryVertexUtils.h" +#include "TrackKernel/TrackPVFinderUtils.h" #include "TrackKernel/TrackStateVertex.h" #include "GaudiKernel/PhysicalConstants.h" @@ -33,6 +36,74 @@ namespace { for ( const auto& track : tracks ) { states.push_back( &track->firstState() ); } return states; } + + void fillResolutionHistogram3SigmaRMS( const Gaudi::Accumulators::StaticHistogram<2>& hist2d, + Gaudi::Accumulators::ProfileHistogram<1>& prof1d ) { + // reset the target profile + // prof1d.reset() ; + const auto& gaudiAxisX = hist2d.template axis<0>(); + const auto minValueX = gaudiAxisX.minValue(); + const auto maxValueX = gaudiAxisX.maxValue(); + const auto nBinsX = gaudiAxisX.numBins(); + const auto& gaudiAxisY = hist2d.template axis<1>(); + const auto minValueY = gaudiAxisY.minValue(); + const auto maxValueY = gaudiAxisY.maxValue(); + const auto nBinsY = gaudiAxisY.numBins(); + const auto binXSize = ( maxValueX - minValueX ) / nBinsX; + const auto binYSize = ( maxValueY - minValueY ) / nBinsY; + + for ( unsigned int nx = 1; nx <= nBinsX; ++nx ) { + + // the offset of '1' is a bit nagging, so we first extract just the contents + double norm{ 0 }; + std::vector bincontents( nBinsY, 0 ); + for ( unsigned int ny = 1; ny <= nBinsY; ++ny ) { + const auto offset = ny * ( nBinsX + 2 ); + // auto const& [tmp, sumw2] = hist2d.binValue( nx + offset ); + // auto const& [nent, sumw] = tmp; + auto sumw = hist2d.binValue( nx + offset ); + bincontents[ny - 1] += sumw; + norm += sumw; + } + + if ( norm > 0 ) { + // now just start counting + double sumw( 0 ), sumx2w( 0 ); + double xtrunc( 0 ); + unsigned int ny{ 0 }; + for ( ; ny < nBinsY; ++ny ) { + const double x = ny + 0.5; + const double c = bincontents[ny]; + const double up = ny + 1; + const double newsumw = sumw + c; + double newsumx2w = sumx2w + c * x * x; + if ( newsumw > 0.5 * norm ) { + const double newrms = std::sqrt( newsumx2w / newsumw ); + if ( 3 * newrms < up ) { + const double drms = newrms - sqrt( sumx2w / sumw ); + const double frac = ( 3 * drms ); + xtrunc = ( up - ( 1 - frac ) ) / 3; + break; + } + } + sumw = newsumw; + sumx2w = newsumx2w; + } + + // if we ran out of the loop, just return the rms + if ( ny == nBinsY ) xtrunc = std::sqrt( sumx2w / sumw ); + + // get to a number in the right units + const double sigma = xtrunc * binYSize; + const double sigmaerr = sigma / std::sqrt( sumw ); + const auto binXValue = minValueX + ( nx - 0.5 ) * binXSize; + // unfortunately, in default error mode it determines the error from the spread of the values. + // the easiest way to fix it is to fill it twice. the factor sqrt(2) we found by trial and error. + prof1d[binXValue] += sigma + std::numbers::sqrt2 * sigmaerr; + prof1d[binXValue] += sigma - std::numbers::sqrt2 * sigmaerr; + } + } + } } // namespace class TrackVertexMonitor @@ -50,6 +121,12 @@ public: StatusCode initialize() override; + StatusCode stop() override { + fillResolutionHistogram3SigmaRMS( m_trackIPXInvPt, m_trackIPXResolutionVsInvPt ); + fillResolutionHistogram3SigmaRMS( m_trackIPYInvPt, m_trackIPYResolutionVsInvPt ); + return StatusCode::SUCCESS; + } + private: Gaudi::Property m_ipmax{ this, "MaxIP", 0.5 * Gaudi::Units::mm }; Gaudi::Property m_ipmaxprof{ this, "MaxIPProfile", 0.1 * Gaudi::Units::mm }; @@ -61,10 +138,21 @@ private: Gaudi::Property m_zpvmin_wide{ this, "MinZPV_Wide", -150 * Gaudi::Units::cm, "Wide z window for PV plot" }; Gaudi::Property m_zpvmax_wide{ this, "MaxZPV_Wide", 150 * Gaudi::Units::cm, "Wide z window for PV plot" }; Gaudi::Property m_maxLongTrackChisqPerDof{ this, "MaxLongTrackChisqPerDof", 5 }; - Gaudi::Property m_minLongTrackMomentum{ this, "MinLongTrackMomentum", 5 }; + Gaudi::Property m_minLongTrackMomentum{ this, "MinLongTrackMomentum", 5 * Gaudi::Units::GeV }; + Gaudi::Property m_minFastTrackMomentum{ this, "MinFastTrackMomentum", 50 * Gaudi::Units::GeV }; + Gaudi::Property m_minFastTrackPt{ this, "MinFastTrackPt", 2 * Gaudi::Units::GeV }; Gaudi::Property m_nprbins{ this, "NumProfileBins", 20 }; Gaudi::Property m_ntracksPV{ this, "NumTracksPV", 2 }; - Gaudi::Property m_produceHistogram{ this, "produceHistogram", false }; // producing IP 1/pt histograms + + Gaudi::Property m_minpvtotalweight{ this, "MinPVTotalWeight", 10. }; + Gaudi::Property m_maxpviperr{ this, "MaxPVIPError", 0.02 }; + Gaudi::Property m_maxiperr{ this, "MaxIPError", 0.10 }; + Gaudi::Property m_maxipchi2{ this, "MaxIPChi2", 50 }; + Gaudi::Property m_minTwoProngMass{ this, "MinTwoProngMass", 2 * Gaudi::Units::GeV }; + Gaudi::Property m_maxTwoProngDoca{ this, "MaxTwoProngDoca", 0.3 * Gaudi::Units::mm }; + Gaudi::Property m_maxTwoProngChi2{ this, "MaxTwoProngChi2", 16 }; + Gaudi::Property m_maxTwoProngIPChi2{ this, "MixTwoProngIPChi2", 10 }; + Gaudi::Property m_produceHistogram{ this, "produceHistogram", false }; // producing IP 1/pt histograms ToolHandle m_vertexer{ this, "TrackVertexer", "TrackVertexer" }; @@ -76,12 +164,22 @@ private: this, "NumBackTracksPerPV", "NumBackTracksPerPV", { 50, -0.5, 99.5 } }; mutable Gaudi::Accumulators::Histogram<1> m_pvChisquarePerDof{ this, "PV chisquare per dof", "PV chisquare per dof", { 150, 0., 3. } }; + mutable Gaudi::Accumulators::StaticHistogram<1> m_pvAverageWeight{ + this, "PV average weight", "PV average weight", { 50, 0., 1.0 } }; + mutable Gaudi::Accumulators::StaticProfileHistogram<1> m_pvAverageWeightVsNumTracksPr{ + this, "PV average weight vs num tracks", "PV average weight vs num tracks", { 75, 0.5, 150.5 } }; mutable Gaudi::Accumulators::Histogram<1> m_pvXPosition{ this, "PV x position", "PV x position", { 200, -m_xpvmax, m_xpvmax } }; mutable Gaudi::Accumulators::Histogram<1> m_pvYPosition{ this, "PV y position", "PV y position", { 200, -m_ypvmax, m_ypvmax } }; mutable Gaudi::Accumulators::Histogram<1> m_pvZPosition{ this, "PV z position", "PV z position", { 200, m_zpvmin, m_zpvmax } }; + mutable Gaudi::Accumulators::Histogram<1> m_pvXError{ + this, "PV x error", "PV x error", { 50, 0, 0.05 * Gaudi::Units::mm } }; + mutable Gaudi::Accumulators::Histogram<1> m_pvYError{ + this, "PV y error", "PV y error", { 50, 0, 0.05 * Gaudi::Units::mm } }; + mutable Gaudi::Accumulators::Histogram<1> m_pvZError{ + this, "PV z error", "PV z error", { 50, 0, 0.5 * Gaudi::Units::mm } }; mutable Gaudi::Accumulators::Histogram<1> m_pvbeamlineDeltaX{ this, "PV-beamline delta x", "PV-beamline delta x", { 200, -1, 1 } }; mutable Gaudi::Accumulators::Histogram<1> m_pvbeamlineDeltaY{ @@ -90,7 +188,6 @@ private: this, "PV-beamline delta x versus z", "PV-beamline delta x versus z", { m_nprbins, m_zpvmin, m_zpvmax } }; mutable Gaudi::Accumulators::ProfileHistogram<1> m_pvbeamlineDeltaYvsZ{ this, "PV-beamline delta y versus z", "PV-beamline delta y versus z", { m_nprbins, m_zpvmin, m_zpvmax } }; - mutable Gaudi::Accumulators::Histogram<1> m_pvZPositionWide{ this, "PV z position (wide)", "PV z position (wide)", { 200, m_zpvmin_wide, m_zpvmax_wide } }; mutable Gaudi::Accumulators::Histogram<1> m_pvLongChisquarePerDof{ @@ -137,24 +234,33 @@ private: this, "PV forward chisquare per dof", "PV forward chisquare per dof", { 50, 0, 10 } }; mutable Gaudi::Accumulators::Histogram<1> m_pvBackwardChisquareDof{ this, "PV backward chisquare per dof", "PV backward chisquare per dof", { 50, 0, 10 } }; - mutable Gaudi::Accumulators::Histogram<1> m_trackIPX{ - this, "track IP X", "track IP X (biased)", { 50, -m_ipmax, m_ipmax } }; - mutable Gaudi::Accumulators::Histogram<1> m_trackIPY{ - this, "track IP Y", "track IP Y (biased)", { 50, -m_ipmax, m_ipmax } }; - mutable Gaudi::Accumulators::Histogram<1> m_trackTransverseIP{ - this, "fast track transverse IP", "fast track transverse IP", { 50, -m_ipmax, m_ipmax } }; - mutable Gaudi::Accumulators::Histogram<1> m_trackLongitudinalIP{ - this, "fast track longitudinal IP", "fast track longitudinal IP", { 50, -m_ipmax, m_ipmax } }; + mutable Gaudi::Accumulators::Histogram<1> m_trackIPChi2{ this, "track IP chi2", "track IP chi2", { 50, 0, 25 } }; + mutable Gaudi::Accumulators::Histogram<1> m_trackIPX{ this, "track IP X", "track IP X", { 50, -m_ipmax, m_ipmax } }; + mutable Gaudi::Accumulators::Histogram<1> m_trackIPY{ this, "track IP Y", "track IP Y", { 50, -m_ipmax, m_ipmax } }; + mutable Gaudi::Accumulators::Histogram<1> m_trackIPXPull{ this, "track IP X pull", "track IP X pull", { 50, -5, 5 } }; + mutable Gaudi::Accumulators::Histogram<1> m_trackIPYPull{ this, "track IP Y pull", "track IP Y pull", { 50, -5, 5 } }; + mutable Gaudi::Accumulators::Histogram<1> m_fastTrackTransverseIP{ + this, "fast track transverse IP", "fast track transverse IP", { 50, -0.2, 0.2 } }; + mutable Gaudi::Accumulators::Histogram<1> m_fastTrackLongitudinalIP{ + this, "fast track longitudinal IP", "fast track longitudinal IP", { 50, -0.2, 0.2 } }; mutable Gaudi::Accumulators::Histogram<1> m_fastTrackIPX{ - this, "fast track IP X", "fast track IP X", { 50, -m_ipmax, m_ipmax } }; + this, "fast track IP X", "fast track IP X", { 50, -0.2, 0.2 } }; mutable Gaudi::Accumulators::Histogram<1> m_fastTrackIPY{ - this, "fast track IP Y", "fast track IP Y", { 50, -m_ipmax, m_ipmax } }; + this, "fast track IP Y", "fast track IP Y", { 50, -0.2, 0.2 } }; + mutable Gaudi::Accumulators::Histogram<1> m_fastTrackIPXPull{ + this, "fast track IP X pull", "fast track IP X pull", { 50, -5, 5 } }; + mutable Gaudi::Accumulators::Histogram<1> m_fastTrackIPYPull{ + this, "fast track IP Y pull", "fast track IP Y pull", { 50, -5, 5 } }; mutable Gaudi::Accumulators::Histogram<1> m_twoProngMass{ this, "twoprong mass (GeV)", "twoprong mass (GeV)", { 50, 0, 10 } }; mutable Gaudi::Accumulators::Histogram<1> m_twoProngMomentum{ this, "twoprong momentum (GeV)", "twoprong momentum (GeV)", { 50, 0, 200 } }; + mutable Gaudi::Accumulators::Histogram<1> m_twoProngIPX{ + this, "twoprong IP X", "twoprong IP X (mm)", { 50, -0.2, 0.2 } }; + mutable Gaudi::Accumulators::Histogram<1> m_twoProngIPY{ + this, "twoprong IP Y", "twoprong IP Y (mm)", { 50, -0.2, 0.2 } }; mutable Gaudi::Accumulators::Histogram<1> m_twoProngDoca{ - this, "twoprong doca (mm)", "twoprong doca (mm)", { 50, -5, 5 } }; + this, "twoprong doca (mm)", "twoprong doca (mm)", { 50, -0.3, 0.3 } }; mutable Gaudi::Accumulators::Histogram<1> m_twoProngDocaPull{ this, "twoprong doca pull", "twoprong doca pull", { 50, -5, 5 } }; mutable Gaudi::Accumulators::Histogram<1> m_twoProngDecayLength{ @@ -162,10 +268,8 @@ private: mutable Gaudi::Accumulators::Histogram<1> m_twoProngDecayLengthSig{ this, "twoprong decaylength significance", "twoprong decaylength significance", { 50, -5, 5 } }; mutable Gaudi::Accumulators::Histogram<1> m_twoProngCTau{ this, "twoprong ctau", "twoprong ctau", { 50, -0.1, 0.1 } }; - mutable Gaudi::Accumulators::Histogram<1> m_twoProngProperLifetime{ - this, "twoprong proper lifetime (ps)", "twoprong proper lifetime (ps)", { 50, -0.2, 0.2 } }; mutable Gaudi::Accumulators::Histogram<1> m_twoProngIPChi2PerDof{ - this, "twoprong IP chi2 per dof", "twoprong IP chi2 per dof", { 50, 0, 10 } }; + this, "twoprong IP chi2 per dof", "twoprong IP chi2 per dof", { 50, 0, m_maxTwoProngIPChi2 / 2. } }; mutable Gaudi::Accumulators::Histogram<1> m_numPrimaryVertices{ this, "NumPrimaryVertices", "NumPrimaryVertices", { 16, -0.5, 15.5 } }; @@ -192,47 +296,36 @@ private: "PV forward-backward delta x versus z", { m_nprbins, m_zpvmin, m_zpvmax } }; mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPXvsPhi{ - this, "track IP X vs phi", "track IP X vs phi (biased)", { m_nprbins, -Gaudi::Units::pi, Gaudi::Units::pi } }; + this, "track IP X vs phi", "track IP X vs phi", { m_nprbins, -Gaudi::Units::pi, Gaudi::Units::pi } }; mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPXvsEta{ - this, "track IP X vs eta", "track IP X vs eta (biased)", { m_nprbins, 2.0, 5.0 } }; - - // pt plots - mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPXvsPt{ - this, "track IP X vs pt profile", "track IP X vs pt (GeV) (biased)", { 30, 0.0, 15.0 } }; - mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPXvsInversePt{ - this, "track IP X vs inverse pt profile", "track IP X vs 1/pt (1/GeV) (biased)", { m_nprbins, 0.0, 3.0 } }; - mutable Gaudi::Accumulators::Histogram<2> m_trackIPXInvPt{ - this, "track IP X vs inverse pt", "(biased) track IP X in 1/pt", { 20, 0.0, 3.0 }, { 50, -m_ipmax, m_ipmax } }; + this, "track IP X vs eta", "track IP X vs eta", { m_nprbins, 2.0, 5.0 } }; + mutable Gaudi::Accumulators::StaticHistogram<2> m_trackIPXInvPt{ + this, "track IP X vs inverse pt", "track IP X in 1/pt", { 20, 0.0, 3.0 }, { 150, 0, 0.3 } }; + mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPXResolutionVsInvPt{ + this, "track IP X resolution vs inverse pt", "track IP X resolution vs inverse pt", { 20, 0.0, 3.0 } }; mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPYvsPhi{ - this, "track IP Y vs phi", "track IP Y vs phi (biased)", { m_nprbins, -Gaudi::Units::pi, Gaudi::Units::pi } }; + this, "track IP Y vs phi", "track IP Y vs phi", { m_nprbins, -Gaudi::Units::pi, Gaudi::Units::pi } }; mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPYvsEta{ - this, "track IP Y vs eta", "track IP Y vs eta (biased)", { m_nprbins, 2.0, 5.0 } }; - - // pt plots - mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPYvsPt{ - this, "track IP Y vs pt profile", "track IP Y vs pt (GeV) (biased)", { 30, 0.0, 15.0 } }; - mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPYvsInversePt{ - this, - "track IP Y vs inverse pt profile", - "track IP Y vs in 1/pt range (1/GeV) (biased)", - { m_nprbins, 0.0, 3.0 } }; - mutable Gaudi::Accumulators::Histogram<2> m_trackIPYInvPt{ - this, "track IP Y vs inverse pt", "(biased) track IP Y in 1/pt", { 20, 0.0, 3.0 }, { 50, -m_ipmax, m_ipmax } }; + this, "track IP Y vs eta", "track IP Y vs eta", { m_nprbins, 2.0, 5.0 } }; + mutable Gaudi::Accumulators::StaticHistogram<2> m_trackIPYInvPt{ + this, "track IP Y vs inverse pt", "track IP Y in 1/pt", { 20, 0.0, 3.0 }, { 150, 0, 0.3 } }; + mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackIPYResolutionVsInvPt{ + this, "track IP Y resolution vs inverse pt", "track IP Y resolution vs inverse pt", { 20, 0.0, 3.0 } }; - mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackTransverseIPvsPhi{ + mutable Gaudi::Accumulators::ProfileHistogram<1> m_fastTrackTransverseIPvsPhi{ this, "fast track transverse IP vs phi", "fast track transverse IP vs phi", { m_nprbins, -Gaudi::Units::pi, Gaudi::Units::pi } }; - mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackTransverseIPvsEta{ + mutable Gaudi::Accumulators::ProfileHistogram<1> m_fastTrackTransverseIPvsEta{ this, "fast track transverse IP vs eta", "fast track transverse IP vs eta", { m_nprbins, 2.0, 5.0 } }; - mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackLongitudinalIPvsPhi{ + mutable Gaudi::Accumulators::ProfileHistogram<1> m_fastTrackLongitudinalIPvsPhi{ this, "fast track longitudinal IP vs phi", "fast track longitudinal IP vs phi", { m_nprbins, -Gaudi::Units::pi, Gaudi::Units::pi } }; - mutable Gaudi::Accumulators::ProfileHistogram<1> m_trackLongitudinalIPvsEta{ + mutable Gaudi::Accumulators::ProfileHistogram<1> m_fastTrackLongitudinalIPvsEta{ this, "fast track longitudinal IP vs eta", "fast track longitudinal IP vs eta", { m_nprbins, 2.0, 5.0 } }; mutable Gaudi::Accumulators::ProfileHistogram<1> m_fastTrackIPXvsPhi{ this, "fast track IP X vs phi", "fast track IP X vs phi", { m_nprbins, -Gaudi::Units::pi, Gaudi::Units::pi } }; @@ -330,9 +423,8 @@ namespace { } // namespace -void TrackVertexMonitor::operator()( LHCb::RecVertex::Range const& pvcontainer, LHCb::Track::Range const& alltracks, - DetectorElement const& lhcb, - LHCb::Conditions::InteractionRegion const& ir ) const { +void TrackVertexMonitor::operator()( LHCb::RecVertex::Range const& recpvcontainer, LHCb::Track::Range const& alltracks, + DetectorElement const&, LHCb::Conditions::InteractionRegion const& ir ) const { const auto isLong = TrackTypePredicate( LHCb::Track::Types::Long ); const auto isBackward = TrackBackwardPredicate(); const auto isForward = TrackForwardPredicate(); @@ -345,9 +437,12 @@ void TrackVertexMonitor::operator()( LHCb::RecVertex::Range const& pvcontainer, // for now I'll just create the track lists from the Best container // number of primary vertices - ++m_numPrimaryVertices[pvcontainer.size()]; + ++m_numPrimaryVertices[recpvcontainer.size()]; - for ( const LHCb::RecVertex* pv : pvcontainer ) { + // First fill some information for the PVs. + // Also make a selection of the PVs suitable for IP computation. + std::vector isgoodpv; + for ( const auto* pv : recpvcontainer ) { auto tracks = myconvert( pv->tracks() ); auto forwardtracks = myselect( tracks, isForward ); auto backwardtracks = myselect( tracks, isBackward ); @@ -381,11 +476,26 @@ void TrackVertexMonitor::operator()( LHCb::RecVertex::Range const& pvcontainer, ++m_pvbeamlineDeltaY[pvblDeltaY]; if ( std::abs( pvblDeltaX ) < m_xpvmax ) m_pvbeamlineDeltaXvsZ[pv->position().z()] += pvblDeltaX; if ( std::abs( pvblDeltaY ) < m_ypvmax ) m_pvbeamlineDeltaYvsZ[pv->position().z()] += pvblDeltaY; + ++m_pvXError[std::sqrt( pv->covMatrix()( 0, 0 ) )]; + ++m_pvYError[std::sqrt( pv->covMatrix()( 1, 1 ) )]; + ++m_pvZError[std::sqrt( pv->covMatrix()( 2, 2 ) )]; } + bool thisisgoodpv = + std::sqrt( pv->covMatrix()( 0, 0 ) ) < m_maxpviperr && std::sqrt( pv->covMatrix()( 1, 1 ) ) < m_maxpviperr; + // average weight and total weight + if ( pv->weights().size() > 0 ) { + const double sumw = std::accumulate( pv->weights().begin(), pv->weights().end(), 0.0 ); + const double avw = sumw / pv->weights().size(); + ++m_pvAverageWeight[avw]; + m_pvAverageWeightVsNumTracksPr[pv->weights().size()] += avw; + thisisgoodpv = thisisgoodpv && sumw > m_minpvtotalweight; + } + isgoodpv.emplace_back( thisisgoodpv ); + // refit the primary vertex with only the long tracks if ( longtracks.size() >= 2 ) { - auto longvertex = m_vertexer->fit( firstStates( longtracks ), *lhcb.geometry() ); + auto longvertex = m_vertexer->fit( firstStates( longtracks ) ); if ( longvertex ) ++m_pvLongChisquarePerDof[longvertex->chi2() / longvertex->nDoF()]; } @@ -394,7 +504,7 @@ void TrackVertexMonitor::operator()( LHCb::RecVertex::Range const& pvcontainer, auto righttracks = myselect( tracks, TrackVeloSidePredicate( -1 ) ); if ( lefttracks.size() >= m_ntracksPV && righttracks.size() >= m_ntracksPV ) { // fit two vertices - auto leftvertex = m_vertexer->fit( firstStates( lefttracks ), *lhcb.geometry() ); + auto leftvertex = m_vertexer->fit( firstStates( lefttracks ) ); if ( leftvertex ) { ++m_pvLeftX[leftvertex->position().x()]; @@ -409,7 +519,7 @@ void TrackVertexMonitor::operator()( LHCb::RecVertex::Range const& pvcontainer, } */ } - auto rightvertex = m_vertexer->fit( firstStates( righttracks ), *lhcb.geometry() ); + auto rightvertex = m_vertexer->fit( firstStates( righttracks ) ); if ( rightvertex ) { ++m_pvRightX[rightvertex->position().x()]; ++m_pvRightY[rightvertex->position().y()]; @@ -475,8 +585,8 @@ void TrackVertexMonitor::operator()( LHCb::RecVertex::Range const& pvcontainer, if ( forwardtracks.size() >= 2 && backwardtracks.size() >= 2 ) { // fit two vertices - auto forwardvertex = m_vertexer->fit( firstStates( forwardtracks ), *lhcb.geometry() ); - auto backwardvertex = m_vertexer->fit( firstStates( backwardtracks ), *lhcb.geometry() ); + auto forwardvertex = m_vertexer->fit( firstStates( forwardtracks ) ); + auto backwardvertex = m_vertexer->fit( firstStates( backwardtracks ) ); if ( forwardvertex && backwardvertex ) { Gaudi::XYZVector dx = forwardvertex->position() - backwardvertex->position(); @@ -521,137 +631,204 @@ void TrackVertexMonitor::operator()( LHCb::RecVertex::Range const& pvcontainer, } } } + } - // for events with a single vertex, do something with IP of - // highest momentum track, as function of phi and eta. - if ( pvcontainer.size() == 1 && tracks.size() >= 10 ) { - - // now get all good long tracks from the best container: - auto goodlongtracks = myselect( alltracks, [&]( const LHCb::Track* tr ) { - return isLong( tr ) && tr->chi2PerDoF() < m_maxLongTrackChisqPerDof && tr->p() > m_minLongTrackMomentum; - } ); - - for ( const LHCb::Track* tr : goodlongtracks ) { - const LHCb::State& firststate = tr->firstState(); - double dz = pv->position().z() - firststate.z(); - double dx = firststate.x() + dz * firststate.tx() - pv->position().x(); - double dy = firststate.y() + dz * firststate.ty() - pv->position().y(); - Gaudi::XYZVector p3 = firststate.momentum(); - double pt = ( firststate.pt() / Gaudi::Units::GeV ); - double invPt = 1.0 / pt; - ++m_trackIPX[dx]; - ++m_trackIPY[dy]; - // apply a cut for the profiles - if ( std::abs( dx ) < m_ipmaxprof && std::abs( dy ) < m_ipmaxprof ) { - double phi = p3.phi(); - double eta = p3.eta(); - m_trackIPXvsEta[eta] += dx; - m_trackIPXvsPhi[phi] += dx; - m_trackIPYvsEta[eta] += dy; - m_trackIPYvsPhi[phi] += dy; - } - // profiles with no IP cut - m_trackIPXvsPt[pt] += dx; - m_trackIPXvsInversePt[invPt] += dx; - m_trackIPYvsPt[pt] += dy; - m_trackIPYvsInversePt[invPt] += dy; - - // single plots for 1/pt - ++m_trackIPXInvPt[{ invPt, dx }]; - ++m_trackIPYInvPt[{ invPt, dy }]; - } - - if ( goodlongtracks.size() >= 2 ) { - - std::sort( goodlongtracks.begin(), goodlongtracks.end(), []( const LHCb::Track* lhs, const LHCb::Track* rhs ) { - return lhs->firstState().pt() < rhs->firstState().pt(); - } ); - - const LHCb::Track* firsttrack = goodlongtracks.back(); - goodlongtracks.pop_back(); - - // now pick a 2nd track that makes the highest possible invariant mass with this one - double highestmass2( 0 ); - const LHCb::Track* secondtrack = nullptr; - Gaudi::XYZVector firstp3 = firsttrack->firstState().momentum(); - for ( const auto& t : goodlongtracks ) { - Gaudi::XYZVector p3 = t->firstState().momentum(); - double mass2 = p3.r() * firstp3.r() - p3.Dot( firstp3 ); - if ( secondtrack == 0 || highestmass2 < mass2 ) { - highestmass2 = mass2; - secondtrack = t; - } - } + // Compute track IP with respect to their best vertex. + // Because we need 'unbiasing' functionality later, let's convert the input container + LHCb::Event::PV::PrimaryVertexContainer pvcontainer; + LHCb::TrackPVFinder::populateFromRecVertices( + pvcontainer, LHCb::make_span( std::to_address( recpvcontainer.begin() ), recpvcontainer.size() ) ); + LHCb::TrackPVFinder::fitAdaptive( pvcontainer, LHCb::Event::PV::AdaptiveFitConfig{} ); - // recompute the vertex without these tracks - auto newend = tracks.end(); - newend = std::remove( tracks.begin(), newend, firsttrack ); - newend = std::remove( tracks.begin(), newend, secondtrack ); - tracks.erase( newend, tracks.end() ); - auto restvertex = m_vertexer->fit( firstStates( tracks ), *lhcb.geometry() ); - if ( restvertex && firsttrack->nStates() != 0 ) { - const LHCb::State& firststate = firsttrack->firstState(); - double dz = restvertex->position().z() - firststate.z(); - double dx = firststate.x() + dz * firststate.tx() - restvertex->position().x(); - double dy = firststate.y() + dz * firststate.ty() - restvertex->position().y(); - double nt = std::sqrt( firststate.tx() * firststate.tx() + firststate.ty() * firststate.ty() ); - // transverse and longitudinal impact parameter - double iptrans = ( dx * firststate.ty() - dy * firststate.tx() ) / nt; - double iplong = ( dx * firststate.tx() + dy * firststate.ty() ) / nt; - Gaudi::XYZVector p3 = firststate.momentum(); - double phi = p3.phi(); - double eta = p3.eta(); - - ++m_trackTransverseIP[iptrans]; - ++m_trackLongitudinalIP[iplong]; - ++m_fastTrackIPX[dx]; - ++m_fastTrackIPY[dy]; - // apply a cut for the profiles - if ( std::abs( iptrans ) < m_ipmaxprof && std::abs( iplong ) < m_ipmaxprof ) { - m_trackTransverseIPvsEta[eta] += iptrans; - m_trackTransverseIPvsPhi[phi] += iptrans; - m_trackLongitudinalIPvsEta[eta] += iplong; - m_trackLongitudinalIPvsPhi[phi] += iplong; - } - if ( std::abs( dx ) < m_ipmaxprof && std::abs( dy ) < m_ipmaxprof ) { - m_fastTrackIPXvsEta[eta] += dx; - m_fastTrackIPXvsPhi[phi] += dx; - m_fastTrackIPYvsEta[eta] += dy; - m_fastTrackIPYvsPhi[phi] += dy; - } + // get all good long tracks + auto goodlongtracks = myselect( alltracks, [&]( const LHCb::Track* tr ) { + return isLong( tr ) && tr->chi2PerDoF() < m_maxLongTrackChisqPerDof && tr->p() > m_minLongTrackMomentum; + } ); - // The two-track cuts we only make for relatively heavy objects - double mass = std::sqrt( highestmass2 ); - ++m_twoProngMass[mass / Gaudi::Units::GeV]; - if ( mass > 1 * Gaudi::Units::GeV ) { - // compute doca of two tracks - Gaudi::XYZVector dx3 = firsttrack->firstState().position() - secondtrack->firstState().position(); - Gaudi::XYZVector n3 = firsttrack->firstState().slopes().Cross( secondtrack->firstState().slopes() ); - double doca = dx3.Dot( n3 ) / n3.R(); - ++m_twoProngDoca[doca]; - if ( std::abs( doca ) < 200 ) { - m_twoProngDocavsEta[firstp3.eta()] += doca; - m_twoProngDocavsPhi[firstp3.phi()] += doca; - } - // the easiest way to compute the pull is with a vertex fit - auto twoprong = m_vertexer->fit( firsttrack->firstState(), secondtrack->firstState(), *lhcb.geometry() ); - if ( twoprong ) { - double pc = twoprong->p3().R(); - ++m_twoProngMomentum[pc / Gaudi::Units::GeV]; - ++m_twoProngDocaPull[std::sqrt( twoprong->chi2() ) * ( doca > 0 ? 1 : -1 )]; - double chi2, decaylength, decaylengtherr; - m_vertexer->computeDecayLength( *twoprong, *restvertex, chi2, decaylength, decaylengtherr ); - ++m_twoProngDecayLength[decaylength]; - ++m_twoProngDecayLengthSig[decaylength / decaylengtherr]; - ++m_twoProngIPChi2PerDof[chi2 / 2]; - ++m_twoProngCTau[decaylength * mass / pc]; - ++m_twoProngIPChi2PerDof[decaylength * mass / ( pc * Gaudi::Units::c_light * Gaudi::Units::picosecond )]; + const bool m_unbias_pvs_for_all_tracks{ false }; + std::vector bestpvindices; + bestpvindices.reserve( goodlongtracks.size() ); + for ( const LHCb::Track* tr : goodlongtracks ) { + const LHCb::State& state = tr->firstState(); + // find the best PV + const auto pvindex = LHCb::bestPVIndex( pvcontainer, state.x(), state.y(), state.z(), state.tx(), state.ty() ); + bestpvindices.push_back( pvindex ); + if ( pvindex != LHCb::Event::PV::PVIndexInvalid && isgoodpv[pvindex] ) { + + auto fillhistos = [&]( const auto& pv, bool fasttrack ) { + auto stateAtPV = state; + stateAtPV.linearTransportTo( pv.position().z() ); + const auto tx = stateAtPV.tx(); + const auto ty = stateAtPV.ty(); + ROOT::Math::SMatrix H; + H( 0, 0 ) = H( 1, 1 ) = 1; + H( 2, 0 ) = -tx; + H( 2, 1 ) = -ty; + const Gaudi::SymMatrix2x2 Vpv = ROOT::Math::Similarity( ROOT::Math::Transpose( H ), pv.covMatrix() ); + const auto pvipxerr = std::sqrt( Vpv( 0, 0 ) ); + const auto pvipyerr = std::sqrt( Vpv( 1, 1 ) ); + const auto trkipxerr = std::sqrt( stateAtPV.covariance()( 0, 0 ) ); + const auto trkipyerr = std::sqrt( stateAtPV.covariance()( 1, 1 ) ); + + if ( pvipxerr < m_maxpviperr && pvipyerr < m_maxpviperr ) { + + // compute the track state at the z-position of the vertex + const auto dx = stateAtPV.x() - pv.position().x(); + const auto dy = stateAtPV.y() - pv.position().y(); + const auto p3 = stateAtPV.momentum(); + const auto pt = ( stateAtPV.pt() / Gaudi::Units::GeV ); + const auto invPt = 1.0 / pt; + + // compute the IP chi2 + const Gaudi::SymMatrix2x2 V = Vpv + stateAtPV.covariance().Sub( 0, 0 ); + const Gaudi::Vector2 residual{ dx, dy }; + Gaudi::SymMatrix2x2 W = V; + W.InvertChol(); + const double ipchi2 = ROOT::Math::Similarity( residual, W ); + ++m_trackIPChi2[ipchi2]; + + // Make a very loose ipchi2 cut + if ( ipchi2 < m_maxipchi2 ) { + // single plots for 1/pt + // make a cut on the error such that the PV contribution is reasonably small. + const auto absdx = std::abs( dx ); + const auto absdy = std::abs( dy ); + if ( pvipxerr < 0.5 * trkipxerr ) ++m_trackIPXInvPt[{ invPt, absdx }]; + if ( pvipyerr < 0.5 * trkipyerr ) ++m_trackIPYInvPt[{ invPt, absdy }]; + + // making the next plots with a cut on ipx and ipy error, including the track contribution + const auto ipxerr = std::sqrt( V( 0, 0 ) ); + const auto ipyerr = std::sqrt( V( 1, 1 ) ); + const auto absdxpull = absdx / ipxerr; + const auto absdypull = absdy / ipyerr; + + if ( ipxerr < m_maxiperr && ipyerr < m_maxiperr ) { + if ( absdypull < 3 ) { + ++m_trackIPX[dx]; + ++m_trackIPXPull[dx / ipxerr]; + } + if ( absdxpull < 3 ) { + ++m_trackIPY[dy]; + ++m_trackIPYPull[dy / ipyerr]; + } + + // apply a cut for the profiles + const auto phi = p3.phi(); + const auto eta = p3.eta(); + if ( absdx < m_ipmaxprof && absdy < m_ipmaxprof ) { + m_trackIPXvsEta[eta] += dx; + m_trackIPXvsPhi[phi] += dx; + m_trackIPYvsEta[eta] += dy; + m_trackIPYvsPhi[phi] += dy; + } + + if ( fasttrack ) { + if ( absdypull < 3 ) { + ++m_fastTrackIPX[dx]; + ++m_fastTrackIPXPull[dx / ipxerr]; + } + if ( absdxpull < 3 ) { + ++m_fastTrackIPY[dy]; + ++m_fastTrackIPYPull[dy / ipyerr]; + } + const auto nt = std::sqrt( tx * tx + ty * ty ); + const auto iptrans = ( dx * ty - dy * tx ) / nt; + const auto iplong = ( dx * tx + dy * ty ) / nt; + ++m_fastTrackTransverseIP[iptrans]; + ++m_fastTrackLongitudinalIP[iplong]; + if ( std::abs( iptrans ) < m_ipmaxprof && std::abs( iplong ) < m_ipmaxprof ) { + m_fastTrackTransverseIPvsEta[eta] += iptrans; + m_fastTrackTransverseIPvsPhi[phi] += iptrans; + m_fastTrackLongitudinalIPvsEta[eta] += iplong; + m_fastTrackLongitudinalIPvsPhi[phi] += iplong; + } + if ( absdx < m_ipmaxprof && absdy < m_ipmaxprof ) { + m_fastTrackIPXvsEta[eta] += dx; + m_fastTrackIPXvsPhi[phi] += dx; + m_fastTrackIPYvsEta[eta] += dy; + m_fastTrackIPYvsPhi[phi] += dy; + } + } } } } + }; + // It is a bit too expensive to unbias PVs for all tracks. Therefore, we will only do that for the 'fast' tracks + const bool fasttrack = tr->firstState().p() > m_minFastTrackMomentum && tr->firstState().pt() > m_minFastTrackPt; + if ( m_unbias_pvs_for_all_tracks || fasttrack ) { + // extract the velo segment ID needed for unbiasing + const auto veloid = LHCb::Event::PV::uniqueVeloSegmentID( tr->lhcbIDs() ); + // put this into an array, and get the unbiased PV + std::array vetoedvelotracks{ veloid }; + const auto pv = LHCb::Event::PV::unbiasedVertex( pvcontainer, pvindex, vetoedvelotracks ); + fillhistos( pv, fasttrack ); + } else { + const auto& pv = pvcontainer[pvindex]; + fillhistos( pv, fasttrack ); } } } + + // Finally, fill some information on good two-prongs. To speed things up, we use every track at most once. + std::vector trackisused( goodlongtracks.size(), false ); + for ( unsigned itrk = 0; itrk < goodlongtracks.size(); ++itrk ) + if ( !trackisused[itrk] && bestpvindices[itrk] != LHCb::Event::PV::PVIndexInvalid && + isgoodpv[bestpvindices[itrk]] ) { + const LHCb::Track* trackA = goodlongtracks[itrk]; + const auto& stateA = trackA->firstState(); + const auto p3A = stateA.momentum(); + // pick a second track from the same PV + for ( unsigned jtrk = 0; jtrk < itrk; ++jtrk ) + if ( !trackisused[jtrk] && bestpvindices[itrk] == bestpvindices[jtrk] ) { + const LHCb::Track* trackB = goodlongtracks[jtrk]; + const auto& stateB = trackB->firstState(); + const auto p3B = stateB.momentum(); + const auto mass2 = p3A.r() * p3B.r() - p3A.Dot( p3B ); + if ( mass2 > m_minTwoProngMass * m_minTwoProngMass ) { + const auto doca = LHCb::StateVertexUtils::doca( stateA, stateB ); + if ( doca < m_maxTwoProngDoca ) { + const double chi2 = LHCb::StateVertexUtils::vertexChi2( stateA, stateB ); + if ( chi2 < m_maxTwoProngChi2 ) { + // the easiest way to compute the pull is with a vertex fit + auto twoprong = m_vertexer->fit( stateA, stateB ); + if ( twoprong ) { + // unbias the PV + auto veloid1 = LHCb::Event::PV::uniqueVeloSegmentID( trackA->lhcbIDs() ); + auto veloid2 = LHCb::Event::PV::uniqueVeloSegmentID( trackB->lhcbIDs() ); + // put this into an array, and get the unbiased PV + std::array vetoedvelotracks{ veloid1, veloid2 }; + const auto restvertex = + LHCb::Event::PV::unbiasedVertex( pvcontainer, bestpvindices[itrk], vetoedvelotracks ); + const auto deltapos = twoprong->position() - restvertex.position(); + const auto mom = p3A + p3B; + ++m_twoProngIPX[deltapos.x() - deltapos.z() * mom.x() / mom.z()]; + ++m_twoProngIPY[deltapos.y() - deltapos.z() * mom.y() / mom.z()]; + double ipchi2, decaylength, decaylengtherr; + m_vertexer->computeDecayLength( *twoprong, restvertex, ipchi2, decaylength, decaylengtherr ); + if ( ipchi2 < m_maxTwoProngIPChi2 ) { + const auto mass = std::sqrt( mass2 ); + ++m_twoProngMass[mass / Gaudi::Units::GeV]; + ++m_twoProngDoca[doca]; + const auto p3 = p3A + p3B; + const auto pc = p3.R(); + if ( std::abs( doca ) < m_ipmaxprof ) { + m_twoProngDocavsEta[p3.eta()] += doca; + m_twoProngDocavsPhi[p3.phi()] += doca; + } + ++m_twoProngMomentum[pc / Gaudi::Units::GeV]; + ++m_twoProngIPChi2PerDof[ipchi2 / 2]; + ++m_twoProngDocaPull[std::sqrt( twoprong->chi2() ) * ( doca > 0 ? 1 : -1 )]; + ++m_twoProngDecayLength[decaylength]; + ++m_twoProngDecayLengthSig[decaylength / decaylengtherr]; + ++m_twoProngCTau[decaylength * mass / pc]; + trackisused[itrk] = trackisused[jtrk] = true; + } + } + } + } + } + } + } } StatusCode TrackVertexMonitor::initialize() { diff --git a/Tr/TrackMonitors/src/UTTrackResidualMonitor.cpp b/Tr/TrackMonitors/src/UTTrackResidualMonitor.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5d151bf6fa798828138f6c168c2144970284e39f --- /dev/null +++ b/Tr/TrackMonitors/src/UTTrackResidualMonitor.cpp @@ -0,0 +1,304 @@ +/*****************************************************************************\ +* (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 "Event/ITrackFitResult.h" +#include "Event/PrHits.h" +#include "Event/PrKalmanFitResult.h" +#include "Event/Track.h" +#include "Event/TrackFitResult.h" +#include "Gaudi/Accumulators/Histogram.h" +#include "UTDAQ/UTInfo.h" +#include "UTDet/DeUTDetector.h" + +#include "LHCbAlgs/Consumer.h" +#include "TrackInterfaces/ITrackExtrapolator.h" + +#include +/** + * Class for monitoring unbiased UT hits residual of long track + * @author Hangyi Wu + * @date 15-3-2024 + */ + +namespace LHCb::UT { + template + class Mutable { + mutable T m_t; + + public: + template >> + Mutable( Args&&... args ) : m_t{ std::forward( args )... } {} + + template + decltype( auto ) operator[]( Arg&& arg ) const { + return m_t[std::forward( arg )]; + } + }; + + class UTTrackResidualMonitor + : public LHCb::Algorithm::Consumer> { + + public: + UTTrackResidualMonitor( const std::string& name, ISvcLocator* pSvcLocator ); + StatusCode initialize() override; + void operator()( LHCb::Track::Range const&, const LHCb::Pr::UT::Hits&, DetectorElement const&, + const DeUTDetector& ) const override; + + private: + void fillHistograms( LHCb::Track const& track, const LHCb::Pr::UT::Hits& utHits, IGeometryInfo const& geometry, + const DeUTDetector& deUT ) const; + std::optional getResidual( Track const& track, LHCb::Detector::UT::ChannelID hitChanID, + IGeometryInfo const& geometry, const DeUTDetector& deUT ) const; + using Histo1D = Mutable>; + using Histo2D = Mutable>; + using Axis = Gaudi::Accumulators::Axis; + using H2DArg = Gaudi::Accumulators::HistoInputType; + mutable Gaudi::Accumulators::Histogram<2> m_xy{ + this, "xy", "x vs y (mm)", { { 500, -1000, 1000 }, { 500, -1000, 1000 } } }; + + mutable Gaudi::Accumulators::Histogram<1> m_ut_unbiased{ this, "UT_Unbiased", "UT", { 200, -5., 5. } }; + std::map m_sides_unbiased; + std::map m_layers_unbiased; + std::map m_halflayers_unbiased; + std::map m_staves_unbiased; + std::map m_modules_unbiased; + + mutable Gaudi::Accumulators::Histogram<1> m_ut_biased{ this, "UT_Biased", "UT", { 200, -5., 5. } }; + std::map m_sides_biased; + std::map m_layers_biased; + std::map m_halflayers_biased; + std::map m_staves_biased; + std::map m_modules_biased; + + ToolHandle m_extrapolator{ this, "Extrapolator", + "TrackMasterExtrapolator" }; ///< Pointer to extrapolator + Gaudi::Property m_refZ{ this, "ReferenceZ", 2485.0, "midpoint of UT" }; + Gaudi::Property m_trueUnbiased{ this, "TrueUnbiased", false, + "Whether tracks contain UT hits (false) or not (true)." }; + void buildHistogramMaps( const DeUTDetector& deUT ); + }; + + template + void buildHistogram( OWNER owner, std::map& h, K k, std::string name, std::string labels, A axis ) { + h.try_emplace( k, owner, name, labels, axis ); + } + + DECLARE_COMPONENT_WITH_ID( UTTrackResidualMonitor, "UTTrackResidualMonitor" ) + + void UTTrackResidualMonitor::buildHistogramMaps( const DeUTDetector& deUT ) { + + const char* title_unbiased = m_trueUnbiased ? "UnbiasedResidual_True" : "UnbiasedResidual"; + float xmin = m_trueUnbiased ? -10.f : -1.f; + float xmax = -xmin; + unsigned int nbin = 400; + const Axis axis{ nbin, xmin, xmax }; + + // create histograms + std::string sideNames[2] = { "Cside", "Aside" }; + std::string layerNames[4] = { "UTaX", "UTaU", "UTbV", "UTbX" }; + for ( unsigned int i = 0; i < 4; i++ ) { + buildHistogram( this, m_layers_unbiased, i, layerNames[i] + '/' + title_unbiased, title_unbiased, axis ); + buildHistogram( this, m_layers_biased, i, layerNames[i] + '/' + "Residual", "Residual", axis ); + } + for ( const auto& side : deUT.sides() ) { +#ifdef USE_DD4HEP + auto sideID = side.channelID().side(); +#else + auto sideID = side->channelID().side(); +#endif + buildHistogram( this, m_sides_unbiased, sideID, sideNames[sideID] + '/' + title_unbiased, title_unbiased, axis ); + buildHistogram( this, m_sides_biased, sideID, sideNames[sideID] + '/' + "Residual", "Residual", axis ); +#ifdef USE_DD4HEP + for ( const auto& layer : side.layers() ) { + auto layerID = layer.channelID().layer(); + auto layerUniqueID = layer.channelID().uniqueLayer(); +#else + for ( const auto& layer : side->layers() ) { + auto layerID = layer->channelID().layer(); + auto layerUniqueID = layer->channelID().uniqueLayer(); +#endif + std::string layerPath = sideNames[sideID] + "/" + layerNames[layerID]; + buildHistogram( this, m_halflayers_unbiased, layerUniqueID, layerPath + '/' + title_unbiased, title_unbiased, + axis ); + buildHistogram( this, m_halflayers_biased, layerUniqueID, layerPath + '/' + "Residual", "Residual", axis ); +#ifdef USE_DD4HEP + for ( const auto& stave : layer.staves() ) { + auto staveID = stave.channelID().stave(); + auto staveUniqueID = stave.channelID().uniqueStave(); +#else + for ( const auto& stave : layer->staves() ) { + auto staveID = stave->channelID().stave(); + auto staveUniqueID = stave->channelID().uniqueStave(); +#endif + std::string stavePath = + sideNames[sideID] + "/" + layerNames[layerID] + "/" + "Stave" + std::to_string( staveID ); + buildHistogram( this, m_staves_unbiased, staveUniqueID, stavePath + '/' + title_unbiased, title_unbiased, + axis ); + buildHistogram( this, m_staves_biased, staveUniqueID, stavePath + '/' + "Residual", "Residual", axis ); +#ifdef USE_DD4HEP + for ( const auto& face : stave.faces() ) { + auto faceID = face.channelID().face(); + for ( const auto& module : face.modules() ) { + auto moduleID = module.channelID().module(); + auto moduleUniqueID = module.channelID().uniqueModule(); +#else + for ( const auto& face : stave->faces() ) { + auto faceID = face->channelID().face(); + for ( const auto& module : face->modules() ) { + auto moduleID = module->channelID().module(); + auto moduleUniqueID = module->channelID().uniqueModule(); +#endif + std::string modulePath = sideNames[sideID] + "/" + layerNames[layerID] + "/Stave" + + std::to_string( staveID ) + "/Face" + std::to_string( faceID ) + "/Module" + + std::to_string( moduleID ); + buildHistogram( this, m_modules_unbiased, moduleUniqueID, modulePath + '/' + title_unbiased, + title_unbiased, axis ); + buildHistogram( this, m_modules_biased, moduleUniqueID, modulePath + '/' + "Residual", "Residual", axis ); + } + } + } + } + } + } + + StatusCode UTTrackResidualMonitor::initialize() { + return Consumer::initialize().andThen( [&] { + addConditionDerivation( { DeUTDetLocation::location() }, std::string{}, [this]( DeUTDetector const& det ) { + this->buildHistogramMaps( det ); + return ""; + } ); + return StatusCode::SUCCESS; + } ); + } + + UTTrackResidualMonitor::UTTrackResidualMonitor( const std::string& name, ISvcLocator* pSvcLocator ) + : Consumer( name, pSvcLocator, + { { "TracksInContainer", LHCb::TrackLocation::Default }, + { "UTHitsLocation", UTInfo::HitLocation }, + { "StandardGeometryTop", LHCb::standard_geometry_top }, + { "DeUT", DeUTDetLocation::location() } } ) {} + + void UTTrackResidualMonitor::operator()( LHCb::Track::Range const& tracks, const LHCb::Pr::UT::Hits& utHits, + const DetectorElement& lhcb, const DeUTDetector& deUT ) const { + auto& geometry = *lhcb.geometry(); + + // histograms per track + for ( const LHCb::Track* track : tracks ) { + // find the IT hits on the track + fillHistograms( *track, utHits, geometry, deUT ); + } + } + + void UTTrackResidualMonitor::fillHistograms( LHCb::Track const& track, const LHCb::Pr::UT::Hits& utHits, + IGeometryInfo const& geometry, const DeUTDetector& deUT ) const { + if ( m_trueUnbiased ) { + // track parameters at some reference z + LHCb::StateVector aState; + m_extrapolator->propagate( track, m_refZ, aState, geometry ).ignore(); + ++m_xy[{ aState.x() / Gaudi::Units::mm, aState.y() / Gaudi::Units::mm }]; + + const auto hits = utHits.scalar(); + for ( auto const hit : hits ) { + const auto simd_chanid = hit.template get(); + auto const chanID = LHCb::Detector::UT::ChannelID( simd_chanid.cast() ); + auto residualX = getResidual( track, chanID, geometry, deUT ); + if ( residualX ) { + ++m_ut_unbiased[*residualX]; + ++m_sides_unbiased.at( chanID.side() )[*residualX]; + ++m_layers_unbiased.at( chanID.layer() )[*residualX]; + ++m_halflayers_unbiased.at( chanID.uniqueLayer() )[*residualX]; + ++m_staves_unbiased.at( chanID.uniqueStave() )[*residualX]; + ++m_modules_unbiased.at( chanID.uniqueModule() )[*residualX]; + } + } + } else { + dispatch( *track.fitResult(), [&]( const auto& fr ) { + for ( const auto& node : nodes( fr ) ) { + if ( !( node.hasMeasurement() && node.isHitOnTrack() && node.isUT() ) ) continue; + if ( node.isOutlier() ) continue; + if ( node.errResidual() == 0.0 ) continue; + + LHCb::LHCbID lhcbID = id( node ); + LHCb::Detector::UT::ChannelID chanID = lhcbID.utID(); + auto unbiasedResidual = node.unbiasedResidual(); + auto biasedResidual = node.residual(); + + ++m_ut_unbiased[unbiasedResidual]; + ++m_sides_unbiased.at( chanID.side() )[unbiasedResidual]; + ++m_layers_unbiased.at( chanID.layer() )[unbiasedResidual]; + ++m_halflayers_unbiased.at( chanID.uniqueLayer() )[unbiasedResidual]; + ++m_staves_unbiased.at( chanID.uniqueStave() )[unbiasedResidual]; + ++m_modules_unbiased.at( chanID.uniqueModule() )[unbiasedResidual]; + + ++m_ut_biased[biasedResidual]; + ++m_sides_biased.at( chanID.side() )[biasedResidual]; + ++m_layers_biased.at( chanID.layer() )[biasedResidual]; + ++m_halflayers_biased.at( chanID.uniqueLayer() )[biasedResidual]; + ++m_staves_biased.at( chanID.uniqueStave() )[biasedResidual]; + ++m_modules_biased.at( chanID.uniqueModule() )[biasedResidual]; + } + } ); + } + } + std::optional UTTrackResidualMonitor::getResidual( LHCb::Track const& track, + LHCb::Detector::UT::ChannelID hitChanID, + IGeometryInfo const& geometry, + const DeUTDetector& deUT ) const { + auto aSector = deUT.findSector( hitChanID ); +#ifdef USE_DD4HEP + if ( !aSector.isValid() ) { +#else + if ( !aSector ) { +#endif + warning() << "Sector not found with" << hitChanID << endmsg; + return std::nullopt; + } +#ifdef USE_DD4HEP + auto aStrip = aSector.createTraj( hitChanID.strip(), 0 ); +#else + auto aStrip = aSector->trajectory( hitChanID, 0 ); +#endif + ROOT::Math::XYZPoint g1 = aStrip.beginPoint(); + ROOT::Math::XYZPoint g2 = aStrip.endPoint(); + ROOT::Math::XYZPoint hitPos = g1 + ( g2 - g1 ) * 0.5; + auto hitX = hitPos.X(); + auto hitY = hitPos.Y(); + auto hitZ = hitPos.Z(); + + // obtain dxdy + double dxdy, dummy; +#ifdef USE_DD4HEP + aSector.trajectory( hitChanID.strip(), 0, dxdy, dummy, dummy, dummy, dummy, dummy ); +#else + aSector->trajectory( hitChanID.strip(), 0, dxdy, dummy, dummy, dummy, dummy, dummy ); +#endif + + LHCb::StateVector aState; + m_extrapolator->propagate( track, hitZ, aState, geometry ).ignore(); +#ifdef USE_DD4HEP + if ( aSector.sensor().sensorType() == 'A' || aSector.sensor().sensorType() == 'B' ) +#else + if ( aSector->sensor( 0 ).sensorType() == 'A' || aSector->sensor( 0 ).sensorType() == 'B' ) +#endif + if ( std::abs( hitY - aState.y() ) > 60.0 ) return std::nullopt; +#ifdef USE_DD4HEP + if ( aSector.sensor().sensorType() == 'C' || aSector.sensor().sensorType() == 'D' ) +#else + if ( aSector->sensor( 0 ).sensorType() == 'C' || aSector->sensor( 0 ).sensorType() == 'D' ) +#endif + if ( std::abs( hitY - aState.y() ) > 30.0 ) return std::nullopt; + + return hitX - ( aState.x() + ( hitY - aState.y() ) * dxdy ); + } + +} // namespace LHCb::UT diff --git a/Tr/TrackMonitors/src/VertexCompare.cpp b/Tr/TrackMonitors/src/VertexCompare.cpp index 948de750374b3117ca884d797a28931e71d69b88..8e4d1a0035369127e58a34cbb534738b995b93ff 100644 --- a/Tr/TrackMonitors/src/VertexCompare.cpp +++ b/Tr/TrackMonitors/src/VertexCompare.cpp @@ -254,15 +254,18 @@ private: struct MonitoringHistos { static constexpr size_t s_nTrackBins = 5; - mutable Gaudi::Accumulators::HistogramArray, s_nTrackBins> + mutable Gaudi::Accumulators::HistogramArray, s_nTrackBins + 1> m_histo_nTracksBins_dx; - mutable Gaudi::Accumulators::HistogramArray, s_nTrackBins> + mutable Gaudi::Accumulators::HistogramArray, s_nTrackBins + 1> m_histo_nTracksBins_dy; - mutable Gaudi::Accumulators::HistogramArray, s_nTrackBins> + mutable Gaudi::Accumulators::HistogramArray, s_nTrackBins + 1> m_histo_nTracksBins_dz; mutable Gaudi::Accumulators::StaticHistogram<1> m_histo_pullx_Monitoring; mutable Gaudi::Accumulators::StaticHistogram<1> m_histo_pully_Monitoring; mutable Gaudi::Accumulators::StaticHistogram<1> m_histo_pullz_Monitoring; + mutable Gaudi::Accumulators::StaticHistogram<1> m_histo_pullx_overflow_nTracBin_Monitoring; + mutable Gaudi::Accumulators::StaticHistogram<1> m_histo_pully_overflow_nTracBin_Monitoring; + mutable Gaudi::Accumulators::StaticHistogram<1> m_histo_pullz_overflow_nTracBin_Monitoring; MonitoringHistos( const VertexCompare* owner ) : m_histo_nTracksBins_dx{ owner, @@ -279,7 +282,17 @@ private: { 50, -1.5, 1.5 } } , m_histo_pullx_Monitoring{ owner, "pullx_Monitoring", "pull x", { 20, -5, 5 } } , m_histo_pully_Monitoring{ owner, "pully_Monitoring", "pull y", { 20, -5, 5 } } - , m_histo_pullz_Monitoring{ owner, "pullz_Monitoring", "pull z", { 20, -5, 5 } } {} + , m_histo_pullz_Monitoring{ owner, "pullz_Monitoring", "pull z", { 20, -5, 5 } } + , m_histo_pullx_overflow_nTracBin_Monitoring{ owner, + "pullx_overflow_nTracBin_Monitoring", + "pull x", + { 20, -5, 5 } } + , m_histo_pully_overflow_nTracBin_Monitoring{ owner, + "pully_overflow_nTracBin_Monitoring", + "pull y", + { 20, -5, 5 } } + , m_histo_pullz_overflow_nTracBin_Monitoring{ + owner, "pullz_overflow_nTracBin_Monitoring", "pull z", { 20, -5, 5 } } {} }; std::optional m_monitoringHistos; @@ -509,6 +522,13 @@ void VertexCompare::operator()( Vertices const& recoVtx1, Vertices const& recoVt ++m_monitoringHistos.value().m_histo_pullx_Monitoring[pullx]; ++m_monitoringHistos.value().m_histo_pully_Monitoring[pully]; ++m_monitoringHistos.value().m_histo_pullz_Monitoring[pullz]; + } else { + ++m_monitoringHistos.value().m_histo_nTracksBins_dx[MonitoringHistos::s_nTrackBins][dx]; + ++m_monitoringHistos.value().m_histo_nTracksBins_dy[MonitoringHistos::s_nTrackBins][dy]; + ++m_monitoringHistos.value().m_histo_nTracksBins_dz[MonitoringHistos::s_nTrackBins][dz]; + ++m_monitoringHistos.value().m_histo_pullx_overflow_nTracBin_Monitoring[pullx]; + ++m_monitoringHistos.value().m_histo_pully_overflow_nTracBin_Monitoring[pully]; + ++m_monitoringHistos.value().m_histo_pullz_overflow_nTracBin_Monitoring[pullz]; } } } diff --git a/Tr/TrackTools/src/TrackMuonMatching.cpp b/Tr/TrackTools/src/TrackMuonMatching.cpp index 7d19440e168bc4ba82227b12a06688029784480d..f6256f45e341c08bc98b23d2a87eb017a1c35ca7 100644 --- a/Tr/TrackTools/src/TrackMuonMatching.cpp +++ b/Tr/TrackTools/src/TrackMuonMatching.cpp @@ -69,12 +69,12 @@ private: Gaudi::Property m_matchAtZ{ this, "MatchAtZ", 12500 * Gaudi::Units::mm }; Gaudi::Property m_matchAtFirstMuonHit{ this, "MatchAtFirstMuonHit", false }; Gaudi::Property m_matchChi2Cut{ this, "MatchChi2Cut", 100.0 }; - Gaudi::Property m_minTrackSegmentChi2{ this, "TrackSegmentChi2", 5.0 }; + Gaudi::Property m_maxTrackSegmentChi2{ this, "TrackSegmentChi2", 5.0 }; Gaudi::Property m_allCombinations{ this, "AllCombinations", true }; Gaudi::Property m_fitTracks{ this, "FitTracks", true }; using Type = LHCb::Event::Enum::Track::Type; - Gaudi::Property m_tracktype{ this, "trackType", Type::Long }; + Gaudi::Property m_tracktype{ this, "trackType", Type::Long, "OBSOLETE" }; ToolHandle m_trackFitter{ this, "Fitter", "TrackMasterFitter/Fitter" }; ToolHandle m_extrapolator{ this, "Extrapolator", "TrackLinearExtrapolator" }; @@ -115,9 +115,9 @@ auto TrackMuonMatching::createMatchedTrack( const LHCb::Track& input_track, cons // Add LastMeasurement from muon track // and set the momentum of state LastFTHit from long track if ( muonTrack.hasStateAt( LHCb::State::Location::LastMeasurement ) ) { - matchedTrack->addToStates( *( muonTrack.stateAt( State::Location::LastMeasurement ) ) ); - matchedTrack->stateAt( State::Location::LastMeasurement ) - ->setQOverP( matchedTrack->stateAt( State::Location::LastFTHit )->qOverP() ); + auto s = *( muonTrack.stateAt( State::Location::LastMeasurement ) ); + s.setQOverP( matchedTrack->stateAt( State::Location::LastFTHit )->qOverP() ); + matchedTrack->addToStates( s ); } /// Add muon ids to copied T track for ( LHCbID id : muonTrack.lhcbIDs() ) matchedTrack->addToLhcbIDs( id ); @@ -151,7 +151,7 @@ LHCb::Tracks TrackMuonMatching::operator()( const InputTracks& tracks, const Inp /// Now match this T track to muon tracks 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() > m_minTrackSegmentChi2.value() ) continue; + if ( ( *m )->chi2PerDoF() > m_maxTrackSegmentChi2.value() ) continue; if ( flaglongT ) { @@ -170,11 +170,8 @@ LHCb::Tracks TrackMuonMatching::operator()( const InputTracks& tracks, const Inp /// Matched Muon-T track auto best_matchedTrack = std::make_unique(); 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() > m_minTrackSegmentChi2.value() ) continue; - if ( !( *t )->checkType( LHCb::Track::Types::Long ) && !( *t )->checkType( LHCb::Track::Types::Ttrack ) ) - continue; + if ( ( *t )->chi2PerDoF() > m_maxTrackSegmentChi2.value() ) continue; double chi2 = -9999.0; /// Get the Track state closest to this z. Make a copy such that it can be changed. diff --git a/Tr/TrackTools/src/TrackVertexer.cpp b/Tr/TrackTools/src/TrackVertexer.cpp index ff78fa285bf796ce1a48da66cf8e738a6ab0abc6..6f979912f272cafb0946c922c466d70b8feab8fc 100644 --- a/Tr/TrackTools/src/TrackVertexer.cpp +++ b/Tr/TrackTools/src/TrackVertexer.cpp @@ -44,26 +44,24 @@ public: #endif /// Create a vertex from two track states - std::unique_ptr fit( LHCb::State const& stateA, LHCb::State const& stateB, - IGeometryInfo const& geometry ) const override; + std::unique_ptr fit( LHCb::State const& stateA, LHCb::State const& stateB ) const override; /// Create a veretx from a set of states - std::unique_ptr fit( LHCb::span states, - IGeometryInfo const& geometry ) const override; + std::unique_ptr fit( LHCb::span states ) const override; /// Create a vertex from a set of tracks. std::unique_ptr fit( LHCb::span tracks, IGeometryInfo const& geometry ) const override; /// Compute decaylength and IP chi2 wrt to PV. returns true if successful - bool computeDecayLength( const LHCb::TwoProngVertex& vertex, const LHCb::RecVertex& pv, double& chi2, + bool computeDecayLength( const LHCb::TwoProngVertex& vertex, const LHCb::VertexBase& pv, double& chi2, double& decaylength, double& decaylengtherr ) const override; /// Return the ip chi2 for a track (uses stateprovider) - double ipchi2( LHCb::Track const& track, LHCb::RecVertex const& pv, IGeometryInfo const& geometry ) const override; + double ipchi2( LHCb::Track const& track, LHCb::VertexBase const& pv, IGeometryInfo const& geometry ) const override; /// Return the ip chi2 for a track state - double ipchi2( LHCb::State const& state, LHCb::RecVertex const& pv, IGeometryInfo const& geometry ) const override; + double ipchi2( LHCb::State const& state, LHCb::VertexBase const& pv ) const override; private: ToolHandle m_stateprovider{ this, "StateProvider", "TrackStateProvider" }; @@ -79,8 +77,7 @@ private: // Declaration of the Tool Factory DECLARE_COMPONENT( TrackVertexer ) -std::unique_ptr TrackVertexer::fit( const LHCb::State& stateA, const LHCb::State& stateB, - IGeometryInfo const& ) const { +std::unique_ptr TrackVertexer::fit( const LHCb::State& stateA, const LHCb::State& stateB ) const { std::unique_ptr rc; std::array states{ &stateA, &stateB }; LHCb::TrackStateVertex vertex( states, m_maxDChisq, m_maxNumIter ); @@ -103,8 +100,7 @@ std::unique_ptr TrackVertexer::fit( const LHCb::State& sta return rc; } -std::unique_ptr TrackVertexer::fit( LHCb::span tracks, - IGeometryInfo const& ) const { +std::unique_ptr TrackVertexer::fit( LHCb::span tracks ) const { std::unique_ptr recvertex; if ( tracks.size() >= 2 ) { @@ -161,7 +157,7 @@ std::unique_ptr TrackVertexer::fit( LHCb::spanstate( z ) ); // fit the states - auto recvertex = fit( states, geometry ); + auto recvertex = fit( states ); // add the tracks if ( recvertex ) @@ -177,7 +173,7 @@ namespace { inline Gaudi::Vector3 transform( const Gaudi::XYZVector& vec ) { return Gaudi::Vector3( vec.X(), vec.Y(), vec.Z() ); } } // namespace -bool TrackVertexer::computeDecayLength( const LHCb::TwoProngVertex& vertex, const LHCb::RecVertex& pv, double& chi2, +bool TrackVertexer::computeDecayLength( const LHCb::TwoProngVertex& vertex, const LHCb::VertexBase& pv, double& chi2, double& decaylength, double& decaylengtherr ) const { // This calculation is basically a 1-iteration beamspot fit. The // constraint is @@ -229,13 +225,13 @@ bool TrackVertexer::computeDecayLength( const LHCb::TwoProngVertex& vertex, cons return ( OK != 0 ); } -double TrackVertexer::ipchi2( LHCb::Track const& track, LHCb::RecVertex const& pv, +double TrackVertexer::ipchi2( LHCb::Track const& track, LHCb::VertexBase const& pv, IGeometryInfo const& geometry ) const { const LHCb::TrackTraj* traj = m_stateprovider->trajectory( track, geometry ); - return traj ? ipchi2( traj->state( pv.position().z() ), pv, geometry ) : ipchi2( track.firstState(), pv, geometry ); + return traj ? ipchi2( traj->state( pv.position().z() ), pv ) : ipchi2( track.firstState(), pv ); } -double TrackVertexer::ipchi2( const LHCb::State& state, const LHCb::RecVertex& pv, IGeometryInfo const& ) const { +double TrackVertexer::ipchi2( const LHCb::State& state, const LHCb::VertexBase& pv ) const { double tx = state.tx(); double ty = state.ty(); double dz = pv.position().z() - state.z(); diff --git a/Tr/TrackUtils/src/PrCloneKiller.cpp b/Tr/TrackUtils/src/PrCloneKiller.cpp index 3a260b538d639d5c8a98ee092a41db06c3603cc4..2114b5cc741fd0bd5b5b1d4f34b0378f11b20f25 100644 --- a/Tr/TrackUtils/src/PrCloneKiller.cpp +++ b/Tr/TrackUtils/src/PrCloneKiller.cpp @@ -21,16 +21,23 @@ #include "LHCbAlgs/Transformer.h" #include "LHCbMath/SIMDWrapper.h" #include "TrackKernel/TrackCloneData.h" +#include "UTDAQ/UTInfo.h" +#include "boost/dynamic_bitset.hpp" #include #include #include namespace LHCb::Pr { + + using StateLocation = LHCb::Event::Enum::State::Location; + namespace { using TrackType = Track::Types; struct SimpleTrackData : public TrackCloneDataUtils::TrackCloneDataBaseBloomSliceWithLHCbIDs<> { - SimpleTrackData( std::vector const& trackids, float qp ) : m_qOverP( qp ) { + + SimpleTrackData( std::vector const& trackids, float qp, float slope ) : m_qOverP( qp ), m_slope( slope ) { + for ( auto it = trackids.cbegin(); trackids.cend() != it; ++it ) { switch ( it->detectorType() ) { case LHCbID::channelIDtype::VP: { @@ -60,10 +67,16 @@ namespace LHCb::Pr { } } - SimpleTrackData( Event::Track const* tr ) : SimpleTrackData( tr->lhcbIDs(), tr->firstState().qOverP() ) {} + SimpleTrackData( Event::Track const* tr, TrackType type = TrackType::Long ) + : SimpleTrackData( tr->lhcbIDs(), tr->firstState().qOverP(), + ( type == TrackType::Ttrack || type == TrackType::Downstream ) + ? tr->stateAt( StateLocation::LastMeasurement )->tx() + : tr->stateAt( StateLocation::ClosestToBeam )->ty() ) {} float qOverP() const { return m_qOverP; } float m_qOverP{ 0 }; + float slope() const { return m_slope; } + float m_slope{ -100 }; }; constexpr int track_combi( TrackType T1, TrackType T2 ) { @@ -97,25 +110,6 @@ namespace LHCb::Pr { return input_tracks.filter( []( auto const& ) { return true; } ); } - std::vector refdatapool; - // -- This is only needed in case we have v3::Tracks, but it has to be declared outside the 'if' clause: - // -- SimpleTrackData contains iterators to the LHCbIDs, and if it is declared inside the clause, they become - // -- invalid. - std::vector> idsCollection; - - if constexpr ( std::is_same_v ) { - refdatapool = std::vector{ refTracks.begin(), refTracks.end() }; - } else { - // -- This is for v3::Tracks and zips with it - for ( const auto& track : refTracks.scalar() ) { idsCollection.push_back( std::move( track.lhcbIDs() ) ); } - int i = 0; - for ( const auto& id_vec : idsCollection ) { - auto const t = refTracks.scalar()[i]; - refdatapool.emplace_back( id_vec, t.qOverP( t.defaultState() ).cast() ); - ++i; - } - } - // those are the only ones needed for a light sequence so let's keep it simple constexpr bool islong = std::is_same_v; constexpr bool isdownstream = std::is_same_v; @@ -139,6 +133,29 @@ namespace LHCb::Pr { } }(); + std::vector refdatapool; + // -- This is only needed in case we have v3::Tracks, but it has to be declared outside the 'if' clause: + // -- SimpleTrackData contains iterators to the LHCbIDs, and if it is declared inside the clause, they become + // -- invalid. + std::vector> idsCollection; + + if constexpr ( std::is_same_v ) { + refdatapool.reserve( refTracks.size() ); + for ( const auto& track : refTracks ) { refdatapool.emplace_back( track, InTypeHint ); } + } else { + // -- This is for v3::Tracks and zips with it + for ( const auto& track : refTracks.scalar() ) { idsCollection.push_back( std::move( track.lhcbIDs() ) ); } + int i = 0; + for ( const auto& id_vec : idsCollection ) { + auto const t = refTracks.scalar()[i]; + auto slope = ( InTypeHint == TrackType::Ttrack || InTypeHint == TrackType::Downstream ) + ? t.direction( StateLocation::LastMeasurement ).X().cast() + : t.direction( StateLocation::ClosestToBeam ).Y().cast(); + refdatapool.emplace_back( id_vec, t.qOverP( t.defaultState() ).cast(), slope ); + ++i; + } + } + // this algorithm is implemented with the assumption that all tracks // in the ref container are of the same type // inTracks can only be one type as it's a PrTracks container @@ -156,11 +173,12 @@ namespace LHCb::Pr { StatusCode::FAILURE }; } } + // it is beneficial for performance to reserve some memory outside of the filtering loop to avoid // repeated allocation by the lhcbIDs method of the track. auto id_vec = std::vector{}; id_vec.reserve( Long::Tracks::MaxLHCbIDs ); - auto const pred = [this, &refdatapool, &id_vec]( auto const& track ) { + auto const pred = [this, &refdatapool, &id_vec, &inTracks]( auto const& track ) { auto const qop = [&track] { if constexpr ( isTrackV3 ) { return track.qOverP( track.defaultState() ).cast(); @@ -172,7 +190,24 @@ namespace LHCb::Pr { id_vec = track.lhcbIDs(); assert( std::is_sorted( id_vec.begin(), id_vec.end() ) ); - auto const t = SimpleTrackData{ id_vec, qop }; + float slope = -100.0; + if constexpr ( isdownstream ) { + const auto seedTrack = inTracks.getFTAncestors()->scalar()[track.trackSeed().cast()]; + slope = seedTrack.StateDir( StateLocation::EndT ).X().cast(); + } + if constexpr ( isupstream ) { + const auto veloTrack = inTracks.getVeloAncestors()->scalar()[track.trackVP().cast()]; + slope = veloTrack.StateDir( StateLocation::ClosestToBeam ).Y().cast(); + } + if constexpr ( islong ) { + const auto veloTrack = inTracks.getVeloAncestors()->scalar()[track.trackVP().cast()]; + slope = veloTrack.StateDir( StateLocation::ClosestToBeam ).Y().cast(); + } + if constexpr ( isT ) { + slope = track.StateDir( StateLocation::EndT ).X().cast(); + (void)inTracks; // make clang happy, https://bugs.llvm.org/show_bug.cgi?id=35450 + } + auto const t = SimpleTrackData{ id_vec, qop, slope }; return std::none_of( refdatapool.begin(), refdatapool.end(), [this, &t]( SimpleTrackData const& t2 ) { return areClones( t, t2 ); @@ -190,35 +225,39 @@ namespace LHCb::Pr { switch ( track_combi( T1, T2 ) ) { case track_combi( TrackType::Long, TrackType::Long ): - return ( it.overlapFraction( jt, SimpleTrackData::T ) > m_maxOverlapFracT ) && - ( std::abs( it.qOverP() - jt.qOverP() ) < m_minLongLongDeltaQoP || - it.overlapFraction( jt, SimpleTrackData::VP ) > m_maxOverlapFracVelo ); + return ( std::abs( it.slope() - jt.slope() ) < m_maxLongLongDeltaSlope.value() ) && + ( it.overlapFraction( jt, SimpleTrackData::T ) > m_maxOverlapFracT.value() ) && + ( std::abs( it.qOverP() - jt.qOverP() ) < m_minLongLongDeltaQoP.value() || + it.overlapFraction( jt, SimpleTrackData::VP ) > m_maxOverlapFracVelo.value() ); case track_combi( TrackType::Long, TrackType::Downstream ): case track_combi( TrackType::Downstream, TrackType::Long ): - return ( it.overlapFraction( jt, SimpleTrackData::T ) > m_maxOverlapFracT ) && - ( std::abs( it.qOverP() - jt.qOverP() ) < m_minLongDownstreamDeltaQoP || - it.overlapFraction( jt, SimpleTrackData::UT ) > m_maxOverlapFracUT ); + return ( std::abs( it.slope() - jt.slope() ) < m_maxLongDownstreamDeltaSlope.value() ) && + ( it.overlapFraction( jt, SimpleTrackData::T ) > m_maxOverlapFracT.value() ) && + ( std::abs( it.qOverP() - jt.qOverP() ) < m_minLongDownstreamDeltaQoP.value() || + it.overlapFraction( jt, SimpleTrackData::UT ) > m_maxOverlapFracUT.value() ); case track_combi( TrackType::Downstream, TrackType::Downstream ): // it seems that there are no down stream tracks that share T hits ... - return ( it.overlapFraction( jt, SimpleTrackData::T ) > m_maxOverlapFracT ) && - ( it.overlapFraction( jt, SimpleTrackData::UT ) > m_maxOverlapFracUT ); + return ( it.overlapFraction( jt, SimpleTrackData::T ) > m_maxOverlapFracT.value() ) && + ( it.overlapFraction( jt, SimpleTrackData::UT ) > m_maxOverlapFracUT.value() ); case track_combi( TrackType::Long, TrackType::Upstream ): case track_combi( TrackType::Upstream, TrackType::Long ): case track_combi( TrackType::Upstream, TrackType::Upstream ): - return ( it.overlapFraction( jt, SimpleTrackData::VP ) > m_maxOverlapFracVelo ) && - ( it.overlapFraction( jt, SimpleTrackData::UT ) > m_maxOverlapFracUT ); + return ( std::abs( it.slope() - jt.slope() ) < m_maxLongUpstreamDeltaSlope.value() ) && + ( it.overlapFraction( jt, SimpleTrackData::VP ) > m_maxOverlapFracVelo.value() ) && + ( it.overlapFraction( jt, SimpleTrackData::UT ) > m_maxOverlapFracUT.value() ); case track_combi( TrackType::Long, TrackType::Velo ): - return it.overlapFraction( jt, SimpleTrackData::VP ) > m_maxOverlapFracVelo; + return it.overlapFraction( jt, SimpleTrackData::VP ) > m_maxOverlapFracVelo.value(); case track_combi( TrackType::Long, TrackType::Ttrack ): case track_combi( TrackType::Ttrack, TrackType::Long ): case track_combi( TrackType::Downstream, TrackType::Ttrack ): case track_combi( TrackType::Ttrack, TrackType::Downstream ): - return it.overlapFraction( jt, SimpleTrackData::T ) > m_maxOverlapFracT; + return ( std::abs( it.slope() - jt.slope() ) < m_maxLongDownstreamTDeltaSlope.value() ) && + ( it.overlapFraction( jt, SimpleTrackData::T ) > m_maxOverlapFracT.value() ); case track_combi( TrackType::Upstream, TrackType::Downstream ): case track_combi( TrackType::Downstream, TrackType::Upstream ): @@ -235,6 +274,10 @@ namespace LHCb::Pr { Gaudi::Property m_maxOverlapFracUT{ this, "MaxOverlapFracUT", 0.35, "essentially: max 1 common hit" }; Gaudi::Property m_minLongLongDeltaQoP{ this, "MinLongLongDeltaQoP", -1 }; Gaudi::Property m_minLongDownstreamDeltaQoP{ this, "MinLongDownstreamDeltaQoP", 5e-6 }; + Gaudi::Property m_maxLongLongDeltaSlope{ this, "MaxLongLongDeltaSlope", 0.025 }; + Gaudi::Property m_maxLongDownstreamDeltaSlope{ this, "MaxLongDownstreamDeltaSlope", 0.035 }; + Gaudi::Property m_maxLongUpstreamDeltaSlope{ this, "MaxLongUpstreamDeltaSlope", 0.025 }; + Gaudi::Property m_maxLongDownstreamTDeltaSlope{ this, "MaxLongDownstreamTDeltaSlope", 0.035 }; mutable Gaudi::Accumulators::SummingCounter m_counter_input{ this, "nTracksInput" }; mutable Gaudi::Accumulators::SummingCounter m_counter_selected{ this, "nTracksSelected" }; diff --git a/Tr/TrackUtils/src/TrackV0Finder.cpp b/Tr/TrackUtils/src/TrackV0Finder.cpp index b4f7b5897e17c31a0e9abb19ef38289d8c3adbd1..bee1c41be41121d43bd462490c019dc00752857f 100644 --- a/Tr/TrackUtils/src/TrackV0Finder.cpp +++ b/Tr/TrackUtils/src/TrackV0Finder.cpp @@ -231,7 +231,7 @@ OutContainer LHCb::TrackV0Finder::operator()( LHCb::Event::PV::PrimaryVertexCont State posstate = postraj.state( z ); State negstate = negtraj.state( z ); - std::unique_ptr vertex{ m_vertexer->fit( posstate, negstate, geometry ) }; + std::unique_ptr vertex{ m_vertexer->fit( posstate, negstate ) }; double decaylength; if ( !vertex ) { @@ -277,7 +277,7 @@ OutContainer LHCb::TrackV0Finder::operator()( LHCb::Event::PV::PrimaryVertexCont ++m_extrapolationFailure; negstate = negtraj.state( z ); } - std::unique_ptr newvertex{ m_vertexer->fit( posstate, negstate, geometry ) }; + std::unique_ptr newvertex{ m_vertexer->fit( posstate, negstate ) }; if ( newvertex ) vertex = std::move( newvertex ); } diff --git a/Tr/TrackUtils/src/TracksDownstreamConverter.cpp b/Tr/TrackUtils/src/TracksDownstreamConverter.cpp index 71e69d3425ef41e57930f0a73ac3d7a1a5a8357f..67dc6b19bb8d3b4804973b30c309d9613d6d80a2 100644 --- a/Tr/TrackUtils/src/TracksDownstreamConverter.cpp +++ b/Tr/TrackUtils/src/TracksDownstreamConverter.cpp @@ -71,7 +71,7 @@ public: for ( auto const lhcbid : track.lhcbIDs() ) { newTrack.addToLhcbIDs( lhcbid ); } newTrack.setType( Track::Type::Downstream ); - newTrack.setHistory( Track::History::PrDownstream ); + newTrack.setHistory( tracksUT.history() ); newTrack.setPatRecStatus( Track::PatRecStatus::PatRecIDs ); newTrack.addToAncestors( trackSeed ); }