diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFCaloSelectorTool.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFCaloSelectorTool.cxx index 1a2f2b2479b937fbbf1dd0ecac7af8c747915fdf..6273d312216a5c466d3984f5b572221640f19ab7 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFCaloSelectorTool.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFCaloSelectorTool.cxx @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration + * */ /********************************************************************** * AsgTool: TrigEgammaEFCaloSelectorTool @@ -12,11 +12,11 @@ * **********************************************************************/ #include "TrigEgammaEmulationTool/TrigEgammaEFCaloSelectorTool.h" -#include "PATCore/AcceptData.h" #include <boost/foreach.hpp> #include <boost/tokenizer.hpp> #include "boost/algorithm/string.hpp" #include <boost/dynamic_bitset.hpp> +#include "PATCore/AcceptData.h" using namespace std; using namespace Trig; @@ -108,35 +108,35 @@ bool TrigEgammaEFCaloSelectorTool::ApplyCaloPid(const xAOD::Egamma *eg, const st bool passSel=false; //float lhValue=0.0; //eg->passSelection(passSel,pidname); - + // If Alg becomes Reentrant this needs to change const EventContext ctx = Gaudi::Hive::currentContext(); if (pidname == "Tight") { - passTool = (bool) m_electronCaloIsEMTool[0]->accept(ctx, eg); + passTool = (bool)m_electronCaloIsEMTool[0]->accept(ctx,eg); } else if (pidname == "Medium") { - passTool = (bool) m_electronCaloIsEMTool[1]->accept(ctx, eg); + passTool = (bool)m_electronCaloIsEMTool[1]->accept(ctx,eg); } else if (pidname == "Loose") { - passTool = (bool) m_electronCaloIsEMTool[2]->accept(ctx, eg); + passTool = (bool)m_electronCaloIsEMTool[2]->accept(ctx,eg); } else if (pidname == "VLoose") { - passTool = (bool) m_electronCaloIsEMTool[3]->accept(ctx, eg); + passTool = (bool)m_electronCaloIsEMTool[3]->accept(ctx,eg); } else if (pidname == "LHTight") { - passTool = (bool) m_electronCaloLHTool[0]->accept(ctx, eg, avg_mu); + passTool = (bool)m_electronCaloLHTool[0]->accept(ctx,eg,avg_mu); //lhValue = m_electronCaloLHTool[0]->getTResult().getResult(0); } else if (pidname == "LHMedium") { - passTool = (bool) m_electronCaloLHTool[1]->accept(ctx, eg, avg_mu); + passTool = (bool)m_electronCaloLHTool[1]->accept(ctx,eg,avg_mu); //lhValue = m_electronCaloLHTool[1]->getTResult().getResult(0); } else if (pidname == "LHLoose") { - passTool = (bool) m_electronCaloLHTool[2]->accept(ctx, eg, avg_mu); + passTool = (bool)m_electronCaloLHTool[2]->accept(ctx,eg,avg_mu); //lhValue = m_electronCaloLHTool[2]->getTResult().getResult(0); } else if (pidname == "LHVLoose") { - passTool = (bool) m_electronCaloLHTool[3]->accept(ctx, eg, avg_mu); + passTool = (bool)m_electronCaloLHTool[3]->accept(ctx,eg,avg_mu); //lhValue = m_electronCaloLHTool[3]->getTResult().getResult(0); } else { diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFElectronSelectorTool.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFElectronSelectorTool.cxx index c522043d9060d4e3f23fed9b4cfc149b4bfede0f..ca556b59a2165f8ff0b804649786bf1fe1fdbf10 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFElectronSelectorTool.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFElectronSelectorTool.cxx @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ /********************************************************************** @@ -13,12 +13,11 @@ * **********************************************************************/ #include "TrigEgammaEmulationTool/TrigEgammaEFElectronSelectorTool.h" -#include "PATCore/AcceptData.h" #include <boost/foreach.hpp> #include <boost/tokenizer.hpp> #include "boost/algorithm/string.hpp" #include <boost/dynamic_bitset.hpp> - +#include "PATCore/AcceptData.h" using namespace std; using namespace Trig; //********************************************************************** @@ -85,11 +84,13 @@ bool TrigEgammaEFElectronSelectorTool::emulation(const xAOD::IParticleContainer boost::dynamic_bitset<> bitAccept(elContainer->size()); unsigned bit = 0; float etthr = info.thrHLT; - // auto avgmu = getAverageMu(); auto avgmu = getOnlAverageMu(); for(const auto& el : *elContainer){ bit++; + ATH_MSG_INFO("Size = " << el->trackParticle()->numberOfParameters()); + //auto maxParameters = el->trackParticle()->numberOfParameters(); + //emulate electron cuts if (info.idperf || info.etcut || info.perf ) { //ATH_MSG_DEBUG("Apply Et cut " << etthr << " cluster Et " << el->caloCluster()->et()); @@ -130,28 +131,28 @@ bool TrigEgammaEFElectronSelectorTool::ApplyElectronPid(const xAOD::Electron *eg const EventContext ctx = Gaudi::Hive::currentContext(); if (pidname == "Tight") { - passTool = (bool) m_electronOnlIsEMTool[0]->accept(ctx, eg); + passTool = (bool)m_electronOnlIsEMTool[0]->accept(ctx,eg); } else if (pidname == "Medium") { - passTool = (bool) m_electronOnlIsEMTool[1]->accept(ctx, eg); + passTool = (bool)m_electronOnlIsEMTool[1]->accept(ctx,eg); } else if (pidname == "Loose") { - passTool = (bool) m_electronOnlIsEMTool[2]->accept(ctx, eg); + passTool = (bool)m_electronOnlIsEMTool[2]->accept(ctx,eg); } else if (pidname == "VLoose") { - passTool = (bool) m_electronOnlIsEMTool[3]->accept(ctx, eg); + passTool = (bool)m_electronOnlIsEMTool[3]->accept(ctx,eg); } else if (pidname == "LHTight") { - passTool = (bool) m_electronOnlLHTool[0]->accept(ctx, eg,avgmu); + passTool = (bool)m_electronOnlLHTool[0]->accept(ctx,eg,avgmu); }// Tight else if (pidname == "LHMedium") { - passTool = (bool) m_electronOnlLHTool[1]->accept(ctx, eg,avgmu); + passTool = (bool)m_electronOnlLHTool[1]->accept(ctx,eg,avgmu); }// Medium else if (pidname == "LHLoose") { - passTool = (bool) m_electronOnlLHTool[2]->accept(ctx, eg,avgmu); + passTool = (bool)m_electronOnlLHTool[2]->accept(ctx,eg,avgmu); }// Loose else if (pidname == "LHVLoose") { - passTool = (bool) m_electronOnlLHTool[3]->accept(ctx, eg,avgmu); + passTool = (bool)m_electronOnlLHTool[3]->accept(ctx,eg,avgmu); }// VeryLoose else { ATH_MSG_DEBUG("No Pid tool, continue without PID"); @@ -189,7 +190,6 @@ bool TrigEgammaEFElectronSelectorTool::ApplyIsolation(const xAOD::Electron *el, ATH_MSG_DEBUG("No Isolation tool, continue without ISO"); return true; } - if (!status) ATH_MSG_WARNING("Problem to emulate the isolation selector."); diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFPhotonSelectorTool.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFPhotonSelectorTool.cxx index 842250076386bf99c781df54d6cee7fa6593aee4..bab501ff67439f3006d1604ce2c3bd95bd5b29ed 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFPhotonSelectorTool.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEFPhotonSelectorTool.cxx @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ /********************************************************************** * AsgTool: TrigEgammaEFPhotonSelectorTool @@ -12,11 +12,10 @@ * **********************************************************************/ #include "TrigEgammaEmulationTool/TrigEgammaEFPhotonSelectorTool.h" -#include "PATCore/AcceptData.h" #include <boost/foreach.hpp> #include <boost/tokenizer.hpp> #include "boost/algorithm/string.hpp" - +#include "PATCore/AcceptData.h" using namespace std; using namespace Trig; //********************************************************************** @@ -82,14 +81,17 @@ bool TrigEgammaEFPhotonSelectorTool::ApplyPhotonPid(const xAOD::Photon *eg, cons bool passTool=false; bool passSel=false; eg->passSelection(passSel,pidname); + //If Alg becomes Reentrant this needs to change + const EventContext ctx = Gaudi::Hive::currentContext(); + if (pidname == "Tight") { - passTool = (bool) m_photonOnlIsEMTool[0]->accept(eg); + passTool = (bool)m_photonOnlIsEMTool[0]->accept(ctx,eg); } else if (pidname == "Medium") { - passTool = (bool) m_photonOnlIsEMTool[1]->accept(eg); + passTool = (bool)m_photonOnlIsEMTool[1]->accept(ctx,eg); } else if (pidname == "Loose") { - passTool = (bool) m_photonOnlIsEMTool[2]->accept(eg); + passTool = (bool)m_photonOnlIsEMTool[2]->accept(ctx,eg); } else { ATH_MSG_DEBUG("No Pid tool, continue without PID"); diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEmulationTool.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEmulationTool.cxx index ada6347b3556178df4f2b44ec4bdc834c078a58c..421d8e0cee07858844661b18fb2946b172e8b878 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEmulationTool.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaEmulationTool.cxx @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ /********************************************************************** @@ -57,9 +57,11 @@ TrigEgammaEmulationTool( const std::string& myname ) declareProperty("EFCaloSelectorTool" , m_efCaloSelector ); declareProperty("EFElectronSelectorTools" , m_efElectronSelector ); declareProperty("EFPhotonSelectorTools" , m_efPhotonSelector ); + // for expert: use this flags to switch and custo your menu declareProperty("DoL2ElectronFex" , m_doL2ElectronFex=false ); declareProperty("DoRinger" , m_doRinger=false ); + declareProperty("DoRingerBelow15GeV" , m_doRingerBelow15GeV=false); declareProperty("DoEFCaloPid" , m_doEFCaloPid=false ); @@ -75,7 +77,7 @@ TrigEgammaEmulationTool( const std::string& myname ) m_emTauRois =nullptr; m_storeGate =nullptr; m_l1Cont =nullptr; - + // just for compile HLT::TriggerElement* t = nullptr; const xAOD::TrigElectronContainer* a = getFeature<xAOD::TrigElectronContainer>(t); @@ -96,8 +98,8 @@ StatusCode TrigEgammaEmulationTool::initialize() { if ( (m_trigdec.retrieve()).isFailure() ){ ATH_MSG_ERROR("Could not retrieve Trigger Decision Tool! Can't work"); return StatusCode::FAILURE; - } - + } + ATH_MSG_INFO("Initialising Selectors tool..."); //Enable expert methods m_trigdec->ExperimentalAndExpertMethods()->enable(); @@ -111,7 +113,7 @@ StatusCode TrigEgammaEmulationTool::initialize() { return sc; } } - + ATH_MSG_INFO("Initialising L2 Selectors tool..."); if(m_l2Selector){ m_l2Selector->setParents(m_trigdec, m_storeGate); @@ -121,7 +123,7 @@ StatusCode TrigEgammaEmulationTool::initialize() { return sc; } } - + ATH_MSG_INFO("Initialising EFCalo Selectors tool..."); if(m_efCaloSelector){ m_efCaloSelector->setParents(m_trigdec, m_storeGate); @@ -151,16 +153,18 @@ StatusCode TrigEgammaEmulationTool::initialize() { return sc; } } - + ATH_MSG_INFO("Initialising accept..."); - //add cuts into AcceptInfo + //add cuts into TAccept m_accept.addCut("L1Calo" , "Trigger L1Calo step" ); m_accept.addCut("L2Calo" , "Trigger L2Calo step" ); m_accept.addCut("L2" , "Trigger L2Electron step" ); m_accept.addCut("EFCalo" , "Trigger EFCalo step" ); m_accept.addCut("EFTrack" , "Trigger EFTrack step" ); m_accept.addCut("HLT" , "Trigger HLT decision" ); - + m_accept.addCut("L1_matched" , "L1 Trigger object Matched" ); + m_accept.addCut("TE_full" , "The Trigger Element has all objects needed by the emulation" ); + ATH_MSG_INFO("Initialising trigMap..."); auto trigList = m_trigList; @@ -173,8 +177,16 @@ StatusCode TrigEgammaEmulationTool::initialize() { }//Loop over trigger list ATH_MSG_INFO("Initialising supporting trigger..."); - std::vector<std::string> chains = m_trigdec->getListOfTriggers("HLT_e.*, L1_EM.*, HLT_g.*"); + std::vector<std::string> supportingTrigList; + auto chains = m_trigdec->getListOfTriggers("HLT_e.*"); + + + ATH_MSG_INFO("Supporting trigger before cleaner..."); + for(const auto trigName:m_supportingTrigList){ + ATH_MSG_INFO(" Suppot: " << trigName); + } + // All support triggers must be inside of the xaod for(const auto trigName:m_supportingTrigList){ if (std::find(chains.begin(), chains.end(), trigName) != chains.end()){ @@ -183,11 +195,23 @@ StatusCode TrigEgammaEmulationTool::initialize() { supportingTrigList.push_back(trigName); setTrigInfo(trigName); } + // To avoid that loose some chain in support trigger list + else{ + supportingTrigList.push_back(trigName); + } } - } + } + // Overwrite all support list m_supportingTrigList.clear(); m_supportingTrigList.insert(m_supportingTrigList.end(), supportingTrigList.begin(), supportingTrigList.end()); + + ATH_MSG_INFO("Supporting trigger after cleaner..."); + for(const auto trigName:m_supportingTrigList){ + ATH_MSG_INFO(" Suppot: " << trigName); + } + + return sc; } //!========================================================================== @@ -205,7 +229,7 @@ StatusCode TrigEgammaEmulationTool::finalize() { return sc; } } - + if(m_l2Selector){ sc = m_l2Selector->finalize(); if(sc.isFailure()){ @@ -213,7 +237,7 @@ StatusCode TrigEgammaEmulationTool::finalize() { return sc; } } - + if(m_efCaloSelector){ sc = m_efCaloSelector->finalize(); if(sc.isFailure()){ @@ -297,32 +321,42 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const HLT::TriggerElement * if(m_trigInfo.count(trigger) != 0){ Trig::Info info = getTrigInfo(trigger); - bool passedL1Calo = false; - bool passedL2Calo = false; + bool passedL1Calo = false; + bool passedL2Calo = false; bool passedL2 = false; - bool passedEFCalo = false; - bool passedEFTrack= false; + bool passedEFCalo = false; + bool passedEFTrack= false; bool passedHLT = false; // Trigger Element holder const HLT::TriggerElement *te=nullptr; bool isGoodToGo=false; + + // Here, if the te_external does not have the Electron object means that this te is not completed. + // We need to match objects with this RoI to complete the chain. if(!getFeature<xAOD::ElectronContainer>(te_external)){ + const auto* l1 = getFeature<xAOD::EmTauRoI>(te_external); - if(!l1){ + if(!l1){// Its not possible to match because this TE does not have EmTauRoI, abort ATH_MSG_WARNING("Can not retrieve the support element because the current TE does not has xAOD::EmTauRoI object!"); return acceptData; } + + // There is L1 object in this RoI + acceptData.setCutResult("L1_matched", true); + // This object is not fully completed, try to found other. for (const auto &fctrigger : m_supportingTrigList){ + ATH_MSG_DEBUG("Searching for EL objects in "<< fctrigger); // Retrieve all trigger elements for this fctrigger auto fc = m_trigdec->features(fctrigger, TrigDefs::alsoDeactivateTEs); // Only TEs with all objects auto vec = fc.get<xAOD::ElectronContainer>(); // Try to match by roiword - + ATH_MSG_DEBUG("VEC SIZE IS "<< vec.size()); for(const auto &feat : vec){ if(l1->roiWord() == getFeature<xAOD::EmTauRoI>(feat.te())->roiWord()){ + ATH_MSG_DEBUG("Searching for EL objects in "<< fctrigger << ": FOUND"); te = feat.te(); isGoodToGo=true; break; @@ -330,9 +364,10 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const HLT::TriggerElement * }// Loop over Trigger elements if(isGoodToGo) break; - }// Loop over support trigger + }// Loop over support trigger }else{ // The current TE has all objects needed by the emulation + acceptData.setCutResult("L1_matched", true); isGoodToGo=true; te=te_external; setTEMatched(te); @@ -345,7 +380,7 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const HLT::TriggerElement * setTEMatched(te); }else{ ATH_MSG_WARNING("This Trigger Element does not have all features needed by the emulation tool. The external match is " << - " not possible! Maybe the support trigger list not attend all requirements."); + " not possible! Maybe the support trigger list not attend all requirements."); setTEMatched(nullptr); return acceptData; } @@ -355,6 +390,9 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const HLT::TriggerElement * ATH_MSG_DEBUG("getFeatures from TE..."); + // The TE has RoI and now have all objects needed by the emulatio. + acceptData.setCutResult("TE_full", true); + const auto* l1 = getFeature<xAOD::EmTauRoI>(te); const auto* emCluster = getFeature<xAOD::TrigEMCluster>(te); const auto* trigElCont = getFeature<xAOD::TrigElectronContainer>(te); @@ -363,12 +401,13 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const HLT::TriggerElement * //const auto* phCont = getFeature<xAOD::PhotonContainer>(te); if(elCont){ - for(auto& tool : m_efElectronSelector) + for(auto& tool : m_efElectronSelector) tool->setTe(te); //Must be passed to config track isolation } - //Level 1 + // Level 1 m_l1Selector->emulation( l1, passedL1Calo , info); + // passedL1Calo = ancestorPassed<xAOD::EmTauRoI>(te_external); acceptData.setCutResult("L1Calo", passedL1Calo); if( (passedL1Calo ) && !info.isL1 ){ @@ -399,7 +438,7 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const HLT::TriggerElement * if (passedL2){ m_efCaloSelector->emulation( elCont, passedEFCalo, info); acceptData.setCutResult("EFCalo", passedEFCalo); - + if(passedEFCalo){ passedEFTrack=true; acceptData.setCutResult("EFTrack" , passedEFTrack); @@ -412,7 +451,7 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const HLT::TriggerElement * acceptData.setCutResult("HLT" , passedHLT); } }//EFTrack - }//EFCalo + }//EFCalo }//L2 }//L2Calo }//L1Calo @@ -427,14 +466,14 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const HLT::TriggerElement * asg::AcceptData TrigEgammaEmulationTool::executeTool(const std::string &trigger) { clearDecorations(); asg::AcceptData acceptData (&m_accept); - + if( m_trigInfo.count(trigger) != 0){ Trig::Info info = getTrigInfo(trigger); - bool passedL1Calo = false; - bool passedL2Calo = false; + bool passedL1Calo = false; + bool passedL2Calo = false; bool passedL2 = false; - bool passedEFCalo = false; - bool passedEFTrack= false; + bool passedEFCalo = false; + bool passedEFTrack= false; bool passedHLT = false; boost::dynamic_bitset<> bitL1Accept(m_emTauRois->size()); @@ -458,10 +497,10 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const std::string &trigger) bitL2CaloAccept.set(bit, pass); bit++; } - + if(bitL2CaloAccept.count()>0) passedL2Calo=true; acceptData.setCutResult("L2Calo", passedL2Calo); - + if(passedL2Calo) { if(info.perf){//bypass L2 Electron/Photon Level passedL2=true; @@ -486,12 +525,12 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const std::string &trigger) m_efCaloSelector->emulation(m_onlElectrons, passedEFCalo, info); acceptData.setCutResult("EFCalo", passedEFCalo); - + if(passedEFCalo){ //TODO: running the EF track step passedEFTrack=true; acceptData.setCutResult("EFTrack", passedEFTrack); - + if(passedEFTrack){ if(!emulationHLT(m_onlElectrons, passedHLT, info)){ acceptData.clear(); @@ -501,7 +540,7 @@ asg::AcceptData TrigEgammaEmulationTool::executeTool(const std::string &trigger) } }//EFTrack - }//EFCalo + }//EFCalo }//L2 }//L2Calo }//L1Calo @@ -544,7 +583,7 @@ bool TrigEgammaEmulationTool::isPassed(const std::string &trigger, const std::st ATH_MSG_DEBUG("isPassed()::L2 = " << acceptData.getCutResult("L2")); ATH_MSG_DEBUG("isPassed()::EFCalo = " << acceptData.getCutResult("EFCalo")); ATH_MSG_DEBUG("isPassed()::EFTrack= " << acceptData.getCutResult("EFTrack")); - ATH_MSG_DEBUG("isPassed()::HLT = " << acceptData.getCutResult("HLT")); + ATH_MSG_DEBUG("isPassed()::HLT = " << acceptData.getCutResult("HLT")); } bool pass=false; if(bitAccept.count()>0) pass=true; @@ -565,7 +604,7 @@ void TrigEgammaEmulationTool::clearDecorations(){ //!========================================================================== bool TrigEgammaEmulationTool::emulationHLT(const xAOD::IParticleContainer *container, bool &pass, const Trig::Info &info){ - + if(info.type == "electron"){ for( auto& tool : m_efElectronSelector){ if( tool->emulation(container, pass, info) ) @@ -583,6 +622,23 @@ bool TrigEgammaEmulationTool::emulationHLT(const xAOD::IParticleContainer *conta return true; } +bool TrigEgammaEmulationTool::emulationL2Calo(const xAOD::TrigEMCluster *emCluster, std::string pidname) +{ + bool pass=false; + Trig::Info info; + info.ringer=false; + info.etcut=false; + info.perf = false; + info.hltcalo=false; + info.idperf=false; + info.thrL2Calo=0.0; + info.thrHLT=emCluster->et()*1e-3; + info.pidname=pidname; + m_l2Selector->emulation(emCluster, pass, info); + return pass; +} + + //!========================================================================== void TrigEgammaEmulationTool::setTrigInfo(const std::string trigger){ ATH_MSG_DEBUG("setTrigInfo::trigger = "<< trigger); @@ -603,19 +659,23 @@ void TrigEgammaEmulationTool::setTrigInfo(const std::string trigger){ parseTriggerName(trigger,"Loose",isL1,type,etthr,l1thr,l1type,l1item,pidname,etcut,perf); // Determines probe PID from trigger - std::string decorator="is"+pidname; + std::string decorator="is"+pidname; // isolation types - if (boost::contains(trigger,"iloose") || boost::contains(trigger, "ivarloose") || - boost::contains(trigger,"ivarmedium") || boost::contains(trigger, "ivartight") || + if (boost::contains(trigger,"iloose") || boost::contains(trigger, "ivarloose") || + boost::contains(trigger,"ivarmedium") || boost::contains(trigger, "ivartight") || boost::contains(trigger,"icaloloose") || boost::contains(trigger, "icalomedium") || boost::contains(trigger,"icalotight") ) isolation = true; if (boost::contains(trigger,"idperf") ) idperf = true; if (boost::contains(trigger,"HLTCalo")) hltcalo = true; - + // Apply L2Calo ringer? - if (boost::contains(trigger,"noringer") ) + if (boost::contains(trigger,"noringer") ) ringer = false; - else if ( boost::contains(trigger,"ringer") || m_doRinger) + else if ( boost::contains(trigger,"ringer") ) + ringer = true; + else if ( etthr >= 15.0 && m_doRinger ) + ringer = true; + else if ( etthr < 15.0 && m_doRinger && m_doRingerBelow15GeV ) ringer = true; else ringer =false; @@ -634,7 +694,7 @@ void TrigEgammaEmulationTool::setTrigInfo(const std::string trigger){ if(isL1) etthr=l1thr; // Should be handled elsewhere std::string strEtthr = boost::lexical_cast<std::string>(etthr); Trig::Info info{trigger,type,strEtthr,l1item,l1type,pidname,decorator,lhinfo,isolation,isL1,perf, - idperf,hltcalo,ringer,etcut,m_doL2ElectronFex,m_doEFCaloPid,etthr,l1thr}; + idperf,hltcalo,ringer,etcut,m_doL2ElectronFex,m_doEFCaloPid,etthr,l1thr,etthr}; m_trigInfo.insert(std::pair<std::string,Trig::Info>(trigger, info)); ATH_MSG_DEBUG("Inserting trigger: " << trigger << ", completed."); } @@ -703,7 +763,7 @@ void TrigEgammaEmulationTool::parseTriggerName(const std::string trigger, std::s //Get the L1 information if(!boost::contains(strs.back(),"L1")) strs.push_back(l1item); - + if(boost::contains(strs.back(),"L1")){ std::string l1info = strs.back(); @@ -731,7 +791,7 @@ std::string TrigEgammaEmulationTool::getL1Item(std::string trigger){ std::string L1_seed = ""; if(trig_conf != nullptr){ ATH_MSG_DEBUG("TrigConf available"); - L1_seed = trig_conf->lower_chain_name(); //L1 trigger seed + L1_seed = trig_conf->lower_chain_name(); //L1 trigger seed boost::replace_all( L1_seed, "_", "" ); }else{ ATH_MSG_WARNING("There is no L1 Seed for this trigger "<< trigger); @@ -767,17 +827,26 @@ void TrigEgammaEmulationTool::match(const xAOD::Egamma *el, const HLT::Trigger unsigned nobj1,nobj2; nobj1=nobj2=0; + for(auto& trigItem : m_supportingTrigList){ // Trigger match using Matching tool m_matchTool->match(el, trigItem, feat); if(feat){// If has a match! + + ATH_MSG_DEBUG("AKI, match with " << trigItem ); + if(te_external){ nobj2=0; if(getFeature<xAOD::ElectronContainer>(feat) ) nobj2++; // HLT + ATH_MSG_DEBUG("Electron " << nobj2); if(getFeature<xAOD::CaloClusterContainer>(feat) ) nobj2++; // EFCalo + ATH_MSG_DEBUG("Calo " << nobj2); if(getFeature<xAOD::TrigElectronContainer>(feat)) nobj2++; // L2 + ATH_MSG_DEBUG("TrigElectron " << nobj2); if(getFeature<xAOD::TrigEMCluster>(feat) ) nobj2++; // L2Calo + ATH_MSG_DEBUG("Cluster " << nobj2); if(getFeature<xAOD::EmTauRoI>(feat) ) nobj2++; // L2Calo + ATH_MSG_DEBUG("L1 " << nobj2); if(nobj2>nobj1){ te_external=feat; nobj1=nobj2; @@ -785,15 +854,20 @@ void TrigEgammaEmulationTool::match(const xAOD::Egamma *el, const HLT::Trigger //ATH_MSG_INFO("ET = " << getFeature<xAOD::TrigEMCluster>(te_external)->et()); }else{ if(getFeature<xAOD::ElectronContainer>(feat) ) nobj1++; // HLT + ATH_MSG_DEBUG("Electron " << nobj1); if(getFeature<xAOD::CaloClusterContainer>(feat) ) nobj1++; // EFCalo + ATH_MSG_DEBUG("Calo " << nobj1); if(getFeature<xAOD::TrigElectronContainer>(feat)) nobj1++; // L2 + ATH_MSG_DEBUG("TrigElectron " << nobj1); if(getFeature<xAOD::TrigEMCluster>(feat) ) nobj1++; // L2Calo + ATH_MSG_DEBUG("Cluster " << nobj1); if(getFeature<xAOD::EmTauRoI>(feat) ) nobj1++; // L2Calo + ATH_MSG_DEBUG("L1 " << nobj1); te_external=feat; } } - ATH_MSG_DEBUG("Electron with ET = " << el->pt()*1e-3 << " GeV match with " << trigItem + ATH_MSG_DEBUG("Electron with ET = " << el->pt()*1e-3 << " GeV match with " << trigItem << " is good? " << (te_external?"yes":"no") << " and has " << nobj1 << " features."); // All objects is needed diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaIsolationSelectorTool.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaIsolationSelectorTool.cxx index eb83a570723fe90c1b7d8868b5f464a86dc19447..f86173461940c9026add459cd9c694029c246d08 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaIsolationSelectorTool.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaIsolationSelectorTool.cxx @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ /********************************************************************** @@ -105,10 +105,10 @@ StatusCode TrigEgammaIsolationSelectorTool::initialize() { if (!m_trackIsolationTool.empty()){ ATH_MSG_DEBUG("Retrieve TrackIsolationTool"); if(m_trackIsolationTool.retrieve().isFailure()){ - ATH_MSG_ERROR("Unable to retrieve " << m_trackIsolationTool); - return StatusCode::FAILURE; + ATH_MSG_ERROR("Unable to retrieve " << m_trackIsolationTool); + return StatusCode::FAILURE; } else { - ATH_MSG_DEBUG("Retrieved Tool "<<m_trackIsolationTool); + ATH_MSG_DEBUG("Retrieved Tool "<<m_trackIsolationTool); } } @@ -149,7 +149,7 @@ bool TrigEgammaIsolationSelectorTool::emulation(const xAOD::IParticle* part, boo //} // Declare vectors of isolation variables for different cone sizes - std::vector<float> EtCone, PtCone_xAOD, PtCone, recalc_PtCone, recalc_PtVarCone, PtCone_recalculated; //, PtCone_recalculated_fixed; + std::vector<float> EtCone, PtCone_xAOD, PtCone, _m_PtCone, _m_PtVarCone, PtCone_recalculated; //, PtCone_recalculated_fixed; float val=-99; el->isolationValue(val,xAOD::Iso::etcone20); //ATH_MSG_DEBUG("el->isolationValue(val,xAOD::Iso::etcone20) = " << val); @@ -205,8 +205,8 @@ bool TrigEgammaIsolationSelectorTool::emulation(const xAOD::IParticle* part, boo //const ElementLink< TrackParticleContainer* > link = el->trackParticleLink( /*0 this is the index of trackparticle*/ ); //then I think it is // std::str ld = link.dataID(); - std::string trk_container = el->trackParticleLink().dataID(); - ATH_MSG_DEBUG("TRacks linked to " << trk_container << " container"); + std::string m_trk_container = el->trackParticleLink().dataID(); + ATH_MSG_DEBUG("TRacks linked to " << m_trk_container << " container"); ////that @brief Return the SG key that we reference, as a string. // const std::set<const xAOD::TrackParticle*> tracksToExclude = xAOD::EgammaHelpers::getTrackParticles(el, false); @@ -216,37 +216,37 @@ bool TrigEgammaIsolationSelectorTool::emulation(const xAOD::IParticle* part, boo const xAOD::TrackParticleContainer *TrackParticleContainer=0; - if ( (m_storeGate->retrieve(TrackParticleContainer,trk_container)).isFailure() ){ + if ( (m_storeGate->retrieve(TrackParticleContainer,m_trk_container)).isFailure() ){ ATH_MSG_ERROR("Failed to retrieve EF ID trackParticles "); return false; } else { - ATH_MSG_DEBUG("Retrieved EF ID trackParticles " << trk_container << " of size " << TrackParticleContainer->size()); + ATH_MSG_DEBUG("Retrieved EF ID trackParticles " << m_trk_container << " of size " << TrackParticleContainer->size()); } std::vector<const xAOD::TrackParticleContainer*> vectorTrackParticleContainer; vectorTrackParticleContainer.push_back(TrackParticleContainer); xAOD::TrackIsolation result; - recalc_PtCone.clear(); - recalc_PtVarCone.clear(); + _m_PtCone.clear(); + _m_PtVarCone.clear(); if(m_trackIsolationTool->trackIsolation(result, *el, isoTypes, corrlist, leadTrkVtx, &tracksToExclude, TrackParticleContainer)){ for(unsigned int i=0; i<isoTypes.size(); i++){ - recalc_PtCone.push_back(result.ptcones[i]); - recalc_PtVarCone.push_back(result.ptvarcones_10GeVDivPt[i]); + _m_PtCone.push_back(result.ptcones[i]); + _m_PtVarCone.push_back(result.ptvarcones_10GeVDivPt[i]); } } else { ATH_MSG_ERROR("Hey!!!! Something wrong! Couldn't run TrackIsolationTool " << m_trackIsolationTool); } - // So recalc_PtCone has the result of ptcone40,30,20 and recalc_PtVarCone result of ptvarcone40,30,20 (requested in this order by the tool). So lets build PtCone_recalculated to have (as PtCone) results of ptcone20 30 40 and ptvarcone20 30 40 + // So _m_PtCone has the result of ptcone40,30,20 and _m_PtVarCone result of ptvarcone40,30,20 (requested in this order by the tool). So lets build PtCone_recalculated to have (as PtCone) results of ptcone20 30 40 and ptvarcone20 30 40 - PtCone_recalculated.push_back( recalc_PtCone[2] ); - PtCone_recalculated.push_back( recalc_PtCone[1] ); - PtCone_recalculated.push_back( recalc_PtCone[0] ); - PtCone_recalculated.push_back( recalc_PtVarCone[2] ); - PtCone_recalculated.push_back( recalc_PtVarCone[1] ); - PtCone_recalculated.push_back( recalc_PtVarCone[0] ); + PtCone_recalculated.push_back( _m_PtCone[2] ); + PtCone_recalculated.push_back( _m_PtCone[1] ); + PtCone_recalculated.push_back( _m_PtCone[0] ); + PtCone_recalculated.push_back( _m_PtVarCone[2] ); + PtCone_recalculated.push_back( _m_PtVarCone[1] ); + PtCone_recalculated.push_back( _m_PtVarCone[0] ); if (m_useTrackIsolationTool){ // If we decide to use rRackIsolation Tool then instead of stored ptCone we will use this recalculated @@ -411,4 +411,3 @@ bool TrigEgammaIsolationSelectorTool::emulation(const xAOD::IParticle* part, boo return true; } - diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaL1SelectorTool.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaL1SelectorTool.cxx index a360862f2f8067dfa95f4e154e11eafe48ebb4db..277d26062fca8afe07e1ef09221edacb5bdfb903 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaL1SelectorTool.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaL1SelectorTool.cxx @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ /********************************************************************** * AsgTool: TrigEgammaL1SelectorTool @@ -26,15 +26,14 @@ TrigEgammaL1SelectorTool( const std::string& myname ) : TrigEgammaSelectorBaseTool(myname) { // L1 configuration parameters - declareProperty( "WPNames" , m_wpNames ); // must be: ["T","M","L"] (Tight,Medium and Loose) - declareProperty( "HadCoreCutMin", m_hadCoreCutMin ); // must be a list with for values: (default,tight,medium and loose) - declareProperty( "HadCoreCutOff", m_hadCoreCutOff ); - declareProperty( "HadCoreSlope" , m_hadCoreSlope ); - declareProperty( "EmIsolCutMin" , m_emIsolCutMin ); - declareProperty( "EmIsolCutOff" , m_emIsolCutOff ); - declareProperty( "EmIsolSlope" , m_emIsolCutSlope ); - declareProperty( "IsolCutMax" , m_isolMaxCut = 50 ); - + declareProperty( "WPNames" , m_wpNames ); // must be: ["T","M","L"] (Tight,Medium and Loose) + declareProperty( "HadCoreCutMin", m_hadCoreCutMin ); // must be a list with for values: (default,tight,medium and loose) + declareProperty( "HadCoreCutOff", m_hadCoreCutOff ); + declareProperty( "HadCoreSlope" , m_hadCoreSlope ); + declareProperty( "EmIsolCutMin" , m_emIsolCutMin ); + declareProperty( "EmIsolCutOff" , m_emIsolCutOff ); + declareProperty( "EmIsolSlope" , m_emIsolCutSlope ); + declareProperty( "IsolCutMax" , m_isolMaxCut = 50 ); } //********************************************************************** StatusCode TrigEgammaL1SelectorTool::initialize() { @@ -61,6 +60,8 @@ bool TrigEgammaL1SelectorTool::emulation( const xAOD::EmTauRoI* l1, bool &pass, return false; } + + //Retrieve L1 informations std::string l1type = info.L1Type; std::string L1Item = info.L1Item; @@ -70,6 +71,8 @@ bool TrigEgammaL1SelectorTool::emulation( const xAOD::EmTauRoI* l1, bool &pass, ATH_MSG_DEBUG("L1 type = " << l1type); ATH_MSG_DEBUG("L1 Item = " << L1Item); + + unsigned c=0; if(boost::contains(l1type,m_wpNames[0])) c=1; // Tight if(boost::contains(l1type,m_wpNames[1])) c=2; // Medium diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaL2CaloRingerSelectorTool.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaL2CaloRingerSelectorTool.cxx index e4fb9df3e559268f9711173cd3580ea423dbb10f..e6ec98c95d39de1a33a1d291ea1aedae13c3865b 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaL2CaloRingerSelectorTool.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaL2CaloRingerSelectorTool.cxx @@ -26,11 +26,8 @@ using namespace Trig; TrigEgammaL2CaloRingerSelectorTool:: TrigEgammaL2CaloRingerSelectorTool( const std::string& myname ) : TrigEgammaSelectorBaseTool(myname), - m_reader("TrigCaloRingerReader") + m_selectorTool() { - declareProperty("NormalisationRings", m_normRings ); - declareProperty("SectionRings" , m_sectionRings ); - declareProperty("NRings" , m_nRings ); declareProperty("CalibPathConstants", m_calibPath_constants="" ); declareProperty("CalibPathThresholds", m_calibPath_thresholds="" ); @@ -47,76 +44,19 @@ StatusCode TrigEgammaL2CaloRingerSelectorTool::initialize() { ATH_MSG_WARNING("TrigEgammaSelectorBaseTool::initialize() failed"); return StatusCode::FAILURE; } + m_selectorTool.setConstantsCalibPath( m_calibPath_constants ); + m_selectorTool.setThresholdsCalibPath( m_calibPath_thresholds ); - if(!m_calibPath_thresholds.empty()){ - if(!m_reader.retrieve(m_calibPath_thresholds, m_cutDefs)){ - ATH_MSG_ERROR("Can not retrieve the information from " << m_calibPath_thresholds); - return StatusCode::FAILURE; - } - // retrieve metadata - m_useNoActivationFunctionInTheLastLayer = m_reader.useNoActivationFunctionInTheLastLayer(); - m_doPileupCorrection = m_reader.doPileupCorrection(); - m_lumiCut = m_reader.lumiCut(); - } - - // Retrieve the NeuralNetwork list - if(!m_calibPath_constants.empty()){ - if(!m_reader.retrieve(m_calibPath_constants, m_discriminators)){ - ATH_MSG_ERROR("Can not retrieve all information from " << m_calibPath_constants); - return StatusCode::FAILURE; - } - m_useLumiVar = m_reader.useLumiVar(); - m_useEtaVar = m_reader.useEtaVar(); - } - - if(m_nRings.size() != m_normRings.size()){ - ATH_MSG_ERROR("Preproc nRings list dont match with the number of discriminators found"); + if(!m_selectorTool.initialize()) return StatusCode::FAILURE; - } - - if(m_sectionRings.size() != m_normRings.size()){ - ATH_MSG_ERROR("Preproc section rings list dont match with the number of discriminators found"); - return StatusCode::FAILURE; - } - - ///TODO: This is default for now, apply this into the conf file for future - ///Initialize all discriminators - for(unsigned i=0; i<m_discriminators.size(); ++i) - { - TrigRingerPreprocessor *preproc; - try{ - preproc = new TrigRingerPreprocessor(m_nRings,m_normRings,m_sectionRings); - }catch(const std::bad_alloc& xa){ - ATH_MSG_ERROR( "Bad alloc for TrigRingerPrepoc." ); - return StatusCode::FAILURE; - } - ///Hold the pointer configuration - m_preproc.push_back(preproc); - }///Loop over discriminators - - ATH_MSG_INFO("Using the Luminosity tool? " << (m_useLumiTool ? "Yes":"No") ); - ATH_MSG_INFO("Using lumiVar? " << (m_useLumiVar ? "Yes":"No") ); - ATH_MSG_INFO("Using etaVar? " << (m_useEtaVar ? "Yes":"No") ); - ATH_MSG_INFO("Using the activation function in the last layer? " << (m_useNoActivationFunctionInTheLastLayer ? "No":"Yes") ); - ATH_MSG_INFO("Using the Correction? " << (m_doPileupCorrection ? "Yes":"No") ); - ATH_MSG_INFO("Using lumi threshold equal: " << m_lumiCut); - ATH_MSG_INFO("TrigL2CaloRingerHypo initialization completed successfully." ); + return StatusCode::SUCCESS; } //!========================================================================== StatusCode TrigEgammaL2CaloRingerSelectorTool::finalize() { - //release memory - for(unsigned i=0; i<m_discriminators.size();++i){ - if(m_preproc.at(i)) delete m_preproc.at(i); - if(m_discriminators.at(i)) delete m_discriminators.at(i); - }//Loop over all discriminators and prepoc objects - - for(unsigned i=0; i < m_cutDefs.size();++i){ - if(m_cutDefs.at(i)) delete m_cutDefs.at(i); - }//Loop over all cutDefs objects ATH_MSG_DEBUG("TrigL2CaloRingerHypo finalization completed successfully."); return StatusCode::SUCCESS; @@ -147,9 +87,6 @@ bool TrigEgammaL2CaloRingerSelectorTool::emulation(const xAOD::TrigEMCluster* em ///It's ready to select the correct eta/et bin - MultiLayerPerceptron *discr = nullptr; - TrigRingerPreprocessor *preproc = nullptr; - float eta = std::fabs(emCluster->eta()); if(eta>2.50) eta=2.50;///fix for events out of the ranger float et = emCluster->et()*1e-3; ///in GeV @@ -159,86 +96,20 @@ bool TrigEgammaL2CaloRingerSelectorTool::emulation(const xAOD::TrigEMCluster* em ATH_MSG_DEBUG("Event reproved by Et threshold. Et = " << et << ", EtCut = "<< m_etCut); return true; } + auto avgmu = getOnlAverageMu(); + + const std::vector<float> rings = ringer->rings(); + std::vector<float> refRings(rings.size()); + refRings.assign(rings.begin(), rings.end()); + + + m_output = m_selectorTool.calculate( refRings, et, eta, avgmu ); + pass = m_selectorTool.accept(m_output, et,eta,avgmu); + + emCluster->auxdecor<float>("TrigEgammaL2CaloRingerSelectorTool_rnnOutput")=m_output; - if(m_discriminators.size() > 0){ - unsigned discr_index=0; - for(unsigned i=0; i<m_discriminators.size(); ++i){ - discr_index++; - if(et > m_discriminators[i]->etmin() && et <= m_discriminators[i]->etmax()){ - if(eta > m_discriminators[i]->etamin() && eta <= m_discriminators[i]->etamax()){ - discr = m_discriminators[i]; - preproc = m_preproc[i]; - break; - }///eta conditions - }///Et conditions - }///Loop over discriminators - - ///get shape - const std::vector<float> rings = ringer->rings(); - ATH_MSG_DEBUG( "ringer->rings().size() is: " <<rings.size()); - std::vector<float> refRings(rings.size()); - refRings.assign(rings.begin(), rings.end()); - ATH_MSG_DEBUG("Et = " << et << " GeV, |eta| = " << eta); - - if(preproc) preproc->ppExecute(refRings); - ///Apply the discriminator - if(discr){ - - float avgmu = getOnlAverageMu(); - float threshold=0.0; - - // Add extra variables in this order! Do not change this!!! - if(m_useEtaVar){ - if(preproc){ - refRings.push_back(preproc->normalize_eta(emCluster->eta(), discr->etamin(), discr->etamax())); - } - } - - if(m_useLumiVar){ - if(preproc){ - refRings.push_back(preproc->normalize_mu(avgmu, m_lumiCut)); - } - } - - m_output = discr->propagate(refRings); - if(m_useNoActivationFunctionInTheLastLayer){ - // overwrite the output value to before the tansig function - m_output = discr->getOutputBeforeTheActivationFunction(); - } - - //Apply cut - for(unsigned i=0; i < m_cutDefs.size(); ++i){ - if((et > m_cutDefs[i]->etmin()) && (et <= m_cutDefs[i]->etmax())){ - if((eta > m_cutDefs[i]->etamin()) && (eta <= m_cutDefs[i]->etamax())){ - - if(m_doPileupCorrection){ - // Limited Pileup - if(avgmu>m_lumiCut) - avgmu=m_lumiCut; - ATH_MSG_DEBUG("Apply avgmu == " << avgmu); - threshold = m_cutDefs[i]->threshold(avgmu); - ATH_MSG_DEBUG("With correction, thr = "<<threshold); - }else{ - threshold = m_cutDefs[i]->threshold(); - ATH_MSG_DEBUG("Without correction, thr = "<<threshold); - } - } - } - }// Loop over cutDefs - - emCluster->auxdecor<float>("TrigEgammaL2CaloRingerSelectorTool_rnnOutput")=m_output; - - if(m_output < threshold){ - ATH_MSG_DEBUG("Event reproved by discriminator."); - return true; - } - } - }else{ - ATH_MSG_DEBUG("There is no discriminator into this Fex."); - }// ATH_MSG_DEBUG("Et = " << et << " GeV, |eta| = " << eta << " and rnnoutput = " << m_output ); - pass=true; return true; } //!=========================================================================== diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaSelectorBaseTool.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaSelectorBaseTool.cxx index ad99a4a35afd99f730cd2da8779125375cb27e30..44204e010ce534407fd6ca28ebbe97812b3892cd 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaSelectorBaseTool.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/Root/TrigEgammaSelectorBaseTool.cxx @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #include "TrigEgammaEmulationTool/TrigEgammaSelectorBaseTool.h" diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/ITrigEgammaEmulationTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/ITrigEgammaEmulationTool.h index 33c6287e062bec11a0f3e97247c4ab78ec2a554d..e38aab429f6a17d9bf898401dfbba97333c7094b 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/ITrigEgammaEmulationTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/ITrigEgammaEmulationTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef ITrigEgammaEmulationTool_H_ @@ -52,6 +52,7 @@ namespace Trig{ virtual void ExperimentalAndExpertMethods()=0; virtual void match( const xAOD::Egamma *, const HLT::TriggerElement *&)=0; virtual const HLT::TriggerElement* getTEMatched()=0; + virtual bool emulationL2Calo(const xAOD::TrigEMCluster *, std::string)=0; private: }; } diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/ITrigEgammaSelectorBaseTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/ITrigEgammaSelectorBaseTool.h index 295ede74a2fcdd7205db4b64f6a834379eb67b95..b0eef13fb15e2bc565eee3b46318bacf587a8bab 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/ITrigEgammaSelectorBaseTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/ITrigEgammaSelectorBaseTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef ITrigEgammaSelectorBaseTool_H_ @@ -35,7 +35,6 @@ #include "boost/any.hpp" - namespace Trig{ class ITrigEgammaSelectorBaseTool : public virtual asg::IAsgTool { ASG_TOOL_INTERFACE( Trig::ITrigEgammaSelectorBaseTool ) diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFCaloSelectorTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFCaloSelectorTool.h index 75cb56f730c6fa4e568db6cae2364c899fb056c7..27def77df3c9f7b0d19319199cb1ace824a757f0 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFCaloSelectorTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFCaloSelectorTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef TrigEgammaEFCaloSelectorTool_H diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFElectronSelectorTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFElectronSelectorTool.h index b7fada3b823b5e118ac8e3ac8fa994ebccf6facb..1e8726c342f8097ccb005dc04341190ee69bcc02 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFElectronSelectorTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFElectronSelectorTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef TrigEgammaEFElectronSelectorTool_H diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFPhotonSelectorTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFPhotonSelectorTool.h index 3490d2ae5e7c897ed45ecbc774d9e8d2d50b109f..1a5fe620ee25ac38d1ec3e577912f6e6236e9afa 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFPhotonSelectorTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEFPhotonSelectorTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef TrigEgammaEFPhotonSelectorTool_H diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEmulationTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEmulationTool.h index 5b7432c13378be3ff9ae00acbd20b04c6ad9995d..a3060965f41f0ee34074f01ab0b78653a216caf3 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEmulationTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaEmulationTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef TrigEgammaEmulationTool_H @@ -9,8 +9,6 @@ #include "TrigEgammaEmulationTool/ITrigEgammaEmulationTool.h" #include "TrigEgammaEmulationTool/ITrigEgammaSelectorBaseTool.h" #include "AsgTools/AsgTool.h" -#include "PATCore/AcceptInfo.h" -#include "PATCore/AcceptData.h" #include "AthContainers/AuxElement.h" #include "TrigDecisionTool/TrigDecisionTool.h" #include "TrigEgammaMatchingTool/ITrigEgammaMatchingTool.h" @@ -40,28 +38,30 @@ class TrigEgammaEmulationTool //****************************************************************************** TrigEgammaEmulationTool(const std::string& myname); - virtual ~TrigEgammaEmulationTool() {}; + ~TrigEgammaEmulationTool() {}; - virtual StatusCode initialize() override; - virtual StatusCode execute() override; - virtual StatusCode finalize() override; + StatusCode initialize() override; + StatusCode execute() override; + StatusCode finalize() override; //execute all emulators - virtual asg::AcceptData executeTool( const std::string &) override; - virtual asg::AcceptData executeTool( const HLT::TriggerElement *, const std::string &) override; - virtual const asg::AcceptInfo& getAccept() const override {return m_accept;} - - virtual bool EventWiseContainer() override; - virtual bool isPassed(const std::string&) override; - virtual bool isPassed(const std::string&, const std::string&) override; + asg::AcceptData executeTool( const std::string &) override; + asg::AcceptData executeTool( const HLT::TriggerElement *, const std::string &) override; + const asg::AcceptInfo& getAccept() const override{return m_accept;}; + + bool EventWiseContainer() override; + bool isPassed(const std::string&) override; + bool isPassed(const std::string&, const std::string&) override; - /* Experimental methods */ - virtual void ExperimentalAndExpertMethods() override {m_experimentalAndExpertMethods=true;}; + void ExperimentalAndExpertMethods() override {m_experimentalAndExpertMethods=true;}; - virtual void match( const xAOD::Egamma *, const HLT::TriggerElement *&) override; - virtual const HLT::TriggerElement* getTEMatched() override {return m_teMatched;}; + void match( const xAOD::Egamma *, const HLT::TriggerElement *&) override; + const HLT::TriggerElement* getTEMatched() override {return m_teMatched;}; + + // expert usage + bool emulationL2Calo(const xAOD::TrigEMCluster *emCluster, std::string pidname) override; private: @@ -71,6 +71,7 @@ class TrigEgammaEmulationTool /* Retrieve features from trigger element */ template<class T> const T* getFeature(const HLT::TriggerElement* te, const std::string key=""); + template<class T> bool ancestorPassed(const HLT::TriggerElement* te,const std::string key=""); /* Set trigInfo into the map*/ void setTrigInfo(const std::string ); /*! get trigInfo obj */ @@ -88,12 +89,12 @@ class TrigEgammaEmulationTool bool m_doL2ElectronFex; bool m_doEFCaloPid; bool m_doRinger; + bool m_doRingerBelow15GeV; bool m_experimentalAndExpertMethods; std::string m_offElContKey; std::vector<std::string> m_trigList; std::vector<std::string> m_supportingTrigList; std::map<std::string, Trig::Info> m_trigInfo; - asg::AcceptInfo m_accept; StoreGateSvc *m_storeGate; ToolHandle<Trig::TrigDecisionTool> m_trigdec; @@ -122,11 +123,22 @@ class TrigEgammaEmulationTool template<class T> const T* TrigEgammaEmulationTool::getFeature(const HLT::TriggerElement* te,const std::string key){ - if ( te == NULL ) return NULL; - if ( (m_trigdec->ancestor<T>(te,key)).te() == NULL ) - return NULL; + if ( te == nullptr ) return nullptr; + if ( (m_trigdec->ancestor<T>(te,key)).te() == nullptr ) + return nullptr; return ( (m_trigdec->ancestor<T>(te)).cptr() ); } + + template<class T> + bool + TrigEgammaEmulationTool::ancestorPassed(const HLT::TriggerElement* te,const std::string key){ + if ( te == nullptr ) return false; + if ( (m_trigdec->ancestor<T>(te,key)).te() == nullptr ) + return false; + return ( (m_trigdec->ancestor<T>(te)).te()->getActiveState()); + } + + //************************************************************************************************ }//namespace diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaInfo.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaInfo.h index 3a739a405715f8f69cdf22643aba58e78fb49ff8..05e1e7e632e08498caa72e110dad236d3a97cf53 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaInfo.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaInfo.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef TrigEgammaEmulationTool_TrigEgammaInfo_H #define TrigEgammaEmulationTool_TrigEgammaInfo_H @@ -29,7 +29,7 @@ namespace Trig{ bool applyEFCaloPid; float thrHLT; // HLT Et threshold float thrL1; // L1 Et threshold - + float thrL2Calo; }; } #endif diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaIsolationSelectorTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaIsolationSelectorTool.h index 073668a02efe88b8abb21439e84ec4996f306cf0..b30b78504e4987c25c886dd8251a856c08a1da06 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaIsolationSelectorTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaIsolationSelectorTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef TrigEgammaIsolationSelectorTool_H @@ -61,3 +61,4 @@ class TrigEgammaIsolationSelectorTool: }//namespace #endif + diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaL1SelectorTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaL1SelectorTool.h index 394b5a179c10acd5ed2efd69d620a3c5ab89dd40..40b77b2c806bc8439179e7fc0d43720e99d6db36 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaL1SelectorTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaL1SelectorTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef TrigEgammaL1SelectorTool_H @@ -45,7 +45,6 @@ class TrigEgammaL1SelectorTool: std::vector<float> m_emIsolCutOff; std::vector<float> m_emIsolCutSlope; std::vector<std::string> m_wpNames; - }; }//namespace diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaL2CaloRingerSelectorTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaL2CaloRingerSelectorTool.h index 5422c5201f8a4d1c400e8193b29039010cc3f720..78c87a545fd711ea82411be7787c4ad76bd9124d 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaL2CaloRingerSelectorTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaL2CaloRingerSelectorTool.h @@ -8,10 +8,7 @@ #include "TrigEgammaEmulationTool/ITrigEgammaSelectorBaseTool.h" #include "TrigEgammaEmulationTool/TrigEgammaSelectorBaseTool.h" -#include "TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h" -#include "TrigMultiVarHypo/tools/TrigRingerHelper.h" -#include "TrigMultiVarHypo/tools/TrigL2CaloRingerReader.h" -#include "TrigMultiVarHypo/tools/MultiLayerPerceptron.h" +#include "TrigMultiVarHypo/tools/RingerSelectorTool.h" #include "AsgTools/AsgTool.h" #include <vector> @@ -33,14 +30,8 @@ class TrigEgammaL2CaloRingerSelectorTool: bool emulation( const xAOD::TrigEMCluster*, bool &, const Trig::Info &); private: - ///Thresholds Holder - std::vector<TrigCaloRingsHelper::CutDefsHelper*> m_cutDefs; - ///Discriminator holder - std::vector<MultiLayerPerceptron*> m_discriminators; - ///Pre-processing holder - std::vector<TrigRingerPreprocessor*> m_preproc; - TrigL2CaloRingerReader m_reader; + Ringer::RingerSelectorTool m_selectorTool; /* Helper method to retrieve the bins from an index */ //void index_to_et_eta_bins(unsigned, unsigned &, unsigned &); @@ -55,10 +46,6 @@ class TrigEgammaL2CaloRingerSelectorTool: bool m_useNoActivationFunctionInTheLastLayer; bool m_useLumiTool; - //Prepoc configuration - std::vector<unsigned int> m_nRings; - std::vector<unsigned int> m_normRings; - std::vector<unsigned int> m_sectionRings; //Discriminator configuration std::string m_calibPath_constants, m_calibPath_thresholds; diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaSelectorBaseTool.h b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaSelectorBaseTool.h index c7fa707f925da39be7997de63a9b6a680a785c65..d6c743d035bd70dd1167bff77aed79b91e0a82a3 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaSelectorBaseTool.h +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/TrigEgammaEmulationTool/TrigEgammaSelectorBaseTool.h @@ -1,6 +1,6 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ + * Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration + * */ #ifndef TrigEgammaSelectorBaseTool_H_ @@ -22,17 +22,6 @@ //#include "xAODCaloRings/tools/getCaloRingsDecorator.h" // - -//define RINGER_OFFLINE_PACKAGES -#ifdef RINGER_OFFLINE_PACKAGES -//////////////////////// Ringer Offline ////////////////////////// -#include "xAODCaloRings/RingSetContainer.h" // -#include "xAODCaloRings/CaloRingsContainer.h" // -#include "xAODCaloRings/tools/getCaloRingsDecorator.h" // -////////////////////////////////////////////////////////////////// -#endif - - namespace Trig{ class TrigEgammaSelectorBaseTool: public asg::AsgTool, @@ -43,25 +32,25 @@ namespace Trig{ //using ITrigEgammaSelectorBaseTool::emulation; TrigEgammaSelectorBaseTool(const std::string& myname); - virtual ~TrigEgammaSelectorBaseTool(){;} + ~TrigEgammaSelectorBaseTool(){;} - virtual StatusCode initialize() override; - virtual StatusCode finalize() override; + StatusCode initialize(); + StatusCode finalize(); //FIXME: static_cast for IParticleContainer to EmTau and emCluster //doent work. Because this I add these extra methods. Need to check //how generate this for these levels. - virtual bool emulation(const xAOD::EmTauRoI *, bool&, const Trig::Info &) override {return true;} - virtual bool emulation(const xAOD::TrigEMCluster *, bool&, const Trig::Info &) override {return true;} - virtual bool emulation(const xAOD::IParticle *, bool&, const Trig::Info &) override {return true;} - virtual bool emulation(const xAOD::IParticleContainer *, bool&, const Trig::Info &) override {return true;} + bool emulation(const xAOD::EmTauRoI *, bool&, const Trig::Info &){return true;}; + bool emulation(const xAOD::TrigEMCluster *, bool&, const Trig::Info &){return true;}; + bool emulation(const xAOD::IParticle *, bool&, const Trig::Info &){return true;}; + bool emulation(const xAOD::IParticleContainer *, bool&, const Trig::Info &){return true;}; //parser TDT tool as a pointer - virtual void setParents(ToolHandle<Trig::TrigDecisionTool> &t, StoreGateSvc *s) override - { m_trigdec=&(*t); m_storeGate=s;} - virtual void setParents(Trig::TrigDecisionTool *t, StoreGateSvc *s) override - { m_trigdec=t; m_storeGate=s;} - virtual void setTe(const HLT::TriggerElement *te) override {m_te=te;} + void setParents(ToolHandle<Trig::TrigDecisionTool> &t, StoreGateSvc *s) + { m_trigdec=&(*t); m_storeGate=s;}; + void setParents(Trig::TrigDecisionTool *t, StoreGateSvc *s) + { m_trigdec=t; m_storeGate=s;}; + void setTe(const HLT::TriggerElement *te){m_te=te;}; protected: /* dress decision */ diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationEFConfig.py b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationEFConfig.py index b639b090cee4d9f4bbeec1ec47e6f3f99ebaf91b..32bad9c316e894ee4d7b149b3177b08acc5158b0 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationEFConfig.py +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationEFConfig.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration from AthenaCommon import CfgMgr from AthenaCommon.AppMgr import ToolSvc @@ -17,7 +17,11 @@ ElectronPidTools() PhotonPidTools() #*********************************************************************** +OutputLevel=0 +# Track isolation -- remember to add TrackIsolation as a property of the class +#from IsolationTool.IsolationToolConf import xAOD__CaloIsolationTool,xAOD__TrackIsolationTool +#TrackIsolationTool = ToolFactory(xAOD__TrackIsolationTool, name = 'TrigEgammaTrackIsolationTool') #TrkIsoCfg = CfgMgr.xAOD__TrackIsolationTool('TrigEgammaTrackIsolationTool') #TrkIsoCfg.TrackSelectionTool.maxZ0SinTheta = 3. #TrkIsoCfg.TrackSelectionTool.minPt = 1000. diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationIsolationConfig.py b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationIsolationConfig.py index e99c6a8ad1de9a9d94e3b9a54281154a16abe9d2..23961e8ee341da9225168e7a51a8f84b4086fa12 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationIsolationConfig.py +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationIsolationConfig.py @@ -58,3 +58,4 @@ def createIsoToolElectronSelector(): RelPtConeCut = isolation_dict[wp] if trkiso else [-1,-1,-1,-1,-1,-1], return IsoToolSelectors + diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationL2Config.py b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationL2Config.py index 906067a63294265a4451e213234c3d3becff9dcb..75e49f2fd78659aac78e0351ee8a1dcfd78fd75c 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationL2Config.py +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationL2Config.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration from egammaRec.Factories import ToolFactory,FcnWrapper,AlgFactory, getPropertyValue @@ -11,49 +11,68 @@ from TrigEgammaEmulationTool.TrigEgammaEmulationToolConfig import OutputLevel from TrigEgammaHypo.TrigL2CaloHypoCutDefs import L2CaloCutMaps # define eta bins EtaBins = [0.00, 0.60, 0.80, 1.15, 1.37, 1.52, 1.81, 2.01, 2.37, 2.47] -theCutMaps = L2CaloCutMaps(22) -# create L2Calo tool -EgammaL2CaloLooseEmulator = ToolFactory(Trig__TrigEgammaL2CaloSelectorTool, - OutputLevel = OutputLevel, - name = "TrigEgammaL2CaloLooseEmulator", - HADETthr = theCutMaps.MapsHADETthr["loose"], - CARCOREthr = theCutMaps.MapsCARCOREthr["loose"], - CAERATIOthr = theCutMaps.MapsCAERATIOthr["loose"], - EtaBins = EtaBins , - dETACLUSTERthr = 0.1, - dPHICLUSTERthr = 0.1, - ET2thr = 90.0*GeV, - F1thr = 0.005) -#******************************************************************************** -# VeryLoose -EgammaL2CaloVeryLooseEmulator = EgammaL2CaloLooseEmulator.copy( - name = "TrigEgammaL2CaloVeryLooseEmulator", - OutputLevel = OutputLevel, - HADETthr = theCutMaps.MapsHADETthr['vloose'], - CARCOREthr = theCutMaps.MapsCARCOREthr['vloose'], - CAERATIOthr = theCutMaps.MapsCAERATIOthr['vloose']) - -#******************************************************************************** -# Medium -EgammaL2CaloMediumEmulator = EgammaL2CaloLooseEmulator.copy( - name = "TrigEgammaL2CaloMediumEmulator", - OutputLevel = OutputLevel, - HADETthr = theCutMaps.MapsHADETthr['medium'], - CARCOREthr = theCutMaps.MapsCARCOREthr['medium'], - CAERATIOthr = theCutMaps.MapsCAERATIOthr['medium']) +# Do not change this order. +#etBins = [0,22,999] +etBins = [0.0,15.0,28.] # Same from rDev Selector + +EgammaL2CaloSelectors = [] + +for idx, et in enumerate(etBins): + + theCutMaps = L2CaloCutMaps(et) + # create L2Calo tool + EgammaL2CaloLooseEmulator = ToolFactory(Trig__TrigEgammaL2CaloSelectorTool, + OutputLevel = OutputLevel, + name = "TrigEgammaL2CaloLooseEmulator_etBin_"+str(idx), + HADETthr = theCutMaps.MapsHADETthr["loose"], + CARCOREthr = theCutMaps.MapsCARCOREthr["loose"], + CAERATIOthr = theCutMaps.MapsCAERATIOthr["loose"], + EtaBins = EtaBins , + dETACLUSTERthr = 0.1, + dPHICLUSTERthr = 0.1, + ET2thr = 90.0*GeV, + F1thr = 0.005) + + + #******************************************************************************** + # VeryLoose + EgammaL2CaloVeryLooseEmulator = EgammaL2CaloLooseEmulator.copy( + name = "TrigEgammaL2CaloVeryLooseEmulator_etBin_"+str(idx), + OutputLevel = OutputLevel, + HADETthr = theCutMaps.MapsHADETthr['vloose'], + CARCOREthr = theCutMaps.MapsCARCOREthr['vloose'], + CAERATIOthr = theCutMaps.MapsCAERATIOthr['vloose']) + + + #******************************************************************************** + # Medium + EgammaL2CaloMediumEmulator = EgammaL2CaloLooseEmulator.copy( + name = "TrigEgammaL2CaloMediumEmulator_etBin_"+str(idx), + OutputLevel = OutputLevel, + HADETthr = theCutMaps.MapsHADETthr['medium'], + CARCOREthr = theCutMaps.MapsCARCOREthr['medium'], + CAERATIOthr = theCutMaps.MapsCAERATIOthr['medium']) + + + #******************************************************************************** + # Tight + EgammaL2CaloTightEmulator = EgammaL2CaloLooseEmulator.copy( + name = "TrigEgammaL2CaloTightEmulator_etBin_"+str(idx), + OutputLevel = OutputLevel, + HADETthr = theCutMaps.MapsHADETthr['tight'], + CARCOREthr = theCutMaps.MapsCARCOREthr['tight'], + CAERATIOthr = theCutMaps.MapsCAERATIOthr['tight']) + + + # Do not change this order. + EgammaL2CaloSelectors.append( EgammaL2CaloTightEmulator ) + EgammaL2CaloSelectors.append( EgammaL2CaloMediumEmulator ) + EgammaL2CaloSelectors.append( EgammaL2CaloLooseEmulator ) + EgammaL2CaloSelectors.append( EgammaL2CaloVeryLooseEmulator ) #******************************************************************************** -# Tight -EgammaL2CaloTightEmulator = EgammaL2CaloLooseEmulator.copy( - name = "TrigEgammaL2CaloTightEmulator", - OutputLevel = OutputLevel, - HADETthr = theCutMaps.MapsHADETthr['tight'], - CARCOREthr = theCutMaps.MapsCARCOREthr['tight'], - CAERATIOthr = theCutMaps.MapsCAERATIOthr['tight']) - -#******************************************************************************** # L2 Electron configurations EgammaL2ElectronEmulator = ToolFactory(Trig__TrigEgammaL2ElectronSelectorTool, name = "TrigEgammaL2ElectronEmulator", diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationPidToolsConfig.py b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationPidToolsConfig.py index 91b2f77e62ed5ad6baa1f7a6eac73279ec705cf8..2f8a02f377849e9fbdbe5e8ce875e42072de690e 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationPidToolsConfig.py +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationPidToolsConfig.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration # # TrigEgammaPidTools # Add all pid selectors to ToolSvc diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationToolConfig.py b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationToolConfig.py index 5dd18d40e96d0bae5f3b99a9775ddde6df029bb7..3c963ab8750f894ce39d278259ec1f32e53c67d5 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationToolConfig.py +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/python/TrigEgammaEmulationToolConfig.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration #******************************************************************************** # @@ -9,7 +9,7 @@ # #******************************************************************************** -OutputLevel = 3 +OutputLevel = 0 from AthenaCommon.Logging import logging logger = logging.getLogger("TrigEgammaEmulationToolConfig") @@ -31,8 +31,8 @@ from ElectronPhotonSelectorTools.ElectronIsEMSelectorMapping import Electro #ToolSvc += EgammaMatchTool #***************************************************************************** -from egammaMVACalib.egammaMVACalibConf import egammaMVACalibTool -mvatool = egammaMVACalibTool("mvatool",folder="egammaMVACalib/v1") +from egammaMVACalib.egammaMVACalibConf import egammaMVATool +mvatool = egammaMVATool("mvatool",folder="egammaMVACalib/v1") ToolSvc += mvatool #***************************************************************************** @@ -72,8 +72,7 @@ EgammaL1Emulator = ToolFactory( Trig__TrigEgammaL1SelectorTool, #***************************************************************************** # L2 staff (all Asgs will be imported from the current relase) from TrigEgammaEmulationTool.TrigEgammaEmulationToolConf import Trig__TrigEgammaL2SelectorTool -from TrigEgammaEmulationTool.TrigEgammaEmulationL2Config import EgammaL2CaloVeryLooseEmulator, EgammaL2CaloLooseEmulator,\ - EgammaL2CaloMediumEmulator, EgammaL2CaloTightEmulator, EgammaL2ElectronEmulator +from TrigEgammaEmulationTool.TrigEgammaEmulationL2Config import EgammaL2CaloSelectors, EgammaL2ElectronEmulator from TrigEgammaEmulationTool.TrigEgammaEmulationL2Config import EgammaL2RingerVeryLooseEmulator, EgammaL2RingerLooseEmulator,\ EgammaL2RingerMediumEmulator, EgammaL2RingerTightEmulator @@ -81,10 +80,7 @@ from TrigEgammaEmulationTool.TrigEgammaEmulationL2Config import EgammaL2RingerVe EgammaL2Emulator = ToolFactory(Trig__TrigEgammaL2SelectorTool, name = "TrigEgammaL2EmulatorTool", OutputLevel = OutputLevel, - CaloCutIDSelectors = [ EgammaL2CaloTightEmulator , - EgammaL2CaloMediumEmulator, - EgammaL2CaloLooseEmulator, - EgammaL2CaloVeryLooseEmulator], + CaloCutIDSelectors = EgammaL2CaloSelectors , CaloRingerSelectors = [ EgammaL2RingerTightEmulator , EgammaL2RingerMediumEmulator, EgammaL2RingerLooseEmulator, @@ -96,8 +92,8 @@ from TrigEgammaEmulationTool.TrigEgammaEmulationEFConfig import EgammaEFCaloDefa EgammaEFPhotonEmulator, EgammaEFElectronNoD0Emulator -from TrigEgammaAnalysisTools.TrigEgammaProbelist import supportingTriggerList - +from TrigEgammaAnalysisTools.TrigEgammaProbelist import supportingTriggerList, monitoringTP_electron +supportingTriggerList+=monitoringTP_electron # Emulator tool # (all Asgs will be imported from the current relase) @@ -117,9 +113,10 @@ TrigEgammaEmulationTool = ToolFactory( Trig__TrigEgammaEmulationTool, #EgammaEFElectronNoDphiResEmulator, #EgammaEFElectronSmoothEmulator, ], - EFPhotonSelectorTools = [ EgammaEFPhotonEmulator], + EFPhotonSelectorTools = [ EgammaEFPhotonEmulator ], DoL2ElectronFex = True, # V7 menu DoRinger = True, # V7 menu + DoRingerBelow15GeV = False, DoEFCaloPid = False, # V7 menu ) diff --git a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/src/components/TrigEgammaEmulationTool_entries.cxx b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/src/components/TrigEgammaEmulationTool_entries.cxx index 34ac185a9d3a9db48aff619f14c253a9738c4c64..5347d9bd071e7489fb2e672bc9c022afc1054793 100644 --- a/Trigger/TrigAnalysis/TrigEgammaEmulationTool/src/components/TrigEgammaEmulationTool_entries.cxx +++ b/Trigger/TrigAnalysis/TrigEgammaEmulationTool/src/components/TrigEgammaEmulationTool_entries.cxx @@ -1,3 +1,5 @@ + + #include "TrigEgammaEmulationTool/TrigEgammaEmulationTool.h" #include "TrigEgammaEmulationTool/TrigEgammaSelectorBaseTool.h" #include "TrigEgammaEmulationTool/TrigEgammaL1SelectorTool.h" @@ -22,6 +24,7 @@ DECLARE_COMPONENT( Trig::TrigEgammaL2CaloRingerSelectorTool ) DECLARE_COMPONENT( Trig::TrigEgammaEFCaloSelectorTool ) DECLARE_COMPONENT( Trig::TrigEgammaEFElectronSelectorTool ) DECLARE_COMPONENT( Trig::TrigEgammaEFPhotonSelectorTool ) +DECLARE_COMPONENT( Trig::TrigEgammaIsolationSelectorTool ) DECLARE_COMPONENT( Trig::TrigEgammaEmulationToolTest ) DECLARE_COMPONENT( Trig::TrigEgammaEmulationToolAlg ) DECLARE_COMPONENT( Trig::TrigEgammaIsolationSelectorTool ) diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/CMakeLists.txt b/Trigger/TrigHypothesis/TrigMultiVarHypo/CMakeLists.txt index 70931bd15fd076fcb8d2553b6234794df1da06c6..2139e2f935daf6f1af2c2e7d82258f2b9db1bfc6 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/CMakeLists.txt +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration ################################################################################ # Package: TrigMultiVarHypo @@ -20,26 +20,33 @@ atlas_depends_on_subdirs( PUBLIC Trigger/TrigSteer/DecisionHandling LumiBlock/LumiBlockComps Tools/PathResolver - GaudiKernel - Control/AthViews ) + PRIVATE + GaudiKernel + Control/AthViews + Control/AthContainers + Control/AthenaMonitoring + ) # Component(s) in the package: atlas_add_library( TrigMultiVarHypoLib src/*.cxx src/tools/*.cxx - src/preproc/*.cxx + src/tools/procedures/*.cxx + src/tools/common/*.cxx PUBLIC_HEADERS TrigMultiVarHypo - LINK_LIBRARIES AsgTools xAODTrigCalo xAODTrigRinger TrigCaloEvent - TrigSteeringEvent TrigInterfacesLib TrigTimeAlgsLib - LumiBlockCompsLib PathResolver DecisionHandlingLib + LINK_LIBRARIES AsgTools xAODTrigCalo xAODTrigRinger TrigCaloEvent + TrigSteeringEvent TrigInterfacesLib TrigTimeAlgsLib + DecisionHandlingLib LumiBlockCompsLib PathResolver + AthenaMonitoringLib PRIVATE_LINK_LIBRARIES GaudiKernel AthViews ) -atlas_add_component( TrigMultiVarHypo - src/components/*.cxx - LINK_LIBRARIES AsgTools xAODTrigCalo xAODTrigRinger TrigCaloEvent - TrigSteeringEvent TrigInterfacesLib TrigTimeAlgsLib - GaudiKernel TrigMultiVarHypoLib PathResolver - LumiBlockCompsLib DecisionHandlingLib) + +atlas_add_component( TrigMultiVarHypo + src/components/*.cxx + LINK_LIBRARIES AsgTools xAODTrigCalo xAODTrigRinger TrigCaloEvent + TrigSteeringEvent TrigInterfacesLib TrigTimeAlgsLib GaudiKernel + TrigMultiVarHypoLib DecisionHandlingLib LumiBlockCompsLib + PathResolver AthenaMonitoringLib) # Install files from the package: atlas_install_python_modules( python/*.py ) diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/TrigL2CaloRingerFex.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/TrigL2CaloRingerFex.h index a9c834cde862044ce92b4b83c35c27cc0504d53b..a337252438c486372b3232cf164929372e30ced4 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/TrigL2CaloRingerFex.h +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/TrigL2CaloRingerFex.h @@ -19,10 +19,13 @@ /// Luminosity tool #include "LumiBlockComps/ILumiBlockMuTool.h" -#include "TrigMultiVarHypo/tools/MultiLayerPerceptron.h" -#include "TrigMultiVarHypo/tools/TrigL2CaloRingerReader.h" -#include "TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h" +// ringer libs +#include "TrigMultiVarHypo/tools/procedures/IModel.h" +#include "TrigMultiVarHypo/tools/procedures/INormalization.h" +#include "TrigMultiVarHypo/tools/common/RingerReader.h" + +#include<memory> class TrigL2CaloRingerFex: public HLT::FexAlgo { @@ -40,7 +43,8 @@ class TrigL2CaloRingerFex: public HLT::FexAlgo { ///Time monitoring TrigTimer* m_storeTimer; TrigTimer* m_normTimer; - TrigTimer* m_decisionTimer; + TrigTimer* m_totalTimer; + TrigTimer* m_propagateTimer; private: @@ -58,20 +62,15 @@ class TrigL2CaloRingerFex: public HLT::FexAlgo { float m_lumiCut; float m_output; bool m_useLumiTool; - bool m_useEtaVar; - bool m_useLumiVar; //LumiTool ToolHandle<ILumiBlockMuTool> m_lumiBlockMuTool; - ///Prepoc configuration - std::vector<unsigned int> m_nRings; - std::vector<unsigned int> m_normRings; - std::vector<unsigned int> m_sectionRings; ///Discriminator holder - std::vector<MultiLayerPerceptron*> m_discriminators; - std::vector<TrigRingerPreprocessor*> m_preproc; - TrigL2CaloRingerReader m_reader; + std::vector<std::shared_ptr<Ringer::IModel>> m_discriminators; + std::vector<std::shared_ptr<Ringer::INormalization>> m_preproc; + + Ringer::RingerReader m_reader; }; //!=============================================================================================== diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/TrigL2CaloRingerHypo.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/TrigL2CaloRingerHypo.h index 6ffc6039e219e354591f2f185a9be44a5100358c..b35e7907ae4625277c3fd5a910caaff2d9ce3a01 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/TrigL2CaloRingerHypo.h +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/TrigL2CaloRingerHypo.h @@ -4,18 +4,19 @@ #ifndef TRIGL2CALORINGERHYPO_H #define TRIGL2CALORINGERHYPO_H -///std include(s) +// std include(s) #include <string> #include <vector> -#include "TrigMultiVarHypo/tools/TrigRingerHelper.h" -#include "TrigMultiVarHypo/tools/TrigL2CaloRingerReader.h" +// ringer libs +#include "TrigMultiVarHypo/tools/common/RingerReader.h" +#include "TrigMultiVarHypo/tools/procedures/IThresholds.h" -///Base from trigger +// Base from trigger #include "TrigInterfaces/HypoAlgo.h" #include "TrigTimeAlgs/TrigTimer.h" -///xAOD include(s) +// xAOD include(s) #include "xAODTrigRinger/TrigRingerRings.h" #include "xAODTrigRinger/TrigRNNOutput.h" #include "xAODTrigCalo/TrigEMCluster.h" @@ -34,7 +35,7 @@ class TrigL2CaloRingerHypo: public HLT::HypoAlgo { private: bool m_acceptAll; - bool m_useNoActivationFunctionInTheLastLayer; + bool m_removeOutputTansigTF; bool m_doPileupCorrection; double m_emEtCut; int m_lumiCut; @@ -46,13 +47,14 @@ class TrigL2CaloRingerHypo: public HLT::HypoAlgo { std::string m_feature; std::string m_key; + TrigTimer* m_totalTimer; - TrigL2CaloRingerReader m_reader; + Ringer::RingerReader m_reader; /* Helper functions for feature extraction */ const xAOD::TrigRNNOutput* get_rnnOutput(const HLT::TriggerElement* te); - std::vector<TrigCaloRingsHelper::CutDefsHelper*> m_cutDefs; + std::vector<std::shared_ptr<Ringer::IThresholds>> m_cutDefs; }; //!=============================================================================================== /// get the cluster inside of container diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h deleted file mode 100644 index 58f46e06e0629684b12a9731363f3d4bc233410b..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h +++ /dev/null @@ -1,78 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ - - -#ifndef PREPROC_TRIGRINGERPREPROC_H -#define PREPROC_TRIGRINGERPREPROC_H - -///std librarys -#include <vector> -///Local includes -#include "TrigMultiVarHypo/tools/TrigRingerHelper.h" - - - -class TrigRingerPreprocessor{ - - private: - - // RingSet properties: - std::vector<unsigned int> m_nRings; - std::vector<unsigned int> m_normRings; - std::vector<unsigned int> m_sectionRings; - double m_energyThreshold;///Defines the energy threshlod for divisions, in MeV's - /// RingSet object - std::vector<TrigCaloRingsHelper::RingSet*> m_ringsSet; - unsigned int m_maxRingsAccumulated; - - public: - - TrigRingerPreprocessor(std::vector<unsigned int> &nRings, - std::vector<unsigned int> &normRings, - std::vector<unsigned int> §ionRings); - - ~TrigRingerPreprocessor(); - - bool ppExecute( Pattern &rings ); - - void setEnergyThreshold( double e ){ m_energyThreshold = e;}; - - double getEnergyThreshold(){ return m_energyThreshold;}; - - float normalize_eta( float, float etamin, float etamax ); - - float normalize_mu( float, float mumax ); - - /* - * Calculates and applies the sequential normalisation vector that results - * from the following arithmetic: - * - * @f[ - * N0 = E - * N1 = E - E0 - * N2 = E - E0 - E1 = N1 - E1 - * N3 = E - E0 - E1 - E2 = N2 - E2 - * ... - * NX = N(X-1) - E(X-1) - * @f] - * - * Where Ni are the normalisation factors, E is the total layer energy and Ei - * are the energy values for each ring. - * - * @param rings The calculated ring values one wishes to normalise - * @param stop_energy The threshold to judge when to stop this normalisation - * strategy and start using the total layer energy instead, in MeV. - */ - void sequential (Pattern& rings, const Feature& stop_energy = 100.0); - - /** - * Apply normalization based on the ring set configuration - * - * @param rset The ring set configuration to use for creating the rings - */ - void normalize_rings(std::vector<TrigCaloRingsHelper::RingSet*>& rset); - -}; -#endif /* TrigRingerPreproc */ - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/MultiLayerPerceptron.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/MultiLayerPerceptron.h deleted file mode 100644 index 667aed440494026bfa9e5ab6082f11a8caf5d0d4..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/MultiLayerPerceptron.h +++ /dev/null @@ -1,68 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ - - -/* - * Neural Network Implementation v3.0 - * Developed by: Dhiana Deva Cavalcanti Rocha - * Contact: dhiana.deva@gmail.com - * Laboratorio de Processamento de Sinais - * Universidade Federal do Rio de Janeiro - * - * Adapt by Joao victor da Fonseca Pinto: - * jodafons@cern.ch - */ - -#ifndef TOOLS_MULTILAYERPERCEPTRON_H -#define TOOLS_MULTILAYERPERCEPTRON_H - -#define BAD_WEIGHT_SIZE 101 -#define BAD_BIAS_SIZE 102 - -#include <vector> - -typedef double REAL; - -class MultiLayerPerceptron { - - private: - - std::vector<unsigned int> m_nodes; - REAL ***m_weights; - REAL **m_bias; - REAL **m_layerOutputs; - REAL **m_neuronOutputs; // Use this to hold the neuron sum values before to apply the tansig function - std::vector<REAL> m_threshold; - REAL m_etmin; - REAL m_etmax; - REAL m_etamin; - REAL m_etamax; - REAL m_mumin; - REAL m_mumax; - - - public: - - MultiLayerPerceptron(std::vector<unsigned int> &, - std::vector<REAL> &, std::vector<REAL> &, - REAL etmin, REAL etmax, - REAL etamin, REAL etamax, REAL mumin, REAL mumax); - - ~MultiLayerPerceptron(); - - float propagate(std::vector<float> &input); - - float getOutput(); - - float getOutputBeforeTheActivationFunction(); - - REAL etamin(){ return m_etamin;}; - REAL etamax(){ return m_etamax;}; - REAL etmin(){ return m_etmin;}; - REAL etmax(){ return m_etmax;}; - REAL mumin(){ return m_mumin;}; - REAL mumax(){ return m_mumax;}; - -}; -#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/RingerSelectorTool.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/RingerSelectorTool.h new file mode 100644 index 0000000000000000000000000000000000000000..0a187c9eaad3de7b8defa707fa59cd34de54caa2 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/RingerSelectorTool.h @@ -0,0 +1,117 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ +#ifndef TRIGMULTIVARHYPO_RINGERSELECTORTOOL_H +#define TRIGMULTIVARHYPO_RINGERSELECTORTOOL_H + + +#include "GaudiKernel/StatusCode.h" + +// interfaces +#include "TrigMultiVarHypo/tools/procedures/IModel.h" +#include "TrigMultiVarHypo/tools/procedures/IThresholds.h" +#include "TrigMultiVarHypo/tools/procedures/INormalization.h" + +// file header lib +#include "TrigMultiVarHypo/tools/common/RingerReader.h" + +// models lib +#include "TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h" +#include "TrigMultiVarHypo/tools/procedures/Norm1.h" + +#include "AthenaMonitoring/MonitoredTimer.h" +#include "AsgTools/AsgMessaging.h" +#include <memory> +#include <string> + + +namespace Ringer{ + + class RingerSelectorTool: public asg::AsgMessaging + { + + public: + /// Standard constructor + RingerSelectorTool(); + + /// Standard destructor + ~RingerSelectorTool(); + + StatusCode initialize(); + + StatusCode finalize(); + + bool accept( double discriminant, double et, double eta, double mu) const; + + double calculate( double et, double eta, double mu, + double deltaeta1, double deltaPoverP, double deltaPhiReescaled, + double d0significance, double d0pvunbiased, double eProbabilityHT) const; + + double calculate( std::vector<float>& rings, double et, double eta, double mu) const; + + double calculate( std::vector<float>& rings, double et, double eta, double mu, + Monitored::Timer &propagate_time, + Monitored::Timer &preproc_time) const; + + double calculate( std::vector<float>& rings, double et, double eta, double mu, + double deltaeta1, double deltaPoverP, double deltaPhiReescaled, + double d0significance, double d0pvunbiased, double eProbabilityHT) const; + + double calculate( std::vector<float>& rings, double et, double eta, double mu, + double eratio, double reta, double rphi, double rhad, double weta2, + double f1, double f3) const; + + double calculate( std::vector<float>& rings, double et, double eta, double mu, + double eratio, double reta, double rphi, double rhad, double weta2, + double f1, double f3, double deltaeta1, double deltaPoverP, + double deltaPhiReescaled, double d0significance, double d0pvunbiased, + double eProbabilityHT) const; + + + std::string getWP( void ) const {return m_wp;}; + bool useCaloRings() const {return m_useCaloRings;}; + bool useTrack() const {return m_useTrack;}; + bool useShowerShape() const {return m_useShowerShape;}; + bool useTileCal() const {return m_useTileCal;}; + void setConstantsCalibPath(std::string s){m_constantsCalibPath=s;}; + void setThresholdsCalibPath(std::string s){m_thresholdsCalibPath=s;}; + + + + + + private: + + bool retrieve(double et, double eta, double mu, std::shared_ptr<Ringer::IModel> &discr, + std::shared_ptr<Ringer::INormalization> &preproc ) const; + + std::vector<std::shared_ptr<Ringer::INormalization>> m_preprocs; + std::vector<std::shared_ptr<Ringer::IModel>> m_discriminators; + std::vector<std::shared_ptr<Ringer::IThresholds>> m_cutDefs; + + Ringer::RingerReader m_reader; + + + double m_etCut; + double m_lumiCut; + + bool m_useTrack; + bool m_useCaloRings; + bool m_useShowerShape; + bool m_removeOutputTansigTF; + bool m_doPileupCorrection; + bool m_useTileCal; + + //Discriminator configuration + std::string m_constantsCalibPath, m_thresholdsCalibPath; + std::string m_wp; // working point + + + + + };// end class + +} + + +#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/TrigL2CaloRingerReader.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/TrigL2CaloRingerReader.h deleted file mode 100644 index 71ff2a8f5163010c351f7d8fcfe742d2ee2bf8d9..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/TrigL2CaloRingerReader.h +++ /dev/null @@ -1,66 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ -#ifndef TOOLS_TRIGL2CALORINGERREADER_H -#define TOOLS_TRIGL2CALORINGERREADER_H - -//#include "TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h" -#include "TrigMultiVarHypo/tools/TrigRingerHelper.h" -#include "TrigMultiVarHypo/tools/MultiLayerPerceptron.h" - -#include "AsgTools/AsgMessaging.h" -#include "PathResolver/PathResolver.h" -#include <vector> -#include <string> -#include "TTree.h" -#include "TFile.h" - -class TrigL2CaloRingerReader : public asg::AsgMessaging { - - public: - /* constructor */ - TrigL2CaloRingerReader(const std::string& name); - /* destructor */ - ~TrigL2CaloRingerReader(); - /* use this methods to retrieve the tools from the archieve */ - bool retrieve(std::string &, std::vector<MultiLayerPerceptron*> &); - bool retrieve(std::string &, std::vector<TrigCaloRingsHelper::CutDefsHelper*> &); - /* return the current class name */ - std::string name(){return m_name;}; - /* return luminosity flag */ - bool useLumiVar(){return m_useLumiVar;}; - /* return eta var flag */ - bool useEtaVar(){return m_useEtaVar;}; - /* if true, we will no use the activation function in the last layer */ - bool useNoActivationFunctionInTheLastLayer(){return m_useNoActivationFunctionInTheLastLayer;}; - /* if true, apply the pileup correction */ - bool doPileupCorrection(){return m_doPileupCorrection;}; - /* return the threshold lumi */ - int lumiCut(){return m_lumiCut;}; - - private: - // Use this to retrieve all branch values - template <class T> - void InitBranch(TTree* fChain, std::string branch_name, T* param); - - std::string m_name; - - int m_version; - - // archieve variables holder - int m_lumiCut; - bool m_useEtaVar; - bool m_useLumiVar; - bool m_useNoActivationFunctionInTheLastLayer; - bool m_doPileupCorrection; - - std::vector<unsigned int> *m_nodes; - std::vector<double> *m_weights; - std::vector<double> *m_bias; - std::vector<double> *m_thresholds; - std::vector<double> *m_etaBins; - std::vector<double> *m_etBins; - std::vector<double> *m_muBins; - -};//End of classi -#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/TrigRingerHelper.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/TrigRingerHelper.h deleted file mode 100644 index cc262d6bbb951788142733de2cfaacc17bd27460..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/TrigRingerHelper.h +++ /dev/null @@ -1,125 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ - -#ifndef PREPROC_TRIGRINGERHELPER_H -#define PREPROC_TRIGRINGERHELPER_H - -#include <vector> -#include <string> - -typedef float Feature; -typedef std::vector<Feature> Pattern; - -namespace TrigCaloRingsHelper{ - - enum CaloRingsLayer{ - PS = 0, - EM1 = 1, - EM2 = 2, - EM3 = 3, - HAD1 = 4, - HAD2 = 5, - HAD3 = 6 - }; - /* - * rings map into std::vector - * 0:7 PS; 8:71 EM1; 72:79 EM2; 80:87 EM3 - * 88:91 HAD1; 92:95 HAD2; 96:99 HAD3 - */ - void parseTrigCaloRingsLayers( unsigned layer, unsigned &minRing, unsigned &maxRing, - std::string &caloLayerName); - - class RingSet { - - public: //interface - - enum Normalisation { - EVENT = 0, ///< normalises the ring energies with the total event energy - SECTION = 1, ///< normalises the ring energies with the section energy - SET = 2, ///< normalises the ring energies with the set energy - SEQUENTIAL = 3, ///< normalises the ring energies with a special scheme - NONE = 4 ///< no normalisation is applied - }; - - enum Section { - EM = 0, ///< electromagnetic section of the ATLAS calorimetry - HADRONIC = 1 ///< hadronic section of the ATLAS calorimetry - }; - - RingSet (unsigned int max, const Normalisation &norm, const Section §ion) - : m_max(max), - m_norm(norm), - m_section(section), - m_val(max) - {;} - - ~RingSet() - {;} - - inline unsigned int max(void) const { return m_max; } - inline Normalisation normalisation(void) const { return m_norm; } - inline Section section(void) const { return m_section; } - - ///Returns the (current) ring values. - inline Pattern& pattern (void) { return m_val; } - - ///Resets all current values - inline void reset (void) { m_val.clear(); } - - ///Appends ring to ringset - inline void add ( double ring) { m_val.push_back(ring); } - - private: //representation - - unsigned int m_max; - Normalisation m_norm; ///< the normalisation scheme for this ring set - Section m_section; ///< the section this ring set belongs to - Pattern m_val; ///< my current values - }; - - - ///Helper class - class CutDefsHelper{ - public: - CutDefsHelper(std::vector<double> th, double etamin, double etamax, - double etmin, double etmax, double mumin, double mumax) - { - m_threshold=th; - m_etamin=etamin; - m_etamax=etamax; - m_etmin=etmin; - m_etmax=etmax; - m_mumin=mumin; - m_mumax=mumax; - } - - ~CutDefsHelper() - {;} - - double threshold(){return m_threshold[2];}; - double threshold(float avgmu){return (avgmu*m_threshold[0] + m_threshold[1]);}; - double etamin(){return m_etamin;}; - double etamax(){return m_etamax;}; - double etmin(){return m_etmin;}; - double etmax(){return m_etmax;}; - double mumin(){return m_mumin;}; - double mumax(){return m_mumax;}; - - private: - double m_etamin; - double m_etamax; - double m_etmin; - double m_etmax; - double m_mumin; - double m_mumax; - - // Define as [a, b, b0] where a and b came from y = ax+b and b0 is the cut without any correction - std::vector<double> m_threshold; - - - };///end of configuration - - -} // namespace TrigCaloRingsHelper -#endif /* TrigCaloRingerHelper */ diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/common/RingerHelper.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/common/RingerHelper.h new file mode 100644 index 0000000000000000000000000000000000000000..3ce29f3b5a035c1798ef42583d94a6848657ab76 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/common/RingerHelper.h @@ -0,0 +1,36 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#ifndef TRIGMULTIVARHYPO_RINGERHELPER_H +#define TRIGMULTIVARHYPO_RINGERHELPER_H + +#include <vector> +#include <string> + + +namespace Ringer{ + + enum CaloRingsLayer{ + PS = 0, + EM1 = 1, + EM2 = 2, + EM3 = 3, + HAD1 = 4, + HAD2 = 5, + HAD3 = 6 + }; + /* + * rings map into std::vector + * 0:7 PS; 8:71 EM1; 72:79 EM2; 80:87 EM3 + * 88:91 HAD1; 92:95 HAD2; 96:99 HAD3 + */ + void parseTrigCaloRingsLayers( unsigned layer, unsigned &minRing, unsigned &maxRing, + std::string &caloLayerName); + + + + + +} // namespace TrigCaloRingsHelper +#endif /* TrigCaloRingerHelper */ diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/common/RingerReader.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/common/RingerReader.h new file mode 100644 index 0000000000000000000000000000000000000000..a8aacc1500a7982114d26ba5579b262e8ccd1d56 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/common/RingerReader.h @@ -0,0 +1,103 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#ifndef TRIGMULTIVARHYPO_RINGERREADER_H +#define TRIGMULTIVARHYPO_RINGERREADER_H + +#include "TrigMultiVarHypo/tools/procedures/IModel.h" +#include "TrigMultiVarHypo/tools/procedures/IThresholds.h" +#include "TrigMultiVarHypo/tools/procedures/INormalization.h" +#include "TrigMultiVarHypo/tools/procedures/Thresholds.h" +#include "TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h" + +#include "PathResolver/PathResolver.h" +#include <vector> +#include <string> +#include "TTree.h" +#include "TFile.h" +#include <TROOT.h> +#include <memory> + + +#include "AsgTools/AsgMessaging.h" + +namespace Ringer{ + + + class RingerReader: public asg::AsgMessaging{ + + public: + /* constructor */ + RingerReader( std::string ); + /* destructor */ + ~RingerReader(); + + /* use this methods to retrieve the tools from the archieve */ + bool retrieve(std::string &, std::vector<std::shared_ptr<Ringer::IModel>> &); + bool retrieve(std::string &, std::vector<std::shared_ptr<Ringer::IThresholds>> &); + + + + int lumiCut() const {return m_lumiCut;}; + bool doPileupCorrection() const {return m_doPileupCorrection;}; + bool removeOutputTansigTF() const {return m_removeOutputTansigTF;}; + bool useTrack() const {return m_useTrack;}; + bool useCaloRings() const {return m_useCaloRings;}; + bool useShowerShape() const {return m_useShowerShape;}; + bool useTileCal() const {return m_useTileCal;}; + + std::string name() const {return m_name;}; + + + + + + private: + // Use this to retrieve all branch values + template <class T> + void InitBranch(TTree* fChain, std::string branch_name, T* param); + + + std::string m_name; + int m_version; + + // archieve variables holder + int m_lumiCut; + bool m_useCaloRings; + bool m_useTrack; + bool m_useShowerShape; + bool m_useTileCal; + bool m_removeOutputTansigTF; + bool m_doPileupCorrection; + + // Dense Model + std::vector<unsigned int> *m_nodes; + std::vector<double> *m_weights; + std::vector<double> *m_bias; + std::vector<double> *m_thresholds; + std::vector<std::string> *m_tfnames; + + // Convolutional Model + std::vector<bool> *m_useConvLayer; + std::vector<unsigned int> *m_conv_nodes; + std::vector<unsigned int> *m_conv_kernel_i; + std::vector<unsigned int> *m_conv_kernel_j; + std::vector<double> *m_conv_kernel; + std::vector<double> *m_conv_bias; + std::vector<unsigned int> *m_conv_input_i; + std::vector<unsigned int> *m_conv_input_j; + std::vector<std::string> *m_conv_tfnames; + std::vector<unsigned int> *m_conv_frame; + + // Common parans + std::vector<double> *m_etaBins; + std::vector<double> *m_etBins; + std::vector<double> *m_muBins; + + + + };//End of classi + +} +#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/IModel.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/IModel.h new file mode 100644 index 0000000000000000000000000000000000000000..84bcbe4e9261b8a85c77d7240f7cce8ac1f3fbcd --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/IModel.h @@ -0,0 +1,59 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + + +#ifndef TRIGMULTIVARHYPO_IMODEL_H +#define TRIGMULTIVARHYPO_IMODEL_H + +#include <vector> + + +#define BAD_WEIGHT_SIZE 101 +#define BAD_BIAS_SIZE 102 + + +namespace Ringer{ + + struct RnnOutInfo{ + float output; + float outputBeforeTheActivationFunction; + }; + + + + class IModel{ + + private: + + double m_etmin; + double m_etmax; + double m_etamin; + double m_etamax; + double m_mumin; + double m_mumax; + + public: + + + // Constructor + IModel( double etmin, double etmax, double etamin, double etamax, double mumin, double mumax): + m_etmin(etmin),m_etmax(etmax),m_etamin(etamin),m_etamax(etamax),m_mumin(mumin),m_mumax(mumax) + {;}; + + // Destructor + virtual ~IModel() + {;}; + + virtual RnnOutInfo propagate( std::vector<float> & ) const=0; + double etamin() const{ return m_etamin;}; + double etamax() const{ return m_etamax;}; + double etmin() const{ return m_etmin;}; + double etmax() const{ return m_etmax;}; + double mumin() const{ return m_mumin;}; + double mumax() const{ return m_mumax;}; + + }; + +} +#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/INormalization.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/INormalization.h new file mode 100644 index 0000000000000000000000000000000000000000..9b821b9f1ba1d2014acb5ce38883acf7c4c73a4c --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/INormalization.h @@ -0,0 +1,50 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#ifndef TRIGMULTIVARHYPO_INORMALIZATION_H +#define TRIGMULTIVARHYPO_INORMALIZATION_H + +#include <vector> + + + +namespace Ringer{ + + + class INormalization{ + + private: + + double m_etmin; + double m_etmax; + double m_etamin; + double m_etamax; + double m_mumin; + double m_mumax; + + public: + + + // Constructor + INormalization( double etmin, double etmax, double etamin, double etamax, double mumin, double mumax): + m_etmin(etmin),m_etmax(etmax),m_etamin(etamin),m_etamax(etamax),m_mumin(mumin),m_mumax(mumax) + {;}; + + // Destructor + virtual ~INormalization() + {;}; + + virtual void execute( std::vector<float> & ) const=0; + + double etamin() const{ return m_etamin;}; + double etamax() const{ return m_etamax;}; + double etmin() const{ return m_etmin;}; + double etmax() const{ return m_etmax;}; + double mumin() const{ return m_mumin;}; + double mumax() const{ return m_mumax;}; + + }; + +} +#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/IThresholds.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/IThresholds.h new file mode 100644 index 0000000000000000000000000000000000000000..7eabbdbdda55c0b49b5d806acd99f49d3fccd884 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/IThresholds.h @@ -0,0 +1,57 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#ifndef TRIGMULTIVARHYPO_ITHRESHOLDS_H +#define TRIGMULTIVARHYPO_ITHRESHOLDS_H + +#include <vector> +#include <string> + + +namespace Ringer{ + + class IThresholds{ + + protected: + double m_etamin; + double m_etamax; + double m_etmin; + double m_etmax; + double m_mumin; + double m_mumax; + std::vector<double> m_values; + + public: + + IThresholds(std::vector<double> th, + double etamin, + double etamax, + double etmin, + double etmax, + double mumin, + double mumax): + m_etamin(etamin),m_etamax(etamax),m_etmin(etmin),m_etmax(etmax),m_mumin(mumin),m_mumax(mumax),m_values(th) + {;} + + virtual ~IThresholds() + {;} + + virtual double threshold() const=0; + virtual double threshold(double) const=0; + + double etamin() const {return m_etamin;}; + double etamax() const {return m_etamax;}; + double etmin() const {return m_etmin; }; + double etmax() const {return m_etmax; }; + double mumin() const {return m_mumin; }; + double mumax() const {return m_mumax; }; + + std::vector<double> values() const {return m_values;}; + + + }; + +} + +#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h new file mode 100644 index 0000000000000000000000000000000000000000..2e51dfe7bd6a61478650548201d1efc972710096 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h @@ -0,0 +1,49 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + + + +#ifndef TRIGMULTIVARHYPO_MULTILAYERPERCEPTRON_H +#define TRIGMULTIVARHYPO_MULTILAYERPERCEPTRON_H + +#include <string> +#include <vector> +#include "TrigMultiVarHypo/tools/procedures/IModel.h" + + +namespace Ringer{ + + class MultiLayerPerceptron: public IModel { + + private: + + + std::vector<unsigned int> m_nodes; + double ***m_weights; + double **m_bias; + std::vector<std::string> m_tfnames; + + //inline double activation( double, std::string & ); + inline void release(double**, double**) const; + + public: + + MultiLayerPerceptron( std::vector<unsigned int> &, + std::vector<double> &, + std::vector<double> &, + std::vector<std::string> &, + double etmin, + double etmax, + double etamin, + double etamax, + double mumin, + double mumax); + + ~MultiLayerPerceptron(); + + Ringer::RnnOutInfo propagate(std::vector<float> &input) const; + }; + +} +#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/Norm1.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/Norm1.h new file mode 100644 index 0000000000000000000000000000000000000000..67f9db4664253ce2f0c1991ae03c0661e3c4ca5b --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/Norm1.h @@ -0,0 +1,28 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + + +#ifndef TRIGMULTIVARHYPO_NORM1_H +#define TRIGMULTIVARHYPO_NORM1_H + +#include <vector> +#include "TrigMultiVarHypo/tools/procedures/INormalization.h" + +namespace Ringer{ + + class Norm1 : public INormalization{ + + public: + Norm1(double etmin, double etmax, double etamin, double etamax, double mumin, double mumax, bool usetilecal); + ~Norm1(){;}; + void execute( std::vector<float> &rings ) const; + + private: + bool m_useTileCal; + }; + +} + +#endif /* TrigRingerPreproc */ + diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/Thresholds.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/Thresholds.h new file mode 100644 index 0000000000000000000000000000000000000000..f82b47f4598c84df7e74deee2d78f6616f1d7e00 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/TrigMultiVarHypo/tools/procedures/Thresholds.h @@ -0,0 +1,43 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#ifndef TRIGMULTIVARHYPO_THRESHOLDS_H +#define TRIGMULTIVARHYPO_THRESHOLDS_H + +#include "TrigMultiVarHypo/tools/procedures/IThresholds.h" +#include <vector> +#include <string> + + + +namespace Ringer{ + + class Thresholds : public IThresholds{ + + public: + + Thresholds(std::vector<double> th, + double etamin, + double etamax, + double etmin, + double etmax, + double mumin, + double mumax): + IThresholds(th,etamin,etamax,etmin,etmax,mumin,mumax) + {;} + + + ~Thresholds(){;} + + double threshold() const {return beta0();}; + double threshold(double avgmu) const {return (avgmu*alpha() + beta());}; + double alpha() const {return m_values[0];}; + double beta() const {return m_values[1];}; + double beta0() const {return m_values[2];}; + + };///end of configuration + +} + +#endif diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerConstants.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerConstants.py deleted file mode 100755 index 370295abf8b536d005eb364b857099ef5c6f8934..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerConstants.py +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration - -# Universidade Federal do Rio de Janeiro -# Authors: -# Joao Victor da Fonseca Pinto, jodafons@cern.ch -# Werner Freund, wsfreund@cern.ch -# Ryan White, rwhite@cern.ch -# Denis Damazio, damazio@cern.ch -# -# MC16 Tuning presented here: -# https://indico.cern.ch/event/576269/contributions/2332041/attachments/1352705/2042960/20161011_egammaMeeting.pdf -# This tuning using MC15c to training 20 neural networks. -# Relax parameters: Tight = -0.45, Medium = -0.3, Loose = -0.1 and VeryLoose = -0.3 -def SignaturesMap(): - signatures=dict() - signatures["ElectronHighEnergyTightConf"]={'et3_eta2': {'discriminator': {'threshold': 0.52499841451644902, 'nodes': [100, 5, 1], 'bias': [-0.03404608368873596, -0.0632418766617775, -0.0069054546765983105, 0.020593134686350822, -0.2521449327468872, 0.016750043258070946], 'weights': [0.4703431725502014, -0.09695211797952652, -1.7062618732452393, -1.7950844764709473, -1.5752053260803223, -1.5195577144622803, -1.0668883323669434, -0.9694873690605164, 0.15751956403255463, 1.960694432258606, 2.0984318256378174, 1.9061888456344604, 1.0200971364974976, 0.32337525486946106, 0.3146933317184448, 0.35614654421806335, -3.87273907661438, 0.04691654443740845, 0.1703878790140152, -1.8183751106262207, -4.0419816970825195, -2.691319465637207, -0.9311197400093079, -1.5393428802490234, -1.9127061367034912, -2.0619184970855713, -2.2820775508880615, -1.875126600265503, -1.9300029277801514, -1.940091609954834, -1.477725863456726, -1.3720479011535645, -1.8444932699203491, -1.6420280933380127, -1.7008205652236938, -1.9253499507904053, -4.584053993225098, -2.1500840187072754, -1.296797275543213, -1.845773458480835, -1.719006061553955, -3.953913927078247, -2.0874006748199463, -1.457442045211792, -0.9740849137306213, -2.08292818069458, -1.9235605001449585, -1.1207565069198608, -2.043537139892578, -1.8446439504623413, -1.597627878189087, -1.8782378435134888, -2.8899118900299072, -2.1076903343200684, -1.8747576475143433, -1.961047649383545, -1.0844285488128662, -1.6172173023223877, -1.1107652187347412, -1.0789729356765747, 1.1585743427276611, -0.3794723451137543, -0.6536436676979065, -1.573157787322998, -1.1959367990493774, -1.1892831325531006, -1.0667911767959595, -2.1755447387695312, -1.845846176147461, -6.773364543914795, -1.6112593412399292, -1.5740151405334473, 0.769822359085083, 0.4261709153652191, -2.261221170425415, -1.9437546730041504, -1.8926950693130493, -1.7906838655471802, -1.8505183458328247, -1.8123387098312378, 0.3296405076980591, -1.1944637298583984, -2.2528421878814697, -1.993539810180664, -1.5635275840759277, -0.6428982019424438, -1.654792070388794, -1.634527564048767, 1.1783809661865234, -1.511512041091919, -1.2514039278030396, -1.1372365951538086, -3.225945472717285, -3.4711992740631104, -0.255437970161438, -1.661489486694336, 0.04046904295682907, 0.11920715868473053, -0.9848525524139404, -1.9816033840179443, 0.39178165793418884, -0.222597137093544, -1.4305715560913086, -1.5519620180130005, -1.2010095119476318, -1.3291617631912231, -0.9976070523262024, -0.7786450386047363, 0.0013313444796949625, 3.769132614135742, 1.9853181838989258, 1.8109837770462036, 0.8675318360328674, 0.43654513359069824, 0.2612902820110321, 0.3261204659938812, -3.6511151790618896, -0.10662383586168289, 0.14573165774345398, -1.8760493993759155, -6.953881740570068, -3.3156826496124268, -0.8301648497581482, -0.9680281281471252, -1.645704746246338, -4.893914699554443, -2.782379627227783, -1.8480205535888672, -1.8941502571105957, -2.4906749725341797, -0.15624096989631653, -1.651524305343628, -1.68096125125885, -1.3215241432189941, -1.8222824335098267, -1.9439116716384888, -4.718743801116943, -4.76596736907959, -0.08982709050178528, -0.6884569525718689, -1.802567481994629, -4.605197429656982, -2.41015362739563, -1.4588706493377686, -0.7951393723487854, -1.9884803295135498, -2.247915267944336, -1.0868651866912842, -2.1585001945495605, -2.204909563064575, -1.4571914672851562, -1.7820578813552856, -2.8570802211761475, -2.1592586040496826, -2.078396797180176, -4.92418098449707, -1.1851047277450562, -1.3947882652282715, -0.7543351650238037, -0.9022685885429382, 4.902259349822998, -0.22408047318458557, 0.7281573414802551, -1.4075641632080078, -0.715082585811615, -0.9525408744812012, -1.1099210977554321, -2.0706253051757812, -1.281381607055664, -13.391276359558105, -1.6157174110412598, -1.3400325775146484, 0.4457109570503235, 0.4530270993709564, -2.8723087310791016, -1.8866392374038696, -1.9237309694290161, -1.9212015867233276, -1.7973734140396118, -1.8382846117019653, -0.00027607381343841553, -3.3417277336120605, -2.477571964263916, -2.0472254753112793, -1.4952001571655273, -0.4540436863899231, -1.615282654762268, -0.8411869406700134, 1.0563337802886963, -1.2980713844299316, -0.7343506217002869, -0.7194597721099854, -1.9239697456359863, -3.9020168781280518, 2.364347457885742, -1.1776623725891113, 0.01981297880411148, 0.07497745007276535, -0.8942105770111084, -4.8766350746154785, 0.475401371717453, -0.09648885577917099, -1.5122263431549072, -1.6838487386703491, -1.1105148792266846, -1.3744908571243286, -0.9601327776908875, -0.8057340979576111, 0.021039912477135658, 3.751394271850586, 2.0616366863250732, 1.7273722887039185, 0.8787944912910461, 0.46091437339782715, 0.24818670749664307, 0.43636125326156616, -4.1876091957092285, 0.07805332541465759, 0.19747062027454376, -1.6799999475479126, -6.877641201019287, -3.3294928073883057, -0.8415812849998474, -1.139517903327942, -1.6007468700408936, -4.9306817054748535, -2.7383718490600586, -1.8440966606140137, -1.8537633419036865, -2.523174285888672, -0.12742355465888977, -1.5189168453216553, -1.5959528684616089, -1.3657605648040771, -1.8129609823226929, -1.7598079442977905, -4.570714950561523, -4.956765651702881, -0.17040660977363586, -0.5293206572532654, -1.773510217666626, -4.618059158325195, -2.5722224712371826, -1.6561448574066162, -0.7750309705734253, -2.1722538471221924, -2.259584665298462, -0.9980576038360596, -2.1489956378936768, -2.380957841873169, -1.409928798675537, -1.7049132585525513, -3.038337469100952, -3.5699002742767334, -1.9351481199264526, -4.8228864669799805, -1.1860252618789673, -1.4451255798339844, -0.6577172875404358, -0.8714030981063843, 4.828023433685303, -0.09004434943199158, 0.6540361046791077, -1.6343858242034912, -0.11864355206489563, -1.0188268423080444, -0.9150443077087402, -2.0789918899536133, -1.3079864978790283, -13.514573097229004, -1.7025418281555176, -1.3289794921875, 0.26978325843811035, 0.4417278468608856, -2.8209352493286133, -1.7564946413040161, -1.8812094926834106, -1.8900986909866333, -1.816015601158142, -1.794859528541565, 0.09237288683652878, -3.304506301879883, -2.5945963859558105, -1.8982394933700562, -1.6683275699615479, -0.4192184507846832, -1.602596640586853, -1.0238356590270996, 1.0494225025177002, -1.4263620376586914, -0.877532958984375, -0.8092076182365417, -1.909623622894287, -3.8817265033721924, -0.2928352952003479, -1.319711685180664, -0.024696294218301773, -0.046715836971998215, -1.0360255241394043, -4.939148902893066, -0.35044461488723755, 0.1329326182603836, 1.5021412372589111, 1.6484538316726685, 1.3356163501739502, 1.3763805627822876, 0.9870052337646484, 0.754561185836792, -0.2256736159324646, -3.6136341094970703, -2.1328065395355225, -1.8531798124313354, -0.8785865902900696, -0.3169863224029541, -0.3868444561958313, -0.24436858296394348, 4.012304782867432, 0.02375192381441593, -0.24277639389038086, 1.8004950284957886, 6.935372829437256, 3.426699161529541, 0.8592419624328613, 1.032814383506775, 1.7134208679199219, 4.780606746673584, 2.86541748046875, 1.7310099601745605, 1.9240026473999023, 2.5437889099121094, 0.27860119938850403, 1.4710638523101807, 1.6389554738998413, 1.2638041973114014, 1.743768572807312, 1.7848631143569946, 4.71369743347168, 4.928501605987549, 0.15834453701972961, 0.7107180953025818, 1.8689508438110352, 4.777875900268555, 2.3847639560699463, 1.508744478225708, 0.835726797580719, 2.089186429977417, 2.0611276626586914, 1.1264986991882324, 1.9246842861175537, 2.274366617202759, 1.415815830230713, 1.7813833951950073, 3.043009042739868, 3.579392671585083, 2.3239729404449463, 4.92617654800415, 1.0594977140426636, 1.541938066482544, 0.8909697532653809, 1.058164119720459, -4.953646183013916, 0.2314254343509674, -0.5010726451873779, 1.565821886062622, -0.08498072624206543, 1.0906447172164917, 1.1145848035812378, 2.2613987922668457, 1.3353822231292725, 13.459002494812012, 1.8276127576828003, 1.2087664604187012, -0.40858638286590576, -0.5224865078926086, 2.7963709831237793, 1.9214364290237427, 1.9604321718215942, 1.9101260900497437, 1.8663493394851685, 1.8928200006484985, 0.06411264836788177, 3.117678165435791, 2.5259783267974854, 2.0453412532806396, 1.50504732131958, 0.3203665614128113, 1.6099389791488647, 0.9770769476890564, -1.0374064445495605, 1.4239075183868408, 0.7744860053062439, 0.6815458536148071, 1.8055014610290527, 3.9175875186920166, 0.33965864777565, 1.2550137042999268, -0.11277629435062408, 0.05003013089299202, 0.9106857776641846, 4.843127250671387, 0.1744583249092102, -0.37111008167266846, -0.35408395528793335, -0.41920167207717896, -0.36892133951187134, -0.2612716853618622, -0.14953355491161346, -0.1300797462463379, -0.09386436641216278, 0.761993944644928, 0.4514209032058716, 0.2590124309062958, 0.22955216467380524, 0.08110851049423218, 0.01636931672692299, 0.1712530255317688, -0.9473946690559387, -0.07730364799499512, -0.16367153823375702, -0.32336774468421936, -0.5637524724006653, -0.6568450331687927, -0.28498411178588867, -0.15401208400726318, -0.32957980036735535, -1.0395737886428833, -0.49654823541641235, -0.4513591229915619, -0.3642613887786865, -0.5568627715110779, -0.0648648738861084, -0.2386358231306076, -0.2566433846950531, -0.16444730758666992, -0.46484479308128357, -0.5066210627555847, -1.0130572319030762, -0.9108573198318481, 0.012854591012001038, -0.18211284279823303, -0.4209402799606323, -1.1025869846343994, -0.542112410068512, -0.45608821511268616, -0.11394987255334854, -0.41872701048851013, -0.36886587738990784, -0.13483592867851257, -0.4383373558521271, -0.5084582567214966, -0.28491610288619995, -0.2893811762332916, -0.7073707580566406, -0.43783071637153625, -0.39699429273605347, -0.9675461649894714, -0.1085149496793747, -0.32067587971687317, -0.06519453227519989, -0.1662413477897644, 1.094576358795166, -0.08060134202241898, 0.12996505200862885, -0.28078484535217285, -0.2166997492313385, -0.20002377033233643, -0.13120070099830627, -0.42927756905555725, -0.28649941086769104, -2.780503273010254, -0.2695549428462982, -0.1906566619873047, 0.30543598532676697, 0.164018914103508, -0.5054414868354797, -0.3729121685028076, -0.33963578939437866, -0.3565989136695862, -0.4127393364906311, -0.4575944244861603, -0.09176865220069885, -4.205863952636719, -0.6541123986244202, -0.4885105490684509, -0.30788320302963257, -0.04713185131549835, -0.2438165545463562, -0.17967073619365692, 0.15327642858028412, -0.26989424228668213, -0.22979912161827087, -0.28838005661964417, -0.48686540126800537, -0.7482866048812866, 0.019190819934010506, -0.29602205753326416, -0.026977213099598885, 0.04035473242402077, -0.08245032280683517, -0.9105329513549805, -2.2175211906433105, 6.651045322418213, 2.1264047622680664, -1.8714848756790161, 0.7427754402160645]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (1.37, 1.54)}}, 'et0_eta0': {'discriminator': {'threshold': -0.29000082314014436, 'nodes': [100, 5, 1], 'bias': [-0.2670447528362274, -0.05183012783527374, -0.04433061555027962, -0.01940568909049034, 0.12205582112073898, -0.06483051925897598], 'weights': [3.3673596382141113, 0.9538314938545227, 0.12469179928302765, 0.14793643355369568, 0.12292370945215225, 0.14244332909584045, 0.05363531783223152, 0.2727659046649933, 0.20127421617507935, 5.471673488616943, -2.2917232513427734, -56.35588836669922, -7.483811855316162, 238.3892364501953, 23.928579330444336, -0.6855018138885498, -0.6985949873924255, -0.7719336152076721, -0.9904337525367737, -0.7493525147438049, -0.5686030387878418, -0.3108186721801758, -0.3364672362804413, -0.5717927813529968, -0.4712197780609131, -0.5751597285270691, 0.02359110116958618, -0.14523304998874664, -0.4195497930049896, -0.2937079966068268, -0.3265480399131775, -0.11184488981962204, -0.05166345834732056, -0.36686262488365173, -0.035324838012456894, -0.07183662056922913, 0.023579295724630356, -0.2239261269569397, 1.9652268886566162, 0.3540093004703522, 0.10157498717308044, -0.0472295768558979, -0.10854905098676682, -6.528909206390381, 0.4770190119743347, -5.920959949493408, -0.02509407512843609, 0.22881318628787994, 0.006710990332067013, 0.0423034206032753, 0.14291903376579285, 0.0028798754792660475, -0.06435569375753403, -0.09297280013561249, -0.01750238984823227, 0.16881519556045532, 0.013577342964708805, 0.3107413947582245, 0.5289624929428101, 0.05295141041278839, 0.002214140724390745, 0.7793008685112, 0.18886373937129974, 0.1399174928665161, 0.6809924244880676, 0.42242231965065, 0.23942527174949646, 0.17712023854255676, 0.19137126207351685, 0.30833229422569275, 0.5223438739776611, 0.2528019845485687, 0.03141295164823532, -0.2613995373249054, 0.002613998018205166, -0.12414177507162094, -0.1906363070011139, 0.15977433323860168, -0.010347102768719196, 0.1317352056503296, -2.0228161811828613, -0.733443558216095, -0.5982164740562439, 0.9739988446235657, -0.08812043070793152, -0.0462716706097126, 0.14372354745864868, 0.2767515778541565, -0.5808297991752625, 1.0944346189498901, 0.5372741222381592, 0.26997098326683044, 33.65594482421875, -0.10441919416189194, 0.10954698920249939, 0.39139625430107117, -0.5889819264411926, -0.13627903163433075, 0.031897131353616714, 0.402034729719162, -2.0622398853302, -0.47971126437187195, 0.05248516798019409, 0.5396581888198853, 0.11854470521211624, -0.03221516311168671, -0.17516742646694183, 0.07521197944879532, -1.1585129499435425, -2.037691116333008, 0.15316523611545563, 2.930943250656128, 4.300116062164307, 6.325833797454834, 3.688586711883545, 3.7707881927490234, 1.9932185411453247, 2.1685900688171387, 2.4550859928131104, 2.3979403972625732, 1.65420663356781, 1.431644082069397, 1.121984601020813, 1.3598629236221313, 1.3334085941314697, 1.4652296304702759, 0.41984719038009644, 0.6867101788520813, 0.9859870672225952, 0.8796342611312866, 1.1492809057235718, 0.9294144511222839, 0.6806155443191528, 0.9390397667884827, 0.6808654069900513, 0.2863014042377472, 0.49021103978157043, 0.6875697374343872, 0.43727371096611023, 0.6431524753570557, 0.4541271924972534, 0.3779536783695221, 0.32298752665519714, 0.1940022110939026, -0.3520684540271759, 0.4393394887447357, 0.23620043694972992, 0.15122626721858978, 0.36370429396629333, 0.2137497365474701, 0.032892245799303055, 0.43780162930488586, 0.358362078666687, 0.3809700608253479, 0.25069960951805115, 0.18334415555000305, 0.11974256485700607, -0.1486794501543045, -0.789038360118866, 0.17166413366794586, 0.04614442586898804, -0.13616326451301575, 0.15864013135433197, 0.13319332897663116, -0.9418767690658569, -0.4598008692264557, 0.17115722596645355, 0.04908979684114456, -0.3070511221885681, -0.46989622712135315, -0.2992255389690399, 0.0446004793047905, -0.3222765326499939, 0.027071138843894005, 0.5913528203964233, 0.5946903824806213, 0.8207100629806519, 0.5013989806175232, 0.24765194952487946, 0.07745945453643799, 4.8783698081970215, 1.909494161605835, 1.50694739818573, 0.8237159252166748, 0.681323766708374, 0.6196965575218201, 0.6132150292396545, -0.29694995284080505, 1.573716402053833, 1.286145567893982, 0.42683544754981995, -0.18397630751132965, 1.587890386581421, 0.8797012567520142, 0.24249505996704102, -0.3894813060760498, 1.8243526220321655, 0.7878984808921814, 0.34737083315849304, -0.28171148896217346, 2.1819846630096436, 0.6837678551673889, -0.11844699829816818, 0.11501149833202362, 0.10053221136331558, 0.10499868541955948, 0.09244313091039658, 0.0955471470952034, 1.1564537286758423, 1.933864712715149, 0.10591151565313339, -1.899510145187378, -4.402230739593506, -6.009922027587891, -3.5053625106811523, -3.7243921756744385, -2.1733078956604004, -2.4498023986816406, -2.705738067626953, -2.582272529602051, -1.610629916191101, -1.3316141366958618, -1.1391551494598389, -1.4406028985977173, -1.411054253578186, -1.4956468343734741, -0.6153815984725952, -0.7629891633987427, -1.0301345586776733, -0.7873314023017883, -1.2381641864776611, -1.1041938066482544, -0.6400653123855591, -0.8345872759819031, -0.5066656470298767, -0.6872684955596924, -0.5841124653816223, -0.8501527309417725, -0.2372208535671234, -0.4529244303703308, -0.46652692556381226, -0.4378315806388855, -0.5341199040412903, -0.32230648398399353, 0.5129676461219788, -0.21320122480392456, -0.059549931436777115, 0.08367621153593063, -0.27304521203041077, -0.01009787991642952, -0.23602382838726044, -0.341096967458725, -0.3086916208267212, -0.3472224175930023, -0.3764722943305969, -0.22513264417648315, -0.10309196263551712, 0.0815345048904419, 0.6847986578941345, -0.2124079018831253, -0.007125559262931347, 0.2023378312587738, -0.12009096145629883, -0.30767735838890076, 1.0986933708190918, 0.41850510239601135, -0.09262259304523468, -0.19774480164051056, 0.3572198152542114, 0.5051928758621216, 0.33715784549713135, -0.02062220871448517, 0.31153354048728943, 0.053906094282865524, -0.4416230022907257, -0.6985936760902405, -0.7678687572479248, -0.4290647804737091, -0.3711625337600708, -0.15430736541748047, -4.864480495452881, -1.9816323518753052, -1.3885812759399414, -1.0061266422271729, -0.4656505584716797, -0.6132838129997253, -0.5853897333145142, 0.27578455209732056, -1.6483615636825562, -1.1072192192077637, -0.23469579219818115, 0.13465337455272675, -1.596671462059021, -0.9030832052230835, -0.21226856112480164, 0.28404566645622253, -1.6349564790725708, -0.6653254628181458, -0.3474262058734894, 0.2672330141067505, -2.147552490234375, -0.6583167314529419, 0.01303065288811922, 0.5524669885635376, 0.06811608374118805, -0.07579807192087173, -0.17176733911037445, -0.10420197993516922, -1.009429931640625, -1.8512049913406372, -0.08785201609134674, 1.987621784210205, 4.3664469718933105, 6.418051719665527, 3.560272216796875, 3.686209201812744, 2.0355031490325928, 2.2862768173217773, 2.5611984729766846, 2.3746848106384277, 1.81546151638031, 1.4301809072494507, 1.157996654510498, 1.3695895671844482, 1.5349611043930054, 1.4142025709152222, 0.4753105938434601, 0.7501814961433411, 0.943249523639679, 0.871303379535675, 1.143628716468811, 1.036559820175171, 0.5004879832267761, 0.8888629674911499, 0.5656195282936096, 0.5616952180862427, 0.6064168810844421, 0.8109273910522461, 0.24027834832668304, 0.4154175817966461, 0.5288015007972717, 0.4328177571296692, 0.33573034405708313, 0.3299432098865509, -0.4288945496082306, 0.31871163845062256, 0.05238587036728859, 0.11161775141954422, 0.3658129870891571, 0.13098779320716858, 0.20487791299819946, 0.31112128496170044, 0.27915164828300476, 0.353778213262558, 0.3688020706176758, 0.07108382135629654, 0.27720776200294495, -0.21031315624713898, -0.6032363772392273, 0.0506373792886734, 0.21133626997470856, -0.19123466312885284, 0.13970975577831268, 0.12329836189746857, -1.0521756410598755, -0.35878661274909973, 0.16087280213832855, 0.05987543240189552, -0.31787461042404175, -0.4419977366924286, -0.2635335624217987, 0.10338404029607773, -0.2344905287027359, -0.15982739627361298, 0.55088210105896, 0.6106911301612854, 0.7485193610191345, 0.5122960805892944, 0.45970186591148376, 0.2425527274608612, 4.819601535797119, 2.057878017425537, 1.310017704963684, 0.9128594994544983, 0.5672999620437622, 0.7760669589042664, 0.5864931344985962, -0.24902451038360596, 1.663435697555542, 1.207999348640442, 0.3486822843551636, -0.16429470479488373, 1.6904305219650269, 1.0178347826004028, 0.24724605679512024, -0.39276033639907837, 1.8282784223556519, 0.7873908877372742, 0.34983429312705994, -0.28356850147247314, -2.0456159114837646, -0.6278152465820312, 0.23125514388084412, 0.024553675204515457, 0.1432483047246933, -0.18588314950466156, -0.15102198719978333, 0.03273387253284454, -1.2207673788070679, -2.109090566635132, -0.24524728953838348, 1.9536356925964355, 4.376587867736816, 6.384340286254883, 3.6282994747161865, 3.685394763946533, 2.0502471923828125, 2.4934184551239014, 2.5604565143585205, 3.4589407444000244, 1.7075806856155396, 1.4917783737182617, 1.1893131732940674, 1.3703690767288208, 1.5095096826553345, 1.4892301559448242, 2.300849199295044, 0.6193945407867432, 1.090956211090088, 0.7602118253707886, 1.2824450731277466, 1.0779026746749878, 0.6622447371482849, 0.9970871806144714, 0.6264367699623108, 0.6854411959648132, 0.6597336530685425, 0.9048330783843994, 0.37142258882522583, 0.4627552628517151, 0.4762515425682068, 0.4325876533985138, 0.5053542852401733, 0.30256161093711853, -0.47468701004981995, 0.2963486909866333, 0.2587302625179291, 0.09204568713903427, 0.10675150901079178, 0.23103202879428864, 0.14975279569625854, 0.2691170573234558, 0.4239700436592102, 0.25140300393104553, 0.23678719997406006, 0.13798175752162933, 0.2639019191265106, 0.09032312035560608, -0.6554651856422424, 0.15702813863754272, 0.1864757388830185, -0.12346725910902023, 0.044918108731508255, 0.24728088080883026, -1.1188005208969116, -0.38047513365745544, 0.036939334124326706, 0.24591459333896637, -0.2568366229534149, -0.43444153666496277, -0.2768213152885437, 0.12258082628250122, -0.23953522741794586, -0.1821790635585785, 0.5271991491317749, 0.8022661209106445, 1.0044928789138794, 0.4672382175922394, 0.41317373514175415, 0.10818641632795334, 4.848023891448975, 1.9197083711624146, 1.2731341123580933, 0.8431903719902039, 0.5690756440162659, 0.8230016827583313, 0.5954012274742126, -0.27462753653526306, 1.6079009771347046, 1.28499174118042, 0.4452112317085266, -0.2728967070579529, 1.7170624732971191, 1.031516432762146, 0.27498331665992737, -0.19250011444091797, 1.8049074411392212, 0.6921998858451843, 0.4936983585357666, -0.2593942880630493, 0.26210880279541016, -1.2625597715377808, 1.5303987264633179, -1.5684280395507812, -1.0793853998184204]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (0, 20), 'etaBin': (0, 0.8)}}, 'et0_eta1': {'discriminator': {'threshold': -0.3000008136034012, 'nodes': [100, 5, 1], 'bias': [0.07912710309028625, -0.16592642664909363, 0.055430684238672256, -0.014784482307732105, -0.11522287130355835, -0.12357601523399353], 'weights': [1.2840709686279297, 1.0852738618850708, -1.369315505027771, -1.0972867012023926, -1.0591846704483032, -0.5868259072303772, -0.5033472180366516, 0.45805636048316956, 3.0219221115112305, 6.521931171417236, 0.7696393132209778, -1.1207029819488525, -9.013591766357422, -8.786622047424316, -16.484954833984375, -8.003006935119629, -11.550616264343262, -7.426932334899902, -14.481563568115234, -9.667226791381836, -6.513081073760986, -14.283663749694824, -7.581745624542236, -3.855841875076294, -6.146892547607422, -4.966252326965332, -3.899606227874756, -8.743027687072754, -9.825140953063965, -4.15073299407959, -3.7676351070404053, -8.134994506835938, -1.7930970191955566, -2.957526445388794, -7.309337139129639, -2.869568347930908, -1.2411209344863892, -0.4964625835418701, -0.6609916090965271, -8.12388801574707, 0.07207289338111877, -0.7860850691795349, -0.11284670233726501, -1.487958312034607, -0.020855560898780823, -0.8731772303581238, -0.8096827268600464, 0.0732320249080658, -0.3150261640548706, 0.02905810996890068, -0.995207667350769, -1.0919345617294312, -0.15127159655094147, -1.3341938257217407, -0.8651060461997986, -0.3385183811187744, -1.0255811214447021, -1.0689022541046143, -1.055164098739624, -1.282610297203064, -1.202532172203064, -1.0187021493911743, -0.0031027160584926605, 0.4577540159225464, 1.0728589296340942, -1.665403127670288, 0.27040785551071167, 1.377341628074646, -1.037282943725586, -1.1434032917022705, -1.0827538967132568, -0.23808342218399048, 0.2897590100765228, 0.23347310721874237, -1.439068078994751, -2.127610206604004, -2.681788444519043, -1.8412806987762451, -0.6987819075584412, -0.674576461315155, -18.550996780395508, -35.748653411865234, -5.584532737731934, -4.5014142990112305, -1.9423075914382935, -1.8683924674987793, -2.301374912261963, -2.0529160499572754, -3.8626766204833984, -1.3899667263031006, -0.4271785020828247, 0.06509584188461304, -5.1670026779174805, -7.045017242431641, -0.6467087864875793, -0.08863567560911179, 0.6757574081420898, -4.818759441375732, -1.6520500183105469, -0.1650698035955429, -1.3969467878341675, -1.0588984489440918, 1.201957106590271, 1.0305925607681274, 0.5654529929161072, 0.7016580104827881, 0.5683532357215881, -0.4255702793598175, -0.6322590708732605, -6.661533355712891, -0.8094892501831055, 1.136033058166504, 8.776829719543457, 8.133058547973633, 15.86755084991455, 11.914630889892578, 11.58179759979248, 7.319742679595947, 7.704929828643799, 4.131524562835693, 6.025197505950928, 8.556721687316895, 6.642760276794434, 4.042305946350098, 8.797414779663086, 4.97426700592041, 3.0041821002960205, 4.278590679168701, 3.5625953674316406, 4.250214099884033, 3.4392945766448975, 3.757570505142212, 1.6601496934890747, 2.351585865020752, 6.8001484870910645, 2.0337579250335693, 0.347318559885025, 0.35584232211112976, 0.5493640899658203, 3.4181058406829834, -1.800899624824524, 0.8725427985191345, -0.6859787106513977, 0.375021368265152, -0.017898498103022575, -0.76921546459198, 1.0174942016601562, -0.204852893948555, -0.18405576050281525, -0.04502330720424652, 1.0492870807647705, 1.1943683624267578, 0.16519154608249664, 1.198194146156311, 0.9113389253616333, 0.2884261906147003, 0.8527284860610962, 0.9921883940696716, 1.1452449560165405, 1.091947317123413, 1.2275621891021729, 1.0474659204483032, -0.02204449288547039, -0.3030826449394226, -1.834603190422058, 2.953547477722168, -0.25386515259742737, -3.2523655891418457, 0.9597296714782715, 1.0528501272201538, 1.0732698440551758, 0.29469817876815796, -0.2843596339225769, 0.08665354549884796, 1.3373972177505493, 2.6264841556549072, 2.9760782718658447, 1.5219119787216187, 0.28468286991119385, 0.65105801820755, 29.478986740112305, 19.256484985351562, 3.654445171356201, 3.2975962162017822, 1.9612878561019897, 1.9934256076812744, 2.1262357234954834, 2.747645616531372, 2.1848957538604736, 0.9484288692474365, 0.42111948132514954, 0.011531686410307884, 1.7289865016937256, 4.474213600158691, 0.5794274806976318, 0.14325931668281555, -0.6980209946632385, 1.689314842224121, 1.680753231048584, 0.43043363094329834, 1.4198896884918213, 1.1724351644515991, -1.2676851749420166, -1.0225167274475098, -1.1697516441345215, -0.652888298034668, -0.4285288155078888, 0.46871963143348694, 6.038356304168701, 7.608031272888184, 0.7189407348632812, -0.7749762535095215, -8.64765739440918, -8.643425941467285, -16.62508201599121, -7.422845363616943, -7.396313190460205, -7.358218669891357, -20.10141372680664, -9.51939582824707, -6.677906036376953, -8.46608829498291, -6.1652679443359375, -4.059062480926514, -4.127655982971191, -4.611688613891602, -4.166707992553711, -8.83194637298584, -5.011529445648193, -4.232881546020508, -3.480527639389038, -8.003325462341309, -1.9020739793777466, -5.648332118988037, -7.834463119506836, -3.0236034393310547, -1.3015278577804565, -0.5348185300827026, -0.575002133846283, -8.022153854370117, 0.053185638040304184, -1.0732767581939697, -1.2053927183151245, -14.197378158569336, 0.12662771344184875, -0.7601639628410339, -0.9760968089103699, 0.1690288484096527, -0.44749560952186584, -0.09660908579826355, -0.8458526134490967, -1.0971641540527344, -0.15835420787334442, -1.3222320079803467, -0.7642360329627991, -0.14284765720367432, -1.093598484992981, -1.0231292247772217, -1.1242387294769287, -1.3498948812484741, -1.354475498199463, -0.9810306429862976, 0.04331092908978462, 0.1815822720527649, 1.2831919193267822, -2.0378880500793457, 0.20876015722751617, 1.4835833311080933, -0.8552014231681824, -1.1035544872283936, -1.0856980085372925, -0.313055157661438, 0.472921222448349, 0.016651004552841187, -1.32878577709198, -1.4505106210708618, -2.7862777709960938, -1.927201271057129, -1.9413669109344482, -0.671669065952301, -19.203067779541016, -43.51567459106445, -5.260374546051025, -3.8644309043884277, -1.9614670276641846, -2.033909559249878, -2.29429030418396, -1.7797765731811523, -5.82073974609375, -3.339376926422119, -0.2603709101676941, -0.09782269597053528, -7.246058464050293, -7.146083831787109, -0.7044716477394104, -0.05370618402957916, -0.5264856219291687, -9.590896606445312, -1.8590527772903442, -0.3807181715965271, -3.4317924976348877, -2.387251138687134, -1.1785171031951904, 0.16945688426494598, 0.023112919181585312, 0.125418558716774, -0.058877550065517426, -0.1212882325053215, -0.5480054020881653, -1.3482944965362549, -0.5728951096534729, 4.2049431800842285, 4.665281772613525, 7.559491157531738, -1.0751097202301025, 4.99504280090332, 3.9325902462005615, 5.595550060272217, 5.287074089050293, 0.6213304996490479, 1.1315468549728394, 0.9817242622375488, 0.4577907621860504, -3.5285890102386475, 0.7720510959625244, -0.01893536001443863, 0.10369762778282166, 0.7110373973846436, 0.6112645268440247, 0.5180173516273499, 0.6054081916809082, 0.5625311136245728, 0.1062650978565216, 0.3081289827823639, 0.3381759226322174, 0.030843429267406464, -1.1930210590362549, -0.6945692300796509, 0.14775222539901733, 0.17419017851352692, -1.1252453327178955, -0.16901077330112457, -0.7228468060493469, -0.6231184005737305, -0.2387773096561432, 0.02976912632584572, 0.2557046711444855, -0.11299484223127365, -1.6002718210220337, 0.08276022225618362, 0.10218506306409836, 0.35337337851524353, -0.09017346054315567, 0.3069175183773041, 0.125926673412323, 0.1369849443435669, -0.06943865865468979, 0.30263787508010864, 0.1388980746269226, 0.3707877993583679, 0.18670988082885742, 0.29261356592178345, 0.009834211319684982, -0.10565973073244095, -0.3551506996154785, 0.23803870379924774, -0.1629188060760498, -0.8372681736946106, 0.26768946647644043, 0.1463763266801834, 0.19380158185958862, -0.025454001501202583, -0.16451886296272278, 0.10199533402919769, -0.19431482255458832, 0.2841373085975647, -1.5142260789871216, -0.15219049155712128, 0.0282551571726799, -0.29358410835266113, -15.149063110351562, -51.47811508178711, -2.3692684173583984, -2.042296886444092, 0.25086161494255066, 0.07330512255430222, 0.3385659158229828, 0.4951131045818329, -1.3850706815719604, -0.48017585277557373, 0.2557167112827301, -0.26179957389831543, -4.3300371170043945, -6.841148376464844, -0.3751208782196045, -0.09754855930805206, -0.39967072010040283, -4.620398044586182, 0.3564530909061432, 0.20330394804477692, -1.2459572553634644, -56.96366882324219, -0.7495980262756348, 0.011348708532750607, 0.11209464818239212, 9.955830574035645, -0.06092618405818939, -13.085612297058105, -0.2878324091434479, -0.2512703537940979, -0.49577951431274414, 1.1158549785614014, 7.858916759490967, 7.4706292152404785, 1.018741250038147, -7.3854756355285645, -2.5500779151916504, 0.9552017450332642, 0.4499334692955017, -0.04558247700333595, 0.29995816946029663, 0.3665873110294342, 0.10671399533748627, -1.1987484693527222, -0.5400920510292053, -0.6814135909080505, 0.13564755022525787, 0.1608869880437851, -104.66850280761719, -169.39642333984375, 0.07884839177131653, -102.97691345214844, 0.02893991209566593, 0.05247867479920387, 0.07826483249664307, 0.022828275337815285, -0.11322685331106186, -0.13274729251861572, 0.01461065374314785, 0.1906159669160843, -0.2515842914581299, 0.07994776964187622, -0.07447956502437592, -0.002124455524608493, -0.06016562134027481, 0.022761227563023567, 0.1023334488272667, 0.03907359391450882, -0.32530465722084045, -0.023200180381536484, 0.17184220254421234, -0.8465481400489807, -0.026417547836899757, 0.05951248109340668, 0.0580524280667305, 0.16763614118099213, -0.5651357173919678, 0.18924766778945923, -0.04362701624631882, 56.32249069213867, 0.03974832594394684, 0.09963121265172958, -0.0235025342553854, 0.0804140567779541, 60.060550689697266, 0.12103980034589767, 0.1095990240573883, 0.0033664556685835123, -41.487667083740234, 0.022729652002453804, 0.1605251133441925, -27.0974178314209, 0.06675954163074493, 0.3092840015888214, 3.8759312629699707, -0.061421528458595276, -0.3207261264324188, 0.06679592281579971, 0.15752357244491577, -0.27046674489974976, 0.6729123592376709, 15.326720237731934, -0.3765791356563568, -0.45191535353660583, 0.03407667577266693, 0.11166712641716003, 0.04790399968624115, 7.216158866882324, -6.869367599487305, -0.8730899691581726, 0.1303199678659439, 0.4529549777507782, -7.460299015045166, -4.544906139373779, -0.011660169810056686, -0.3016832172870636, -3.282896041870117, -3.0215036869049072, 0.21493300795555115, -0.25750163197517395, 1.067456841468811, -0.8189592361450195, 0.5232970118522644, -1.397671103477478, -0.22574138641357422]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (0, 20), 'etaBin': (0.8, 1.37)}}, 'et1_eta1': {'discriminator': {'threshold': 0.21499871015548705, 'nodes': [100, 5, 1], 'bias': [0.07878746837377548, 0.08677341043949127, -0.09062515199184418, 0.10544684529304504, -0.1438593566417694, -0.21356718242168427], 'weights': [1.5659047365188599, 0.9648809432983398, -0.7304093241691589, -0.8659931421279907, -0.5332820415496826, -0.6363723874092102, -0.6183121204376221, 0.5051336884498596, 1.8755152225494385, 4.341065883636475, 1.1710530519485474, -6.505293846130371, -17.135475158691406, -13.428292274475098, -6.281867980957031, -5.9451751708984375, -7.6033735275268555, -4.792149066925049, -10.520689964294434, -6.9343976974487305, -6.146981239318848, -5.211281776428223, -4.789704322814941, -5.944562911987305, -4.862949371337891, -3.8030171394348145, -2.786053419113159, -2.33024001121521, -2.247626543045044, -4.0970234870910645, -4.164268493652344, -2.3015685081481934, -1.5032230615615845, -2.2909789085388184, -1.96016263961792, -1.5655924081802368, -1.4894702434539795, -1.505671739578247, -2.519827365875244, -1.4610744714736938, -1.9143593311309814, -2.332859992980957, -0.9403269290924072, -0.46448612213134766, -0.41769787669181824, -1.0052388906478882, -1.2059849500656128, -0.8606165051460266, -0.9873995184898376, -1.755239725112915, -0.9632722735404968, -1.0134726762771606, -0.6971625685691833, 0.7132185697555542, -0.92207270860672, 0.5220871567726135, -1.1433005332946777, -0.9014135599136353, -1.107071042060852, 0.7974112629890442, -1.0199843645095825, -0.7142215967178345, -0.13026972115039825, 0.556758463382721, -0.4890362024307251, -0.26106613874435425, -0.5221725702285767, 1.1105656623840332, 0.45916321873664856, 0.863219141960144, 1.188941478729248, 1.289387822151184, 0.41741055250167847, 0.2294377237558365, -0.863728404045105, -1.2451235055923462, -1.4489322900772095, -1.1300575733184814, -0.676684558391571, 0.04219311475753784, -11.073896408081055, -5.958713054656982, -3.7205474376678467, -2.2830512523651123, -2.058666706085205, -1.5542536973953247, -1.684546709060669, -1.4801374673843384, -1.6644035577774048, -1.1295888423919678, -0.1065991148352623, -0.06916838884353638, -2.6380465030670166, -2.2330574989318848, -0.6323823928833008, -0.09574839472770691, -3.526456117630005, -1.6932258605957031, -0.7307733297348022, -0.07618052512407303, 1.6140717267990112, 0.9083461761474609, -0.7463324069976807, -0.8311288952827454, -0.6001104712486267, -0.7199063301086426, -0.5407007932662964, 0.4181956350803375, 1.8925896883010864, 4.2272419929504395, 1.1489477157592773, -6.5041584968566895, -17.399843215942383, -13.281804084777832, -6.325334548950195, -6.1422038078308105, -7.677373886108398, -4.601325511932373, -10.71367073059082, -6.997285842895508, -5.289201736450195, -5.228020668029785, -4.903777599334717, -5.832911491394043, -4.8241472244262695, -3.728384017944336, -2.610104560852051, -2.2858636379241943, -2.1417181491851807, -4.03259801864624, -4.108504295349121, -2.1530563831329346, -1.5008083581924438, -2.2566938400268555, -2.0193371772766113, -1.3875036239624023, -1.532289981842041, -1.4816795587539673, -2.671248197555542, -1.4923733472824097, -1.7616122961044312, -2.263819456100464, -1.3079100847244263, -0.4640495777130127, -0.444748193025589, -0.8307403326034546, -1.1547013521194458, -0.9561236500740051, -0.8646517992019653, -1.9384024143218994, -0.8790929913520813, -0.8918765783309937, -0.6544865369796753, 0.6777697801589966, -0.9317110180854797, 0.36096832156181335, -1.1082967519760132, -0.9093438982963562, -0.9813116788864136, 0.9327680468559265, -0.9579432010650635, -0.5382611751556396, -0.08897580206394196, 0.6081376671791077, -0.5213435888290405, -0.2733864188194275, -0.5167144536972046, 1.2780096530914307, 0.6490981578826904, 0.9599391222000122, 1.0825730562210083, 3.2302823066711426, 0.3404315114021301, 0.340251088142395, -0.7044371366500854, -1.343554139137268, -1.4054852724075317, -1.162047028541565, -0.6280338168144226, -0.03413762152194977, -11.0466947555542, -6.0684685707092285, -3.680893659591675, -2.2185206413269043, -1.9613081216812134, -1.766802430152893, -1.538538932800293, -1.5903377532958984, -1.6422985792160034, -1.1004009246826172, -0.3240223526954651, 0.019039610400795937, -2.675464630126953, -2.0370731353759766, -0.715338945388794, 0.07707063108682632, -3.4667811393737793, -1.5985088348388672, -0.6330763101577759, -0.2528696060180664, -1.8960459232330322, -1.0027258396148682, 0.5067305564880371, 0.9527478218078613, 0.5965510010719299, 0.6773747801780701, 0.6360541582107544, -0.37760090827941895, -1.856453776359558, -4.162657737731934, -1.2584235668182373, 4.1336212158203125, 17.259607315063477, 13.476606369018555, 4.914238929748535, 6.1066155433654785, 4.895866394042969, 4.815507888793945, 6.058750152587891, 6.964010715484619, 5.503296852111816, 5.141127586364746, 4.798845291137695, 5.95290994644165, 4.833743572235107, 3.675502061843872, 2.635925531387329, 2.3094918727874756, 2.1458842754364014, 4.1145734786987305, 4.103004455566406, 2.2598516941070557, 1.585964322090149, 2.247837543487549, 2.005201578140259, 1.464837670326233, 1.4872993230819702, 1.401034951210022, 2.5492796897888184, 1.5010583400726318, 1.9074424505233765, 2.2760417461395264, 0.9120607972145081, 0.3335728943347931, 0.4092237949371338, 0.8501002788543701, 0.988400399684906, 0.9440240263938904, 0.8589757680892944, 1.9261723756790161, 0.8281877636909485, 0.8581674695014954, 0.5785379409790039, -0.6083903908729553, 0.7873806953430176, -0.4215870499610901, 1.148308277130127, 1.0334372520446777, 0.8644837141036987, -0.8941318392753601, 0.9214351773262024, 0.7328749895095825, 0.23996219038963318, -0.5538854598999023, 0.4644482731819153, 0.16767346858978271, 0.4057011008262634, -1.1372860670089722, -0.4897937476634979, -0.9502201676368713, -1.1757266521453857, -2.9842140674591064, -0.31299638748168945, -0.22618018090724945, 0.6952820420265198, 1.340942144393921, 1.2970201969146729, 0.9921518564224243, 0.6076508164405823, -0.07443709671497345, 10.887611389160156, 6.003010272979736, 3.7811877727508545, 2.2261946201324463, 1.977461814880371, 1.7278523445129395, 1.7282135486602783, 1.4463237524032593, 1.7224303483963013, 1.0049279928207397, 0.18181076645851135, 0.030149556696414948, 2.480088710784912, 2.040257692337036, 0.5761620998382568, -0.03482672944664955, 3.369814157485962, 1.586854100227356, 0.8215991854667664, 0.1370849609375, -1.9574146270751953, -1.4521090984344482, 0.5122400522232056, 1.244722604751587, 0.46037474274635315, 0.6663198471069336, -0.4412102699279785, -0.40150901675224304, -2.0123469829559326, -4.304135322570801, -1.124223232269287, 1.647291660308838, 0.6924226880073547, 2.7552714347839355, 4.283718109130859, 5.832663536071777, 4.807033061981201, 4.5992112159729, 5.247172832489014, 7.131104946136475, 8.728988647460938, 5.158673286437988, 4.692447662353516, 2.9892163276672363, 4.940555572509766, 3.655928611755371, 2.8859896659851074, 2.2362890243530273, 2.1317646503448486, 4.200026988983154, 4.107665061950684, 2.2438814640045166, 1.4463459253311157, 2.302215099334717, 1.9755080938339233, 1.4332865476608276, 1.5041675567626953, 1.2268800735473633, 2.7608890533447266, 1.5800702571868896, 1.8395700454711914, 2.3027749061584473, 0.9759875535964966, 0.28785842657089233, 0.4544990360736847, 0.9149465560913086, 1.1415576934814453, 0.7402114868164062, 0.9559215307235718, 4.758305072784424, 1.0376139879226685, 0.820446252822876, 0.7723636627197266, 0.11163204908370972, 0.9046827554702759, -0.36732906103134155, 0.9617301821708679, 0.9629319310188293, 0.8458541035652161, -0.8507170081138611, 0.3376142680644989, 0.6558126211166382, 0.265159547328949, -0.6776720881462097, 0.6683129072189331, 0.5833651423454285, 0.494357705116272, -1.1640784740447998, -0.4030939042568207, -0.8857857584953308, -1.1221160888671875, -1.3282568454742432, -0.42802050709724426, -0.38321736454963684, 0.8942076563835144, 1.3892022371292114, 1.4553353786468506, 1.089930534362793, 0.6936759352684021, 0.21910341084003448, 9.287567138671875, 6.0840277671813965, 3.7529306411743164, 2.204075336456299, 2.13480806350708, 1.546316385269165, 1.7612775564193726, 1.529960036277771, 1.7187312841415405, 1.0184004306793213, 0.343377947807312, -0.47148779034614563, 2.7142953872680664, 2.209083318710327, 0.70292729139328, 0.10405966639518738, 3.4039182662963867, 1.7822790145874023, 0.6875117421150208, 0.23780299723148346, -32.8738899230957, -37.81534194946289, -12.075221061706543, -11.468256950378418, 0.1232815831899643, 0.1510644257068634, 0.1675015687942505, -0.1855236440896988, -0.2837938964366913, -0.9961743354797363, -0.08889590948820114, 129.31890869140625, 36.529449462890625, -51.88301467895508, -0.763431191444397, 14.546732902526855, 0.9965766668319702, 0.9104911088943481, 1.0545297861099243, 1.5091228485107422, 1.1056817770004272, 1.0016740560531616, 0.9258796572685242, 0.6225981712341309, 0.44181889295578003, 0.5954463481903076, 0.43079787492752075, 0.5151424407958984, 0.5330643057823181, 0.8831751346588135, 0.5037179589271545, 0.4067386984825134, 0.28257647156715393, 0.37684744596481323, 0.4513453245162964, 0.3809264004230499, 0.2865481674671173, 0.20386245846748352, 0.4507436156272888, 0.21807721257209778, 0.29659008979797363, 0.24266064167022705, 0.20065656304359436, 0.08314323425292969, 0.17437247931957245, 0.2457980513572693, 0.32229387760162354, 0.12069272994995117, 0.30228695273399353, 0.39774054288864136, 0.29997503757476807, -0.38129720091819763, 0.22167706489562988, -4.299506664276123, 0.15059468150138855, 0.01656518317759037, 0.32797038555145264, 0.22446657717227936, 0.23864319920539856, 16.24289321899414, 0.11468687653541565, 0.05124553665518761, -0.009889920242130756, -0.0911027267575264, 0.058842312544584274, 0.1794758290052414, 51.05099868774414, -0.15405355393886566, -0.14565473794937134, 65.0590591430664, -0.10797565430402756, -0.3192015290260315, 0.034379709511995316, 0.10224781185388565, 0.31473875045776367, 0.21954958140850067, 0.21234479546546936, 0.26896044611930847, -2.2880539894104004, -0.40903541445732117, 2.2169198989868164, -10.6796293258667, 0.8226518630981445, 0.36855462193489075, 0.3180898427963257, 0.2192901372909546, 0.23922139406204224, 0.434328556060791, 0.22227689623832703, 0.29848235845565796, 0.09666231274604797, -0.0003206164692528546, 0.6237031817436218, 0.3524901866912842, 0.08637594431638718, -0.07169216871261597, 0.588862419128418, 0.26130980253219604, -0.273329496383667, -0.024277890101075172, 0.9060134887695312, 0.4790574610233307, -1.419803261756897, -2.179589033126831, -0.4510728120803833]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (0.8, 1.37)}}, 'et1_eta0': {'discriminator': {'threshold': 0.28999863862991332, 'nodes': [100, 5, 1], 'bias': [-0.14838357269763947, 0.25144878029823303, -0.11652927845716476, 0.13229498267173767, -0.07578805834054947, 0.13491149246692657], 'weights': [95.19129943847656, 11.741856575012207, 16.02507781982422, 0.10011348128318787, -0.02626211754977703, -0.26236891746520996, 0.1921187937259674, 0.4249992370605469, 0.7690505385398865, 7.012474060058594, 0.19285306334495544, -52.06716537475586, -3.558515787124634, -1.7555186748504639, -2.833900213241577, 0.13553743064403534, -1.0423412322998047, -1.1745504140853882, -1.8256951570510864, -0.9797239899635315, -10.708517074584961, -1.3077757358551025, -0.8748009204864502, -0.7803052663803101, -1.2832530736923218, -1.6770447492599487, -1.9737194776535034, -0.8626661896705627, -0.8816892504692078, -0.7034444212913513, -0.6762866973876953, -0.635657012462616, -0.6396099925041199, -0.3468100130558014, -0.5341374278068542, -0.11195473372936249, -0.40212300419807434, -0.2480846792459488, -0.325020432472229, -3.855881452560425, 0.07648580521345139, 2.0059103965759277, 0.38595050573349, -0.28606802225112915, -0.1911175400018692, 0.0496709980070591, -0.20416133105754852, -0.13591425120830536, -0.21782056987285614, -0.14982694387435913, -0.3458673357963562, 2.685936212539673, 0.0830884650349617, -0.2343558520078659, -0.02893759496510029, -0.23814614117145538, -0.15646962821483612, -0.36947208642959595, -0.644164502620697, -0.2825821340084076, 2.2481906414031982, -0.44918546080589294, -0.40254706144332886, -0.24485482275485992, -0.3470233678817749, -0.6762277483940125, -0.3632008135318756, -0.2105434387922287, -0.2939314544200897, -0.46783432364463806, 0.10626179724931717, -0.16687007248401642, -0.4400171637535095, -0.8531773686408997, -0.17114804685115814, -0.43476438522338867, 8.49741268157959, -0.1664600819349289, 9.129036903381348, -0.08669326454401016, -3.7099428176879883, -1.9276771545410156, -1.057891607284546, -0.5976185202598572, -0.26905229687690735, -0.1107390746474266, -0.38286274671554565, -0.5918667912483215, 11.096704483032227, 1.0739575624465942, -0.24779626727104187, -2.242649555206299, 5.053264141082764, -0.8903695940971375, 0.8266764879226685, -1.0125495195388794, -1.3823695182800293, -27.63068962097168, -2.53593111038208, -8.042662620544434, -2.737989902496338, -1.0389459133148193, 0.4913625419139862, 0.10595270246267319, 0.13811925053596497, -0.19078178703784943, -0.21392704546451569, -0.6970409154891968, -2.3928592205047607, -2.9218931198120117, 2.389368772506714, 1.0842325687408447, 8.03018856048584, 4.644124984741211, 6.77893590927124, 5.495616912841797, 4.594947338104248, 3.778296709060669, 4.166909694671631, 3.835531711578369, 3.7985637187957764, 2.952554225921631, 2.3199124336242676, 3.3626532554626465, 3.175717830657959, 2.214024305343628, 2.5483808517456055, 2.8874990940093994, 1.8591904640197754, 1.4633781909942627, 2.016352415084839, 1.6907203197479248, 1.1530073881149292, 1.0271637439727783, 1.25846266746521, 0.5229665637016296, 1.8052173852920532, 0.6280537247657776, 1.2053626775741577, 1.6536502838134766, 1.254310965538025, 0.31223177909851074, 1.107873558998108, 0.6442340016365051, 0.6684360504150391, 0.021251684054732323, 0.701140820980072, 0.699420154094696, 0.7883498072624207, 0.674681544303894, 0.9158751964569092, -0.0821174755692482, 0.285078227519989, 0.40715131163597107, 0.3526609241962433, 0.5237181782722473, 0.4306817352771759, -0.8004676699638367, 1.0787967443466187, -0.9037007093429565, 0.10453902184963226, 0.5124558210372925, -0.8510817289352417, 0.5017541646957397, -0.6077107787132263, 2.1264536380767822, -0.9079309701919556, 0.3165406882762909, -0.9242562055587769, 2.0951483249664307, -0.3876737058162689, -0.18814775347709656, -0.579097330570221, -0.4602149426937103, 0.5520136952400208, 1.4085649251937866, 1.6525052785873413, 0.8659822344779968, 0.7131392955780029, 0.17101585865020752, 9.001567840576172, 3.801792860031128, 2.7835278511047363, 1.6930255889892578, 1.703271746635437, 0.7098519206047058, 1.3761498928070068, 1.8842169046401978, 3.7300264835357666, 2.490417242050171, 1.1095693111419678, -0.08724035322666168, 3.7904562950134277, 2.062978982925415, 0.7154816389083862, -0.371543288230896, 4.978955268859863, 2.01200532913208, 0.10207057744264603, -0.2757415771484375, 2.7562854290008545, 1.1481013298034668, 2.4806113243103027, -0.13878732919692993, -0.13191728293895721, 0.29225191473960876, 0.09628856927156448, 0.47339704632759094, 2.2541606426239014, 2.7372288703918457, -2.2985401153564453, -1.172971487045288, -8.135680198669434, -4.71184778213501, -6.749009132385254, -5.21626615524292, -4.5369486808776855, -3.824171304702759, -4.156552314758301, -3.7673161029815674, -3.903435230255127, -2.910134792327881, -2.4492738246917725, -3.3961477279663086, -3.1751935482025146, -2.3678030967712402, -2.574861526489258, -2.817983865737915, -2.059072494506836, -1.6089917421340942, -1.9422978162765503, -1.6940301656723022, -1.7977452278137207, -1.5840034484863281, -1.2880768775939941, -1.0989676713943481, -1.7105618715286255, -0.5255144238471985, -1.1470330953598022, -2.075187921524048, -1.1716173887252808, -0.411764919757843, -1.7554481029510498, -0.672191321849823, -0.8301509022712708, -0.0434354729950428, -0.7817392945289612, -0.8091703057289124, -0.8585111498832703, -0.7360691428184509, -0.9522177577018738, 0.13340355455875397, -0.3006344735622406, -0.5779744982719421, -0.6740109920501709, -0.5372864603996277, -0.5184283256530762, -0.7861366868019104, -0.9753947257995605, 0.6817193627357483, -0.2591269016265869, -0.8696759939193726, 0.6915005445480347, -0.5585052371025085, 0.5093518495559692, -2.310509204864502, 0.850063681602478, -0.32538288831710815, 0.9049855470657349, -1.4595438241958618, 0.497938334941864, 0.026875782757997513, 0.47351351380348206, 0.3532848060131073, -0.5181555151939392, -1.4200944900512695, -1.74879789352417, -0.9060390591621399, -0.5860204696655273, -0.31095582246780396, -9.100980758666992, -3.7149252891540527, -3.2036616802215576, -1.8167163133621216, -1.7820651531219482, -1.1369755268096924, -1.2624938488006592, -1.7861624956130981, -3.9490883350372314, -2.5219972133636475, 0.013021562248468399, 0.09003457427024841, -3.8627545833587646, -2.1616156101226807, -0.7725381851196289, 0.1400979608297348, -4.973443508148193, -1.877490520477295, -0.38001173734664917, 0.22719255089759827, -2.6791460514068604, -1.0740805864334106, 0.6742224097251892, 0.2183074653148651, 0.24098700284957886, -0.2630571126937866, -0.14663521945476532, -0.6423366069793701, -2.112431764602661, -4.136777877807617, 2.4870362281799316, 1.4848414659500122, 8.121408462524414, 4.807705402374268, 6.898557662963867, 5.348454475402832, 4.5023345947265625, 3.8281822204589844, 4.318142890930176, 3.7068848609924316, 3.9023501873016357, 3.069344997406006, 2.3145384788513184, 2.688652753829956, 3.284595012664795, 2.31209659576416, 2.4553372859954834, 2.807197093963623, 1.8894648551940918, 1.5708591938018799, 2.62680983543396, 1.7795666456222534, 1.8132777214050293, 1.741929531097412, 1.3996309041976929, 0.6534087061882019, 1.8329761028289795, 0.5905709266662598, 1.1026984453201294, 1.4855315685272217, 1.2832627296447754, 0.33725202083587646, 2.0967719554901123, 0.7504424452781677, 0.8471408486366272, 0.022409165278077126, 0.7526841759681702, 0.7959187626838684, 0.8463996052742004, 0.632745087146759, 0.8736437559127808, -0.14266042411327362, 0.34806883335113525, 0.6010323166847229, 0.5680012702941895, 0.4543585777282715, 0.4858270287513733, -0.8253456950187683, 1.1311039924621582, -0.8435128927230835, 0.2741364538669586, 0.909307599067688, -0.9468972682952881, 0.584182858467102, -0.5513917207717896, 1.9260207414627075, -0.9443435072898865, 0.46451103687286377, -0.9175392389297485, 1.5605148077011108, -0.27525851130485535, -0.16740450263023376, -0.45197272300720215, -0.3012372553348541, 0.6997389793395996, 1.4629709720611572, 1.7846672534942627, 0.8147075772285461, 0.6206318736076355, 0.09512259066104889, 8.920882225036621, 3.9832763671875, 2.9573493003845215, 1.4843014478683472, 1.7643756866455078, 1.1718899011611938, 1.2684293985366821, 1.5955935716629028, 3.8892362117767334, 2.9177746772766113, 1.0332192182540894, -0.059792354702949524, 3.819514274597168, 2.138584613800049, 0.7816184163093567, -0.27615463733673096, 3.9615116119384766, 2.031785488128662, 0.10081794857978821, -0.10329484939575195, 2.569387435913086, 1.3086349964141846, 0.45039135217666626, -0.13960394263267517, -0.22413140535354614, -0.08052155375480652, 0.09547892957925797, -0.1618652641773224, 0.48517608642578125, 1.152969479560852, -1.8770301342010498, -5.145897388458252, -6.518013000488281, -4.695010662078857, 0.7889900803565979, -0.9573135375976562, -0.5719367861747742, -0.6067541837692261, -0.874249279499054, -0.5320576429367065, -0.6982170939445496, -0.662816047668457, -0.587698221206665, -0.463765412569046, -0.648121178150177, -0.8131048679351807, -0.5987052321434021, -1.097834825515747, -0.39535051584243774, -0.4116835594177246, -0.33606502413749695, -0.5002649426460266, -0.43801525235176086, -0.3365999162197113, -0.3694484531879425, -0.13577018678188324, -0.42855143547058105, -0.23667606711387634, -0.17177703976631165, -0.7949079275131226, -0.18176163733005524, 0.8906658887863159, -0.25346076488494873, -0.22299210727214813, -0.01927288807928562, 0.02859361842274666, -0.08741401880979538, -0.20356565713882446, -0.2601315975189209, -0.20806293189525604, -0.13253656029701233, -0.09619174152612686, -0.036301594227552414, -0.13379035890102386, -0.11062785983085632, -0.238739475607872, -0.26680827140808105, -0.1274007260799408, -0.20274396240711212, 0.5608354806900024, 0.272896945476532, -0.23260410130023956, -0.17474469542503357, -0.27110347151756287, 0.06125000864267349, -0.3960183560848236, 0.14882424473762512, -0.08174638450145721, -0.19581131637096405, -0.2543712854385376, -0.015106226317584515, -0.11259234696626663, 0.2796128988265991, 0.30497807264328003, -0.46281594038009644, -0.3996846079826355, -0.2621391713619232, -0.2377009093761444, -0.0989050567150116, -0.03724947199225426, -1.7369047403335571, -1.0734820365905762, -0.4958740174770355, -0.062190599739551544, -0.2812640368938446, -0.19974268972873688, -0.28775131702423096, -0.26564815640449524, 0.3730814754962921, -0.16685444116592407, 0.07420745491981506, 0.3034503161907196, 1.0472584962844849, -0.38392573595046997, 0.39567098021507263, 0.21045194566249847, -0.6231736540794373, -0.3825681507587433, -0.00195758743211627, 0.38315948843955994, 0.3620164096355438, -1.560401201248169, 0.8041791319847107, -1.574544906616211, 1.7111692428588867]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (0, 0.8)}}, 'et3_eta1': {'discriminator': {'threshold': 0.40499852895736693, 'nodes': [100, 5, 1], 'bias': [0.08400861918926239, 0.2620103359222412, 0.24071946740150452, 0.19827689230442047, -0.21444356441497803, -0.16269882023334503], 'weights': [1.3870303630828857, 1.545779824256897, -0.1211574450135231, -0.1604125052690506, 0.003455043537542224, 0.0373167023062706, -0.0008176243281923234, -0.1041955053806305, 1.9358210563659668, 1.1951357126235962, 0.10143648833036423, -25.354907989501953, -0.6181513071060181, -0.6878902912139893, -0.28270137310028076, -0.26728931069374084, 0.09674908220767975, -0.04723811149597168, -0.10195126384496689, -0.09748301655054092, -0.08096246421337128, -0.11469700187444687, -0.18720217049121857, -0.15647678077220917, -0.10083829611539841, -0.09872053563594818, -0.08260013908147812, -0.19229328632354736, -0.17390254139900208, -0.013552741147577763, -0.04412402585148811, -0.020637324079871178, -0.06556025892496109, 0.010761035606265068, 0.007332846987992525, -0.09549709409475327, 0.0055735427886247635, -0.04326797276735306, -0.026291750371456146, -0.012747513130307198, -0.11395005136728287, -0.08593226224184036, -0.18707366287708282, -0.17402325570583344, 0.03683244064450264, -0.08664781600236893, -0.048864684998989105, -0.043266694992780685, -0.13139894604682922, -0.1760513335466385, -0.0735984519124031, 0.033980291336774826, -0.05367200821638107, 0.04039214923977852, -0.13830821216106415, -0.17115141451358795, -0.16189970076084137, 0.006275412626564503, -0.15192170441150665, -0.13326263427734375, -0.0323016531765461, 0.03400120884180069, 0.048464350402355194, -0.10741231590509415, -0.0037862390745431185, 0.018620189279317856, -0.022172946482896805, -0.019969813525676727, 0.03648371994495392, -0.06694190204143524, -0.07595319300889969, 0.03042070008814335, -0.09400361031293869, -0.08751234412193298, 0.23960021138191223, 0.010954230092465878, -0.011702854186296463, -0.09963168203830719, -0.00548516632989049, -0.16506044566631317, -0.04024888202548027, 1.709905982017517, -0.009197653271257877, -0.20769701898097992, 0.00027013005455955863, -0.15704846382141113, -0.18527181446552277, 0.028678344562649727, 0.027525002136826515, -0.1432519257068634, -0.13393062353134155, -0.02212144061923027, -0.22258269786834717, -0.1720305234193802, 0.03878394514322281, 0.007031652610749006, -0.20320329070091248, -0.05397924408316612, -0.09084600955247879, -0.030423659831285477, 1.8000046014785767, 1.5978862047195435, -1.9218839406967163, -1.8942296504974365, -0.8629290461540222, -0.5792128443717957, -0.05435245856642723, 0.03689047321677208, 2.4350266456604004, 3.194561004638672, 0.44461438059806824, -9.256474494934082, -0.9887266159057617, -4.604175090789795, -9.85036563873291, -9.955562591552734, -4.12244176864624, -9.302202224731445, -7.7895073890686035, -7.782469749450684, -7.924829483032227, -6.798374652862549, -6.597860813140869, -4.442999839782715, -4.796265602111816, -5.3657636642456055, -6.788576126098633, -3.9174540042877197, -2.8785464763641357, -3.409435272216797, -3.828425645828247, -3.0410830974578857, -4.328237056732178, -4.840612888336182, -3.2818822860717773, -2.694267749786377, -2.799024820327759, -2.5303401947021484, -2.8014657497406006, -2.3828911781311035, -2.671236276626587, -2.8098084926605225, -2.375687599182129, -1.5008713006973267, -0.8590118288993835, 1.332993507385254, 2.859013319015503, -2.7545406818389893, -1.90874183177948, -1.5139425992965698, -0.9410613775253296, -1.0205518007278442, -1.034328579902649, 7.021887302398682, -0.550938069820404, -1.2195676565170288, -1.3496793508529663, -1.1987366676330566, -0.7768914103507996, -0.7735779285430908, -1.1650207042694092, 2.5105559825897217, -0.5942962765693665, -0.061837270855903625, -1.202467679977417, -1.9875118732452393, -2.077728271484375, 0.023267388343811035, 0.5732965469360352, -0.47423866391181946, -0.9673288464546204, -1.1379636526107788, 0.3638814091682434, 0.3653498888015747, -1.3761401176452637, -3.0876646041870117, -2.8285109996795654, -2.564142942428589, -1.7563674449920654, -0.7710369229316711, -8.261331558227539, -9.57934856414795, -7.496679306030273, -4.245700836181641, -3.300792932510376, -2.7256243228912354, -3.2882378101348877, -2.9284284114837646, -3.1938936710357666, -1.7253892421722412, -0.5164909958839417, 0.20818915963172913, -5.838634490966797, -4.411934852600098, -2.0533292293548584, -1.2924243211746216, -5.335330486297607, -4.256328582763672, -2.877652883529663, -0.3888950049877167, 1.6076847314834595, 1.5545684099197388, -1.8873270750045776, -1.8025767803192139, -0.8662094473838806, -1.142563819885254, -0.0529746375977993, -0.13299113512039185, 2.3590879440307617, 3.2289724349975586, 0.5835632681846619, -9.185218811035156, -0.9604030847549438, -4.507839679718018, -10.056012153625488, -9.956707000732422, -4.040421485900879, -9.494743347167969, -7.678216457366943, -7.771495819091797, -7.840197563171387, -6.653186321258545, -6.669130802154541, -4.495187759399414, -4.7033796310424805, -5.266236305236816, -6.804109573364258, -4.041956424713135, -3.045346736907959, -3.474898338317871, -4.017399787902832, -3.159050703048706, -4.450016021728516, -4.641916751861572, -3.3199379444122314, -2.578796148300171, -2.8245441913604736, -2.554020404815674, -2.6153576374053955, -2.471339225769043, -2.6475069522857666, -2.725276231765747, -2.379896640777588, -1.4618204832077026, -0.9186662435531616, 1.3636624813079834, 2.909921646118164, -2.7451729774475098, -1.3279407024383545, -1.3647207021713257, -0.928147554397583, -1.0977929830551147, -0.9804644584655762, 6.970958232879639, -0.439843088388443, -1.059820532798767, -1.3140761852264404, -1.0901777744293213, -0.9821703433990479, -0.6636222004890442, -1.134922981262207, 2.334444522857666, -0.6153058409690857, -0.1405148059129715, -1.3018606901168823, -2.033582925796509, -2.0539443492889404, -0.08865343034267426, 0.7440711259841919, -0.2513491213321686, -0.9271875023841858, -0.9564580917358398, 0.4307788610458374, 0.38828444480895996, -1.396104097366333, -3.0934195518493652, -2.78790545463562, -2.5201985836029053, -1.7397568225860596, -0.6647769808769226, -8.308713912963867, -9.542397499084473, -7.708185195922852, -4.226221084594727, -3.327768087387085, -2.585510730743408, -3.122009038925171, -2.928595781326294, -3.1857454776763916, -1.7513740062713623, -0.3979124128818512, 0.2594325840473175, -5.800276756286621, -4.5548930168151855, -2.093766927719116, -1.3664616346359253, -5.283833980560303, -4.259984493255615, -2.8230862617492676, -0.4071483314037323, 1.699032187461853, 2.4416637420654297, -1.8492661714553833, -1.9438350200653076, -0.9471112489700317, 0.3965320587158203, 0.4386395514011383, -0.17594856023788452, 2.4020628929138184, 3.2416229248046875, 0.48300525546073914, -8.711160659790039, -0.028571004047989845, -0.9841560125350952, -10.014693260192871, -10.013465881347656, -4.2019124031066895, -9.446413040161133, -7.7291083335876465, -7.722021579742432, -7.922181129455566, -6.6611857414245605, -6.584670543670654, -4.470090866088867, -4.754766464233398, -3.2413151264190674, -6.723607063293457, -3.8558523654937744, -2.9753382205963135, -3.41188907623291, -3.83762264251709, -3.247236490249634, -4.454031944274902, -4.693950176239014, -3.2998342514038086, -2.669220447540283, -2.5948688983917236, -2.634884834289551, -2.752702236175537, -2.44820237159729, -2.719721555709839, -2.7137038707733154, -1.983793020248413, -0.9862497448921204, -0.9923154711723328, 1.2447136640548706, 9.625431060791016, -2.73079252243042, -1.4025661945343018, -1.4989519119262695, -0.8381300568580627, -1.004886269569397, -0.8731553554534912, 6.873755931854248, -0.5713590979576111, -1.253420352935791, -1.3982919454574585, -0.7301944494247437, -0.9856669902801514, -0.6818344593048096, -1.122927188873291, 2.863640546798706, -0.4517926275730133, -0.13653726875782013, -0.7909726500511169, -1.7048566341400146, -1.890999674797058, -0.012608615681529045, 9.152520179748535, -0.4751805365085602, -1.0773954391479492, -0.9502674341201782, 0.4680348336696625, 0.09042961150407791, -1.4125020503997803, -3.125809907913208, -2.7144336700439453, -2.627927780151367, -1.6304054260253906, -0.661928117275238, -7.867833614349365, -9.178266525268555, -7.608427047729492, -4.360863208770752, -3.37911319732666, -2.6212716102600098, -3.2007334232330322, -2.8146395683288574, -3.2725203037261963, -1.8375976085662842, -0.5516853332519531, 0.18065145611763, -5.989046096801758, -4.561517238616943, -2.1645686626434326, -0.069617360830307, -5.382036209106445, -4.417229652404785, -2.8349673748016357, -0.8898947238922119, -1.6094502210617065, -2.661825180053711, 1.7281036376953125, 1.8384814262390137, 0.7556837797164917, -0.3615821897983551, -0.062011729925870895, 0.06735330075025558, -2.481142520904541, -3.130866527557373, -0.5814651846885681, 8.928794860839844, 0.9175635576248169, 4.564447402954102, 9.970992088317871, 10.053274154663086, 4.205488204956055, 9.293432235717773, 7.655348300933838, 7.757172584533691, 7.794203758239746, 6.767029285430908, 6.596225261688232, 4.353512763977051, 4.562531471252441, 5.278942108154297, 6.729154586791992, 3.8607726097106934, 3.0463004112243652, 3.556260824203491, 3.828110933303833, 3.1530776023864746, 4.38740348815918, 4.552087306976318, 3.3550286293029785, 2.6658520698547363, 2.7426342964172363, 2.469050407409668, 2.631613254547119, 2.5260581970214844, 2.6577532291412354, 2.748791456222534, 2.0346450805664062, 1.4344130754470825, 1.0039559602737427, -1.2467317581176758, -1.9087446928024292, 2.736844539642334, 1.5022457838058472, 1.411020278930664, 0.9106569290161133, 0.9674198627471924, 0.8818994760513306, -7.0665154457092285, 0.4264790117740631, 1.0790997743606567, 1.2363909482955933, 1.2605414390563965, 0.8254251480102539, 0.845571756362915, 1.127962589263916, -2.4217958450317383, 0.5122345685958862, 0.06578044593334198, 1.3833636045455933, 1.980806589126587, 2.071420669555664, 0.08308499306440353, -0.6231350898742676, 0.27991509437561035, 0.9711769223213196, 1.0928012132644653, -0.37353163957595825, -0.39586418867111206, 1.2463382482528687, 2.9772725105285645, 2.9024198055267334, 2.6931049823760986, 1.8739650249481201, 0.694912850856781, 8.26921272277832, 9.65395450592041, 7.613109588623047, 4.346840858459473, 3.348928689956665, 2.7357542514801025, 3.2670624256134033, 2.881432056427002, 3.2476694583892822, 1.734588384628296, 0.523329496383667, -0.20963075757026672, 5.959713459014893, 4.338916778564453, 2.07399582862854, 1.3437578678131104, 5.273766994476318, 4.252528667449951, 2.7896552085876465, 0.25933343172073364, 1.6186773777008057, 2.1224305629730225, 1.5090688467025757, 0.6439090967178345, -1.478746771812439]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (0.8, 1.37)}}, 'et0_eta3': {'discriminator': {'threshold': -0.080001008510589611, 'nodes': [100, 5, 1], 'bias': [-0.06872621923685074, 0.03307996317744255, -0.23921453952789307, -0.06494033336639404, -0.18441444635391235, 0.31420576572418213], 'weights': [1.1976479291915894, 1.1918416023254395, -0.1382010132074356, -0.6023399829864502, -0.7240791320800781, -0.6505488157272339, -0.6093899607658386, -0.34861627221107483, 1.8854871988296509, 2.6244194507598877, 2.654365301132202, -0.14100617170333862, -0.5267295241355896, -0.28703752160072327, -7.191267967224121, -4.465005397796631, -3.7317757606506348, -8.905920028686523, -4.735798358917236, -7.743622779846191, -3.4018361568450928, -0.05608991160988808, -6.728381633758545, -8.23458194732666, -3.9403929710388184, -3.006030321121216, -2.711745500564575, -3.346447467803955, -2.326688051223755, -2.109919548034668, -0.5147548913955688, -1.968123197555542, -3.480151891708374, -6.054640769958496, -1.142769694328308, -1.98679780960083, 0.1615237295627594, 0.3403989374637604, 0.2695309817790985, -1.0647729635238647, 0.0740254819393158, 1.0841532945632935, -2.926279306411743, -1.5454617738723755, -0.5176843404769897, 0.11136742681264877, -6.313849449157715, 1.3565044403076172, -0.2605409324169159, -0.990673840045929, -0.3235543668270111, -1.599892020225525, 0.3980337381362915, 0.9674480557441711, 0.5569025278091431, -1.3428746461868286, -0.2748319208621979, -0.9134907722473145, 0.4903411567211151, -0.6930826902389526, 0.2818569540977478, -0.5017110109329224, 1.5692251920700073, -1.2303651571273804, 0.6028472185134888, -0.2740112841129303, 0.6013957262039185, -0.6984028220176697, 1.0342010259628296, -0.5773690938949585, 1.8782917261123657, 1.2547498941421509, 0.509377121925354, 0.47140994668006897, -1.8850581645965576, -2.933959484100342, -2.1245598793029785, -1.9417221546173096, -1.2160096168518066, -0.347282737493515, -15.758408546447754, -10.45015811920166, -4.259603500366211, -0.8548963069915771, -2.0923585891723633, -2.778348445892334, 0.9994131922721863, -1.1098016500473022, -0.5933070182800293, -1.4944028854370117, -0.4275020956993103, -0.1313917636871338, -5.532641887664795, -2.516216993331909, -0.07028330117464066, -0.04767567291855812, -0.4112379252910614, -0.07741036266088486, 0.13981930911540985, -2.760042428970337, -1.0493351221084595, -1.1243500709533691, 0.09304428100585938, 0.5045327544212341, 0.9096773266792297, 0.8408878445625305, 0.5277706980705261, 0.37105610966682434, -1.742631435394287, -2.5432610511779785, -2.5564956665039062, 0.22631721198558807, 0.32676345109939575, 0.10996110737323761, 7.247534275054932, 4.458943843841553, 3.710369110107422, 8.79906177520752, 4.917060852050781, 7.606398582458496, 3.7535743713378906, -0.07122580707073212, 4.889994144439697, 4.466143608093262, 4.046082973480225, 2.8723483085632324, 2.6209402084350586, 3.3939313888549805, 2.310600519180298, 2.2353200912475586, 0.5538920760154724, 2.1038951873779297, 3.440603494644165, 6.052570343017578, 1.1919294595718384, 2.1146488189697266, -0.22042077779769897, -0.36891189217567444, -0.2156139463186264, 1.1432558298110962, -0.14311255514621735, -1.227011799812317, 3.0968141555786133, 1.6369976997375488, 0.444904088973999, -0.1313966065645218, 6.40336799621582, -1.095916986465454, 0.39591464400291443, 1.0142964124679565, 0.34312161803245544, 1.5967074632644653, -0.49618256092071533, -0.9082210063934326, -0.6603153944015503, 1.3480644226074219, 0.4634259045124054, 0.9664291143417358, -0.4353172481060028, 0.6172215938568115, -0.35067519545555115, 0.3126639425754547, -1.5804325342178345, 1.1032880544662476, -0.5260769724845886, 0.14027687907218933, -0.6014657020568848, 0.48444801568984985, -0.9492918848991394, 0.6320152878761292, -2.009819984436035, -1.370741367340088, -0.5803539752960205, -0.4363330006599426, 1.8976479768753052, 3.0311591625213623, 2.1435470581054688, 2.006779432296753, 0.9773839712142944, 0.25403234362602234, 15.85167121887207, 10.469559669494629, 4.446294784545898, 0.9400776624679565, 1.938518762588501, 2.1135571002960205, -1.0013408660888672, 1.1384257078170776, 0.6940092444419861, 1.5435560941696167, 0.41838473081588745, 0.16723643243312836, 5.6759467124938965, 2.291001796722412, -0.024860527366399765, 0.035911526530981064, 0.29944905638694763, 0.23417073488235474, 0.019712600857019424, 2.7292098999023438, 2.481264591217041, 2.2801291942596436, 0.03779413551092148, -0.15724125504493713, -0.3424062430858612, -0.07547106593847275, -0.19199736416339874, -0.13443736732006073, 2.9475345611572266, 4.062973976135254, 2.8576979637145996, -6.101906776428223, -4.60906982421875, -3.58305287361145, -13.704071998596191, -8.596972465515137, -1.4450905323028564, 0.3064310550689697, 5.7766618728637695, -2.8282039165496826, 10.69840145111084, 4.800511837005615, -1.0980195999145508, -0.7566824555397034, -1.2969902753829956, 13.995598793029785, 5.0080156326293945, -1.2548549175262451, 6.736884593963623, -0.7117260694503784, 0.3949907422065735, 1.6167668104171753, 2.5928537845611572, -0.7386620044708252, 3.2658324241638184, -0.6925867199897766, 2.491560935974121, -0.6414268612861633, 0.7591795325279236, -0.2912251949310303, 0.34800097346305847, 0.6302226185798645, 0.1096944659948349, -0.7213243842124939, -0.1988636702299118, 0.08903734385967255, -0.7325190305709839, -0.09340585023164749, -0.25363677740097046, -0.6349132061004639, -0.01584606058895588, -0.7670139670372009, -0.4896441102027893, -0.5210203528404236, 0.2845474183559418, -0.7244967222213745, -0.5089740753173828, -0.5387217998504639, 0.028853239491581917, -0.4429834187030792, 0.07197647541761398, -0.4443061649799347, 0.8580699563026428, -0.6266505718231201, 0.46683478355407715, 0.15394212305545807, 0.4302699863910675, -0.058980174362659454, 0.4415808618068695, -0.23434093594551086, 1.8533775806427002, 0.4833405315876007, 0.9036070108413696, -0.021586187183856964, -0.6983773112297058, 3.4084079265594482, -1.4845311641693115, 0.4992196559906006, 1.0107059478759766, -0.39281514286994934, 2.7710535526275635, 13.816033363342285, -1.2146410942077637, 0.7918723225593567, -0.9272428750991821, -0.8534931540489197, 0.8947334289550781, 0.23085364699363708, 0.054398681968450546, 0.6441670656204224, 0.05373748391866684, 0.13250936567783356, 16.56742286682129, 9.95398235321045, 0.104967400431633, 0.9624089002609253, -0.24892404675483704, 0.17906038463115692, 0.29125577211380005, -0.6022586226463318, 1.0461007356643677, 1.2559155225753784, -0.2712388336658478, -0.7925508618354797, -0.7904696464538574, -0.773720920085907, -0.6248278617858887, -0.33554568886756897, 1.926790714263916, 2.6211698055267334, 2.6149191856384277, -0.2234211564064026, -0.4709564745426178, -0.3294180631637573, -7.170814514160156, -4.5053019523620605, -3.768587350845337, -8.872048377990723, -4.84211540222168, -7.6050190925598145, -3.7526473999023438, -0.1937699317932129, -6.744506359100342, -8.201873779296875, -3.965329170227051, -2.9055325984954834, -2.9496583938598633, -3.3750367164611816, -2.481515884399414, -2.2055130004882812, -0.5830821394920349, -2.023529291152954, -3.169849157333374, -6.016546249389648, -1.138245701789856, -2.0847153663635254, 0.05548820644617081, 0.3221282958984375, 0.2844690680503845, -1.108593225479126, 0.05557818338274956, 1.0521198511123657, -3.0607361793518066, -1.759029746055603, -0.5845960378646851, -0.009794293902814388, -6.410668849945068, 1.5034576654434204, -0.34046921133995056, -1.107670545578003, -0.2885671555995941, -1.5469094514846802, 0.48042571544647217, 1.0087361335754395, 0.5187746286392212, -1.278538465499878, -0.39988186955451965, -0.8841748237609863, 0.518634557723999, -0.7211765050888062, 0.2082178145647049, -0.2982442080974579, 1.4779547452926636, -1.077598214149475, 0.5938440561294556, -0.11019671708345413, 0.6488816142082214, -0.5492929220199585, 1.1870932579040527, -0.765427827835083, 1.9755843877792358, 1.381844401359558, 0.539974570274353, 0.4430347979068756, -1.7137421369552612, -2.9629628658294678, -2.2744812965393066, -2.0315017700195312, -1.3616678714752197, -0.33355197310447693, -15.714582443237305, -10.561205863952637, -4.430583477020264, -1.5568273067474365, -1.9205622673034668, -2.749734878540039, 0.9319148659706116, -1.3123542070388794, -0.7859432101249695, -1.5262622833251953, -0.4076409339904785, -0.14709152281284332, -5.614198684692383, -4.337588310241699, -0.18380026519298553, -0.14298123121261597, -0.31882938742637634, -0.13607220351696014, 0.06291235238313675, -2.765294313430786, 1.0509060621261597, 1.1357561349868774, -0.23168998956680298, -0.7986505031585693, -0.911983072757721, -0.6026881337165833, -0.3487003445625305, -0.2430620640516281, 3.532968759536743, 2.7017366886138916, 3.2690911293029785, -0.049583256244659424, -5.7912702560424805, -0.15426784753799438, -7.08832311630249, -4.573992729187012, -3.6989920139312744, -8.832311630249023, -3.2778313159942627, -7.796597957611084, -3.9504647254943848, -0.061321038752794266, -4.086387634277344, -4.368222236633301, -8.766107559204102, -2.0128304958343506, -2.9654664993286133, -3.388563632965088, -2.374119281768799, -2.233457565307617, -3.259967803955078, -1.9256590604782104, -3.1171300411224365, -2.5134668350219727, -1.2914636135101318, -2.106252431869507, 0.15445803105831146, 0.3821030557155609, 0.10667312890291214, -1.3149912357330322, 0.5084645748138428, 1.0869834423065186, -3.0970544815063477, -1.7119749784469604, -0.08680596202611923, 0.06258155405521393, -6.444218635559082, 0.3502236008644104, -0.21242330968379974, -1.0951319932937622, -0.2546929717063904, -1.606440544128418, 0.6145179271697998, 1.2103277444839478, 0.632448673248291, -1.3314791917800903, -0.0811661034822464, -1.034975528717041, 0.45937249064445496, -0.6499652862548828, 0.35213348269462585, -0.09756776690483093, 1.6599781513214111, -0.6064563989639282, 0.6383776068687439, -0.09063489735126495, 0.5485105514526367, -0.6656373739242554, 1.0177799463272095, -0.7947140336036682, 1.8756357431411743, 1.259620189666748, 0.5371514558792114, 0.5279979705810547, -1.2278653383255005, -3.1675608158111572, -2.074094772338867, -2.1427104473114014, -1.2348092794418335, -0.25406548380851746, -15.822690963745117, -10.370782852172852, -7.007852554321289, -1.590886116027832, -2.1699070930480957, -2.151991605758667, 1.3791866302490234, -1.2901591062545776, -0.7935076951980591, -2.3366434574127197, -0.09357325732707977, -0.04536448419094086, -5.623207092285156, -4.124639987945557, -0.20916515588760376, -0.07281368225812912, -0.2750243842601776, -0.27089807391166687, 0.14563024044036865, -2.7404072284698486, 0.4495205879211426, -0.24960488080978394, 0.8472018837928772, 0.7588435411453247, 1.0934642553329468]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (0, 20), 'etaBin': (1.54, 2.5)}}, 'et3_eta3': {'discriminator': {'threshold': 0.3399985909461975, 'nodes': [100, 5, 1], 'bias': [-0.012690101750195026, -0.019296301528811455, 0.2097368985414505, 0.06169872730970383, -0.08923499286174774, -0.13771609961986542], 'weights': [-1.0130535364151, -1.8695361614227295, 0.7134630084037781, 1.8104948997497559, -0.7769774198532104, 1.1319326162338257, -0.34492456912994385, 0.2091120481491089, -1.3856807947158813, -1.4976760149002075, -0.45986637473106384, 2.477525234222412, 0.44421905279159546, 0.39680153131484985, 2.725558042526245, 5.971437931060791, 1.461711049079895, 4.885514259338379, 4.06856107711792, 3.039273977279663, 1.7291306257247925, 1.2302244901657104, 0.8806228637695312, 2.2270586490631104, 5.4806976318359375, 3.9692296981811523, 1.9382259845733643, 1.9462071657180786, 1.371470332145691, 2.7120168209075928, -1.0630080699920654, 2.0336625576019287, -0.011746625415980816, 2.02740478515625, 1.28681218624115, 1.6846039295196533, 1.4978781938552856, 1.9039198160171509, 1.0996514558792114, 2.8797121047973633, -0.14438579976558685, 2.8182151317596436, 0.6362091898918152, 1.2808767557144165, 0.30955183506011963, 1.104913592338562, 0.5786794424057007, -1.0642706155776978, -0.5983864068984985, 1.5646374225616455, 0.2665879428386688, -0.12011317908763885, 0.24322356283664703, 0.8991612792015076, 0.3495424687862396, 0.642586886882782, -1.724165678024292, 0.8794919848442078, -0.05641467496752739, 0.6110295653343201, 0.24256294965744019, -0.5348894596099854, 0.3241155743598938, 0.39218923449516296, 0.25385260581970215, 0.8626371622085571, 0.21854034066200256, 0.4821946620941162, -2.757903575897217, -2.4015214443206787, 0.41514235734939575, 0.6938744187355042, -0.5162703990936279, -0.38473138213157654, 1.259438157081604, 1.9376729726791382, 1.9331270456314087, 1.6959307193756104, 1.0981101989746094, 0.393974244594574, 2.5199520587921143, 4.543359756469727, 6.702901363372803, 1.917405128479004, 1.785683512687683, 1.8674720525741577, 0.7402540445327759, 1.2851225137710571, 0.5095517039299011, 1.432073712348938, 0.2314925193786621, 0.26483821868896484, 4.011752128601074, 1.488372564315796, 0.2861795723438263, 0.7558533549308777, -0.42731773853302, 0.08657048642635345, -0.11479514837265015, 0.5595415830612183, 0.9943864941596985, 1.861403465270996, -0.488151878118515, -1.819808006286621, 0.8041013479232788, -0.9673154354095459, 0.3596230745315552, -0.34904325008392334, 1.5636812448501587, 1.3463267087936401, 0.3882506489753723, -2.5864310264587402, -0.37640848755836487, -0.08460839837789536, -2.8409440517425537, -2.2391180992126465, -1.646734356880188, -4.8574018478393555, -3.9293041229248047, -3.0070812702178955, -1.7790387868881226, -1.367472767829895, -0.8723230361938477, -2.208461046218872, -5.511495590209961, -3.8584446907043457, -2.0234076976776123, -1.972678542137146, -1.4766250848770142, -2.6760246753692627, 1.1823527812957764, -2.1563398838043213, -0.19935442507266998, -1.9214961528778076, -1.1798454523086548, -1.6296238899230957, -1.4663089513778687, -1.783396601676941, -1.1834534406661987, -2.90910005569458, 0.35251420736312866, -2.9747719764709473, -0.5355457067489624, -1.2439055442810059, 0.21942633390426636, -1.12078058719635, -0.5544575452804565, 1.09528648853302, 0.37167519330978394, -1.6401143074035645, -0.2022491693496704, 0.0824509784579277, -0.21699126064777374, -0.8275657296180725, -0.1296526938676834, -0.6483139395713806, 1.667501449584961, -0.7002888321876526, 0.02536276914179325, -0.771704375743866, -0.309673011302948, 0.6220327019691467, -0.3685165047645569, -0.43144354224205017, -0.2997533082962036, -0.755573034286499, -0.2039588987827301, -0.49767041206359863, 2.9409961700439453, 2.571258306503296, -0.22105011343955994, -0.541606605052948, 0.5305947065353394, 0.44053080677986145, -1.3091496229171753, -1.9451225996017456, -1.8920503854751587, -1.72027587890625, -1.3297384977340698, -0.34065186977386475, -2.380805253982544, -4.455440521240234, -6.688385486602783, -1.9913265705108643, -1.6251119375228882, -1.8720210790634155, -0.8184264898300171, -1.1800707578659058, -0.3793899714946747, -1.3023432493209839, -0.28825998306274414, -0.20292825996875763, -4.033830165863037, -1.5883941650390625, -0.5024857521057129, -0.8226898312568665, 0.38987159729003906, -0.04933639243245125, 0.27144038677215576, -0.6528551578521729, 1535.697998046875, -7.566563129425049, -0.3362034559249878, 6.127004623413086, -134.8846893310547, -6.747729778289795, -0.31549271941185, 0.07968517392873764, -0.7109286785125732, -2.9991564750671387, -0.30329811573028564, 0.8413170576095581, 0.4325571656227112, 0.5640086531639099, 5.954688549041748, -83.07160949707031, 1.0855607986450195, 1.268211007118225, 1.658875584602356, -12.775851249694824, -22.435882568359375, -37.19643783569336, -13.573686599731445, 0.7745075821876526, 9.296792984008789, 1.3591676950454712, 0.6424844861030579, -1.655385971069336, -0.7611486911773682, 1.0870839357376099, -40.96883773803711, 0.7365546822547913, 0.4251643419265747, 0.6069502234458923, 0.3278835415840149, -8.132231712341309, 0.35062435269355774, 0.7988054156303406, 0.17850881814956665, 1.1966577768325806, -33.727779388427734, 1.230722427368164, 0.12097921967506409, 0.40310707688331604, -0.8750306963920593, 0.25021082162857056, -0.7543154358863831, -0.6889739036560059, -0.6603612899780273, 0.550871729850769, -0.06920773535966873, -0.15402205288410187, -0.140425443649292, 0.37455567717552185, 0.034115295857191086, 0.2779487073421478, -0.9593930244445801, 0.06621801853179932, -0.15528415143489838, 0.1394530087709427, -0.023600447922945023, -0.49678799510002136, -0.031357940286397934, -0.10219594091176987, 0.003180968575179577, 0.16807036101818085, 0.08215972781181335, 0.020174076780676842, -1.4432637691497803, -1.3084853887557983, 0.08324480056762695, 0.09515362977981567, -0.2500286400318146, -0.8727518916130066, 0.3113517165184021, 0.5977798700332642, 0.7640846967697144, 0.35935232043266296, -0.02200903370976448, -7.775704383850098, -54.3456916809082, 1.1809536218643188, -26.941221237182617, -46.51435852050781, 0.5088420510292053, 0.6364379525184631, -6.804378032684326, 0.33359062671661377, 81.87478637695312, 13.988085746765137, 0.05279451981186867, 0.08597724139690399, 1.7450703382492065, 0.6333150863647461, -0.21519257128238678, 22.23067855834961, -0.361352801322937, 0.019824333488941193, -0.19054675102233887, 7.7622904777526855, -0.9553853869438171, -1.9790019989013672, 0.5479722619056702, 1.915626049041748, -0.6678287982940674, 1.0792224407196045, -0.3149227499961853, 0.21716639399528503, -1.57701575756073, -1.4115947484970093, -0.7912191152572632, 2.488992691040039, 0.5176383852958679, 0.01846897043287754, 2.7182116508483887, 2.052654981613159, 1.5176335573196411, 4.779162406921387, 4.020149230957031, 3.04656720161438, 1.6076387166976929, 1.3088711500167847, 0.722421407699585, 2.3629753589630127, 5.461034774780273, 3.9888439178466797, 1.9581758975982666, 1.9494673013687134, 1.4768699407577515, 2.715693473815918, -1.1274176836013794, 2.202514171600342, 0.1283680945634842, 2.0431790351867676, 1.3149093389511108, 1.687981367111206, 1.4551576375961304, 1.9562345743179321, 1.1168626546859741, 2.8915462493896484, -0.2518756091594696, 2.875753164291382, 0.6652914881706238, 1.2410328388214111, -0.13984006643295288, 1.1208654642105103, 0.6098634600639343, -0.9000683426856995, -0.44290071725845337, 1.5416271686553955, 0.19222044944763184, -0.08033270388841629, 0.3046439588069916, 0.9124664664268494, 0.27935412526130676, 0.678560197353363, -1.6970304250717163, 0.5400169491767883, -0.011399169452488422, 0.7493487000465393, 0.1959983855485916, -0.5600623488426208, 0.3854066729545593, 0.23985278606414795, 0.23866842687129974, 0.662785530090332, 0.3154675364494324, 0.6701787114143372, -2.8678765296936035, -2.5332682132720947, 0.36906805634498596, 0.722297728061676, -0.5846952199935913, -0.4075091779232025, 1.2422224283218384, 1.725866675376892, 1.932085394859314, 1.7156829833984375, 1.3126379251480103, 0.3025326132774353, -0.862578809261322, 4.421380996704102, 6.645453929901123, 1.975903868675232, 1.6827961206436157, 1.986254334449768, 0.8401743173599243, 1.2442317008972168, 0.3258878290653229, 1.331126093864441, 0.29475200176239014, 0.2804960012435913, 4.131514072418213, 1.6180126667022705, 0.3953876793384552, 0.6145429015159607, -0.45996928215026855, 0.04682048037648201, -0.06234857439994812, 0.6628056764602661, 2.127974271774292, 1.985389232635498, -0.38232356309890747, -1.8470115661621094, 0.6693946123123169, -0.9231640696525574, 0.3261265754699707, -0.26342663168907166, 1.5610474348068237, 2.36187744140625, 0.8890228271484375, -2.466416120529175, 0.0437474399805069, -0.14612063765525818, -2.8271305561065674, -2.0611588954925537, -1.614615559577942, -4.63505220413208, -3.9273998737335205, -3.0702903270721436, -1.7724934816360474, -1.3545821905136108, -0.8219886422157288, -2.3168623447418213, -5.385948181152344, -3.9424924850463867, -1.921940565109253, -1.8809678554534912, -1.5144342184066772, -2.715623378753662, 1.1057642698287964, -2.192107915878296, -0.11941102147102356, -1.9921188354492188, -1.2446421384811401, -1.5735543966293335, -1.497243046760559, -1.8772114515304565, -1.111895203590393, -2.9471487998962402, 0.1457953006029129, -3.022235870361328, -0.4490777552127838, -1.1532342433929443, 0.1689779907464981, -1.2627816200256348, -0.19056522846221924, 1.0272307395935059, 0.41163158416748047, -1.6163190603256226, -0.3166213631629944, 0.12512139976024628, -0.17593805491924286, -0.9084994792938232, -0.18266268074512482, -0.7239826917648315, 1.7450309991836548, -0.65630704164505, 0.036941517144441605, -0.7366587519645691, -0.30975276231765747, 0.5614961981773376, -0.3711090087890625, -0.3471120297908783, -0.1886523813009262, -0.5806968808174133, -0.41220366954803467, -0.6597930788993835, 2.779768705368042, 2.4390182495117188, -0.41673988103866577, -0.6784767508506775, 0.5946556329727173, 0.3268611431121826, -1.3597277402877808, -1.7449132204055786, -1.9054521322250366, -1.7488070726394653, -1.1858036518096924, -0.3096122145652771, 1.0038888454437256, -4.458991527557373, -6.601884841918945, -1.9536596536636353, -1.7140873670578003, -1.835755467414856, -0.8624218702316284, -1.225271224975586, -0.7705239057540894, -1.330305576324463, -0.2822434604167938, -0.36786168813705444, -4.126810073852539, -1.5721787214279175, -0.34080711007118225, -0.8090224862098694, 0.3387714624404907, -0.09142432361841202, 0.12747538089752197, -0.6229060888290405, -1.822013258934021, 2.5561587810516357, -0.4319113790988922, -2.575791597366333, 1.3640925884246826]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (1.54, 2.5)}}, 'et0_eta2': {'discriminator': {'threshold': 0.18499873876571654, 'nodes': [100, 5, 1], 'bias': [0.0740942507982254, -0.06007218360900879, -0.1473710834980011, 0.05597534030675888, 0.16750994324684143, 0.13012652099132538], 'weights': [-1.0517817735671997, 0.16802196204662323, 1.4663076400756836, 0.5150785446166992, 0.05381222441792488, -2.4991824626922607, 0.3861342966556549, 0.40877765417099, 0.3886667490005493, -4.764517307281494, -3.8488268852233887, -3.8950982093811035, 0.17801228165626526, 1.6459916830062866, -1.1683205366134644, -1.0275481939315796, 5.77476692199707, -0.7624878287315369, -0.6606208682060242, 0.10978063941001892, 0.3314365744590759, 0.07557008415460587, 0.15490660071372986, 0.1983821988105774, 5.682046890258789, 1.5119644403457642, -0.24050761759281158, 3.012197494506836, 1.6698909997940063, 1.3211976289749146, 1.192269206047058, -0.8016904592514038, -0.07198423892259598, 1.3374708890914917, 1.7376724481582642, 1.429010272026062, 2.991372585296631, -1.08458411693573, 1.5429770946502686, -0.1538407951593399, 0.7634674310684204, 1.589094638824463, 1.8881877660751343, 1.3931552171707153, 1.4151959419250488, 1.2364542484283447, 0.8870375156402588, 0.7702187895774841, 0.6562994122505188, -0.9327248334884644, 0.3231920897960663, -1.8087104558944702, -0.23685550689697266, -0.5095539093017578, 0.6654106378555298, 2.7219882011413574, 2.6291749477386475, 1.3117403984069824, 1.3167848587036133, -0.2446056604385376, 0.7839341759681702, 1.005422830581665, 1.1950101852416992, 0.5214614868164062, 0.6100043058395386, -0.14294259250164032, -0.1940220445394516, -0.09250375628471375, 0.268110454082489, 0.16667549312114716, 0.6472163796424866, 0.353894978761673, 0.11717498302459717, -0.26599404215812683, 2.2951481342315674, 1.4448944330215454, 1.3319092988967896, 0.7411403656005859, 0.2963654696941376, 0.5021078586578369, -0.4632536768913269, 0.12948644161224365, -0.2519250512123108, 0.8176892995834351, 0.011637754738330841, -0.8079516291618347, 0.6551357507705688, 0.9359511733055115, -1.1770851612091064, 0.6528220176696777, 0.36740297079086304, -0.0789426937699318, 1.2961506843566895, -0.13571062684059143, 1.1442545652389526, 0.8163948059082031, -0.10180128365755081, 0.05880006030201912, -0.5211548805236816, -0.025255680084228516, 0.7313673496246338, -0.023635799065232277, -1.4468293190002441, -0.5934876203536987, 0.028543543070554733, 2.471452474594116, -0.4158157408237457, -0.206592857837677, -0.42895710468292236, 4.87015962600708, 3.961115837097168, 3.9524145126342773, -0.16786685585975647, -1.7249547243118286, 1.3116413354873657, 1.0748337507247925, -5.628201007843018, 0.7234885096549988, 0.528411328792572, -0.08875851333141327, -0.48572736978530884, -0.04377308487892151, -0.19493216276168823, -0.22066588699817657, -5.675931453704834, -1.656412959098816, 0.08158548176288605, -3.0232291221618652, -1.5874756574630737, -1.3444639444351196, -1.088882327079773, 0.8675150871276855, -0.05585324019193649, -1.4837809801101685, -1.7422865629196167, -1.2255347967147827, -3.157442092895508, 1.0423179864883423, -1.4748142957687378, 0.5054079294204712, -0.9231109619140625, -1.5690603256225586, -1.796244502067566, -1.5765613317489624, -1.4661540985107422, -1.2501475811004639, -0.7742009162902832, -0.6825814843177795, -0.7123939990997314, 0.9213225841522217, -0.4634900689125061, 1.6017268896102905, 3.362010955810547, 0.4920344352722168, -0.6457204222679138, -2.7114193439483643, -2.783172607421875, -1.4685192108154297, -1.3092772960662842, 0.42198076844215393, -0.9464324116706848, -1.0311115980148315, -1.2007677555084229, -0.562839925289154, -0.6815787553787231, 0.12460021674633026, 0.10716179013252258, 0.10381709039211273, -0.2235778272151947, -0.10480333864688873, -0.6012762188911438, -0.5561167001724243, -0.027298057451844215, 0.41184794902801514, -2.2188587188720703, -1.4139460325241089, -1.448706030845642, -0.800971269607544, -0.169809490442276, -0.6715972423553467, 0.38404980301856995, -0.15119865536689758, 0.12440945953130722, -0.635511577129364, -0.042899079620838165, 0.9490835666656494, -0.711346447467804, -0.8722526431083679, 1.1789851188659668, -0.709495484828949, -0.3752867579460144, 0.16730168461799622, -1.2621474266052246, 0.13003967702388763, -1.1052442789077759, -0.8459954261779785, 0.0857585072517395, -0.1146206185221672, 0.4948970675468445, -0.051395487040281296, 1.0251373052597046, 0.016275638714432716, -1.4731965065002441, -0.6171716451644897, 0.07966549694538116, 0.8737134337425232, -0.4731327295303345, -0.21301203966140747, -0.49674496054649353, 4.876373767852783, 3.839005470275879, 3.970517635345459, -0.31511154770851135, -1.6029869318008423, 1.2853161096572876, 1.1723881959915161, -5.832032203674316, 0.6789003610610962, 0.5669936537742615, -0.22379152476787567, -2.703939914703369, -0.26078152656555176, -0.03886079415678978, -0.05921908840537071, -5.719845771789551, -1.4597879648208618, 0.1876167505979538, -2.9879355430603027, -1.5303400754928589, -1.2714322805404663, -1.1109195947647095, 0.17933915555477142, 0.06089244410395622, -1.5081650018692017, -2.1941347122192383, -1.3107925653457642, -3.0754287242889404, 1.0042310953140259, -1.5626887083053589, -0.0424615740776062, -0.9771183133125305, -1.5259199142456055, -1.7639156579971313, -1.5246882438659668, -1.5541713237762451, -1.2403414249420166, -0.8519608974456787, -0.7213048338890076, -0.4986189901828766, 0.8783422708511353, -0.4468894898891449, 1.8087834119796753, 0.24241626262664795, 0.5605027675628662, -0.5243880152702332, -2.758394479751587, -2.7712044715881348, -1.4942808151245117, -1.331079363822937, -0.43571221828460693, -0.8953598737716675, -0.9362175464630127, -1.0887501239776611, -0.64814692735672, -0.46633851528167725, 0.2558480501174927, 0.18972228467464447, 0.14794549345970154, -0.23139016330242157, -0.10631468892097473, -0.54292231798172, -0.28567084670066833, 0.010528460144996643, 0.26116883754730225, -2.3366875648498535, -1.4603341817855835, -1.3482171297073364, -0.8471848964691162, -0.25872334837913513, -0.6058900356292725, 0.40240827202796936, -0.15694114565849304, 0.14404788613319397, -0.6278192400932312, 0.016024403274059296, 0.8369290232658386, -0.7468264698982239, -0.8051637411117554, 1.294194221496582, -0.5073345899581909, -0.48841679096221924, 0.08045808225870132, -1.326612949371338, 0.12512488663196564, -1.024269700050354, -0.9496513605117798, -0.04103377088904381, 0.052717145532369614, 0.6898003220558167, -0.08502696454524994, -0.20346179604530334, -0.03822952136397362, 0.40131279826164246, 0.1455945521593094, -0.07592715322971344, -0.633560299873352, 0.035675495862960815, 0.12471090257167816, 0.1971966028213501, -0.9159044027328491, -0.7121442556381226, -0.7494999170303345, -0.3949147164821625, -0.017569195479154587, -0.2903302013874054, -0.2198190987110138, 1.2864097356796265, -0.6672621369361877, -0.5154792070388794, 0.02528120018541813, 0.029193036258220673, 0.05742155760526657, -0.07700039446353912, -0.11946730315685272, 1.0597705841064453, 0.3729591965675354, -0.315964937210083, 0.2608327567577362, 0.386926531791687, 0.31351959705352783, 0.22049051523208618, -0.26232215762138367, -0.08213891834020615, 0.25315216183662415, 0.46439608931541443, 0.3727787137031555, 0.47078341245651245, -0.3124822974205017, 0.29903683066368103, -0.5561538338661194, 0.28215062618255615, 0.32795819640159607, 0.45523399114608765, 0.23146629333496094, 0.27856290340423584, 0.15756061673164368, 0.1869899183511734, 0.051989633589982986, 0.11555256694555283, -1.0412371158599854, -0.1433800905942917, -0.27964872121810913, -0.7687907814979553, -0.1628597527742386, -0.10891093313694, 0.4335108697414398, 0.2663184404373169, 0.18936417996883392, 0.24984174966812134, -0.002863943576812744, 0.05787845700979233, 0.17259660363197327, 0.3342285752296448, 0.16786420345306396, 0.16896598041057587, -0.7396526336669922, -0.4266115725040436, -0.3917669653892517, 0.1585039347410202, -0.15686000883579254, 0.06313836574554443, 0.2203729748725891, 0.14582298696041107, -0.3306969404220581, 1.9998338222503662, 0.18168263137340546, 0.24534966051578522, 0.27740049362182617, 0.04354019835591316, 0.228676438331604, -0.5850859880447388, -0.11512702703475952, 0.017273183912038803, 0.1502695381641388, 0.07620467245578766, -4.7901482582092285, 0.0630778893828392, 0.2729451358318329, -0.1265430897474289, 0.15690813958644867, 0.10327841341495514, 0.09922023117542267, 0.2520003020763397, -0.03963897004723549, 0.2640717923641205, 0.1446908712387085, -0.029449956491589546, -0.06772083044052124, -0.21415816247463226, 0.11655840277671814, -0.943658709526062, 0.02269618585705757, 1.3181378841400146, 0.6930207014083862, -0.08716018497943878, -0.9004027247428894, 0.4529569447040558, 0.2732076644897461, 0.5646275281906128, -4.850162506103516, -3.9099855422973633, -4.004771709442139, 0.11823239177465439, 1.615481972694397, -1.2820082902908325, -1.017562747001648, 5.716000556945801, -0.5544209480285645, -0.5670633912086487, 0.1728491187095642, 2.6101267337799072, 0.17946380376815796, 0.0825703889131546, 0.05516641214489937, 5.656416416168213, 1.5453623533248901, -0.13238242268562317, 2.9986424446105957, 1.5294057130813599, 1.4885174036026, 1.3557413816452026, -0.823494553565979, -0.05741948261857033, 1.3422154188156128, 2.3505282402038574, 1.31316077709198, 3.138502597808838, -1.1237257719039917, 1.5431022644042969, -0.08229468017816544, 0.8902245759963989, 1.5175034999847412, 1.860618233680725, 1.4966278076171875, 1.5646395683288574, 1.3467416763305664, 0.7230137586593628, 0.6093513369560242, 0.720161497592926, -0.7516468167304993, 0.5397064685821533, -1.6844969987869263, -0.20342838764190674, -0.6796891093254089, 0.6512815356254578, 1.8926186561584473, 2.7439825534820557, 0.8015068769454956, 1.3173447847366333, -0.31828993558883667, 0.783147394657135, 0.9115920662879944, 1.1475279331207275, 0.5457974076271057, 0.5314759612083435, -0.2963891327381134, -0.03399105370044708, -0.013344421982765198, 0.3270668685436249, 0.07528689503669739, 0.5463772416114807, 0.2880639135837555, 0.20573976635932922, -0.41672393679618835, 2.3174102306365967, 1.4313582181930542, 1.2926722764968872, 0.9546725153923035, 0.3735062777996063, 0.5191226005554199, -0.4239376485347748, 0.10882848501205444, -0.10013893991708755, 0.6388878226280212, 0.07238941639661789, -0.9218392968177795, 0.7462332844734192, 0.8599657416343689, -1.196976661682129, 0.48661670088768005, 0.26573923230171204, -0.08906308561563492, 1.2876594066619873, -0.033311765640974045, 1.1690279245376587, 0.9809199571609497, 0.09869571030139923, -0.007940351963043213, -0.5290152430534363, -0.01734699308872223, -0.811394989490509, 0.4709327220916748, 0.8561391830444336, -0.9403699040412903, -0.6039953827857971]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (0, 20), 'etaBin': (1.37, 1.54)}}, 'et4_eta1': {'discriminator': {'threshold': 0.44499849081039428, 'nodes': [100, 5, 1], 'bias': [-0.04944121092557907, 0.04430503398180008, -0.17589996755123138, -0.04322429746389389, -0.033914901316165924, -0.3649325668811798], 'weights': [-1.0533475875854492, -4.960731506347656, -0.11462786793708801, -0.08051441609859467, 0.327058345079422, 0.9261538982391357, 0.9139630794525146, -1.5477986335754395, -2.7880916595458984, -3.127249002456665, 8.849225997924805, 0.9189647436141968, 2.5857772827148438, 5.538350582122803, 3.593130350112915, 5.4971089363098145, 5.557611465454102, 5.419483184814453, 6.3237457275390625, 7.038089275360107, 6.987907886505127, 6.842195987701416, 6.503592491149902, 6.325817584991455, 6.310937404632568, 6.3516926765441895, 6.195782661437988, 12.231324195861816, 6.420176982879639, 6.28207540512085, 4.799248695373535, 3.6904053688049316, 3.125208616256714, 2.9491443634033203, 2.520265817642212, 1.551713466644287, -0.14539076387882233, 2.5132787227630615, 2.754492998123169, 2.6617257595062256, -1.3799049854278564, 2.0000052452087402, 2.373865842819214, -0.48153719305992126, -7.9264020919799805, 5.072999954223633, -3.5379605293273926, -0.8016290664672852, 1.5370779037475586, -1.1268091201782227, -5.815518856048584, -0.6431751251220703, 6.390225887298584, 0.6136425733566284, 0.7596197724342346, 0.8415015339851379, 0.820252001285553, -1.7454701662063599, 0.9705983996391296, 1.0002537965774536, 0.6966873407363892, 0.3825032114982605, 0.9537915587425232, 12.97507095336914, 1.2517129182815552, 1.4221700429916382, 1.2482069730758667, 2.5883913040161133, 1.5484122037887573, 3.5056564807891846, -3.9746973514556885, 6.019525051116943, -0.4408854842185974, -0.40181291103363037, 1.1502372026443481, 3.0455968379974365, 4.79755163192749, 2.417346239089966, 0.9206371307373047, -0.08390868455171585, 3.050239324569702, 6.684665203094482, 6.6558051109313965, 5.875985622406006, 5.231296539306641, 1.4017248153686523, 2.5045998096466064, 4.597629070281982, 2.7267191410064697, 2.204145908355713, -0.257466197013855, 0.2739356756210327, 11.07122802734375, 4.34131383895874, 2.6431703567504883, 1.7330855131149292, 1.3199973106384277, 4.005731582641602, 0.48041751980781555, 1.6581690311431885, -0.8882415294647217, -0.2837415933609009, -0.1148887574672699, -0.12893220782279968, 0.010817923583090305, 0.027232317253947258, 0.08438871800899506, -0.43880653381347656, -0.8631213903427124, -0.5920184850692749, 2.2215394973754883, 0.1444978415966034, 0.6214796304702759, 1.1106393337249756, 3.1795196533203125, 1.3473886251449585, 5.22688102722168, 5.079331874847412, 1.1166990995407104, 1.4405477046966553, 1.4643628597259521, 1.3061424493789673, 1.2960573434829712, 1.2337698936462402, 1.1048407554626465, 1.1752914190292358, 1.1453886032104492, 2.510662794113159, 1.256697416305542, 1.3206971883773804, 0.8113711476325989, 0.439316064119339, 0.5039782524108887, 0.5507089495658875, 0.3218839466571808, 0.26522988080978394, -0.06579999625682831, 0.40335318446159363, 0.4419555366039276, 0.4951551854610443, -0.30802643299102783, 0.3927514851093292, 0.39081552624702454, -1.9454296827316284, -1.7610629796981812, 0.9781860709190369, -0.33280229568481445, -0.34309712052345276, 0.20731191337108612, -0.20004616677761078, -1.2053170204162598, -0.30718016624450684, 1.2052510976791382, -0.009037010371685028, 0.1409582495689392, 0.0468304418027401, 0.13052237033843994, -0.3239031732082367, 0.010680961422622204, 0.010477098636329174, 0.1628199815750122, -1.3150930404663086, 0.2301451861858368, 0.2888815402984619, 0.2545737028121948, 0.31536102294921875, 0.08720514178276062, 0.4105963408946991, 0.18502122163772583, 0.6155917048454285, -0.7690315842628479, 1.04706609249115, -0.34599512815475464, -0.39205202460289, 0.9817249178886414, 0.8604590892791748, 0.673933207988739, 0.4357556104660034, 0.09062683582305908, -0.010316171683371067, 1.0658905506134033, 1.2388548851013184, 1.3948793411254883, 1.183418869972229, 1.0338551998138428, 0.25307247042655945, 0.3510879576206207, 0.820881724357605, 0.5232108235359192, 0.2504698932170868, -0.14596788585186005, -0.9058675765991211, 2.17889666557312, 0.7428072690963745, 0.46675950288772583, 0.16106386482715607, 0.10857223719358444, 0.7520046234130859, -1.4653366804122925, 0.2758690416812897, 4.312921047210693, 1.1824429035186768, -0.09142965078353882, -1.8700180053710938, -0.26498135924339294, 1.2881745100021362, -1.0926264524459839, 1.1183371543884277, 4.033883571624756, 3.1037802696228027, -0.25055763125419617, -4.450815677642822, -2.6000101566314697, -5.531732559204102, -13.59540843963623, -5.578421115875244, -5.564455986022949, -5.565529823303223, -6.2331929206848145, -7.012181758880615, -6.9557294845581055, -6.835890769958496, -6.470211029052734, -6.1226067543029785, -6.211691379547119, -6.362425804138184, -6.327195644378662, -12.241724014282227, -6.542065143585205, -6.264378070831299, -4.969686508178711, 4.533326625823975, -6.366821765899658, -6.328834533691406, -3.595522403717041, -1.0085445642471313, 0.14215277135372162, -2.419379234313965, -2.666376829147339, -2.5424044132232666, 1.3114145994186401, -2.1734628677368164, -2.2009105682373047, 1.8521612882614136, -0.31155356764793396, -1.1938470602035522, 1.5211749076843262, 0.8266581296920776, -2.045912027359009, 1.192134976387024, 5.870670795440674, 0.6605153679847717, -6.553929805755615, -0.5716003179550171, 2.539950132369995, -0.6127597093582153, -0.7832842469215393, 1.8389278650283813, -0.8064548969268799, 1.8784267902374268, 2.566817045211792, 4.7225470542907715, 1.210046410560608, -1.1247453689575195, -1.3806527853012085, -0.119940847158432, -1.436501383781433, -6.662543296813965, -1.4934906959533691, -3.3701982498168945, 0.8845202326774597, -1.7395645380020142, 1.2993745803833008, 0.2521582245826721, -1.20425283908844, -2.669802665710449, -3.7791428565979004, -2.2830471992492676, -0.8884074091911316, -0.11100753396749496, -3.0859479904174805, -6.561391353607178, -6.598057746887207, -5.686880111694336, -5.302574634552002, 1.0235528945922852, -4.100517272949219, -4.595377445220947, -2.8082916736602783, -1.8729438781738281, -1.4939301013946533, -0.24779225885868073, -10.932708740234375, -4.199324131011963, -3.10957407951355, -1.9400962591171265, -1.2673074007034302, -4.026810169219971, -0.6247025728225708, -1.5338613986968994, 1.1100951433181763, 1.1665518283843994, 0.12421714514493942, 0.11102984845638275, -0.33227279782295227, -1.1237115859985352, -0.9166012406349182, 1.7339065074920654, 3.916808605194092, 3.1300225257873535, -2.1336519718170166, -0.8837668299674988, -2.623211145401001, -5.4205451011657715, -3.561551809310913, -5.4753499031066895, -5.540642738342285, -5.460385799407959, -6.376492500305176, -6.922759532928467, -6.925884246826172, -6.637295246124268, -6.540719985961914, -6.246999263763428, -6.362174034118652, -6.152751445770264, -6.105291843414307, -12.212980270385742, -6.607662200927734, -6.197385311126709, -4.879158973693848, -2.284531831741333, -3.0351200103759766, -2.9112417697906494, -2.406902551651001, -1.4472754001617432, 0.2170599102973938, -2.420147657394409, -2.6974053382873535, -2.5806961059570312, -0.6764609217643738, -2.005291223526001, -2.2450711727142334, 1.9639124870300293, 7.808681011199951, -5.587013244628906, 1.6307839155197144, 0.7189077734947205, -1.6309432983398438, 1.1541657447814941, 5.830270767211914, 0.5934906005859375, -6.3893818855285645, -0.40460774302482605, -0.7126460671424866, -0.6581454277038574, -0.6585305333137512, 1.8650702238082886, -1.0026404857635498, -1.0289264917373657, -0.7238054275512695, 5.628936290740967, -1.113128900527954, -3.9180262088775635, -1.3258835077285767, -1.2367022037506104, -0.9189690947532654, -2.6087000370025635, -1.5012307167053223, -3.514204502105713, 3.8040013313293457, -5.876565456390381, 0.444823682308197, 0.377777099609375, -1.180335283279419, -1.1370363235473633, -3.942268133163452, -2.4030489921569824, -0.9437010288238525, -0.10503961890935898, -3.2399961948394775, -6.6350016593933105, -6.663013935089111, -5.680294990539551, -5.203977584838867, -1.593369483947754, -2.5124847888946533, -4.625247478485107, -2.780906915664673, -1.8100066184997559, 0.2190827876329422, 0.4663642346858978, -10.991830825805664, -4.305461406707764, -2.679348945617676, -1.7457140684127808, -1.332257866859436, -3.85837721824646, -0.49550768733024597, -1.6103028059005737, -0.8992785215377808, -1.1767441034317017, -0.11871474236249924, -0.07303480803966522, 0.1519879549741745, 1.1246464252471924, 0.9333445429801941, -1.6379239559173584, -4.007765293121338, -3.041372537612915, 2.2097861766815186, 0.835145890712738, 2.722548246383667, 5.448756694793701, 3.6146490573883057, 5.605247974395752, 5.417119026184082, 5.421097278594971, 6.324037551879883, 6.927212238311768, 6.9888200759887695, 6.815331935882568, 6.630133628845215, 6.332214832305908, 6.136437892913818, 6.333812713623047, 6.15930700302124, 12.285018920898438, 6.558304786682129, 6.389136791229248, 4.83615779876709, 2.199603319168091, 2.9702954292297363, 2.9945969581604004, 2.362839698791504, 1.4485538005828857, -0.12990351021289825, 2.389958143234253, 2.7917966842651367, 2.574023485183716, 0.7320513129234314, 1.929429292678833, 2.192650079727173, -1.8061151504516602, -7.859200954437256, 5.590559005737305, -3.5589044094085693, -0.6465646624565125, 1.5923240184783936, -1.1624454259872437, -5.9998626708984375, -0.5720399022102356, 6.556267261505127, 0.5708186626434326, 0.822184145450592, 0.8456826210021973, 0.7594335675239563, -1.9479042291641235, 1.0158330202102661, 0.8340901732444763, 0.8298597931861877, 0.23620949685573578, 1.0797489881515503, 3.7128658294677734, 1.3794223070144653, 1.405644416809082, 1.3387466669082642, 2.746525287628174, 1.3935980796813965, 3.4047136306762695, -3.9192328453063965, 5.827391147613525, -0.3837888240814209, -0.2990424633026123, 1.2860881090164185, 1.150420904159546, 3.7557263374328613, 2.303722620010376, 0.78304123878479, -0.1005493775010109, 3.1295223236083984, 6.551143646240234, 6.725265026092529, 5.739577770233154, 5.283452987670898, 1.5187712907791138, 2.5129172801971436, 4.559238433837891, 2.8698642253875732, 1.8264973163604736, -0.23354597389698029, 0.32074859738349915, 10.978507995605469, 4.260485649108887, 2.6691994667053223, 1.783060908317566, 1.209847092628479, 3.893599033355713, 0.673551082611084, 1.6266344785690308, -1.943715214729309, -2.344973564147949, 1.1479488611221313, 2.110046148300171, -1.8749566078186035]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (0.8, 1.37)}}, 'et4_eta3': {'discriminator': {'threshold': 0.38999854326248168, 'nodes': [100, 5, 1], 'bias': [-0.048734571784734726, 0.12641683220863342, -0.10319222509860992, -0.11600282788276672, 0.15744265913963318, -0.5986704230308533], 'weights': [1.489107608795166, 1.724515438079834, -0.2765308618545532, -1.6453315019607544, -0.21027891337871552, -0.20602554082870483, 0.5383106470108032, -0.8038612008094788, 1.7179598808288574, 1.4568285942077637, 0.8245131373405457, -0.5622129440307617, -0.6026278138160706, 0.39992600679397583, -2.7379024028778076, -4.853421211242676, -1.2196292877197266, -3.644157648086548, -4.464820384979248, -7.975650310516357, -5.083973407745361, 0.38998836278915405, -3.331301689147949, -8.42818546295166, -3.026576042175293, -2.88356876373291, -2.214590549468994, -7.139639854431152, -3.199021339416504, -2.4674696922302246, 0.24747680127620697, -3.017328977584839, -2.142301082611084, -5.159522533416748, -2.2962796688079834, -4.501381874084473, -1.645451545715332, -1.3673712015151978, -1.8717037439346313, -3.5510478019714355, -0.7411429286003113, -2.4653854370117188, -0.9555882811546326, -2.6397929191589355, 1.060547947883606, -2.5249483585357666, -1.437869668006897, -2.229560375213623, 3.980008840560913, -2.3240387439727783, 1.3334760665893555, -1.5189234018325806, 2.3470098972320557, 0.9187018275260925, 2.4415249824523926, 3.757972240447998, 3.246690034866333, -1.3531960248947144, 1.9973145723342896, -2.346579074859619, -0.18471047282218933, -0.818747878074646, 3.9583687782287598, 0.030996698886156082, 4.460407733917236, -0.7802447080612183, -0.016633836552500725, -2.2098493576049805, -2.7068231105804443, -0.935962438583374, 1.554163932800293, -1.6539173126220703, 0.6438606381416321, 0.5441612005233765, -1.3060957193374634, -1.4065288305282593, -1.4749877452850342, -1.0665733814239502, -1.7078192234039307, -1.0966951847076416, -0.37618157267570496, -3.0378973484039307, -4.626641273498535, -3.6512129306793213, -2.7534379959106445, -1.8836853504180908, -2.201690435409546, -1.0649908781051636, -0.3226732313632965, -2.448376178741455, -0.6887656450271606, -0.43390387296676636, -6.017397880554199, -2.6499719619750977, -0.49148544669151306, -1.7078983783721924, -0.5322701930999756, -0.11754774302244186, 0.10815437883138657, -1.056339979171753, -1.6629281044006348, -1.5980372428894043, 0.11593876034021378, 1.5261839628219604, 0.2071867138147354, 0.1955910623073578, -0.6961594820022583, 0.8233086466789246, -1.7356479167938232, -1.4943840503692627, -0.8582726716995239, 0.6608161926269531, 0.6234508752822876, -0.4115613102912903, 2.6869311332702637, 4.751109600067139, 1.206948161125183, 3.6823651790618896, 2.9429678916931152, 6.475310325622559, 5.1590399742126465, -0.4134208559989929, 3.188952922821045, 8.408431053161621, 3.0563151836395264, 5.409724235534668, 2.31276535987854, 7.252096176147461, 3.0659987926483154, 2.3733129501342773, -0.3197944462299347, 2.9546256065368652, 2.013441562652588, 5.170455455780029, 2.3582658767700195, 4.627410888671875, 1.642845630645752, -0.42225381731987, 1.566131830215454, 3.544184446334839, 0.8546712398529053, 2.5705087184906006, 1.0504372119903564, 2.5333847999572754, -1.2105087041854858, 2.571927309036255, 1.5176814794540405, 2.063802480697632, -3.8979246616363525, 2.20339298248291, -1.2640695571899414, 1.4322503805160522, -2.2504422664642334, -0.9932040572166443, -2.30411434173584, -3.872314453125, -3.149369716644287, 1.3449445962905884, -2.0023064613342285, 2.314568042755127, -0.7109601497650146, 0.7445508241653442, -4.056469917297363, -0.007392288185656071, -4.279834270477295, 0.7472338676452637, 0.16936682164669037, 2.3908958435058594, 1.4853827953338623, 0.8461674451828003, -1.623788595199585, 1.8801069259643555, -0.9429315328598022, -0.5220457911491394, 1.1812620162963867, 1.41241455078125, 1.3002620935440063, 1.0183937549591064, 1.7927227020263672, 1.0071781873703003, 0.4512437582015991, 2.919395685195923, 14.041594505310059, 3.8291432857513428, 2.8332457542419434, 1.7189116477966309, 2.021446943283081, 0.9982815980911255, 0.5194767713546753, 2.231724739074707, 0.5866437554359436, 0.5114965438842773, 6.004909515380859, 2.6935973167419434, 0.6125931143760681, 1.6291757822036743, 0.539778470993042, 0.14756469428539276, -0.005939469672739506, 0.9380841255187988, 0.7313734889030457, 0.6238921880722046, -0.05606410652399063, -3.4576642513275146, -0.7394446730613708, -0.5056309103965759, 1.1708277463912964, -0.07838332653045654, 1.4636929035186768, 0.3365824818611145, 0.7694878578186035, -10.08647632598877, -0.11698932200670242, -0.010649384930729866, -1.4873687028884888, -0.8243563175201416, -38.86589050292969, -3.5834689140319824, -10.238457679748535, -40.11923599243164, -2.096503257751465, -2.5557754039764404, -1.2065658569335938, -3.7377657890319824, -1.3167790174484253, -1.1332790851593018, -0.8548119068145752, -3.3813157081604004, -1.3726880550384521, -0.8461487889289856, 1.0748355388641357, -1.3134803771972656, -0.7024919390678406, -2.119335889816284, -0.989439070224762, -1.8101933002471924, -0.9571784138679504, 0.49077108502388, -0.7323948740959167, -1.5321048498153687, 15.670473098754883, -0.8998259902000427, 2.567972183227539, -1.013662576675415, 7.016937255859375, -0.8518349528312683, -0.08405768871307373, -0.8864167332649231, 1.9270480871200562, -0.5945520997047424, 1.146668791770935, -0.6261212825775146, 1.051482915878296, 6.600464344024658, 1.2396928071975708, 1.6438459157943726, 0.14079098403453827, 3.602713108062744, 1.0004342794418335, -1.3551424741744995, 0.6277632117271423, -0.036265917122364044, 0.2190929800271988, 0.012133530341088772, 2.0729174613952637, 0.06852515786886215, 0.008781003765761852, -0.8805752992630005, -3.921480417251587, -0.09866628795862198, 0.09090970456600189, -0.6310464143753052, 0.35451918840408325, 0.3166377544403076, -0.6870806217193604, -3.3407504558563232, -3.329881191253662, -2.710155963897705, 4.222609996795654, -0.19457216560840607, 0.14979341626167297, -0.9626338481903076, -1.571986436843872, -1.5206676721572876, -1.0208123922348022, -0.3517363369464874, -0.5923582315444946, -0.24676944315433502, 0.054774485528469086, -0.9463720321655273, -0.2548476755619049, -0.3125629723072052, -2.0656211376190186, -1.0765247344970703, -0.025250207632780075, -0.14637288451194763, -0.20536333322525024, 0.19710904359817505, 0.14765994250774384, -0.2625049352645874, 1.5341681241989136, 1.7524620294570923, -0.10970014333724976, -1.5440655946731567, -0.3015003800392151, -0.2794300317764282, 0.5884311199188232, -0.8277735710144043, 1.6549763679504395, 1.4094862937927246, 2.1838538646698, -0.7344938516616821, -0.514830470085144, 0.35000818967819214, -2.7248005867004395, -4.628044605255127, -1.014535665512085, -3.6895315647125244, -2.8926315307617188, -6.404745578765869, -5.048038959503174, -0.6299965977668762, -3.3444137573242188, -8.45513916015625, -3.1140575408935547, -2.953204870223999, -2.3598601818084717, -6.4780473709106445, -3.1285459995269775, -2.258157730102539, 0.2953149080276489, -2.898334503173828, -2.005582809448242, -5.118051052093506, -2.3204307556152344, -4.4843549728393555, -1.6756892204284668, -1.3451989889144897, -1.8508540391921997, -3.6583309173583984, -0.7622156739234924, -2.5833017826080322, -0.9906833171844482, -2.577165365219116, 1.1367939710617065, -2.550694227218628, -1.4421054124832153, -2.1926791667938232, 3.912644624710083, -2.3250620365142822, 1.4524301290512085, -1.5569703578948975, 2.2569525241851807, 1.0268765687942505, 2.355769157409668, 3.8217110633850098, 3.2897284030914307, -1.3397530317306519, 1.8762733936309814, -2.23738694190979, 0.873782753944397, -0.6474822759628296, 0.16729366779327393, -0.09846816211938858, 4.426638126373291, -0.16099195182323456, -0.13280081748962402, -2.2775659561157227, -1.632291555404663, -0.6697500348091125, 1.623593807220459, -1.6896445751190186, 0.8589785099029541, 0.23151010274887085, -1.2829310894012451, -1.2888672351837158, -1.4663902521133423, -1.0433361530303955, -1.8323240280151367, -0.9110105037689209, -0.35080310702323914, -3.0115251541137695, -4.326592922210693, -3.72282338142395, -2.8973615169525146, -1.6929476261138916, -2.212578773498535, -0.9214056730270386, -0.48895588517189026, -2.3020389080047607, -0.6801794767379761, -0.37743180990219116, -5.978786468505859, -2.6536450386047363, -0.5682191252708435, -1.7038291692733765, -0.5761532783508301, -0.06598766148090363, 0.045243971049785614, -0.8737918138504028, -1.6567168235778809, -1.6992138624191284, 0.11865392327308655, 1.5675640106201172, 0.34421461820602417, 0.2133748084306717, -0.6436053514480591, 0.7672744393348694, -1.5915262699127197, -1.4994463920593262, -0.8917014598846436, 0.548654317855835, 0.5257238149642944, -0.5165659785270691, 2.6777701377868652, 4.766880989074707, 1.0924832820892334, 3.570284605026245, 4.55461311340332, 7.964165687561035, 5.054891586303711, 0.6123438477516174, 3.2275891304016113, 8.300087928771973, 3.0806758403778076, 2.8538706302642822, 2.4023661613464355, 7.0856475830078125, 3.0447909832000732, 2.401578426361084, -0.30921295285224915, 2.937774658203125, 1.9423860311508179, 5.117636203765869, 2.3809406757354736, 4.480501174926758, 1.8529014587402344, -0.3488796055316925, 2.0322256088256836, 3.6463782787323, 0.9211287498474121, 2.5814568996429443, 1.0386147499084473, 2.50089168548584, -1.0598489046096802, 2.549089193344116, 1.4544233083724976, 2.1018590927124023, -3.7877278327941895, 2.188398599624634, -1.4739162921905518, 1.4401271343231201, -2.162353754043579, -0.9193229079246521, -2.406433582305908, -3.761199474334717, -3.2782623767852783, 1.3340801000595093, -1.812551498413086, 1.7757724523544312, 0.3416861891746521, 0.699795126914978, -3.9801878929138184, -0.06104814261198044, -4.3792619705200195, 0.18610496819019318, -0.03304402530193329, 2.256460189819336, 2.7502853870391846, 0.6877647638320923, -1.6541996002197266, 1.8761110305786133, -0.8456857204437256, -0.459907591342926, 1.1474002599716187, 1.4152284860610962, 1.482133150100708, 1.1663758754730225, -0.5718396306037903, 1.0541284084320068, 0.5823667645454407, 3.0226240158081055, 4.504027843475342, 3.8000710010528564, 2.7362895011901855, 1.6714212894439697, 2.312886953353882, 1.0175235271453857, 0.45927074551582336, 2.260281801223755, 0.6990354061126709, 0.48493561148643494, 5.986856460571289, 2.6371665000915527, 0.514274537563324, 1.5165174007415771, 0.5823063850402832, 0.0919175073504448, -0.010943679139018059, 0.90785813331604, 4.302499294281006, -2.4323830604553223, 0.6809970140457153, 0.6679200530052185, -0.9922124147415161]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (1.54, 2.5)}}, 'et3_eta0': {'discriminator': {'threshold': 0.40999852418899535, 'nodes': [100, 5, 1], 'bias': [-0.0677146464586258, 0.01704608090221882, -0.3257580101490021, 0.33917805552482605, 0.34711459279060364, -0.3129195272922516], 'weights': [-55.02075958251953, -11.980169296264648, -8.812077522277832, 0.057916201651096344, -0.45083141326904297, -0.7015589475631714, -0.23670551180839539, -1.2097795009613037, -2.539445400238037, -2.6720333099365234, 1.1308411359786987, 0.39122942090034485, 6.559852123260498, 2.8712520599365234, 2.9141130447387695, 2.9044928550720215, 2.243557929992676, 3.6076762676239014, 3.6763367652893066, 3.462643623352051, 3.8531761169433594, 4.0217742919921875, 2.884087324142456, 3.310631036758423, 3.005481004714966, 2.478203058242798, 2.9754574298858643, 2.5338714122772217, 2.6201016902923584, 2.6889524459838867, 2.264381170272827, 1.0531092882156372, 2.303163766860962, 1.9610322713851929, 1.8308334350585938, 1.5624895095825195, 1.4677995443344116, 1.5363810062408447, 1.3023184537887573, 1.5705058574676514, 18.088268280029297, 2.747138738632202, -0.5428839921951294, -0.3703663647174835, -0.3785107731819153, 2.779938220977783, 1.4333616495132446, 1.568895936012268, 0.428409606218338, 1.2578153610229492, 1.317581295967102, -1.5397913455963135, 0.5036625862121582, -2.423191547393799, 0.6797366738319397, 1.2985190153121948, 0.6452349424362183, -0.7516332268714905, 3.133150100708008, 3.204082727432251, 0.47348833084106445, -0.3011056184768677, -0.39402440190315247, -0.8659201860427856, -1.802432894706726, -1.8288511037826538, 0.5907695889472961, -0.6233327984809875, 0.22252286970615387, 0.815199613571167, -1.9177621603012085, -1.6068177223205566, -0.49719715118408203, -0.28497713804244995, 1.3481165170669556, 1.220120906829834, 2.4768738746643066, 1.220518946647644, 1.2663979530334473, 0.3111969828605652, 1.609475016593933, 1.8878488540649414, 3.8263957500457764, 2.5961267948150635, 0.9094277620315552, 2.31742262840271, 1.451043963432312, 4.934955596923828, 4.559588432312012, 3.2284741401672363, 1.3086919784545898, -0.38509032130241394, -3.622605800628662, 3.0023610591888428, 1.4413317441940308, -0.1998918354511261, 3.6725356578826904, 2.5428428649902344, -0.8858456015586853, -0.6001783013343811, 57.897064208984375, 12.017651557922363, 7.696766376495361, 0.03296565264463425, 0.6304057240486145, 0.6800051927566528, 0.15519164502620697, 1.19718337059021, 2.437086343765259, 4.496309757232666, -1.3664907217025757, -0.4344746768474579, -6.53448486328125, -2.892951488494873, -2.8867318630218506, -2.9650864601135254, -2.3744089603424072, -3.7998151779174805, -3.6700632572174072, -3.2800090312957764, -3.8432140350341797, -3.9181973934173584, -3.1030828952789307, -3.168778657913208, -3.078685998916626, -2.58035945892334, -2.8544163703918457, -2.682767629623413, -2.6830108165740967, -2.5776331424713135, -2.1327083110809326, -0.900214433670044, -2.173473834991455, -2.0470988750457764, -1.8375910520553589, -1.5037643909454346, -1.552957534790039, -1.3741053342819214, -1.2668365240097046, -1.5077086687088013, -18.038610458374023, -1.601119875907898, 0.5604377388954163, 0.13186807930469513, 0.3623488247394562, -2.7222962379455566, -1.4819079637527466, -1.4771692752838135, -0.4879170060157776, -1.292600393295288, -1.2937439680099487, 1.5008662939071655, -0.6854048371315002, 2.478614091873169, -0.8579885363578796, -1.3029316663742065, -0.5043449401855469, 0.9267913103103638, -3.1233668327331543, -1.25843346118927, -0.4559805393218994, 0.2791209816932678, 0.7067294716835022, 1.0025086402893066, 1.9448896646499634, 1.8024455308914185, -0.6460127234458923, 0.6700329184532166, -0.3372054994106293, -0.8243141174316406, 1.7772880792617798, 1.729379415512085, 0.481143593788147, 0.18227368593215942, -1.215772271156311, -1.2753404378890991, -2.540102005004883, -1.1450990438461304, -1.2187203168869019, -0.3705129623413086, -1.55818772315979, -1.8268511295318604, -3.676107406616211, -2.4574849605560303, -1.045733094215393, -2.2315969467163086, -1.5858746767044067, -4.938912868499756, -4.310708045959473, -3.0374510288238525, -1.2027181386947632, 0.24889717996120453, 3.4594502449035645, -2.9479782581329346, -1.4303020238876343, 0.031895071268081665, -3.6551425457000732, -2.3365187644958496, 0.7751843929290771, 0.513533890247345, 2.818881034851074, 1.7155451774597168, -0.7982422113418579, 0.2636367976665497, 0.9222109317779541, 0.7520069479942322, 0.6573650240898132, 1.2842695713043213, 2.503244638442993, 2.3954808712005615, -1.1094049215316772, -2.8555734157562256, -1.4840770959854126, -3.0204551219940186, -2.8042595386505127, -2.7689924240112305, -3.1320712566375732, -3.7152786254882812, -3.52154803276062, -3.5151376724243164, -3.8585214614868164, -4.058757305145264, -2.9470889568328857, -3.183985710144043, -3.0328783988952637, -2.617356538772583, -2.590102195739746, -2.6782138347625732, -2.683642625808716, -2.5790631771087646, 1.2367427349090576, -0.8425788879394531, -2.023442268371582, -1.594313621520996, -1.558278203010559, -1.415696620941162, -1.5444902181625366, -1.4593127965927124, -1.3179001808166504, -1.2771642208099365, -2.5638015270233154, -1.325626015663147, 1.7976620197296143, 0.249821275472641, 0.41884806752204895, -2.6822097301483154, -1.4065210819244385, -1.0397224426269531, -0.5948566198348999, -1.3588923215866089, -1.401363492012024, 1.3737119436264038, -0.4631251096725464, 2.5272862911224365, -1.5698579549789429, -1.4154775142669678, -0.46269166469573975, 2.992039918899536, -2.9625604152679443, -2.3306517601013184, -0.4629423916339874, 0.6999631524085999, 0.6064558029174805, 0.8948763608932495, 1.8590259552001953, 2.355193853378296, -0.3445756733417511, 0.5104489922523499, 0.03441718965768814, -0.6162105202674866, 1.779867172241211, 1.8767695426940918, 0.9110656380653381, 0.5424016714096069, -0.6345865726470947, -1.8272885084152222, -2.2392795085906982, -0.7266373634338379, -1.2709898948669434, -0.246825709939003, -1.6157077550888062, -1.547071099281311, -3.6486704349517822, -2.412764072418213, -1.0306228399276733, -2.143760919570923, -1.458570122718811, -5.052695274353027, -4.211669445037842, -3.145329713821411, -0.7986577153205872, 0.3417644798755646, -3.6237759590148926, -3.022977113723755, -1.4649693965911865, -0.035447005182504654, -3.619277000427246, -2.3928732872009277, 1.1435751914978027, 0.9424856305122375, -2.73766827583313, -1.704036831855774, 0.3971812427043915, -0.21477511525154114, -0.8080562353134155, -0.8217794299125671, -0.47060322761535645, -1.203309178352356, -2.568970203399658, -2.5404233932495117, 6.292684078216553, 2.947788953781128, 1.4641928672790527, 3.1286380290985107, 2.837716579437256, 2.857640504837036, 2.967209577560425, 3.803098201751709, 3.7022595405578613, 3.3665242195129395, 4.005894184112549, 4.081570625305176, 2.954195737838745, 3.050560235977173, 3.077486991882324, 2.4677562713623047, 2.420515775680542, 2.5797646045684814, 2.707798480987549, 2.4894731044769287, -1.093558669090271, 0.9331942200660706, 1.9610410928726196, 1.5238404273986816, 1.7181380987167358, 1.4524877071380615, 1.3850703239440918, -1.5304865837097168, 1.4504464864730835, 1.3073198795318604, 2.4940080642700195, 1.4651581048965454, -1.6607904434204102, -0.32477012276649475, -0.42646878957748413, 2.5879030227661133, 1.4349029064178467, 0.7061697244644165, 0.6092514991760254, 1.3131141662597656, 0.6447135806083679, -1.5033351182937622, 0.32984453439712524, -2.586721181869507, 1.5963002443313599, 1.3415871858596802, 0.50895756483078, -2.879276990890503, 3.035945415496826, 2.3233251571655273, 0.5005916953086853, -0.4830448627471924, -0.6859027743339539, -0.9342104196548462, -2.2226526737213135, -2.2951338291168213, 0.35681870579719543, -0.522974967956543, -0.14108940958976746, 0.48208749294281006, -1.7474632263183594, -1.7982937097549438, -0.8968064785003662, -0.38790363073349, 0.6533034443855286, 1.8519915342330933, 2.0535101890563965, 0.7590082287788391, 1.3900814056396484, 0.3306892216205597, 1.6168193817138672, 1.5958890914916992, 3.6224141120910645, 2.536128044128418, 1.0388962030410767, 2.1587774753570557, 1.4933043718338013, 4.852158546447754, 4.084129810333252, 3.012596607208252, 0.6639731526374817, -0.33184030652046204, 3.061025619506836, 3.0687358379364014, 1.3361337184906006, 0.006485926453024149, 3.7103233337402344, 2.5270721912384033, -1.2000093460083008, -1.0881695747375488, -2.8638813495635986, -1.7297691106796265, 0.3566191494464874, -0.11082221567630768, -0.8280302882194519, -0.7154039740562439, -0.42737245559692383, -1.134792447090149, -2.432609796524048, -2.4447786808013916, 6.2556562423706055, 2.7751049995422363, 1.6699426174163818, 3.1209113597869873, 2.956786632537842, 2.8774077892303467, 3.1412899494171143, 3.878533124923706, 3.669942617416382, 3.3664700984954834, 4.059711933135986, 4.137976169586182, 3.0100901126861572, 3.249464750289917, 2.9256374835968018, 2.4683899879455566, 2.479074239730835, 2.7487406730651855, 2.7077996730804443, 2.6429502964019775, -1.2666351795196533, 1.0618983507156372, 1.833869457244873, 1.5651453733444214, 1.6958791017532349, 1.5602469444274902, 1.5479367971420288, -1.4943513870239258, 1.3717821836471558, 1.3516325950622559, 2.64095139503479, 1.364629864692688, -1.8042676448822021, -0.22699344158172607, -0.27980726957321167, 2.5786023139953613, 1.2975306510925293, 0.7719959020614624, 0.660222053527832, 1.3979945182800293, 0.6953219771385193, -1.3833836317062378, 0.4862965941429138, -2.465054988861084, 1.6602401733398438, 1.3310189247131348, 0.6160938143730164, -2.771939516067505, 2.939441680908203, 2.4456262588500977, 0.5064876079559326, -0.49765634536743164, -0.6898133158683777, -0.8005670309066772, -2.1807708740234375, -2.306140184402466, 0.343305379152298, -0.5731406807899475, -0.10079710185527802, 0.4287020266056061, -2.080275774002075, -1.8659745454788208, -0.8194320201873779, -0.5372909307479858, 0.6682360172271729, 1.8211109638214111, 2.14973783493042, 0.8914849162101746, 1.40985906124115, 0.22297127544879913, 1.5792601108551025, 1.6765486001968384, 3.649811267852783, 2.4001193046569824, 0.9910076856613159, 2.2349510192871094, 1.6016310453414917, 4.926762104034424, 4.282641887664795, 3.039583206176758, 0.8457143902778625, -0.3821832537651062, 3.088564395904541, 2.991649866104126, 1.4345979690551758, -0.17900963127613068, 3.637394905090332, 2.3571064472198486, -1.1807541847229004, -1.1359692811965942, -0.627993643283844, 0.3810631334781647, 1.6050859689712524, -1.7380315065383911, -2.641709566116333]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (0, 0.8)}}, 'et4_eta0': {'discriminator': {'threshold': 0.44999848604202269, 'nodes': [100, 5, 1], 'bias': [-0.10006356239318848, 0.1718388795852661, 0.1917187124490738, 0.12616270780563354, 0.2410246878862381, -0.14420321583747864], 'weights': [1.3129212856292725, 1.9736900329589844, -0.05472411587834358, -0.012819326482713223, 0.6576101183891296, -0.18957450985908508, 0.2618473768234253, 0.8116065859794617, 1.5089197158813477, 1.6602896451950073, -2.324342966079712, -2.6335017681121826, -3.753807544708252, -3.131269931793213, -3.1132469177246094, -3.0287232398986816, -3.71518874168396, -3.115664482116699, -1.7347663640975952, -3.263540029525757, -3.8394622802734375, -3.6420950889587402, -3.2358949184417725, -4.110813140869141, -2.3162546157836914, -2.3050897121429443, -2.138559341430664, -1.8476779460906982, -2.891035556793213, -1.6965510845184326, -1.8116403818130493, -1.7551342248916626, -3.103017568588257, -1.8355472087860107, -1.1184914112091064, 0.20531444251537323, -0.8951571583747864, -1.864946722984314, -1.0165525674819946, -1.0111479759216309, -0.6755116581916809, -1.2885771989822388, -1.6300872564315796, -1.4723033905029297, -1.5038915872573853, -1.082114577293396, -1.7087018489837646, -2.156355381011963, -0.33264705538749695, 1.0099273920059204, 4.122315883636475, -0.7196881175041199, -0.08137873560190201, -0.7342121005058289, -0.1646161526441574, -1.172550916671753, -0.4540753960609436, -0.5100690126419067, 0.29078614711761475, 0.3207652270793915, -0.41364768147468567, 0.6090594530105591, 0.7108191251754761, -0.9547742009162903, 0.17599211633205414, -0.1000346764922142, 1.3198931217193604, -0.39284616708755493, 0.5073610544204712, -0.23496878147125244, -0.4607142508029938, 2.786182165145874, 0.5491321086883545, 0.43314892053604126, -0.9519550800323486, -1.8739690780639648, -1.863187551498413, -1.6626156568527222, -0.4910593330860138, -0.2357858121395111, -0.8017576336860657, -3.384251594543457, -4.843245983123779, -3.461277723312378, -1.8609352111816406, -1.5307388305664062, -0.9863808751106262, -0.48077061772346497, -2.9560184478759766, -3.449439764022827, -0.9360039234161377, -0.05590256303548813, -3.1869900226593018, -2.9260408878326416, -1.2129029035568237, -0.17934133112430573, -3.176992177963257, -2.972210645675659, -0.20930150151252747, 0.3028154671192169, -1.1506836414337158, -1.2522287368774414, -0.05205778032541275, -0.15614837408065796, -0.5083153247833252, 0.20868319272994995, -0.3071171045303345, -0.7897494435310364, -1.6538289785385132, -0.9413822293281555, -0.8270339965820312, 2.773322582244873, 3.700944185256958, 3.0007646083831787, 3.786634922027588, 3.1493468284606934, 3.906508684158325, 2.977834939956665, 3.101003885269165, 3.054391860961914, 3.711411237716675, 3.765735626220703, 3.1184146404266357, 4.00459098815918, 2.410898447036743, 2.38869571685791, 2.058542251586914, 2.011187791824341, 2.767580509185791, 1.6639628410339355, 1.7150696516036987, 1.6797326803207397, 2.8663787841796875, 1.8851468563079834, 1.125571608543396, -0.0986524224281311, 0.9621352553367615, 1.82829749584198, 0.8707053661346436, 0.9323490858078003, 0.814997136592865, 1.2820088863372803, 1.720960021018982, 1.5272647142410278, 1.598755955696106, 0.963066041469574, 1.6235756874084473, 2.122020959854126, 0.3347413241863251, -0.9579721689224243, -4.046114921569824, 0.7782506346702576, -0.0035737596917897463, 0.6455525755882263, 0.19317804276943207, 1.1521235704421997, 0.4930703341960907, 0.4550166130065918, -0.37901899218559265, -0.3270445466041565, 0.3274492025375366, -0.539054274559021, -0.5395851731300354, 0.7178611755371094, -0.05988440290093422, 0.01733865961432457, -1.281239628791809, 0.31611427664756775, -0.3575558364391327, 0.38146933913230896, 0.5645953416824341, 0.12982402741909027, -0.6677186489105225, -0.49713197350502014, 0.7682026624679565, 1.85271155834198, 1.6783770322799683, 1.6524136066436768, 0.49185889959335327, 0.3126184046268463, 0.8408320546150208, 3.202183485031128, 5.248801231384277, 3.417248487472534, 1.6360862255096436, 1.5080029964447021, 0.9480173587799072, 0.5543376207351685, 4.750268936157227, 3.3250675201416016, 0.7527222037315369, -0.10813198983669281, 3.389779567718506, 2.9021639823913574, 1.2450960874557495, 0.23857314884662628, 3.071561574935913, 3.0360007286071777, 0.19459818303585052, -0.2696147859096527, -3.9927499294281006, -1.939612627029419, -0.4994182586669922, 0.028192076832056046, -0.6179304122924805, 0.25054115056991577, -0.3669547438621521, -0.8525370955467224, -2.438474655151367, -1.521085500717163, 2.2427875995635986, 2.5307037830352783, 3.7332987785339355, 2.959458351135254, 1.3376234769821167, 3.193125009536743, 3.7558045387268066, 3.129946708679199, 1.8431442975997925, 3.163658857345581, 3.683605194091797, 3.7931203842163086, 1.9662631750106812, 4.037752151489258, 2.372846841812134, 2.2352535724639893, 2.064286470413208, 1.8608046770095825, 2.984282970428467, 1.7023789882659912, 1.595791220664978, 1.8516281843185425, 3.015812635421753, 1.723741054534912, 1.242802619934082, -0.12586787343025208, 1.0458545684814453, 1.867552638053894, 1.0384708642959595, 0.9822914004325867, 0.8339194655418396, 1.2455378770828247, 1.5150314569473267, 1.3689765930175781, 1.5302659273147583, 0.9511551260948181, 1.7531790733337402, 2.206747531890869, 0.2325689047574997, -1.0982974767684937, -4.15520715713501, 0.5602730512619019, -0.09719135612249374, 0.7061708569526672, 0.06024713069200516, 0.4242868721485138, 0.37279364466667175, 0.5726522207260132, -0.1750050038099289, -0.32539764046669006, 0.2408335953950882, -0.6925297975540161, -0.6065151691436768, 0.8218656182289124, -0.16971458494663239, 0.08742441982030869, -1.3567569255828857, 0.5332053899765015, -0.5007674098014832, 0.46124863624572754, 0.5888156890869141, -1.0300825834274292, -0.6071169972419739, -0.43670082092285156, 0.7580206394195557, 1.8257606029510498, 1.7451869249343872, 1.7521692514419556, 0.5098414421081543, 0.2590177655220032, 0.8195390105247498, 0.9641978144645691, 4.837606906890869, 3.2868900299072266, 1.818782091140747, 1.434892177581787, 0.9448391795158386, 0.5985550284385681, 2.9061574935913086, 3.282453775405884, 0.8079367876052856, -0.15017493069171906, 3.1777594089508057, 2.918867349624634, 1.1166198253631592, 0.15977276861667633, 3.140610456466675, 3.0788114070892334, 0.5319637656211853, -0.09137807041406631, -3.8286354541778564, -1.8639181852340698, -0.3282071352005005, 0.03373199328780174, -0.5669344663619995, 0.1712816059589386, -0.3243235945701599, -0.7091904282569885, -1.5042436122894287, -1.5100328922271729, 2.3604214191436768, 2.6083874702453613, 3.782924175262451, 2.9372596740722656, 1.348618507385254, 3.170527458190918, 3.721116065979004, 2.9574031829833984, 1.8501274585723877, 3.079943895339966, 3.801483631134033, 3.753190040588379, 1.9131923913955688, 4.159276008605957, 2.2047579288482666, 2.3334434032440186, 2.010338068008423, 1.9682223796844482, 2.9828591346740723, 1.5857744216918945, 1.5884212255477905, 1.7733629941940308, 3.097590684890747, 1.8600695133209229, 1.1620550155639648, -0.11578207463026047, 0.9058087468147278, 1.8416117429733276, 0.9550999999046326, 0.7730740308761597, 0.8068558573722839, 1.2676256895065308, 1.6203006505966187, 1.3793630599975586, 1.5423306226730347, 1.079593539237976, 1.753143310546875, 2.1962993144989014, 0.42526790499687195, -1.1035255193710327, -4.01256799697876, 0.4669577181339264, 0.0944533720612526, 0.5589342713356018, 0.018742764368653297, 1.3275293111801147, 0.5605528354644775, 0.48937758803367615, -0.2686607241630554, -0.37586772441864014, 0.2777574956417084, -0.5567525625228882, -0.7432703971862793, 0.8178793787956238, -0.09472329169511795, 0.1067245826125145, -1.3628329038619995, 0.4803270399570465, -0.5195837616920471, 0.38397789001464844, 0.5635223388671875, -1.0637869834899902, -0.42549702525138855, -0.5935278534889221, 0.9692766666412354, 1.7826426029205322, 1.7046242952346802, 1.7288154363632202, 0.4440993368625641, 0.1743515431880951, 0.7787818312644958, 1.8653441667556763, 4.836453914642334, 3.446953773498535, 1.7484431266784668, 1.631474494934082, 1.1314585208892822, 0.4791748821735382, 2.7826619148254395, 3.36324143409729, 0.8748834133148193, 5.427852374850772e-05, 3.1575212478637695, 3.085869550704956, 1.0245845317840576, 0.22670163214206696, 3.0901100635528564, 2.9943532943725586, 0.09074182063341141, -0.14851932227611542, -3.8536388874053955, -1.9751213788986206, -0.3170393705368042, -0.15329600870609283, -0.7010417580604553, 0.14065495133399963, -0.30106979608535767, -0.8721114993095398, -2.3661348819732666, -1.574155330657959, 2.1652674674987793, 2.594222068786621, 3.715742588043213, 3.151733875274658, 3.2799744606018066, 3.0608577728271484, 3.883697032928467, 2.992830753326416, 1.6733113527297974, 3.0903360843658447, 3.8979997634887695, 3.671541690826416, 1.9134854078292847, 4.185734272003174, 2.2828707695007324, 2.4042184352874756, 1.9913012981414795, 1.959373950958252, 3.063638687133789, 1.744260549545288, 1.6557472944259644, 1.8335329294204712, 2.9002888202667236, 1.6939785480499268, 1.2797813415527344, -0.20260648429393768, 0.9536758065223694, 1.7380074262619019, 0.949938952922821, 0.9702340960502625, 0.88371342420578, 1.3118950128555298, 1.5587106943130493, 1.393432855606079, 1.5564903020858765, 0.9284602999687195, 1.6531496047973633, 2.128455877304077, 0.30516692996025085, -0.9542091488838196, -0.3036510944366455, 0.4477669298648834, -0.08246328681707382, 0.501778244972229, 0.03040405549108982, 0.7563915252685547, 0.5697754621505737, 0.47760865092277527, -0.37631285190582275, -0.28147146105766296, 0.17988988757133484, -0.6014727354049683, -0.5843101739883423, 0.7672945857048035, -0.06094977259635925, 0.1388266533613205, -1.2556575536727905, 0.3173829913139343, -0.3465014696121216, 0.2414076328277588, 0.5933444499969482, -1.0584315061569214, -0.5281916856765747, -0.6209016442298889, 0.984308123588562, 1.6985013484954834, 1.7707003355026245, 1.6482473611831665, 0.5366992950439453, 0.36491066217422485, 0.8519235253334045, 0.8394411206245422, 4.763238430023193, 3.338785171508789, 1.7220418453216553, 1.565526008605957, 0.9244861006736755, 0.4663880169391632, 2.709338903427124, 3.2932019233703613, 0.7119160294532776, -0.17552845180034637, 3.287346124649048, 3.077460765838623, 1.0444767475128174, 0.1457153707742691, 3.118197202682495, 3.115549325942993, 0.534492552280426, -0.19193445146083832, 3.1368231773376465, 1.769403338432312, -4.284468173980713, -1.2055637836456299, -1.4457236528396606]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (0, 0.8)}}, 'et1_eta3': {'discriminator': {'threshold': 0.21999870538711547, 'nodes': [100, 15, 1], 'bias': [-0.13548153638839722, -0.01683751679956913, -0.15725652873516083, 0.020923443138599396, -0.22614873945713043, -0.07646181434392929, -0.0734737291932106, 0.03853830322623253, -0.0010249352781102061, 0.020581664517521858, -0.12911821901798248, 0.08714920282363892, -0.06384588778018951, -0.03104345127940178, 0.18710413575172424, 0.03918536379933357], 'weights': [0.27311113476753235, -3.3759491443634033, -34.237274169921875, 0.328409880399704, -1.6261165142059326, 0.12471484392881393, 0.22774195671081543, -0.08361603319644928, -3.9591116905212402, -2.887002468109131, -1.541354775428772, 12.612893104553223, 29.523591995239258, 14.900782585144043, 10.443582534790039, -2.4962613582611084, 14.925068855285645, 0.03808491304516792, -3.5481462478637695, -8.93346881866455, -1.7305678129196167, -127.41497802734375, -65.80328369140625, -118.23959350585938, -295.6422119140625, -112.67206573486328, 1.144241452217102, -129.81878662109375, 22.81308937072754, -1.1874958276748657, 0.1742313802242279, 0.31636714935302734, 0.17071932554244995, 0.17372311651706696, 0.17733557522296906, 0.11163213849067688, 0.2852659821510315, -27.671287536621094, 0.45829784870147705, 0.18090751767158508, 0.5364158153533936, -15.83011245727539, 0.3233906328678131, 0.1439550220966339, 45.5847282409668, 0.09570784121751785, 1.4064524173736572, 0.0847150906920433, 0.05467672646045685, -70.02899932861328, 0.31328120827674866, 0.06496551632881165, 0.17603614926338196, 0.1412815898656845, 0.29800865054130554, 0.10240066051483154, 0.3294409513473511, -42.32052230834961, 0.2729935050010681, 0.018774917349219322, -0.13918672502040863, 1.7130153179168701, 0.19946470856666565, 0.09577897936105728, -0.017680292949080467, 0.25769948959350586, 1.0012086629867554, 0.11215098202228546, 0.09600920230150223, 0.40539315342903137, -0.20910269021987915, 0.2664446532726288, -0.30915671586990356, -0.42805078625679016, -0.9886420369148254, -8.625041961669922, 0.07689287513494492, -19.628448486328125, 0.28120774030685425, -2.2956244945526123, -40.68057632446289, -1.3853145837783813, -7.991135597229004, 0.1776903122663498, 0.31694063544273376, 0.10814964026212692, 0.17714503407478333, 0.0908486470580101, 0.08341775834560394, -0.7722832560539246, 0.15229634940624237, -1.2476352453231812, 35.65205383300781, 12.39472770690918, 0.014613754115998745, 0.07040692120790482, 0.22843848168849945, -0.06899148225784302, 0.00725973816588521, 0.05561147257685661, -0.4600379467010498, -0.6870471239089966, 0.408429890871048, 0.2508889138698578, 0.42010918259620667, -0.04579785466194153, 0.3904893398284912, 0.177372545003891, -0.7680620551109314, -0.892344057559967, -0.9540162086486816, 0.8645449280738831, 1.7521226406097412, 0.11230751127004623, 1.8163622617721558, 0.8675570487976074, 1.1688916683197021, 1.4678305387496948, 1.3472119569778442, 2.3290131092071533, 1.6482445001602173, 1.476757287979126, 0.6951602697372437, 1.7490801811218262, 4.456609725952148, 1.4942911863327026, 0.44262081384658813, 1.493670105934143, 0.910380482673645, 0.9890121817588806, 0.6399824023246765, 1.084384560585022, 0.68205726146698, 1.1336181163787842, 0.5933999419212341, 0.6526542901992798, 0.06795722246170044, 0.2801143527030945, 0.5119915008544922, 0.4993996322154999, 0.43809401988983154, 0.6876974701881409, 0.7441638708114624, 0.953073263168335, -0.47077476978302, 0.7663732171058655, 0.1420237272977829, 0.5246594548225403, -0.01110218558460474, 0.6920081973075867, 0.02887999825179577, 0.8462351560592651, -0.013490594923496246, 0.6587589383125305, 0.6666980385780334, 0.7191452383995056, 0.08141835033893585, 0.5353701114654541, 0.7466838359832764, -0.3038295805454254, -0.3849813640117645, 0.6442101001739502, 0.20662878453731537, -0.13836604356765747, -0.4729679822921753, 1.0059210062026978, 0.7994219660758972, 0.4501248896121979, -0.4794921576976776, -0.4212397634983063, -0.4803358316421509, -0.09829515963792801, -0.08503026515245438, 0.015857914462685585, 0.4961414039134979, 0.8615308403968811, 0.8257706165313721, 0.9702783226966858, 0.42256346344947815, 0.2524668872356415, 2.6660189628601074, 2.423447847366333, 1.9388025999069214, 0.844959020614624, 0.862026035785675, 0.7074673175811768, 0.30425840616226196, 0.24387919902801514, 0.16472911834716797, 0.7374336123466492, 0.15187427401542664, 0.1066104918718338, 1.6170693635940552, 0.7130842208862305, 0.2786671221256256, 0.4103098511695862, 0.30292952060699463, -0.01162293553352356, 0.018419107422232628, 1.6280436515808105, 260.2229919433594, 40.98914337158203, -9.259502410888672, 0.0716453343629837, 30.521841049194336, 0.053640056401491165, -2.0894179344177246, -0.12951870262622833, 0.21377700567245483, 0.138141468167305, -14.587696075439453, -44.362998962402344, 0.8160845041275024, -24.441612243652344, -20.646194458007812, -0.8131147623062134, 0.022992365062236786, -1.4554532766342163, -18.1925048828125, -83.29716491699219, -15.137067794799805, -82.07763671875, -0.15907622873783112, -0.28447389602661133, -34.728179931640625, 0.21393011510372162, -30.264799118041992, 0.019381016492843628, -0.038311224430799484, 0.1416430026292801, -5.1106109619140625, 0.13753269612789154, 13.506304740905762, 0.04869315028190613, -0.8316936492919922, -0.3174999952316284, -10.717031478881836, -0.11511392891407013, -82.73733520507812, -0.03938367962837219, 0.19481924176216125, 0.042442355304956436, -0.5166676640510559, -0.8231828808784485, 0.13947834074497223, 0.06059665605425835, 0.24069757759571075, 0.15347082912921906, 0.08259840309619904, 0.07090720534324646, 0.18815860152244568, 0.09103582799434662, 0.031159624457359314, 0.23961825668811798, -4.05682373046875, 0.28540360927581787, 0.18856042623519897, 0.2756196856498718, 0.767066478729248, 0.2137691229581833, 0.3667939305305481, 0.3547183871269226, 0.5839437246322632, 0.20705580711364746, 0.5050367712974548, 0.3099561333656311, 1.0168322324752808, 21.976741790771484, 0.13946032524108887, 0.2326180636882782, -62.532962799072266, 0.15546873211860657, -1.069101333618164, -0.47236382961273193, 4.534162998199463, 9.276572227478027, -0.03356550261378288, 7.737133502960205, -0.646903395652771, 0.11770778894424438, -19.07710075378418, -4.1830549240112305, 6.380957126617432, 0.03252365067601204, 0.12861032783985138, 0.34352266788482666, -0.09262091666460037, 0.22853399813175201, 73.98128509521484, 13.444624900817871, 0.09797342121601105, 6.109785556793213, -25.42735481262207, 0.30582383275032043, 0.7534922957420349, -25.422847747802734, 0.44558507204055786, 0.10153661668300629, 6.7417893409729, -81.96536254882812, -0.4475506842136383, -0.7685667276382446, 0.42536941170692444, 0.018292490392923355, 0.49354490637779236, 0.03125429525971413, 0.2981216609477997, 0.16212353110313416, -0.5965925455093384, -1.0961010456085205, -0.8986480832099915, 0.8294762969017029, 1.7315998077392578, 0.05017974227666855, 0.9368739128112793, 0.9250475168228149, 1.3568384647369385, 1.41081702709198, 1.4092081785202026, 2.3188436031341553, 1.5868051052093506, 1.5713979005813599, 0.8672316670417786, 1.7744754552841187, 4.4507341384887695, 1.5550717115402222, 0.46468648314476013, 1.4008857011795044, 0.8533420562744141, 1.0730996131896973, 0.6826199889183044, 1.1055177450180054, 0.6800651550292969, 1.188631534576416, 0.7294071316719055, 0.7286663055419922, -0.041002046316862106, 0.31920814514160156, 0.33175235986709595, 0.5573563575744629, 0.2779914438724518, 0.813319742679596, 0.7715116143226624, 1.0134650468826294, -0.4107332229614258, 0.6400874257087708, -0.13267318904399872, 0.7420524954795837, -0.1898316740989685, 0.626278281211853, -0.004900864791125059, 0.8470655679702759, -0.22561566531658173, 0.5965075492858887, 0.6883066296577454, 0.7371395230293274, 0.0753268375992775, 0.58357834815979, 0.6673306226730347, -0.12595801055431366, -0.248131662607193, 0.6029223799705505, -0.06962700188159943, 0.0010590306483209133, -0.6980670690536499, 1.104503870010376, 0.7738651037216187, 0.3541146218776703, -0.5828201174736023, -0.3860311210155487, -0.5130126476287842, -0.12079442292451859, -0.16519854962825775, 0.006086415145546198, 0.5295384526252747, 0.8368332982063293, 0.9307098388671875, 0.883460283279419, 0.3742440938949585, 0.17408856749534607, 2.756160259246826, 2.5823588371276855, 1.85627019405365, 0.9639574885368347, 0.717703640460968, 0.6514616012573242, 0.4047655165195465, 0.33446961641311646, 0.18162378668785095, 0.5493860244750977, 0.17933794856071472, -0.009808511473238468, 1.6288830041885376, 0.6881378293037415, 0.06067885458469391, 0.4358510375022888, 0.38695546984672546, -0.014165611937642097, -0.05582132190465927, 1.613330602645874, -0.004286932293325663, -4.7066121101379395, -0.12000785768032074, 0.242215096950531, -15.010812759399414, 0.027960803359746933, 0.37214863300323486, 0.1014244481921196, -8.68445110321045, -3.99629545211792, -0.4290243089199066, 16.896896362304688, 31.628252029418945, 12.017682075500488, 17.945066452026367, 0.356751024723053, -21.800493240356445, 7.176410675048828, -2.8248772621154785, 0.5219097137451172, 0.8123272061347961, 1.7116408348083496, 7.593018054962158, 0.4899737238883972, -16.07001495361328, 2.604401111602783, 0.39833924174308777, 0.36492183804512024, 0.14455756545066833, 0.31431129574775696, 10.885016441345215, 0.19592495262622833, -0.12833021581172943, 0.27526408433914185, 8.488813400268555, 0.08350221067667007, 9.375109672546387, 0.14156050980091095, 2.2691996097564697, 0.1520390808582306, 0.12032973021268845, 0.04873843118548393, 0.18690000474452972, 0.21026185154914856, 0.23697248101234436, 0.25504329800605774, 0.41612088680267334, 0.2565062642097473, 9.369866371154785, 0.13409647345542908, 43.341434478759766, 0.3932494819164276, 0.0896831825375557, 0.18505431711673737, 0.7346369624137878, 0.03387029096484184, 0.19374465942382812, 0.0705668032169342, 0.3003753125667572, 0.04298543557524681, 0.028996208682656288, -21.588180541992188, 0.11444854736328125, 0.13216161727905273, 4.773996829986572, 0.2832426130771637, 1.239473819732666, 0.2596017122268677, 12.176838874816895, 0.30314216017723083, -0.16596490144729614, 0.15720663964748383, -0.3566511273384094, 0.29557859897613525, -0.8388762474060059, -8.197958946228027, 0.10206726938486099, 0.12351687997579575, 0.19624237716197968, -1.6721720695495605, -27.545869827270508, -33.93985366821289, -15.668135643005371, -0.061052244156599045, 0.14876647293567657, 0.21657399833202362, 1.6471359729766846, 0.0860208198428154, -3.840632200241089, -7.525681972503662, 0.21275527775287628, 0.003266764571890235, -74.7641830444336, -21.594890594482422, 0.026560189202427864, -3.802018404006958, -15.33237075805664, -0.04104163497686386, 0.1169440820813179, -83.81757354736328, -0.5532897710800171, -0.8165198564529419, 0.34723711013793945, 0.27336299419403076, 0.47944629192352295, -0.07525037229061127, 0.2102240025997162, 0.17436525225639343, -0.6565780639648438, -1.0357780456542969, -0.44414329528808594, 0.7365843653678894, 1.6262153387069702, 0.03683947026729584, 1.7672659158706665, 3.134526252746582, 1.296297311782837, 1.5506997108459473, 1.3813825845718384, 2.2278246879577637, 1.6421846151351929, 1.4956694841384888, 0.7642945647239685, 1.7988592386245728, 4.489080429077148, 1.6430108547210693, 0.5391472578048706, 1.313070297241211, 0.9294195175170898, 1.0620927810668945, 0.6183980703353882, 1.0131871700286865, 0.8591032028198242, 1.0539237260818481, 0.7781015634536743, 0.6556150913238525, -0.04422974959015846, 0.2875678539276123, 0.707500696182251, 0.5017414093017578, 0.441723495721817, 0.8089386820793152, 0.6186651587486267, 0.9224994778633118, -0.4255253076553345, 0.8238158226013184, 0.08539765328168869, 0.7022716403007507, -0.1042095348238945, 0.6725255250930786, -0.12811416387557983, 0.7501046657562256, -0.0164378359913826, 0.4521348178386688, 0.6233397126197815, 0.7517130970954895, 0.2569166421890259, 0.5855529308319092, 0.6016921401023865, -0.10625948011875153, -0.26472845673561096, 0.7111026048660278, 0.33000805974006653, 0.499904602766037, -0.4827410578727722, 1.0805922746658325, 0.8632523417472839, 0.32516244053840637, -0.40037772059440613, -0.3574633300304413, -0.6059770584106445, -0.15426747500896454, -0.13341660797595978, -0.0032433196902275085, 0.6430386304855347, 0.8613996505737305, 0.8671399354934692, 0.8271334767341614, 0.3666239082813263, 0.20373180508613586, 2.736769199371338, 2.4440689086914062, 2.2921786308288574, 0.9166236519813538, 0.6728659868240356, 0.7497067451477051, 0.4107432961463928, 0.23322728276252747, 0.2601834833621979, 0.6962424516677856, 0.33579221367836, 0.08892210572957993, 1.6454521417617798, 0.7869789004325867, 0.09144618362188339, 0.42588698863983154, 0.45452365279197693, 0.09841546416282654, 0.1424616128206253, 1.0783820152282715, -0.7544552087783813, -0.7049180865287781, 0.41296079754829407, 0.55269455909729, 0.9070733189582825, 0.08183086663484573, 0.3689192533493042, 0.18148919939994812, -0.8073729872703552, -1.0684634447097778, -0.47660985589027405, 0.7094019651412964, 0.49947571754455566, 0.03986681252717972, 1.7131321430206299, 3.3250179290771484, 1.196668028831482, 1.4955694675445557, 1.250733733177185, 2.3139359951019287, 1.5271682739257812, 1.5264679193496704, 0.7613242864608765, 1.7532535791397095, 4.44857931137085, 1.5567858219146729, 0.4529055655002594, 1.428321361541748, 0.8504418134689331, 1.1516315937042236, 0.4522314667701721, 1.2195693254470825, 0.823298454284668, 1.1904023885726929, 0.5974008440971375, 0.6955486536026001, 0.07535363733768463, 0.5025022029876709, 0.5175940990447998, 0.48822325468063354, 0.3870915472507477, 0.8235669732093811, 0.5947208404541016, 0.7944426536560059, -0.6435062885284424, 0.7523051500320435, 0.1543126106262207, 0.7438613176345825, -0.23742346465587616, 0.6042104959487915, -0.008056694641709328, 0.7388272285461426, -0.047206368297338486, 0.5764167308807373, 0.8084863424301147, 0.6737048029899597, 0.05795464664697647, 0.6910982131958008, 0.6323676705360413, -0.1472538411617279, -0.3065909147262573, 0.5821704864501953, 0.2584359645843506, 0.41564640402793884, -0.4817456007003784, 1.0652761459350586, 0.8255042433738708, 0.45221972465515137, -0.4376998841762543, -0.3481597602367401, -0.4858693778514862, -0.009239261969923973, -0.10277857631444931, -0.14427503943443298, 0.6663879156112671, 0.8964037299156189, 0.8917728662490845, 0.9129073619842529, 0.436646431684494, 0.3320651650428772, 2.7604668140411377, 2.6407289505004883, 2.173305034637451, 0.9030668139457703, 0.7806549668312073, 0.6201235055923462, 0.3125680387020111, 0.35518062114715576, 0.1873771846294403, 0.6393232941627502, 0.17978760600090027, 0.21121342480182648, 2.346524477005005, 0.7971459031105042, 0.12291496247053146, 0.48052775859832764, 0.4420459270477295, 0.09912591427564621, 0.08721273392438889, 1.0219604969024658, -1.5588719844818115, -0.8675257563591003, 0.43477699160575867, 0.17809949815273285, 0.39835870265960693, -0.07163010537624359, 0.3103600740432739, 0.1386711746454239, 0.012463404797017574, -0.9493471384048462, -0.8898952603340149, 4.420409202575684, 1.76506507396698, 0.007498225662857294, 0.7084828019142151, 0.7218790650367737, 1.2075223922729492, 2.518134355545044, 1.185468316078186, 2.416799783706665, 3.962573766708374, 1.5983606576919556, 0.5702595114707947, 2.5679867267608643, 4.308701515197754, 1.4534597396850586, 0.2023158073425293, 1.5285755395889282, 2.3904953002929688, 0.9831451177597046, 0.5509435534477234, 1.1178311109542847, 0.7470869421958923, 1.4570659399032593, 0.6495356559753418, 0.7716516256332397, 5.241714000701904, 0.4222685396671295, 0.3064238429069519, 0.5635898113250732, 0.3062441945075989, 0.7924647331237793, 0.769102156162262, 0.8049970269203186, -0.47052067518234253, 0.6423972845077515, 0.03492344915866852, 0.5288445353507996, -0.05428708717226982, 0.8105145692825317, 0.06847403198480606, 0.8278687596321106, 0.05261142551898956, 0.4925355911254883, 0.8063614368438721, 0.5461177825927734, 0.11853044480085373, 0.5793411731719971, 0.600203812122345, -0.24961908161640167, -0.5832216143608093, 0.6533504724502563, 0.05589477717876434, -0.01924298331141472, -0.519298255443573, 0.9155225157737732, 0.7516279816627502, 0.3422444760799408, -0.5943817496299744, -0.4218832552433014, -0.5159735679626465, 0.34190821647644043, 0.018661558628082275, -0.0035139613319188356, 0.5830861330032349, 0.990135908126831, 1.601207971572876, 0.846612274646759, 0.5302431583404541, 0.2794918417930603, 2.652611494064331, 2.4696712493896484, 1.9371932744979858, 0.8131229877471924, 0.863625705242157, 0.6439306735992432, 0.23416277766227722, 0.2500298321247101, 0.37679553031921387, 0.6365455389022827, 0.22417716681957245, 0.07263913750648499, 1.771836757659912, 0.6203403472900391, 0.13748224079608917, 0.5088329315185547, 0.3803195357322693, 0.0439189150929451, 0.0008213225519284606, 4.312965393066406, 0.47734394669532776, 0.898761510848999, -0.2667087912559509, -0.0973474457859993, -0.5189624428749084, -0.0027940624859184027, -0.22998450696468353, 0.006554126739501953, 0.6445546746253967, 0.9255807995796204, 0.8313505053520203, -0.7014707922935486, -1.6359919309616089, -0.09600502252578735, -1.7021762132644653, -1.07358980178833, -1.1469436883926392, -1.3964389562606812, -1.2294076681137085, -2.353041887283325, -1.6063669919967651, -1.5430361032485962, -1.5466598272323608, -1.730797290802002, -4.369347095489502, -1.6390761137008667, -1.048595666885376, -1.4899080991744995, -2.3193399906158447, -1.0470846891403198, -0.6717123985290527, -1.0923277139663696, -0.7636577486991882, -1.024825096130371, -0.6830265522003174, -0.8583815097808838, -0.006527409888803959, -0.44446861743927, -0.2985711097717285, -0.5627002716064453, -0.3339860737323761, -0.8321446776390076, -0.6431950330734253, -0.9680547714233398, 0.574874997138977, -0.785204291343689, -0.12786348164081573, -0.6352939009666443, 0.06486734747886658, -0.7952043414115906, 0.07168187946081161, -0.6917932033538818, 0.0032862673979252577, -0.44765427708625793, -0.729211688041687, -0.5623509287834167, -0.2503095865249634, -0.5446416139602661, -0.5873317122459412, 0.17994065582752228, 0.3188384473323822, -0.7518025636672974, -0.3372591435909271, 0.2258499711751938, 0.47296226024627686, -0.9909543991088867, -0.9164610505104065, -0.38671085238456726, 0.5653322339057922, 0.2823928892612457, 0.714866042137146, 0.002476212102919817, 0.03695942088961601, 0.08442013710737228, -0.5575993657112122, -0.8062451481819153, -0.7455276250839233, -0.7823361754417419, -0.4767151474952698, -0.35367774963378906, -2.582487106323242, -2.6122488975524902, -1.886770248413086, -0.9308995604515076, -0.8385047316551208, -0.7167344093322754, -0.46863192319869995, -0.39046525955200195, -0.1844811737537384, -0.7411055564880371, -0.18712273240089417, -0.19130800664424896, -1.7296782732009888, -0.6437389850616455, -0.27467143535614014, -0.5217215418815613, -0.45382773876190186, -0.10261315852403641, -0.0684165507555008, -1.6919090747833252, -0.5155209898948669, -0.806369423866272, 0.34330156445503235, 0.3117218613624573, 0.42117294669151306, 0.17210544645786285, 0.35956382751464844, 0.18745771050453186, -0.5982280373573303, -0.8673656582832336, -0.7998253703117371, 0.6799397468566895, 1.7396693229675293, 0.01018490269780159, 1.6810013055801392, 1.0715056657791138, 1.1658540964126587, 1.482855200767517, 1.381729245185852, 2.2737245559692383, 1.488803744316101, 1.5996567010879517, 1.504366159439087, 1.8581136465072632, 4.268971920013428, 1.5788429975509644, 0.43393415212631226, 1.3380517959594727, 0.8981566429138184, 0.9955989122390747, 0.5538982152938843, 1.0904697179794312, 0.8144991397857666, 1.2277960777282715, 0.6513231992721558, 0.7951213121414185, -0.04602808132767677, 0.2981453239917755, 0.419134259223938, 0.5462741851806641, 0.23252877593040466, 0.7400702834129333, 0.6167660355567932, 0.9804249405860901, -0.5190922021865845, 0.7475981116294861, 0.1279441863298416, 0.72017502784729, -0.00586538715288043, 0.7034057974815369, -0.07630114257335663, 0.6230475902557373, -0.04864570125937462, 0.6449492573738098, 0.7979609966278076, 0.6658101677894592, 0.14317752420902252, 0.6638975143432617, 0.7831434011459351, -0.18051059544086456, -0.2411264032125473, 0.5855880379676819, 0.3468589782714844, -0.10748782753944397, -0.4463851749897003, 0.9568179845809937, 0.7273586392402649, 0.3716861307621002, -0.5015804171562195, -0.3407506048679352, -0.5029046535491943, -0.030073730275034904, -0.19758975505828857, -0.14465086162090302, 0.5322308540344238, 0.9455856680870056, 0.8921026587486267, 0.7468627691268921, 0.4567381739616394, 0.3669756054878235, 2.6993584632873535, 2.5978264808654785, 2.2640504837036133, 0.7590308785438538, 0.8010215163230896, 0.6861289143562317, 0.40964117646217346, 0.2118472009897232, 0.2549050748348236, 0.6341936588287354, 0.25215160846710205, 0.09524977952241898, 1.700262188911438, 0.706306517124176, 0.30715879797935486, 0.5290684103965759, 0.49244269728660583, -0.06418915838003159, 0.04975152760744095, 1.5500500202178955, -1.5834076404571533, -0.6954337954521179, 0.4650103747844696, 0.6577455401420593, 0.7889395356178284, 0.2049560397863388, 0.24486322700977325, -0.009022560901939869, -0.8666000962257385, -2.045853614807129, -0.3314337134361267, 0.8435583114624023, 0.4882270395755768, 0.15437184274196625, 1.7063837051391602, 3.206918716430664, 0.9475841522216797, 1.4774812459945679, 1.4013478755950928, 2.3738999366760254, 1.4100584983825684, 1.4283572435379028, 0.5761522054672241, 1.80962336063385, 4.321674346923828, 1.503580927848816, 0.11723089963197708, 1.3861414194107056, 0.9546619653701782, 1.11725652217865, 0.4995439648628235, 1.0666526556015015, 0.8333861231803894, 0.9895994067192078, 0.806423544883728, 0.8427911400794983, 0.04865162447094917, 0.3299253582954407, 0.3943425118923187, 0.6798813343048096, 0.4510830342769623, 0.8055926561355591, 0.6687991619110107, 0.8349362015724182, -0.5585463643074036, 0.8295691013336182, 0.1171579658985138, 0.6989243626594543, -0.19033868610858917, 0.6959813833236694, -0.01686459593474865, 0.6791707277297974, -0.04172997549176216, 0.8151465058326721, 0.8120613098144531, 0.5411016345024109, 0.08975402265787125, 0.518225371837616, 0.7131763100624084, -0.2667398452758789, -0.47982117533683777, 0.7223711609840393, 0.22968675196170807, 0.5080359578132629, -0.24779611825942993, 1.000519037246704, 0.8114537000656128, -0.11329104751348495, -0.41926029324531555, -0.40734976530075073, -0.5976492166519165, -0.18224789202213287, -0.19198033213615417, -0.1957840472459793, 1.4571523666381836, 0.9041946530342102, 0.9303934574127197, 1.0009019374847412, 0.3874715566635132, 0.14946575462818146, 2.6844358444213867, 2.594773292541504, 2.9927315711975098, 0.8210042715072632, 0.8316763043403625, 0.6037126183509827, 0.35337916016578674, 0.434031218290329, 0.10066181421279907, 0.8302664756774902, 0.13174991309642792, -0.03273296356201172, 2.895599365234375, 1.068758249282837, 0.14242731034755707, 0.7807971835136414, 0.3119576573371887, 0.11482574790716171, 0.0237018670886755, 4.427016735076904, -0.21071253716945648, -0.8135926723480225, 0.07525352388620377, 0.13170583546161652, 0.13392695784568787, -0.12049801647663116, 0.2329808473587036, 0.08609888702630997, -0.733835756778717, -0.7725173830986023, -0.7070527672767639, 0.9170985221862793, 1.566633939743042, 1.1905206441879272, 0.25901028513908386, 0.2332691103219986, 0.18001867830753326, 0.35527628660202026, 0.3007403612136841, 0.7856625318527222, 0.858182430267334, 0.48666107654571533, 0.18681484460830688, 0.5598626136779785, 1.880743384361267, 0.5172922611236572, 0.07522614300251007, 0.26447904109954834, 0.3308875858783722, 0.24684658646583557, 0.15553691983222961, 0.27314358949661255, 0.2199666053056717, 0.35521450638771057, 0.17764829099178314, 0.32060080766677856, 0.16585780680179596, 0.07454758137464523, 0.4575614929199219, 0.20994345843791962, 0.09051110595464706, 0.15978366136550903, 0.1526365578174591, 0.2779275178909302, -0.05156323313713074, 0.262028306722641, 0.22761356830596924, 0.3378054201602936, 0.16382645070552826, 0.20788058638572693, 0.0802481472492218, 0.20867034792900085, 0.0066891745664179325, 0.2572157680988312, 0.24560415744781494, 0.23787380754947662, 0.15692050755023956, 0.30082717537879944, 0.25108829140663147, -0.06754092127084732, -0.07401895523071289, 0.31813082098960876, 0.10019975900650024, 0.18728357553482056, 0.01887519098818302, 0.3369506597518921, 0.21679000556468964, 0.0318223275244236, 0.24033045768737793, 0.03164844959974289, -0.038366131484508514, 0.17063111066818237, 0.05540268495678902, 0.06684154272079468, 0.19353178143501282, 0.21182721853256226, 0.25729668140411377, 0.29491865634918213, 0.08781300485134125, 0.08205510675907135, 0.5169978141784668, 0.6391630172729492, 0.9494807720184326, 0.21649667620658875, 0.21951161324977875, 0.13263729214668274, 0.23807696998119354, 0.2754165232181549, -0.06839940696954727, 0.12042684853076935, 0.014029202982783318, -0.07188686728477478, 0.4520670175552368, 0.2932055592536926, 0.17542415857315063, 0.2527690827846527, 0.06127519533038139, -0.022234877571463585, -0.05630284547805786, 0.5495284199714661, -0.7811673879623413, -0.7133728861808777, 0.325501948595047, 0.5077052116394043, 0.8142783641815186, 0.20586371421813965, 0.23996958136558533, 0.16510328650474548, -0.6711987257003784, -0.9623690247535706, -0.4198915660381317, 0.7259751558303833, 0.30565518140792847, -0.0015063342871144414, 1.7810285091400146, 3.1886672973632812, 1.2207406759262085, 1.529780626296997, 1.247734546661377, 2.2516720294952393, 1.572585105895996, 1.468340277671814, 0.896185040473938, 1.6687573194503784, 4.2895989418029785, 1.5172935724258423, 0.45110300183296204, 1.326554536819458, 0.7773633003234863, 0.9641960859298706, 0.6486456990242004, 1.1244882345199585, 0.8756487369537354, 1.0511130094528198, 0.7055808901786804, 0.6503958702087402, 0.06480731070041656, 0.48645368218421936, 0.7077053189277649, 0.6091352701187134, 0.4724169671535492, 0.8187442421913147, 0.7369297742843628, 0.934201717376709, -0.44145146012306213, 0.7141538858413696, 0.16243413090705872, 0.7112907767295837, -0.24607394635677338, 0.6046221256256104, -0.10760464519262314, 0.7803038358688354, -0.10037544369697571, 0.6164449453353882, 0.770185112953186, 0.709969699382782, 0.05377931892871857, 0.6557050943374634, 0.8151196837425232, -0.21981477737426758, -0.28117895126342773, 0.7130841612815857, 0.3390423357486725, 0.4887005388736725, -0.49483630061149597, 1.0058166980743408, 0.8581113219261169, 0.43329522013664246, -0.51792973279953, -0.3770964443683624, -0.6321234703063965, 0.0005693019484169781, -0.14124834537506104, -0.15304464101791382, 0.5677072405815125, 0.8117382526397705, 0.849564790725708, 0.8176353573799133, 0.5676758885383606, 0.28594401478767395, 2.6703193187713623, 2.4239425659179688, 2.1639206409454346, 0.755211353302002, 0.8521448969841003, 0.8206840753555298, 0.44922077655792236, 0.427205353975296, 0.347832053899765, 0.7104714512825012, 0.17453518509864807, 0.14883162081241608, 2.288850784301758, 0.6242515444755554, 0.12886682152748108, 0.42596322298049927, 0.45793795585632324, 0.14197134971618652, 0.009008275344967842, 0.9529098868370056, 0.6105706095695496, 0.8994865417480469, -0.2882499396800995, 0.0026537529192864895, -0.5568832159042358, 0.07504217326641083, -0.284760057926178, -0.033087119460105896, 0.757278561592102, 0.8757665753364563, 0.8105220198631287, -0.6944780945777893, -1.7204450368881226, -0.18176758289337158, -1.7297269105911255, -0.9945343136787415, -1.1272376775741577, -1.4987133741378784, -1.383665919303894, -2.27018404006958, -1.4616681337356567, -1.4117454290390015, -1.0605192184448242, -1.8895319700241089, -4.472772121429443, -1.5155271291732788, -0.4828284978866577, -1.5075507164001465, -0.7342935800552368, -0.9939765334129333, -0.5512580275535583, -1.0616636276245117, -0.7082603573799133, -1.15836763381958, -0.6550585031509399, -0.8128366470336914, -0.060651060193777084, -0.471890926361084, -0.5251023173332214, -0.5056780576705933, -0.40958496928215027, -0.8470943570137024, -0.6003419756889343, -0.8957931399345398, 0.48357486724853516, -0.7695818543434143, 0.1736222207546234, -0.7057920694351196, 0.21066366136074066, -0.7980027198791504, 0.08247004449367523, -0.6937388181686401, 0.20614998042583466, -0.4705154001712799, -0.657437264919281, -0.5454309582710266, -0.14805318415164948, -0.5605241060256958, -0.5896328687667847, 0.1796286404132843, 0.35764482617378235, -0.632087230682373, -0.07106995582580566, 0.08762283623218536, 0.6918275356292725, -0.9348177909851074, -0.7766962051391602, -0.45545628666877747, 0.5924744009971619, 0.4280684292316437, 0.702368974685669, 0.006207578349858522, 0.16611775755882263, 0.11652491986751556, -0.5337023138999939, -1.001293420791626, -0.9304237365722656, -0.8409886956214905, -0.5098109245300293, -0.16034263372421265, -2.645500659942627, -2.6329870223999023, -1.9278244972229004, -0.8661825060844421, -0.6496831774711609, -0.6844520568847656, -0.3846784830093384, -0.3318297863006592, -0.16965413093566895, -0.6580185294151306, -0.13038940727710724, -0.1360854208469391, -1.7591766119003296, -0.7724975347518921, -0.12524476647377014, -0.3341684341430664, -0.30901074409484863, -0.045865777879953384, 0.04960915446281433, -1.51837158203125, 0.6167348623275757, 0.908183217048645, -0.26645487546920776, -0.6154975891113281, -0.8339879512786865, -0.3118394613265991, -0.25443458557128906, -0.12542937695980072, 0.6716971397399902, 0.9846269488334656, 0.24460136890411377, -0.8001673221588135, -0.48054420948028564, -0.07605305314064026, -1.7801909446716309, -3.2340381145477295, -1.2085442543029785, -1.4202587604522705, -1.3088916540145874, -2.2815284729003906, -1.480787992477417, -1.3882213830947876, -1.354114055633545, -1.7049531936645508, -4.347880840301514, -1.5492618083953857, -0.09061096608638763, -1.5195504426956177, -0.884406328201294, -1.0363097190856934, -0.6562923192977905, -1.1936662197113037, -0.7976014018058777, -1.1915693283081055, -0.6323226690292358, -0.8368862271308899, -0.09856187552213669, -0.42488792538642883, -0.6060835719108582, -0.6438119411468506, -0.38996773958206177, -0.7583129405975342, -0.5945144891738892, -1.0253342390060425, 0.42649489641189575, -0.8225446939468384, -0.04797378182411194, -0.7268449664115906, 0.24587993323802948, -0.8029035925865173, 0.0598384365439415, -0.685704231262207, 0.23384113609790802, -0.7581852674484253, -0.7104252576828003, -0.6334607601165771, -0.08708751201629639, -0.638883113861084, -0.6799800992012024, 0.08077347278594971, 0.43152016401290894, -0.5869405269622803, -0.28378742933273315, -0.5119267702102661, 0.44015106558799744, -0.8890959024429321, -0.8228159546852112, 0.24728941917419434, 0.4445188343524933, 0.5092743039131165, 0.5089160203933716, 0.009787028655409813, 0.08222697675228119, 0.17141316831111908, -1.5617766380310059, -0.8879087567329407, -0.9387885332107544, -0.7866247892379761, -0.40774354338645935, -0.35046839714050293, -2.5858256816864014, -2.5634875297546387, -2.9169323444366455, -0.789149820804596, -0.7400845885276794, -0.7203811407089233, -0.4053010940551758, -0.3471130132675171, -0.26618143916130066, -0.7336236238479614, -0.23484459519386292, -0.16824816167354584, -2.5584895610809326, -0.9378114938735962, -0.173076793551445, -0.7307318449020386, -0.35818803310394287, -0.14998823404312134, -0.0995444506406784, -0.9278904795646667, -0.3869398236274719, -0.7789960503578186, -0.5578797459602356, -0.5961406230926514, -0.5441072583198547, -0.6550984978675842, -0.6509705781936646, -0.7267401218414307, 0.9178454279899597, -1.5306267738342285, -1.1753522157669067, -1.7548272609710693, -0.49652668833732605, 1.5947051048278809, 1.0934933423995972]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (1.54, 2.5)}}, 'et4_eta2': {'discriminator': {'threshold': 0.5199984192848206, 'nodes': [100, 5, 1], 'bias': [0.11384682357311249, 0.07971647381782532, 0.00465692114084959, 0.14804889261722565, 0.07417404651641846, -0.15167193114757538], 'weights': [0.6251861453056335, -0.25750094652175903, -1.4020317792892456, -1.9289140701293945, -1.4157609939575195, 0.7055711150169373, 2.6523208618164062, -2.1011979579925537, 0.24038240313529968, 3.469379425048828, 2.972240447998047, 2.8049957752227783, 0.20326152443885803, 0.15728873014450073, 0.06024700775742531, 0.3360233008861542, -3.758897066116333, 0.13258475065231323, -0.0711980015039444, -1.3375860452651978, -2.8546996116638184, -2.1204047203063965, -0.0684124231338501, -1.1662191152572632, -3.9746084213256836, -1.0908246040344238, -1.5160080194473267, -2.889890670776367, -14.977043151855469, -2.253124952316284, -0.5126926302909851, -2.403907060623169, -1.6736992597579956, -0.4774019420146942, -1.9160369634628296, -2.1402039527893066, -5.9225053787231445, -5.899019718170166, -2.9991397857666016, -1.7249592542648315, -2.759883403778076, -3.162008285522461, -2.819316864013672, -2.0431363582611084, -1.1833516359329224, -0.9951058626174927, -2.0029408931732178, -1.358102560043335, -1.2570563554763794, -2.632812023162842, -0.09633296728134155, -1.6623297929763794, -2.981348752975464, -1.144919514656067, -1.7122328281402588, -1.0567208528518677, -0.340715616941452, -0.0395011305809021, 4.134775161743164, -1.4652589559555054, -0.9998790621757507, -0.7249534130096436, -1.9020615816116333, -1.8155207633972168, -3.1696438789367676, -1.7908531427383423, -3.229954481124878, -1.1272858381271362, -1.7559943199157715, -1.478967308998108, -1.6906861066818237, -1.5628578662872314, -0.10204700380563736, 0.19444040954113007, -3.63988995552063, -2.79940128326416, -2.708991765975952, -2.542445421218872, -2.79022479057312, -0.935571014881134, -0.002755355555564165, -0.4136531949043274, -2.970228672027588, -2.9139859676361084, -0.38378262519836426, -0.0933181643486023, -2.0412769317626953, -2.5171377658843994, 0.28245818614959717, -1.205154299736023, -1.112125277519226, -1.1050453186035156, -6.2303595542907715, -4.387772560119629, -2.4998362064361572, -1.7652161121368408, -0.03794768080115318, 0.11009768396615982, -0.5096169710159302, -0.8096550107002258, 0.5915060639381409, -0.31160369515419006, -1.4410845041275024, -1.9716180562973022, -1.4967429637908936, 1.1953855752944946, 2.7177886962890625, -2.1049180030822754, 0.00336395762860775, 3.55454158782959, 2.871202230453491, 2.7526512145996094, 0.19635173678398132, 0.03252992033958435, -0.003478707978501916, 0.16407446563243866, -3.764557123184204, 0.021522747352719307, -0.11380399018526077, -1.2975307703018188, -2.8535287380218506, -2.1596531867980957, -0.16350385546684265, -1.370679497718811, -4.070925235748291, -1.0803465843200684, -1.4905263185501099, -1.8689175844192505, -14.856679916381836, -2.042728900909424, -0.44669172167778015, -2.5588366985321045, -1.7590190172195435, -0.44044268131256104, -1.8720570802688599, -2.316516876220703, -5.842219352722168, -6.031185150146484, -2.9375598430633545, -1.6400786638259888, -2.5652737617492676, -3.211477756500244, -3.0283939838409424, -2.0970494747161865, -1.1159669160842896, -1.026295781135559, -1.9871904850006104, -1.2863669395446777, -1.1576951742172241, -2.669677972793579, 0.02546912431716919, -1.5517867803573608, -3.047452449798584, -1.128219723701477, -1.5645371675491333, -0.9775280356407166, -0.3035266101360321, -0.10793682187795639, 4.014409065246582, -1.540910005569458, -1.099531650543213, -0.76930832862854, -1.8994382619857788, -1.7588801383972168, -3.1870510578155518, -1.7342389822006226, -3.5911006927490234, -1.306019902229309, -1.5899324417114258, -1.5370594263076782, -1.7945507764816284, -1.4437994956970215, 0.03200437128543854, 0.1231115534901619, -3.8163578510284424, -2.8395779132843018, -2.801499128341675, -2.7131733894348145, -2.74865460395813, -0.9187059998512268, 0.03126358240842819, -0.2602922320365906, -2.8528318405151367, -2.9360594749450684, -0.20371052622795105, -0.06983864307403564, -1.9941691160202026, -2.541489839553833, 0.5262741446495056, -1.2684019804000854, -1.2105265855789185, -1.2496538162231445, -6.347973346710205, -4.473539352416992, -2.59781551361084, -1.6586239337921143, -0.07711153477430344, -0.10755360871553421, -0.34014564752578735, -0.9243701100349426, -0.41914936900138855, 0.28987643122673035, 1.356941819190979, 1.801226019859314, 1.6319600343704224, -1.184754729270935, -2.6590523719787598, 1.9787702560424805, -0.147994726896286, -3.571326732635498, -2.9122657775878906, -2.95862078666687, -0.01838676631450653, -0.031033098697662354, 0.0009070431115105748, -0.23096223175525665, 3.6497247219085693, -0.09984730184078217, -0.06267618387937546, 1.335605263710022, 1.4932795763015747, 2.082561492919922, 0.029438436031341553, 1.165748953819275, 4.107476234436035, 1.1520142555236816, 1.4163860082626343, 1.9165958166122437, 14.928508758544922, 2.095465660095215, -1.8835598230361938, 2.5578415393829346, 1.8803852796554565, 0.55727618932724, 1.9458516836166382, 2.327918767929077, 5.9761271476745605, 2.116595983505249, 3.0638883113861084, 1.6357983350753784, 2.6810195446014404, 3.0515615940093994, 2.8117008209228516, 2.1455790996551514, 0.9639905691146851, 0.8134739995002747, 1.9752752780914307, 1.2647392749786377, 1.1117299795150757, 2.611677885055542, -0.0025792717933654785, 1.671108603477478, 2.890641689300537, 1.0106009244918823, 1.3091106414794922, 1.1024497747421265, 0.2640187442302704, 0.18692582845687866, -4.086989402770996, 1.3441048860549927, 0.9860759973526001, 0.8977031707763672, 1.9307650327682495, 1.7732338905334473, 3.187098264694214, 1.8458033800125122, 3.4542462825775146, 1.1947933435440063, 1.6121084690093994, 1.6891437768936157, 1.6726008653640747, 1.5584595203399658, -0.9686614871025085, -0.21657349169254303, 3.7343661785125732, 2.67976975440979, 2.740396738052368, 2.612823486328125, 2.8123998641967773, 1.0568197965621948, -0.03107505291700363, 0.2964842915534973, 2.865086317062378, 2.8443613052368164, 0.1727270781993866, -0.0035155415534973145, 2.020949363708496, 2.316814422607422, -0.5141962766647339, 1.2290443181991577, 1.1659139394760132, 1.1418333053588867, 14.972591400146484, 4.466696262359619, 2.497905731201172, 1.7477083206176758, -0.06334817409515381, 0.033399637788534164, 0.32444649934768677, 0.7828245162963867, 0.5186731219291687, -0.4153514802455902, -1.2743417024612427, -1.7805110216140747, -1.4916870594024658, 0.6390983462333679, 2.610316753387451, -2.179161787033081, 0.12987308204174042, 3.4104957580566406, 2.7692294120788574, 2.7714321613311768, 0.11519055813550949, 0.0358150452375412, 0.016958579421043396, 0.25681251287460327, -3.5997579097747803, 0.05228642374277115, -0.010508648119866848, -1.3458880186080933, -2.8736653327941895, -2.1644716262817383, -0.19539210200309753, -1.2642103433609009, -4.032081127166748, -0.9764151573181152, -1.407490611076355, -2.8966383934020996, -14.771591186523438, -2.234963893890381, -0.30873292684555054, -2.551069498062134, -1.798890471458435, -0.39185231924057007, -1.9292949438095093, -2.3558194637298584, -5.888930320739746, -5.939783573150635, -3.046618938446045, -2.318540573120117, -2.613430976867676, -3.166398525238037, -2.9298148155212402, -2.2308549880981445, -1.0631154775619507, -0.9027920961380005, -2.023770570755005, -1.3248271942138672, -1.259539246559143, -2.607450246810913, -0.056861281394958496, -1.6692801713943481, -2.98555588722229, -0.986327052116394, -1.571074366569519, -1.1328989267349243, -0.3138138949871063, -0.035925328731536865, 4.066348075866699, -1.4790066480636597, -0.9636436700820923, -0.8355212211608887, -1.8168715238571167, -1.9189748764038086, -3.209160804748535, -1.7044228315353394, -3.3029239177703857, -1.1187292337417603, -1.7248260974884033, -1.584917664527893, -1.7880603075027466, -1.3707389831542969, 0.033712632954120636, 0.23266825079917908, -3.8815901279449463, -2.7895054817199707, -2.8245503902435303, -2.5588746070861816, -2.7325551509857178, -1.0391143560409546, -0.008321125991642475, -0.3310103416442871, -2.8346221446990967, -2.9092605113983154, -0.38864755630493164, -0.06265318393707275, -1.8666296005249023, -2.33286190032959, 0.30220067501068115, -1.3450342416763306, -1.07483971118927, -1.2951676845550537, -6.234707355499268, -4.511396884918213, -2.5473127365112305, -1.8235788345336914, -0.0896400660276413, 0.004149979911744595, -0.31332308053970337, -0.8156808018684387, 0.2771662175655365, -0.28466126322746277, -0.20923909544944763, -0.3346168100833893, -0.3393081724643707, 0.1554879993200302, 0.6477275490760803, -0.5276710987091064, 0.14617805182933807, 0.6768221855163574, 0.5229899287223816, 0.5495777130126953, -0.16318246722221375, 0.03908932954072952, -0.044825054705142975, 0.08439066261053085, -0.7099238634109497, 0.17296727001667023, 0.14014579355716705, -0.3523086905479431, -0.504760205745697, -0.3444230556488037, 0.09295668452978134, -0.34142163395881653, -0.9474895596504211, -0.10424963384866714, -0.3451277017593384, -0.566091001033783, -2.973419666290283, -0.3708055317401886, -0.06908171623945236, -0.6337583661079407, -0.4447052776813507, -0.13014893233776093, -0.3230210244655609, -0.44186750054359436, -1.2416123151779175, -1.1950196027755737, -0.5668541193008423, -0.3936935067176819, -0.4376339912414551, -0.5428186058998108, -0.5488232970237732, -0.32608091831207275, -0.14937427639961243, -0.28508633375167847, -0.41678473353385925, -0.26756778359413147, -0.35104164481163025, -0.5719276666641235, 0.01534741185605526, -0.25155511498451233, -0.6990581154823303, -0.1951550394296646, -0.4632768929004669, -0.2816784083843231, -0.056665461510419846, -0.0514071062207222, 0.9201054573059082, -0.31505677103996277, -0.3039117157459259, -0.19591976702213287, -0.3981074392795563, -0.4253137707710266, -0.5865145325660706, -0.45107176899909973, -0.6190328598022461, -0.3312896192073822, -0.27753961086273193, -0.305428683757782, -0.33897289633750916, -0.2503662109375, 0.17906412482261658, 0.13978268206119537, -0.7322458624839783, -0.6223763823509216, -0.5979492664337158, -0.6093989014625549, -0.5092815160751343, -0.22469232976436615, -0.006311587058007717, -0.018393786624073982, -0.6541185975074768, -0.5530127882957458, 0.06178972125053406, -0.07105831801891327, -0.29003018140792847, -0.5140512585639954, 0.2868286371231079, -0.20026011765003204, -0.13964718580245972, -0.17647787928581238, -1.3856056928634644, -0.9703487753868103, -0.615807831287384, -0.2486661672592163, -0.008055219426751137, 0.11634911596775055, -0.18856817483901978, -0.22616185247898102, 1.2099193334579468, 1.2411690950393677, -3.630277156829834, 1.3775845766067505, 0.7710458636283875]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (1.37, 1.54)}}, 'et2_eta1': {'discriminator': {'threshold': 0.3399985909461975, 'nodes': [100, 5, 1], 'bias': [0.01651812717318535, -0.13926127552986145, -0.040732357650995255, -0.009756160899996758, -0.29181867837905884, -0.4230961203575134], 'weights': [1.875033974647522, 2.0099172592163086, -0.5074464082717896, -2.495497465133667, -1.0318567752838135, -0.7896673679351807, -0.2378595620393753, 0.5792592167854309, 2.938339948654175, 8.890474319458008, -0.532684326171875, -18.24800682067871, -18.9058780670166, -14.747689247131348, -7.902640342712402, -7.967686653137207, -6.793240547180176, -7.97316312789917, -9.228382110595703, -9.145288467407227, -9.112112045288086, -10.092705726623535, -7.893771171569824, -4.651278495788574, -6.06505012512207, -6.173068523406982, -6.152647972106934, -5.818607330322266, -5.289919853210449, -5.819891452789307, -4.619137763977051, -4.689252853393555, -4.811014652252197, -4.7560272216796875, -2.8098294734954834, -4.896507740020752, -4.993577480316162, -3.830761671066284, -4.694208145141602, -3.8559305667877197, -3.3577558994293213, -2.611325979232788, -4.220177173614502, -2.7146458625793457, -1.4415576457977295, -0.45799875259399414, -0.7690829038619995, -2.3446853160858154, -0.7103240489959717, -1.2909417152404785, -1.6097453832626343, -1.7639966011047363, -1.841646432876587, -1.6420782804489136, -1.927522897720337, -2.005403518676758, -2.0604324340820312, 3.914365530014038, -0.19394399225711823, 0.1269225925207138, -0.20041842758655548, 0.08027685433626175, -1.241581916809082, 0.06853470206260681, -0.09779223799705505, -2.2489190101623535, -1.3971054553985596, -5.576432228088379, 0.5969211459159851, -0.3907736539840698, -1.1042678356170654, 0.18262019753456116, 0.5975922346115112, 0.6410396099090576, -1.4719958305358887, -2.119999885559082, -2.290353775024414, -3.3577818870544434, -0.9585183262825012, 0.26148417592048645, -6.424568176269531, -11.081985473632812, -7.275393009185791, -3.5975587368011475, -3.9083404541015625, -3.923099994659424, -3.650902032852173, -4.444343566894531, -3.868506908416748, -1.9987303018569946, -0.4727465510368347, 0.3047374188899994, -5.564382076263428, -5.015488624572754, -2.1893959045410156, 0.19184020161628723, -4.05333137512207, -3.4744656085968018, -2.894695281982422, -0.7358078360557556, -2.138406276702881, -2.1084015369415283, 2.217794895172119, 2.211237907409668, 2.003390073776245, 0.6395075917243958, 3.2420156002044678, -0.5694631934165955, -6.568490505218506, -1.949573040008545, 0.0870925784111023, 0.10387485474348068, 2.600078821182251, -0.5635790824890137, 7.718987464904785, 7.940392017364502, 6.6331071853637695, 7.73748779296875, 9.142827033996582, 9.24535083770752, 9.17730712890625, 17.04285430908203, 8.021662712097168, 6.606634616851807, 6.263670444488525, 6.101632118225098, 6.188879013061523, 5.973971843719482, 5.535314559936523, 5.92577600479126, 4.529201507568359, 4.721100330352783, 4.92861270904541, 4.721924781799316, 2.6550912857055664, 4.823751449584961, 4.089519500732422, 3.688180446624756, 4.67854118347168, 3.862563133239746, 3.344815492630005, 2.5502986907958984, 4.892500400543213, 2.546252965927124, 1.0911672115325928, 0.5148735642433167, 0.661919891834259, 2.4120805263519287, 0.6641308069229126, 1.1648428440093994, 1.5213446617126465, 1.7666157484054565, 1.9570605754852295, 1.680923342704773, 1.7595739364624023, 1.936344861984253, 2.027358055114746, -1.1101638078689575, 0.050265029072761536, -2.9353713989257812, 0.17144542932510376, -0.07678882777690887, 1.1279786825180054, 0.026984181255102158, 0.2516421675682068, 2.2205400466918945, 1.4446486234664917, 5.618035793304443, -0.36655744910240173, 0.3977486491203308, 1.1562607288360596, -0.20263980329036713, -0.6418544054031372, -0.6007882356643677, 1.5365338325500488, 2.2242352962493896, 2.3907716274261475, 3.0281808376312256, 0.8847504258155823, -0.07347764819860458, 6.601446151733398, 11.989531517028809, 7.993586540222168, 4.378693103790283, 4.753905773162842, 4.062860488891602, 3.789716958999634, 4.379395484924316, 3.883258819580078, 1.9905461072921753, 0.6629481315612793, -0.17608526349067688, 5.91093111038208, 4.856051445007324, 2.4011356830596924, 0.621196448802948, 5.4287824630737305, 3.6132724285125732, 2.8917300701141357, 0.7561365962028503, -7.66136360168457, -1.9566045999526978, 0.3413742184638977, -0.3169025480747223, 0.5612906217575073, 0.4738326668739319, 0.1280367225408554, -0.12908461689949036, -1.1089599132537842, -1.9495981931686401, 2.013185501098633, 0.695721447467804, 0.6664884090423584, -0.14383120834827423, -9.105535507202148, 8.88395881652832, 8.194418907165527, 8.118362426757812, 8.983386039733887, 15.847192764282227, 9.080297470092773, 8.025168418884277, 7.77787446975708, 4.049498081207275, 1.3205116987228394, 1.168777346611023, 1.2252341508865356, 1.249016523361206, 1.1255091428756714, 1.1996506452560425, 0.873487114906311, 0.9698370695114136, 0.9200482964515686, 1.0909960269927979, 0.5028417706489563, 1.0498082637786865, 0.8409689664840698, 0.7649657726287842, 0.9360293745994568, 0.6182217001914978, 0.4167337119579315, 0.5612971186637878, 0.6037231087684631, 0.43913084268569946, 0.2243342399597168, -0.01672550104558468, 0.2234622836112976, 0.46163004636764526, 0.03487828001379967, 0.466035932302475, 0.2541402280330658, 0.27434128522872925, 0.4476529657840729, 0.33774513006210327, 0.2865992784500122, 0.41252678632736206, 0.0024880252312868834, -0.1497209519147873, -0.05175769329071045, 0.02815801091492176, -0.02226218208670616, -0.0940958634018898, 0.17749682068824768, -0.02062593586742878, -0.0573367178440094, 0.38121798634529114, 0.2868680953979492, 1.1785837411880493, -0.014893853105604649, 0.13186797499656677, 0.13619869947433472, 0.03653286397457123, -0.21514317393302917, -0.08329702168703079, 1.2553131580352783, 2.1381380558013916, 2.320967435836792, -0.41384172439575195, 0.11922239512205124, 0.45126280188560486, 6.225594997406006, 2.408634662628174, 1.5509283542633057, 0.9759238362312317, 1.0082924365997314, 0.9345251321792603, 0.5880155563354492, 0.7158787846565247, 0.7399909496307373, 0.40702295303344727, -1.1001580953598022, 0.35878878831863403, 1.2574044466018677, 0.4741046726703644, 0.2246377170085907, 0.732416570186615, 1.0169740915298462, 0.19388526678085327, 0.4463232159614563, 1.0903161764144897, 1.9588959217071533, 2.0055527687072754, -0.5232058167457581, -1.4236847162246704, -1.114205002784729, -0.668312668800354, -0.34685468673706055, 0.9589683413505554, 3.631110429763794, 8.939948081970215, -0.6087762117385864, -18.4229793548584, -19.081100463867188, -14.776923179626465, -7.913535118103027, -8.15082836151123, -6.779226779937744, -7.945987224578857, -9.141851425170898, -9.244330406188965, -9.020554542541504, -10.115320205688477, -8.003589630126953, -4.196896553039551, -6.096635341644287, -6.21701717376709, -6.039369583129883, -5.785327434539795, -5.356564044952393, -5.819376468658447, -4.627766132354736, -4.676516056060791, -4.818751811981201, -4.782943248748779, -2.7727344036102295, -4.7456440925598145, -4.903599739074707, -3.6520440578460693, -4.829325199127197, -3.8416976928710938, -3.3797433376312256, -2.57191801071167, -4.130296230316162, -2.635913610458374, -1.4358590841293335, -0.3851478695869446, -0.6225800514221191, -2.3373053073883057, -0.6042454242706299, -1.3116786479949951, -1.6941758394241333, -1.8377108573913574, -1.8894476890563965, -1.8108415603637695, -1.9193819761276245, -2.0803050994873047, -0.1968514323234558, 1.080369234085083, -0.25416451692581177, 0.09270862489938736, 0.37445470690727234, 0.022953210398554802, -1.2585912942886353, 0.388694167137146, -0.09433546662330627, -2.2391977310180664, -1.6332571506500244, -5.5706467628479, 0.5404409766197205, -0.5114344358444214, -1.079782485961914, 0.10880546271800995, 0.7669867873191833, 0.5048133134841919, -1.471364140510559, -2.1953790187835693, -2.358229637145996, -3.336958885192871, -1.0056511163711548, -1.7114458084106445, -6.5532612800598145, -8.860387802124023, -7.310863018035889, -3.5234227180480957, -3.9534409046173096, -3.954491138458252, -3.653003454208374, -4.453188896179199, -3.7787857055664062, -2.045616388320923, -0.5202841758728027, 0.2658776342868805, -5.66404914855957, -4.829433441162109, -2.0338897705078125, -0.6546768546104431, -4.102285385131836, -3.3845913410186768, -2.822138547897339, -0.8365621566772461, -17.016807556152344, -24.641345977783203, -5.130126476287842, -2.6904189586639404, 0.39799928665161133, 0.47398641705513, -1.0647181272506714, -0.24866724014282227, -0.34161901473999023, -0.7105128169059753, 39.95035934448242, 2.831878900527954, 7.3188252449035645, 6.504739284515381, 0.9948558807373047, 0.9732303619384766, 0.7425878047943115, 0.710248589515686, 4.312987804412842, 3.9676079750061035, 4.369531154632568, 3.851053476333618, 3.876281261444092, 1.9084614515304565, 0.41528618335723877, 0.5398150682449341, 0.47171592712402344, 0.3831786811351776, 0.45285871624946594, 0.29007259011268616, 0.2538950443267822, -8.46192455291748, 0.3442690670490265, 0.2527095675468445, -1.525955080986023, 0.3919203281402588, 0.43289631605148315, -29.407472610473633, -34.61700439453125, 0.28793323040008545, 0.2892102003097534, 0.027027809992432594, -0.018104124814271927, 0.20092955231666565, 0.013346636667847633, -5.996646404266357, 0.04622534662485123, 0.061857908964157104, -0.10581143200397491, 0.023072782903909683, 0.1636875867843628, -0.05943959206342697, 0.1661878079175949, 0.019204935058951378, 0.1275356560945511, -5.327498435974121, -8.087818145751953, -0.23204822838306427, -0.09201974421739578, -0.28036248683929443, -0.15590937435626984, -0.02909776009619236, 0.21613207459449768, -16.89828872680664, -0.2723367512226105, 0.016883550211787224, 0.03379444405436516, 0.4741160273551941, -1.589136004447937, -0.06749897450208664, 0.007448224350810051, -0.17390163242816925, -0.4933198392391205, 0.307824045419693, 0.15898436307907104, 1.2082656621932983, 1.1240794658660889, 0.08820491284132004, 0.09730509668588638, -1.6231003999710083, 5.8778181076049805, 1.2579982280731201, 0.5310705900192261, 0.34640851616859436, 0.22184106707572937, 0.15819622576236725, 0.3268556594848633, 0.24989232420921326, 0.20530015230178833, 0.041499461978673935, -0.359250009059906, 0.03036625310778618, 0.38248410820961, 0.2977536618709564, 0.07914634048938751, 0.048560768365859985, 0.42851319909095764, 0.3707250952720642, 0.08794607222080231, 0.2513819634914398, 1.2807483673095703, -1.2921901941299438, -0.5568666458129883, 1.1083723306655884, -0.4744262099266052]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (0.8, 1.37)}}, 'et2_eta2': {'discriminator': {'threshold': 0.49499844312667846, 'nodes': [100, 14, 1], 'bias': [0.1707249879837036, 0.10174738615751266, -0.20840246975421906, -0.13732850551605225, -0.09614444524049759, -0.019201381132006645, -0.05365116894245148, 0.09345933794975281, 0.08465275913476944, -0.06451258808374405, -0.02800479345023632, 0.019362030550837517, 0.11334354430437088, -0.00887064728885889, -0.13140974938869476], 'weights': [-0.06606043875217438, -0.8367270827293396, 0.115146704018116, 0.060741081833839417, -0.12235406041145325, -0.12245986610651016, -0.5687753558158875, 0.07358133047819138, 0.049203649163246155, -0.2521652281284332, -0.33001652359962463, -0.15812957286834717, -0.03010108321905136, 0.15555064380168915, -0.03557691350579262, -0.07275908440351486, 0.20077049732208252, 0.0018325630808249116, -0.07096224278211594, 0.9507601857185364, 0.09167873114347458, 0.22424428164958954, 0.04948459565639496, 0.6701226830482483, 0.11170085519552231, 0.2555394768714905, 0.2628246247768402, 0.2324056476354599, 0.8863117098808289, 0.1258459985256195, 0.10018187016248703, 0.044367656111717224, -0.4146184027194977, 0.2901155948638916, 0.09137792140245438, 0.04646814242005348, 0.6117924451828003, 0.17880254983901978, -0.5643086433410645, 0.20871685445308685, 0.18893471360206604, -0.21214157342910767, -0.37722790241241455, 0.39325931668281555, -0.15624672174453735, 0.24026773869991302, 0.22241196036338806, 0.17107123136520386, 0.14922232925891876, 0.2174467295408249, 0.10440286248922348, 0.19777287542819977, 0.1190444678068161, 0.12006296217441559, 0.20567160844802856, 0.2485208511352539, -0.04509178549051285, -0.6319347023963928, 0.07937153428792953, 0.0029797209426760674, 0.008058306761085987, 0.20494073629379272, -0.5568835735321045, -0.042290471494197845, -0.19626261293888092, -0.3394336402416229, -0.4649706184864044, -0.0005577346892096102, 0.08033037930727005, 0.20553575456142426, -0.657164454460144, 0.2305898517370224, -1.3261137008666992, -0.0024184423964470625, 4.489981651306152, 0.007991298101842403, 0.30681970715522766, 0.09137896448373795, 0.23328344523906708, 0.0060869562439620495, 0.13291841745376587, 2.194983720779419, 0.47018519043922424, 0.19108444452285767, 0.24352893233299255, 0.25093379616737366, 0.120008684694767, 0.08596907556056976, -0.15536849200725555, 0.15211153030395508, -0.012470908463001251, -0.05239341780543327, 0.46831536293029785, 0.23476940393447876, 0.08228341490030289, 0.08897280693054199, -0.06520887464284897, -0.013113612309098244, 0.16094890236854553, 0.05680893734097481, -0.15846510231494904, 0.023007133975625038, 0.4805394411087036, 0.7386955618858337, -0.05893643945455551, -0.07832388579845428, -0.489437997341156, 0.47066015005111694, 0.1497558206319809, -1.8187565803527832, -1.6817665100097656, -1.1312881708145142, -0.32791370153427124, 0.2686810791492462, -0.008977537043392658, -0.36380159854888916, 1.0248287916183472, -0.3592522144317627, 0.7478768825531006, 0.20873740315437317, 0.9317304491996765, 1.0154422521591187, 0.5308752059936523, 0.11958597600460052, 0.4139981269836426, 0.6401083469390869, 0.23358310759067535, 1.049261450767517, 4.3114800453186035, -0.11783634126186371, 0.8505382537841797, 0.5602614283561707, 0.35944584012031555, 0.9598845839500427, 0.7539865374565125, 0.617914617061615, 2.306867837905884, 0.6926198601722717, -2.9448094367980957, 0.6613332033157349, 0.6128464341163635, -0.8588602542877197, -1.8161532878875732, 2.143770933151245, -0.34903040528297424, 0.5341959595680237, 0.5151445865631104, 0.5737042427062988, 0.44619157910346985, 0.5914949178695679, 0.6390184760093689, 0.6983092427253723, 0.5768938660621643, 0.5351735949516296, 0.4607420563697815, 0.606026828289032, -0.2518922686576843, -3.109715223312378, 0.24683162569999695, 0.40903013944625854, 0.6581448316574097, 0.736084520816803, -2.4797914028167725, 0.28890854120254517, -1.101582646369934, -1.7910212278366089, -1.8346189260482788, -0.02027696929872036, 0.6025895476341248, 0.7256069779396057, -0.003613272914662957, 0.5578451156616211, -0.09166557341814041, -0.2378983199596405, 1.2032734155654907, 0.40869900584220886, 1.38259756565094, 0.8871416449546814, 0.7678374648094177, 0.4686409533023834, -0.033244144171476364, 0.3854514956474304, 1.9655872583389282, 0.9753177762031555, 0.9666259288787842, 0.865003764629364, 0.8214084506034851, 0.631327211856842, -0.42855533957481384, 0.11512231081724167, 0.07901459187269211, -0.09313514083623886, 2.1921839714050293, 0.8013532757759094, 0.5820163488388062, 0.7382540702819824, 0.03615826368331909, 0.09214795380830765, 0.34498289227485657, -0.04927142336964607, 0.19020627439022064, 0.008593279868364334, -0.7456904649734497, -0.7370827198028564, 0.048972953110933304, 0.009786338545382023, 0.4844837188720703, -0.30438879132270813, 0.10197588056325912, 1.8126013278961182, 1.8784635066986084, 1.1388660669326782, 0.23827698826789856, -0.34036093950271606, 0.20426660776138306, 0.18955275416374207, -1.008536696434021, 0.19251389801502228, -1.9256455898284912, -0.22562791407108307, -0.81178879737854, -0.8803373575210571, -0.7104411721229553, -0.25053662061691284, -0.589969277381897, -0.6647329330444336, -0.14198221266269684, -1.145090937614441, -4.348331928253174, -0.4134097993373871, -0.7745955586433411, -0.5676944851875305, -0.3689371645450592, -0.7786082625389099, -0.7569590210914612, -0.6402170062065125, -2.444904088973999, -0.44976791739463806, 2.8380000591278076, -0.8476167917251587, -0.6269283890724182, 0.6979691982269287, 1.88822603225708, -1.996711015701294, 0.3672381341457367, -0.5176037549972534, -0.5451810359954834, -0.5420520901679993, -0.5934973955154419, -0.5964339375495911, -0.621378481388092, -0.4748944640159607, -0.6849404573440552, -0.44632139801979065, -0.6190561056137085, -0.6392660140991211, 0.3132791817188263, 3.045849561691284, -0.37874794006347656, -0.38165152072906494, -0.5151529908180237, -0.7892104983329773, 2.50258469581604, -0.4062046408653259, 1.22688889503479, 1.8079942464828491, 1.9457989931106567, 0.010394269600510597, -0.5935432314872742, -0.7183888554573059, 0.058225493878126144, -0.5600332021713257, 0.18877120316028595, 0.11380460113286972, -1.3091801404953003, -0.8055684566497803, -1.4872583150863647, -0.7723063826560974, -0.8688029050827026, -0.46983107924461365, -0.10763821005821228, -0.47162461280822754, -1.9941385984420776, -0.9734681844711304, -0.9610986709594727, -0.8010903000831604, -0.6020194292068481, -0.5672622323036194, 0.4257555305957794, -0.27838170528411865, 0.01527438871562481, -0.01565510593354702, -2.1571640968322754, -0.9350494742393494, -0.5590060949325562, -0.829379677772522, 0.0978970006108284, 0.044757384806871414, -0.44883647561073303, 0.19522066414356232, 0.32063028216362, 0.06757009029388428, -0.5263333916664124, -0.5997104644775391, 0.23974613845348358, 0.12665528059005737, 0.3190617263317108, -0.2815082371234894, -0.09226834028959274, 1.7589316368103027, 1.7040865421295166, 1.109808325767517, 0.31404614448547363, -0.2686191499233246, 0.1794172078371048, 0.40101712942123413, -0.9511715769767761, 0.33520907163619995, -0.7663508057594299, -0.0857110470533371, -0.9366382956504822, -0.8773107528686523, -0.6620772480964661, -0.16531887650489807, -0.5222448110580444, -0.6641812920570374, -0.24093161523342133, -1.1190019845962524, -4.3045501708984375, -0.10023340582847595, -0.8655656576156616, -0.6361765265464783, -0.47832223773002625, -0.7756959795951843, -0.6823001503944397, -0.5645976662635803, -2.3193576335906982, -0.5462998747825623, 2.9422686100006104, -0.8613454103469849, -0.5349677205085754, 0.8700229525566101, 1.8396708965301514, -2.071143388748169, 0.36887139081954956, -0.5852486491203308, -0.6503114104270935, -0.7252158522605896, -0.5126715898513794, -0.5001258850097656, -0.6588872075080872, -0.5246867537498474, -0.5924035310745239, -0.44123491644859314, -0.5778620839118958, -0.721166729927063, 0.31314197182655334, 3.2302563190460205, -0.440328449010849, -0.3322342038154602, -0.5106637477874756, -0.6995989084243774, 2.489288568496704, -0.2689201235771179, 1.077247142791748, 1.8635884523391724, 1.9165407419204712, -0.007932139560580254, -0.6287121176719666, -0.6376098394393921, 0.02040170505642891, -0.4974731504917145, 0.19944177567958832, 0.2695881426334381, -1.315283179283142, -0.5260916352272034, -1.3933442831039429, -0.8893085718154907, -0.7917318344116211, -0.30085721611976624, -0.12256361544132233, -0.43783098459243774, -1.8691908121109009, -0.9016252756118774, -0.9164499044418335, -0.87711101770401, -0.6178460717201233, -0.7649113535881042, 0.5283727645874023, -0.35002005100250244, -0.12718641757965088, 0.09723836183547974, -2.145632743835449, -0.8486443758010864, -0.551122784614563, -0.7246545553207397, -0.002265618648380041, 0.029283616691827774, -0.3682063817977905, 0.0656578466296196, 0.36016353964805603, -0.0007007680833339691, -0.6836897134780884, -0.6444767117500305, 0.16020667552947998, -0.015924349427223206, 0.36518192291259766, -0.4724082350730896, 0.07465436309576035, 1.7346022129058838, 1.7319612503051758, 1.0755726099014282, 0.3566262722015381, -0.40479740500450134, 0.1838752180337906, 0.1851578652858734, -0.8637793660163879, 0.38351744413375854, -0.6452786922454834, -0.07175610214471817, -1.0273109674453735, -0.8811048865318298, -0.6363034844398499, -0.1745043396949768, -0.515251874923706, -0.772562563419342, -0.34472760558128357, -1.1246644258499146, -4.334987163543701, -0.09588155895471573, -0.805990993976593, -0.6273394823074341, -0.3068254292011261, -0.874455451965332, -0.7172515392303467, -0.7080560922622681, -2.3252809047698975, -0.5361090302467346, 2.8433258533477783, -0.6993681788444519, -0.5500839352607727, 0.7979773283004761, 1.731996774673462, -1.9894617795944214, 0.3960632085800171, -0.6874868869781494, -0.5490732192993164, -0.6096540689468384, -0.5656237602233887, -0.5132312178611755, -0.5283927917480469, -0.6692894101142883, -0.6083277463912964, -0.5203819870948792, -0.560654878616333, -0.7291178703308105, 0.1246354728937149, 3.2071101665496826, -0.454919695854187, -0.3157617747783661, -0.5304358005523682, -0.6555932760238647, 2.515575885772705, -0.35261106491088867, 1.0234708786010742, 1.853946566581726, 1.9248071908950806, 0.1677820235490799, -0.6271855235099792, -0.7273083329200745, 0.12267974019050598, -0.5100845098495483, 0.0386752225458622, 0.26321420073509216, -1.245235800743103, -0.42425069212913513, -1.5009785890579224, -0.9534385204315186, -0.8097448348999023, -0.48836183547973633, -0.061183150857686996, -0.560765266418457, -1.9399421215057373, -0.9947825074195862, -0.8831158876419067, -0.8652569651603699, -0.719931960105896, -0.6846681237220764, 0.5161029696464539, -0.23132792115211487, -0.02949303202331066, 0.0643598660826683, -2.2183046340942383, -0.9600793719291687, -0.6648999452590942, -0.8520799875259399, 0.1120728924870491, -0.07524948567152023, -0.32089558243751526, 0.18250079452991486, -0.29079487919807434, -0.07297219336032867, 0.5702992677688599, 0.6717420816421509, -0.17416059970855713, -0.07274244725704193, -0.42527180910110474, 0.3661322295665741, 0.08494842797517776, -1.7563726902008057, -1.8056137561798096, -0.932685911655426, -0.34595435857772827, 0.3874710202217102, -0.15931148827075958, -0.3592854142189026, 0.9126657843589783, -0.2059498280286789, 0.6499573588371277, 0.25811678171157837, 0.8527059555053711, 1.006898045539856, 0.7086886763572693, 0.12712575495243073, 0.4048194885253906, 0.5554826259613037, 1.0318541526794434, 0.9682132601737976, 4.507060527801514, 0.0813729539513588, 0.8449249267578125, 0.6335337162017822, 0.4526536762714386, 0.7994703650474548, 0.7515231966972351, 0.6182287335395813, 2.3965904712677, 0.5085525512695312, -2.8044607639312744, 0.6953141093254089, 0.7357233762741089, -0.8332928419113159, -1.8281304836273193, 1.9508066177368164, -0.39061909914016724, 0.6164454221725464, 0.5712622404098511, 0.5961549282073975, 0.43718281388282776, 0.5406273603439331, 0.4760308563709259, 0.601210355758667, 0.52655029296875, 0.5405638813972473, 0.6801670789718628, 0.5374364852905273, -0.08619681000709534, -3.260143756866455, 0.3417535722255707, 0.5257258415222168, 0.6978602409362793, 0.5808326005935669, -2.5340828895568848, 0.4318539798259735, -1.172688364982605, -1.8387123346328735, -1.9359201192855835, -0.010723121464252472, 0.6153915524482727, 0.7555891871452332, -0.20464158058166504, 0.44896411895751953, -0.045181505382061005, -0.2063431590795517, 1.1459882259368896, 0.5995404124259949, 1.48733651638031, 0.8769084811210632, 0.7463125586509705, 0.3198077976703644, 0.24702170491218567, 0.4455000162124634, 1.9642187356948853, 2.784557342529297, 0.7878943681716919, 0.7740758657455444, 0.6323056817054749, 0.6273369789123535, -0.4253511130809784, 0.26550713181495667, -0.052820831537246704, -0.0411500558257103, 2.4064958095550537, 0.8597870469093323, 0.5323863625526428, 0.6622788906097412, 0.037835054099559784, -0.06784868985414505, 0.5231173038482666, -0.27935290336608887, 0.1702578216791153, -0.0879364088177681, -0.4510855972766876, -0.7305835485458374, 0.14052385091781616, 0.13172666728496552, 0.35174769163131714, -0.47032755613327026, -0.09911150485277176, 1.7761969566345215, 1.898987054824829, 1.0423544645309448, 0.15041637420654297, -0.18931657075881958, 0.17707087099552155, 0.3138219118118286, -1.047913908958435, 0.15693987905979156, -0.845788300037384, -0.11595940589904785, -0.9816012382507324, -0.9386141896247864, -0.6105013489723206, -0.11443363130092621, -0.4670078754425049, -0.6465014219284058, -1.1085788011550903, -0.9356372952461243, -4.396286487579346, -0.01927894353866577, -0.6921009421348572, -0.6369092464447021, -0.31054243445396423, -0.7693153023719788, -0.5718578100204468, -0.7383718490600586, -2.3138387203216553, -0.6455010771751404, 2.822006940841675, -0.868607759475708, -0.610965371131897, 0.7023298740386963, 1.770892858505249, -2.0151991844177246, 0.27454274892807007, -0.6623110771179199, -0.6875004768371582, -0.6642158627510071, -0.5256713628768921, -0.6108142137527466, -0.6438130736351013, -0.5768171548843384, -0.522066056728363, -0.36864665150642395, -0.6493601202964783, -0.6015281081199646, 0.16107843816280365, 3.2206101417541504, -0.3796566128730774, -0.33368271589279175, -0.6816871166229248, -0.7077940106391907, 2.480868101119995, -0.26622551679611206, 1.069494366645813, 1.7232807874679565, 1.7395228147506714, -0.01610647700726986, -0.6258893609046936, -0.6925578117370605, 0.010905720293521881, -0.5765857696533203, 0.2191324383020401, 0.19725224375724792, -1.0961204767227173, -0.6066678166389465, -1.3004108667373657, -0.9496663808822632, -0.8151091933250427, -0.46325525641441345, -0.1480841040611267, -0.4401959776878357, -1.8412818908691406, -1.0023319721221924, -0.8521648645401001, -0.8622179627418518, -0.5929754376411438, -0.6103581786155701, 0.5395578145980835, -0.2704674303531647, 0.019960513338446617, -0.07035263627767563, -2.0682854652404785, -0.9522494673728943, -0.7201429605484009, -0.649121880531311, -0.0038468684069812298, -0.07442273944616318, -0.5431778430938721, 0.06096126139163971, -0.29913827776908875, -0.22480252385139465, 0.09798271954059601, 0.19686107337474823, -0.10142997652292252, -0.01850486360490322, -0.056461725383996964, 0.04583180323243141, -0.014286689460277557, -0.2753530740737915, -0.25825822353363037, -0.182356059551239, -0.1693047285079956, 0.35080114006996155, -0.12958882749080658, -0.11810768395662308, 0.13752485811710358, -0.08831862360239029, 0.9072059392929077, 0.05624870955944061, 0.195160910487175, 0.30208247900009155, 0.09255675971508026, 0.044305942952632904, 0.22604481875896454, 0.09186547249555588, -0.03759370371699333, 0.12795966863632202, 0.865724503993988, -0.0796608254313469, 0.25136440992355347, 0.11571536958217621, 0.07202447950839996, 0.11920921504497528, 0.0466068759560585, 0.19320273399353027, 0.5513982772827148, 0.18247893452644348, -0.6959736347198486, 0.19032639265060425, 0.1625700145959854, -0.2796567380428314, -0.4264359176158905, 0.3779034912586212, -0.10993436723947525, 0.08465975522994995, 0.0441151037812233, 0.16275198757648468, 0.02497279644012451, 0.2354019433259964, 0.05402551591396332, 0.18359331786632538, 0.22359558939933777, 0.11925652623176575, 0.07583490759134293, 0.2166750133037567, 0.07254905253648758, -0.6614377498626709, -0.047521889209747314, 0.03054985962808132, 0.16570903360843658, 0.23583261668682098, -0.46240824460983276, -0.013800681568682194, -0.32688790559768677, -0.2729969024658203, -0.28373590111732483, 0.07514017820358276, 0.15985046327114105, 0.2615641951560974, -0.02122042514383793, 0.03300300985574722, -0.030884999781847, -0.009869243018329144, 1.0417768955230713, 0.0588308647274971, 0.19089223444461823, 0.23361755907535553, 0.28113341331481934, 0.03868701681494713, 0.19222161173820496, 0.2460033893585205, 0.2862215042114258, 0.2148064523935318, 0.2555864453315735, 0.14327861368656158, 0.12096571922302246, 0.20990554988384247, -0.24028895795345306, 0.03277208283543587, -0.1116698831319809, 0.010837419889867306, 0.38927748799324036, 0.24378836154937744, 0.18102321028709412, 0.14603978395462036, 0.030626164749264717, 0.0230767410248518, 0.04298524186015129, -0.10658033192157745, -0.19822491705417633, 0.017320921644568443, 0.5835795402526855, 0.7346124649047852, -0.01011297944933176, 0.0779673159122467, -0.35347360372543335, 0.41597625613212585, 0.10790515691041946, -1.9020323753356934, -1.8129451274871826, -1.1516002416610718, -0.33691829442977905, 0.4159109890460968, -0.017693812027573586, -0.2744523286819458, 0.93325275182724, -0.236153244972229, 0.7452064752578735, 0.25735118985176086, 0.9640774726867676, 0.8334521651268005, 0.5171111822128296, 0.17464125156402588, 0.5816508531570435, 0.6847097873687744, 0.992009162902832, 1.0032310485839844, 4.498451232910156, -0.04158192127943039, 0.8977311849594116, 0.7140900492668152, 0.4246344268321991, 0.8618710041046143, 0.6554875373840332, 0.7373062372207642, 2.3705198764801025, 0.4818362891674042, -2.8747222423553467, 0.6885142922401428, 0.5670339465141296, -0.6717050075531006, -1.8146638870239258, 2.030334234237671, -0.26289185881614685, 0.5323486924171448, 0.739303708076477, 0.563902735710144, 0.5620641708374023, 0.5647371411323547, 0.6821945309638977, 0.598387598991394, 0.6163954138755798, 0.3165642321109772, 0.7284366488456726, 0.5649319887161255, -0.17787878215312958, -3.255401611328125, 0.4079532027244568, 0.4217488169670105, 0.5833332538604736, 0.6961525678634644, -2.5614712238311768, 0.28466498851776123, -1.2341487407684326, -1.722955346107483, -1.7248502969741821, -0.09456807374954224, 0.7081184983253479, 0.6572163105010986, -0.05610523745417595, 0.6121820211410522, -0.2205866277217865, -0.2835213840007782, 1.1495531797409058, 0.3707353174686432, 1.3297477960586548, 0.8093340396881104, 0.7244362831115723, 0.28341665863990784, 0.20724299550056458, 0.3906059265136719, 1.9285820722579956, 0.9102513790130615, 0.7475860118865967, 0.7830262184143066, 0.7098676562309265, 0.7345274090766907, -0.4079727232456207, 0.1700875610113144, -0.05329349637031555, 0.10088243335485458, 2.2018327713012695, 0.8356118202209473, 0.5235437750816345, 0.8635833263397217, -0.10976390540599823, -0.10480258613824844, 0.40139588713645935, -0.09504438191652298, 0.20081157982349396, 0.022383054718375206, -0.5264620184898376, -0.7780746221542358, 0.01499555166810751, 0.06694962829351425, 0.38671499490737915, -0.41949936747550964, 0.062368832528591156, 1.776449203491211, 1.8990669250488281, 1.1483021974563599, 0.3557695746421814, -0.3786681294441223, 0.004178141243755817, 0.2850566506385803, -0.9128211736679077, 0.33649688959121704, -0.8529667854309082, -0.08126382529735565, -0.8022549748420715, -1.0481257438659668, -0.5515504479408264, -0.20266515016555786, -0.5846991539001465, -0.6260547041893005, -0.24197988212108612, -1.089626669883728, -4.49760627746582, -0.06574679166078568, -0.7407722473144531, -0.7130200266838074, -0.2517540752887726, -0.8882997035980225, -0.7002393007278442, -0.5619049668312073, -2.492542028427124, -0.49571049213409424, 2.8060951232910156, -0.6426241993904114, -0.7041294574737549, 0.6915614604949951, 1.8596177101135254, -2.146216869354248, 0.3176295757293701, -0.5032723546028137, -0.6040768027305603, -0.7389822602272034, -0.43028202652931213, -0.5396321415901184, -0.6690815091133118, -0.5451828837394714, -0.5654584169387817, -0.3402523100376129, -0.700999915599823, -0.5194050669670105, 0.21520762145519257, 3.171365737915039, -0.44645997881889343, -0.3859562277793884, -0.5341928005218506, -0.5800620317459106, 2.595991611480713, -0.3031494617462158, 1.0833052396774292, 1.7150837182998657, 1.8841289281845093, 0.06221012771129608, -0.7275026440620422, -0.5689263939857483, 0.07199674099683762, -0.5281565189361572, 0.08878869563341141, 0.10386119037866592, -1.1837722063064575, -0.4507181644439697, -1.477969765663147, -0.9488312005996704, -0.7292497158050537, -0.3022158443927765, -0.081123948097229, -0.38466811180114746, -1.8919235467910767, -0.9737066030502319, -0.762954592704773, -0.7212927341461182, -0.7254342436790466, -0.7102254033088684, 0.388031929731369, -0.2265177071094513, -0.127097487449646, -0.06932099908590317, -2.13981556892395, -0.7409772276878357, -0.512828528881073, -0.7119044065475464, -0.04397844150662422, 0.03429115191102028, -0.5225852727890015, 0.16242296993732452, 0.2575269639492035, 0.07200753688812256, -0.4803715944290161, -0.6726734042167664, 0.12117724120616913, 0.021430684253573418, 0.49125218391418457, -0.33259275555610657, -0.0640081837773323, 1.857168197631836, 1.7706904411315918, 0.9879328608512878, 0.21545445919036865, -0.19425088167190552, 0.010440086014568806, 0.1935741901397705, -1.0045486688613892, 0.2712439298629761, -0.7702683806419373, -0.08033265173435211, -0.9034497141838074, -0.9321777820587158, -0.6487780809402466, -0.1797831505537033, -0.5308007001876831, -0.7778226733207703, -1.0102791786193848, -1.141680121421814, -4.491288661956787, -0.049505144357681274, -0.7399912476539612, -0.643155574798584, -0.43086275458335876, -0.8482596278190613, -0.7699534893035889, -0.6280007362365723, -2.5048470497131348, -0.4540512263774872, 2.8200747966766357, -0.7744748592376709, -0.5885825157165527, 0.8221393823623657, 1.8123719692230225, -2.177816152572632, 0.32903507351875305, -0.5374247431755066, -0.7203271389007568, -0.7675209641456604, -0.5365190505981445, -0.5663529634475708, -0.7035203576087952, -0.5076393485069275, -0.7212063074111938, -0.46486249566078186, -0.6474089622497559, -0.6144232749938965, 0.1835792511701584, 3.0708260536193848, -0.3485568165779114, -0.40443551540374756, -0.6116595268249512, -0.7263526320457458, 2.40240216255188, -0.3147500455379486, 1.222029447555542, 1.696759819984436, 1.7996011972427368, 0.1954583376646042, -0.7109985947608948, -0.6326432228088379, 0.06656544655561447, -0.3892747461795807, 0.14881843328475952, 0.04435308277606964, -1.321463704109192, -0.5656430125236511, -1.3266555070877075, -0.9577986001968384, -0.865882158279419, -0.5280560255050659, -0.10998094081878662, -0.5489081144332886, -1.8093022108078003, -0.9133367538452148, -0.807054877281189, -0.830051839351654, -0.7669137120246887, -0.7927852272987366, 0.4237079918384552, -0.1632678508758545, 0.016838181763887405, 0.133863165974617, -2.2296829223632812, -0.7837997674942017, -0.5662199258804321, -0.6562159061431885, -0.11195629090070724, -0.11045905202627182, -0.3404770791530609, 0.11778045445680618, 0.19456304609775543, -0.08189252763986588, -0.6308972835540771, -0.791385293006897, 0.09273719042539597, 0.0036272697616368532, 0.5182820558547974, -0.37931039929389954, 0.025979122146964073, 1.6895132064819336, 1.6942105293273926, 1.156462550163269, 0.3703320622444153, -0.21862953901290894, 0.13437162339687347, 0.24404951930046082, -1.0609395503997803, 0.3134382963180542, -0.6866099238395691, -0.08308583498001099, -0.9590905904769897, -0.89156174659729, -0.5632089376449585, -0.28201451897621155, -0.5454007387161255, -0.5649509429931641, -1.1785639524459839, -1.0518543720245361, -4.340404033660889, -0.014029682613909245, -0.8648631572723389, -0.5603560209274292, -0.3028838336467743, -0.8772537708282471, -0.8007323741912842, -0.7871732711791992, -2.305241107940674, -0.4620078504085541, 2.8605880737304688, -0.7312850952148438, -0.758791446685791, 0.780769944190979, 1.7776882648468018, -1.9467439651489258, 0.26868966221809387, -0.6945803165435791, -0.6851882934570312, -0.6378538012504578, -0.40507644414901733, -0.6939588785171509, -0.5712036490440369, -0.6783473491668701, -0.5617929100990295, -0.4198080599308014, -0.6738392114639282, -0.7160131931304932, 0.19510199129581451, 3.1225147247314453, -0.36572355031967163, -0.4884119927883148, -0.5298979878425598, -0.6219878792762756, 2.4063267707824707, -0.3514130711555481, 1.0509965419769287, 1.6644905805587769, 1.85016930103302, -0.02237199805676937, -0.7458216547966003, -0.7879654765129089, 0.13832825422286987, -0.5997087955474854, 0.19853012263774872, 0.0868348553776741, -1.2954236268997192, -0.570874035358429, -1.4467319250106812, -0.902022123336792, -0.7468485832214355, -0.5112848281860352, -0.1872190535068512, -0.5439612865447998, -1.9685388803482056, -2.9982452392578125, -0.7624760866165161, -0.769315242767334, -0.786322295665741, -0.7312611937522888, 0.5307304859161377, -0.20524565875530243, -0.011036472395062447, 0.07624375075101852, -2.3901426792144775, -0.8131526112556458, -0.6550995111465454, -0.7648617625236511, 0.07282546907663345, 0.09763270616531372, -0.4205498993396759, 0.26233625411987305, -0.37611302733421326, -0.08324261009693146, 0.6071580648422241, 0.6471080780029297, -0.21982400119304657, 0.05470181256532669, -0.39522844552993774, 0.36093834042549133, 0.03826794773340225, -1.7457695007324219, -1.7008426189422607, -0.9608684778213501, -0.4164491891860962, 0.4119073450565338, -0.06853660196065903, -0.2800791263580322, 0.8721845149993896, -0.16048695147037506, 0.7411051988601685, 0.24324552714824677, 0.916198194026947, 0.8727718591690063, 0.5156030654907227, 0.10147415101528168, 0.5175137519836426, 0.6858924031257629, 0.3416300117969513, 1.016345500946045, 4.301539897918701, 0.09222541004419327, 0.770401656627655, 0.5787761807441711, 0.454497367143631, 0.7615010738372803, 0.6721530556678772, 0.5608392357826233, 2.486370325088501, 0.4601303040981293, -2.866741180419922, 0.7381085157394409, 0.6982096433639526, -0.7911074161529541, -1.8138234615325928, 2.131837844848633, -0.38291674852371216, 0.721832275390625, 0.5956947803497314, 0.6320390701293945, 0.5877281427383423, 0.6565127372741699, 0.4869954586029053, 0.5795533657073975, 0.5080023407936096, 0.3591185510158539, 0.633054256439209, 0.6318902373313904, -0.1372980922460556, -3.138641834259033, 0.2485397756099701, 0.5049035549163818, 0.5944145917892456, 0.6488954424858093, -2.6102490425109863, 0.3289903700351715, -1.1422898769378662, -1.7584465742111206, -1.8603731393814087, -0.1263447403907776, 0.6475401520729065, 0.7691603302955627, -0.04166875034570694, 0.4432939887046814, -0.22522474825382233, -0.26486334204673767, 1.0855494737625122, 0.48611900210380554, 1.2984036207199097, 0.8412072062492371, 0.8948315382003784, 0.5172223448753357, -0.0054000187665224075, 0.605288565158844, 1.9040675163269043, 0.9255096912384033, 0.7655420303344727, 0.6665104031562805, 0.7887030243873596, 0.7897029519081116, -0.41110989451408386, 0.3289906680583954, 0.08841802924871445, -0.132473886013031, 2.073997735977173, 0.9251646399497986, 0.575813353061676, 0.8242260217666626, -0.05232124403119087, 0.05143008381128311, 0.3336430490016937, -0.10156107693910599, 0.38737282156944275, 0.089800626039505, -0.5030906796455383, -0.8163917064666748, 0.026236554607748985, -0.03604865446686745, 0.31367209553718567, -0.3890906274318695, -0.10957267135381699, 1.6989452838897705, 1.8146543502807617, 0.9518905282020569, 0.2548595666885376, -0.21066339313983917, 0.061901625245809555, 0.30497509241104126, -0.9035953283309937, 0.21303154528141022, -0.8366042375564575, -0.15224449336528778, -1.0235093832015991, -1.0237081050872803, -0.5104204416275024, -0.09374441206455231, -0.5089720487594604, -0.6223663687705994, -1.177372932434082, -1.0981420278549194, -4.324347972869873, 0.09347625076770782, -0.7191993594169617, -0.5926507711410522, -0.264563649892807, -0.8446622490882874, -0.6168825626373291, -0.5744748711585999, -2.3124473094940186, -0.48288026452064514, 2.822627305984497, -0.6331642866134644, -0.5293529033660889, 0.8631312847137451, 1.6713590621948242, -2.0736570358276367, 0.3591391146183014, -0.6325008273124695, -0.5102968215942383, -0.6211955547332764, -0.4435254633426666, -0.6689399480819702, -0.6333258748054504, -0.5403361916542053, -0.6690417528152466, -0.5028167963027954, -0.5884392261505127, -0.5459544658660889, 0.29578161239624023, 3.2089860439300537, -0.48283153772354126, -0.3715743124485016, -0.5767995119094849, -0.5935538411140442, 2.4912924766540527, -0.3598725199699402, 1.112144112586975, 1.6924365758895874, 1.813529133796692, 0.031690891832113266, -0.7386263012886047, -0.6216872930526733, 0.04963300749659538, -0.6039538383483887, 0.20572999119758606, 0.1326891928911209, -1.1857028007507324, -0.4725421667098999, -1.338919997215271, -0.8582887053489685, -0.8824808597564697, -0.41585978865623474, -0.11858848482370377, -0.5008370280265808, -2.0019214153289795, -2.7959845066070557, -0.8022576570510864, -0.7174177765846252, -0.6548818349838257, -0.6702412962913513, 0.42822059988975525, -0.19103501737117767, -0.07403820008039474, -0.07304581254720688, -2.3473761081695557, -0.7913103103637695, -0.5719696283340454, -0.6610695719718933, -0.11826533079147339, -0.09675638377666473, -0.5035718679428101, 0.07831930369138718, -0.32215631008148193, -2.055145025253296, 0.23507830500602722, 3.2227416038513184, 2.51741099357605, -0.2583579123020172, 1.2599904537200928, -0.21254514157772064, -0.5419886112213135, 0.9281531572341919, 1.5625057220458984, 0.2760341465473175, -1.4887807369232178, 0.2906089425086975]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (1.37, 1.54)}}, 'et2_eta3': {'discriminator': {'threshold': 0.32499860525131224, 'nodes': [100, 5, 1], 'bias': [0.00788446981459856, -0.0552411712706089, -0.04461474344134331, 0.028316013514995575, -0.03182104974985123, -0.10394201427698135], 'weights': [0.8866645693778992, 2.556509256362915, 1.2605292797088623, -0.7053293585777283, -0.5666756629943848, -1.1770684719085693, -0.14521314203739166, -0.47434401512145996, 1.3796004056930542, 3.112575054168701, 1.2103172540664673, -1.5549136400222778, -3.153865337371826, 0.10194616764783859, -4.306671619415283, -4.400684356689453, -3.415825366973877, -5.797379970550537, -4.162384510040283, -4.917461395263672, -2.887441396713257, -3.600128412246704, -2.3367486000061035, -3.3575918674468994, -11.457368850708008, -3.3863959312438965, -0.9010925889015198, -0.8031396865844727, -0.8098471164703369, -2.9547371864318848, -1.7250993251800537, -3.0472469329833984, -1.5851689577102661, -1.8912644386291504, -2.7962486743927, -0.48974359035491943, -0.3226456344127655, -1.8864710330963135, -1.194448471069336, -1.169174313545227, -0.7021977305412292, -1.9675836563110352, -3.0658020973205566, -1.9403047561645508, -0.5956904888153076, -1.4021230936050415, -0.9376400709152222, -3.788919687271118, 1.4170138835906982, -0.08359036594629288, -0.5999832153320312, 1.758783221244812, -0.8053829669952393, 0.7376378178596497, -2.768646240234375, -0.3445039987564087, 0.05063493549823761, -2.8349437713623047, -0.5258631706237793, -0.3931165337562561, -0.2657352089881897, -1.0838490724563599, -0.2015194296836853, -0.3336443305015564, -0.23711436986923218, 0.29125750064849854, -0.7750683426856995, -0.11601141095161438, 2.4019272327423096, -2.0096275806427, -0.9388010501861572, -3.814708948135376, 0.6594949960708618, 0.4011780321598053, -2.027766466140747, -2.077592372894287, -2.1469509601593018, -1.7370887994766235, -1.1557564735412598, -0.8719875812530518, -0.2641344666481018, -4.4357523918151855, -6.516595840454102, -3.170814275741577, -1.7167738676071167, -1.5650434494018555, -1.9787112474441528, -0.14804628491401672, -0.21691787242889404, -1.089533805847168, -0.3562376797199249, 0.3281002938747406, -4.176568031311035, -1.744714379310608, -0.1050671711564064, -2.076401472091675, -0.802380383014679, -0.03973992541432381, 0.28620898723602295, -12.925882339477539, 1.9419426918029785, 2.602848529815674, 1.2153435945510864, -0.6900002956390381, -0.5655251145362854, -0.952894926071167, 0.022272460162639618, -0.4958982467651367, 3.1198890209198, 3.025790214538574, 1.1861860752105713, -6.007218360900879, -3.1722805500030518, -0.2640519440174103, -4.331332206726074, -1.5999140739440918, -1.0840733051300049, -5.8222222328186035, -4.18679666519165, -4.853883743286133, -2.191801071166992, -3.1507978439331055, -2.288870096206665, -3.1576733589172363, -5.327248573303223, -3.352508306503296, -0.8761668801307678, -0.7575724124908447, -0.9277490973472595, -2.8850743770599365, -1.7238850593566895, -3.2047336101531982, -1.5239962339401245, -1.922297716140747, -2.9028563499450684, -0.43713223934173584, -0.39689573645591736, -2.063551425933838, -1.1043701171875, -1.0973916053771973, -0.7553235292434692, -0.34111839532852173, -3.1869847774505615, -1.9442647695541382, -0.5365073680877686, 1.1823997497558594, -1.2664458751678467, -2.7871766090393066, 1.4006975889205933, -0.12241924554109573, -0.7445502877235413, 0.02595626749098301, -0.8430140018463135, -0.6031336784362793, -2.808506488800049, 0.9689239859580994, 0.09706023335456848, -2.8670475482940674, -0.5151947140693665, 0.6677565574645996, -0.35322022438049316, -1.0831847190856934, -0.15348589420318604, -0.3028882145881653, -0.27966588735580444, 0.242187961935997, -0.6819342374801636, 1.2050498723983765, 2.4093573093414307, -2.0193686485290527, -0.874685525894165, -3.843883991241455, 0.5974795818328857, 0.29570522904396057, -1.3750430345535278, -2.129608154296875, -2.071500062942505, -1.7880357503890991, -0.9439229369163513, -0.9380764961242676, 1.075730562210083, -5.608274459838867, -6.570926189422607, -3.06646728515625, -1.8419228792190552, -1.6471420526504517, -1.7074791193008423, -0.21474198997020721, -0.15032127499580383, -1.3652732372283936, -0.48098471760749817, 0.1757192760705948, -4.199511528015137, -1.6398017406463623, -0.30331021547317505, -2.008441925048828, -0.6796550154685974, -0.02432888373732567, 0.25832536816596985, -13.047375679016113, 2.3015670776367188, 2.652259588241577, -0.04276109114289284, -1.6898763179779053, -0.5282547473907471, -1.1373041868209839, -0.16041436791419983, -0.7841352820396423, 3.0586726665496826, 3.285292863845825, 1.0829966068267822, -5.959018707275391, -3.2016642093658447, -0.25804877281188965, -4.159054756164551, -1.7311261892318726, -1.02461576461792, -5.719105243682861, -4.177931308746338, -4.913457870483398, -2.2203776836395264, -3.33137845993042, -2.2118284702301025, -3.2683162689208984, -5.3131103515625, -3.458804130554199, -0.8601236343383789, -0.9852460026741028, -0.794578492641449, -2.736215114593506, -1.7377876043319702, -3.0413286685943604, -1.5192049741744995, -2.0579564571380615, -2.9968316555023193, -0.40051767230033875, -0.4610377848148346, -2.084721803665161, -1.3372961282730103, -1.2142082452774048, -0.40443119406700134, -0.4215956926345825, -3.0003607273101807, -2.0365712642669678, -0.6028772592544556, 1.2844709157943726, -1.2248389720916748, -2.9994821548461914, 1.350193977355957, -0.06382647901773453, -0.7288849949836731, 0.16878457367420197, -0.90683513879776, -0.5223371386528015, -2.730466604232788, -0.31337636709213257, -0.8087965250015259, -2.7802727222442627, -0.4862459599971771, 0.7656293511390686, -0.3730849623680115, -1.0599578619003296, -0.14788918197155, -0.3234267830848694, -0.13641361892223358, 0.39424484968185425, -0.6739417314529419, 0.7168844938278198, 2.547192335128784, -1.9886322021484375, -0.915225625038147, -3.7405431270599365, 0.5558382868766785, 0.31367701292037964, -1.4577981233596802, -2.2457375526428223, -2.0853188037872314, -1.725975751876831, -1.016640305519104, -0.7467007637023926, 0.9459208250045776, -4.523372650146484, -6.458606243133545, -3.009582996368408, -1.8142799139022827, -1.4648798704147339, -1.2455072402954102, 0.16857734322547913, -0.31852027773857117, -1.2851754426956177, -0.4370708763599396, 0.17729100584983826, -4.101103782653809, -1.7085094451904297, -0.3303433954715729, -2.0256736278533936, -0.9063255190849304, -0.05150369554758072, 0.32025256752967834, -12.878612518310547, 8.361672401428223, 6.350287914276123, -0.19913531839847565, 1.5666073560714722, -0.7337610125541687, -1.0386338233947754, -0.00976614374667406, -0.6988812685012817, 1.131079912185669, 1.5748971700668335, 0.8122682571411133, -21.16731071472168, -11.693875312805176, -0.09097612649202347, -4.067779541015625, -4.6730451583862305, -3.5514535903930664, -5.725566864013672, -4.2891340255737305, -4.80296516418457, -2.525132894515991, -5.988006591796875, -2.218318462371826, -3.2977683544158936, -11.515636444091797, -3.4829905033111572, -0.8902175426483154, -0.9074594378471375, -5.001034259796143, -3.233494758605957, -1.6442557573318481, -3.4007623195648193, -1.5793441534042358, -2.005068063735962, -2.0826714038848877, -1.2316325902938843, -0.23147350549697876, -2.4398794174194336, -1.248934268951416, -1.172889232635498, -0.5631307363510132, 0.2539132237434387, -1.9099215269088745, -1.8873746395111084, -0.5123938322067261, -1.5539332628250122, -0.6213929057121277, -3.8233139514923096, 0.4135018289089203, -0.46119144558906555, -0.2959749102592468, -0.5910411477088928, -9.713387489318848, 0.6432381868362427, -2.776925802230835, 14.407981872558594, 0.10814400017261505, -2.965383768081665, -0.49891337752342224, -0.7406617403030396, -0.14934559166431427, -0.982591986656189, -0.2709519565105438, -0.41164958477020264, -0.25321534276008606, -1.4062607288360596, -0.6443464756011963, -0.3202524185180664, 2.5272762775421143, -2.1843132972717285, 0.06493590027093887, -3.794705629348755, 0.6113260388374329, 0.6873775124549866, -4.210161209106445, -2.237816333770752, -2.09950590133667, -1.8381483554840088, -0.844685435295105, -0.8206974267959595, 3.839216709136963, -4.1806864738464355, -6.32426118850708, -3.149077892303467, -1.7862660884857178, -1.6609349250793457, -1.84271240234375, -0.1596592366695404, 0.06947872787714005, 0.6660725474357605, -0.5717366933822632, 0.30210867524147034, -4.775027275085449, -1.7132046222686768, -0.1530657559633255, -2.0644919872283936, 1.193641185760498, -0.09290184080600739, 0.4423705041408539, -22.962764739990234, 361.2158203125, 53.927001953125, 1.1349157094955444, -23.825899124145508, -11.452814102172852, -52.039695739746094, 0.19839875400066376, -30.636899948120117, 4.653786659240723, 4.191861152648926, -2.7073757648468018, -63.682273864746094, -47.79704666137695, -15.64342975616455, -133.45928955078125, -45.834197998046875, -4.262157917022705, -21.25887680053711, -20.2669677734375, -98.93568420410156, 0.08636799454689026, -19.482770919799805, -38.57852554321289, 3.319154739379883, 18.212064743041992, 3.307018995285034, -86.56903839111328, -1.7849090099334717, -0.49602311849594116, 2.808689832687378, 0.7876392006874084, -6.89988374710083, 1.4884074926376343, -68.577392578125, 1.9276267290115356, -54.111846923828125, -42.21574783325195, 1.9889826774597168, 0.6460270881652832, -16.113811492919922, -25.492910385131836, -3.291553258895874, 1.687590479850769, 53.678897857666016, -9.812946319580078, 28.589740753173828, -27.197240829467773, 48.462615966796875, -1.9507153034210205, -42.17255401611328, 0.018531514331698418, -3.102607250213623, -34.584964752197266, -0.6322385668754578, 2.4058563709259033, 58.15827178955078, -0.16933637857437134, 3.1508588790893555, 0.7075089812278748, 0.7235881686210632, -6.518099784851074, 1.0705773830413818, -0.7424505352973938, -2.3129723072052, -61.94121170043945, 2.5413455963134766, 0.7139628529548645, -11.017036437988281, -2.411630868911743, 2.198167085647583, -0.15526176989078522, 3.858042001724243, -0.04248121753334999, -2.9395751953125, 6.370877265930176, 2.2874696254730225, 2.1906070709228516, -0.2640475928783417, -1.9064992666244507, 0.6887487173080444, 0.7354648113250732, 4.258697032928467, 6.53880500793457, 2.7215805053710938, 1.8767728805541992, 1.5336604118347168, 1.995628833770752, -0.35732460021972656, 100.3153305053711, 34.34101867675781, 0.7588233351707458, -6.39007043838501, 4.54166316986084, 1.7927271127700806, -1.3286956548690796, 4.079582691192627, -7.721810817718506, 9.561965942382812, 0.2421628087759018, 11.420624732971191, 1.8032723665237427, 1.3724095821380615, 2.0775630474090576, 0.5677655935287476, -0.7045931816101074]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (1.54, 2.5)}}, 'et2_eta0': {'discriminator': {'threshold': 0.37499855756759642, 'nodes': [100, 5, 1], 'bias': [-0.12483435124158859, -0.10226479172706604, 0.048882145434617996, 0.038836244493722916, -0.01681659184396267, -0.5366148352622986], 'weights': [-2.793397903442383, -2.0708250999450684, -0.12229000777006149, 0.8238522410392761, -0.3435535132884979, -0.256517618894577, -0.7208641767501831, -0.3458976149559021, -2.815298080444336, -2.6088621616363525, 9.818424224853516, 6.140866756439209, 5.1284027099609375, 4.434843063354492, 3.377664566040039, 3.5065627098083496, 4.381206512451172, 4.839986801147461, 4.87090539932251, 4.245048999786377, 3.8784537315368652, 1.2294416427612305, 3.250715970993042, 3.597304105758667, 2.49294114112854, 2.365709066390991, 2.4510326385498047, 2.2781221866607666, 2.178699254989624, 2.5074031352996826, 2.4789459705352783, 2.2593629360198975, 1.8417326211929321, 2.192194938659668, 1.156245231628418, 1.6384360790252686, 1.3636661767959595, 1.8540456295013428, 1.6184887886047363, 1.2148140668869019, 4.523613929748535, 1.379786491394043, 0.8362826108932495, 1.0319654941558838, 0.4607721269130707, 1.8506715297698975, 0.5708651542663574, 0.8524535894393921, 0.6334859728813171, 1.703233242034912, 0.7955631613731384, 0.5439462065696716, 1.0977370738983154, 0.8602331876754761, 0.7803763747215271, 0.3837242126464844, 0.3050194978713989, -0.693212628364563, -0.026346081867814064, -0.10011033713817596, 0.27786558866500854, -2.296379566192627, 0.8622558116912842, 0.9686951041221619, 2.5341148376464844, 0.591350257396698, -0.5353699326515198, 0.24722714722156525, -0.09872029721736908, 0.101466104388237, 0.20784813165664673, 0.7859892845153809, -0.34786561131477356, -0.3296988606452942, 0.9464410543441772, 1.69089937210083, 1.810727834701538, 1.1499561071395874, 0.7949889898300171, 0.4261282682418823, 1.4265332221984863, 3.416452407836914, 3.928701639175415, 2.8075332641601562, 2.246126890182495, 2.06162428855896, 1.5765190124511719, 2.2075164318084717, 4.171732425689697, 2.984755277633667, 1.2704678773880005, -0.08430518209934235, 4.1573028564453125, 2.586057662963867, 0.9398143291473389, -0.08532904833555222, 5.309053897857666, 2.886584997177124, -0.04642226919531822, 0.3016264736652374, -2.867333173751831, -2.1695499420166016, -0.03658750280737877, 0.9950780868530273, -0.28693675994873047, -0.4561077356338501, -0.8755659461021423, -0.2419799417257309, -2.572260856628418, -2.5080058574676514, 1.1113929748535156, 6.15207576751709, 5.238799095153809, 4.4171671867370605, 3.5503005981445312, 3.353978395462036, 4.037023544311523, 4.748635768890381, 4.7074456214904785, 3.9648070335388184, 3.9109761714935303, 1.194137454032898, 3.2328951358795166, 3.6757659912109375, 2.463534355163574, 2.2345802783966064, 2.3462588787078857, 2.1334471702575684, 2.289325714111328, 2.2671759128570557, 2.349083662033081, 2.2873375415802, 1.7560956478118896, 2.1562016010284424, 1.189494013786316, 1.7418874502182007, 1.2189451456069946, 1.7114077806472778, 1.5721211433410645, 1.2133005857467651, 2.3140811920166016, 1.3934723138809204, 0.8478716611862183, 0.858556866645813, 0.4489583671092987, 1.4045780897140503, 0.5139455795288086, 0.9397397637367249, 0.7417899370193481, 1.7360533475875854, 0.7101461291313171, 0.43147456645965576, 1.1987477540969849, 0.6520602703094482, 0.7820590138435364, 0.4597562253475189, 0.2058124840259552, -0.787979781627655, -0.10290277004241943, -0.08104969561100006, 0.19602854549884796, -2.2484934329986572, 0.6557759642601013, 0.5840897560119629, 2.5371146202087402, 0.9443176984786987, -0.354851633310318, 0.11332384496927261, 0.09240604937076569, -0.017222372815012932, -0.04544787108898163, 0.6892842054367065, -0.6388503313064575, -0.264209121465683, 0.9446303248405457, 1.8191293478012085, 1.8631620407104492, 1.3452131748199463, 0.7568941712379456, 0.3343203365802765, 2.2058260440826416, 3.6997323036193848, 3.7718918323516846, 2.6268272399902344, 2.2566885948181152, 2.1196448802948, 1.2812962532043457, 1.7839045524597168, 4.143006801605225, 3.06341290473938, 1.2008962631225586, 0.040645208209753036, 3.5784356594085693, 2.5634822845458984, 0.8994272351264954, -0.23019644618034363, 5.359469890594482, 3.019563913345337, 0.17618286609649658, 0.2883881628513336, 2.899857521057129, 2.116607666015625, 0.1694803237915039, -0.5699676275253296, 0.25827163457870483, 0.3286980986595154, 0.7058380246162415, 0.36074674129486084, 2.721364974975586, 2.8344156742095947, -4.058346271514893, -6.07627010345459, -5.073841094970703, -4.5377516746521, -3.428837776184082, -3.4128808975219727, -4.339926719665527, -4.788172721862793, -4.874410629272461, -4.249608516693115, -3.8050436973571777, -1.4409184455871582, -3.361682891845703, -3.702193021774292, -2.5246670246124268, -2.3703951835632324, -2.346682548522949, -2.3345654010772705, -2.3508732318878174, -2.265964984893799, -2.493600606918335, -2.067065477371216, -1.812131404876709, -2.163743495941162, -1.2848223447799683, -1.6534150838851929, -1.3361858129501343, -1.744596242904663, -1.614638090133667, -1.0458617210388184, -2.3976354598999023, -1.3682587146759033, -0.8607611060142517, -1.0060675144195557, -0.5463474988937378, -1.5456016063690186, -0.47304219007492065, -0.8900745511054993, -0.657384991645813, -1.6128746271133423, -0.8337711691856384, -0.49045294523239136, -1.2162104845046997, -0.654731810092926, -0.8609652519226074, -0.5365229845046997, -0.3158026337623596, 0.7128595113754272, 0.07463615387678146, -0.0866665244102478, -0.27436989545822144, 2.3399839401245117, -0.8527559041976929, -0.9321187734603882, -2.471670389175415, -0.992064356803894, 0.5545194149017334, -0.18364526331424713, 0.07635891437530518, -0.07546298205852509, -0.23272883892059326, -0.8539066314697266, 0.38907569646835327, 0.34044012427330017, -1.0106858015060425, -1.740762710571289, -1.678263545036316, -1.3743884563446045, -0.8785580396652222, -0.3136010766029358, -2.0672335624694824, -3.6953282356262207, -3.76662015914917, -2.7978014945983887, -2.2587356567382812, -1.9841508865356445, -1.3074575662612915, -1.8920390605926514, -4.0868353843688965, -3.0864996910095215, -1.2271597385406494, -0.06890691816806793, -3.4301679134368896, -2.5371673107147217, -1.0599160194396973, 0.07654707878828049, -5.384040832519531, -2.9845688343048096, 0.028007717803120613, -0.39498600363731384, 2.894604444503784, 2.007709264755249, 0.25683602690696716, -0.21122033894062042, 0.39200714230537415, 0.377647340297699, 0.7413645386695862, 0.3037513494491577, 2.7625021934509277, 2.8480918407440186, -3.9391050338745117, -6.1844611167907715, -5.138907432556152, -4.472313404083252, -3.341977834701538, -3.4090447425842285, -4.185109615325928, -4.835573673248291, -4.921023368835449, -4.378082752227783, -3.946549892425537, -1.4151043891906738, -3.3548827171325684, -3.9185268878936768, -2.4399335384368896, -2.343597173690796, -2.3997440338134766, -2.2009403705596924, -2.376821756362915, -2.374126672744751, -2.4936389923095703, -2.0932562351226807, -1.8051066398620605, -2.3353333473205566, -1.270889163017273, -1.7716227769851685, -1.1999213695526123, -1.6901016235351562, -1.5309314727783203, -1.1273698806762695, -2.3344998359680176, -1.4242279529571533, -0.7915508151054382, -1.0130161046981812, -0.21237780153751373, -1.3941518068313599, -0.47113651037216187, -0.9896991848945618, -0.8126494288444519, -1.652553677558899, -0.8029531836509705, -0.5246216654777527, -0.9711614847183228, -0.6120882034301758, -0.8542482852935791, -0.4656551480293274, -0.30433517694473267, 0.6715402007102966, 0.02021043561398983, -0.0961250364780426, -0.19976705312728882, 2.2925503253936768, -0.6294881105422974, -0.645936131477356, -2.4337940216064453, -1.0137776136398315, 0.518383264541626, -0.26841872930526733, 0.11415611952543259, -0.033375706523656845, -0.1401006132364273, -0.7579989433288574, 0.37016838788986206, 0.24336440861225128, -0.9167090058326721, -1.7502012252807617, -1.8832005262374878, -1.2835309505462646, -0.7286996245384216, -0.4148959517478943, -2.0210800170898438, -3.773575782775879, -2.572765588760376, -2.7644879817962646, -2.299356460571289, -2.104538917541504, -1.1992779970169067, -1.9161784648895264, -3.989630937576294, -3.028036117553711, -1.2557291984558105, 0.09787507355213165, -3.415801763534546, -2.601398468017578, -1.0754554271697998, 0.14755693078041077, -5.211055755615234, -2.7777810096740723, -0.004522908478975296, -0.18922926485538483, 89.03077697753906, 2.3583521842956543, 0.22802753746509552, -0.4225406050682068, 0.3274199068546295, -0.46226534247398376, 0.7620492577552795, 0.275595486164093, 1.1721338033676147, 4.720905780792236, -0.3402784764766693, -8.5315523147583, -5.094398021697998, -4.414702415466309, -3.350191593170166, -3.4861297607421875, -4.263932228088379, -4.15658712387085, -4.889211654663086, -4.410982131958008, -3.746927499771118, -1.2398223876953125, -3.3772714138031006, -2.5240836143493652, -2.525944232940674, -2.314347267150879, -2.3537135124206543, -2.34065318107605, -2.1246447563171387, -2.381328582763672, -2.1760499477386475, -2.0389981269836426, -1.7698246240615845, -2.2524526119232178, -1.0231820344924927, -1.6013200283050537, -1.1646803617477417, -1.6595957279205322, -1.6458975076675415, -1.4603694677352905, -23.424835205078125, -1.5524637699127197, -0.48657140135765076, -1.0107505321502686, -0.24458591639995575, -1.4714767932891846, -0.5501672625541687, -0.8516602516174316, -0.6569918394088745, -1.711924433708191, -0.9581290483474731, -0.4091308116912842, -1.1068185567855835, -0.7904523611068726, -0.8864606022834778, -0.08041489869356155, -0.19343386590480804, 0.6008324027061462, 0.18428513407707214, 0.009013629518449306, -0.1985223889350891, 2.3083319664001465, -0.731610119342804, -0.2947554588317871, -2.3407135009765625, -0.5611312389373779, 0.5728114247322083, -0.12982980906963348, 0.38089731335639954, -0.1917320042848587, 0.23497192561626434, -0.9523701071739197, -0.5421914458274841, 0.27556195855140686, -1.0049506425857544, -1.7986860275268555, -1.7369427680969238, -1.1883553266525269, -0.8711710572242737, -0.39014410972595215, -1.3751457929611206, -3.514843225479126, -2.4473252296447754, -2.8868446350097656, -2.227773666381836, -2.0074734687805176, -1.220835566520691, -2.020509719848633, -4.13227653503418, -3.0723884105682373, -1.2278621196746826, -0.04893263801932335, -3.550140619277954, -2.702178716659546, -0.5072920322418213, 0.07932291179895401, -5.395234107971191, -2.9332804679870605, -10.063755989074707, -0.9217438697814941, -0.970908522605896, -1.2322032451629639, 1.2674349546432495, 1.7228236198425293, 0.4633990228176117]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (0, 0.8)}}, 'et1_eta2': {'discriminator': {'threshold': 0.40499852895736693, 'nodes': [100, 5, 1], 'bias': [0.031178778037428856, -0.005701406858861446, 0.06699232012033463, -0.09580881148576736, 0.06976906210184097, -0.3832928538322449], 'weights': [-0.40617069602012634, 0.05059850588440895, 0.7499252557754517, 1.7611161470413208, 0.23170766234397888, -1.2198233604431152, 0.16876749694347382, -1.72450590133667, 0.4692983031272888, -4.854949951171875, -7.062108993530273, -2.755744218826294, 1.1222169399261475, 0.11763948202133179, -0.4704238176345825, -0.8519705533981323, 5.247742176055908, -0.3749392032623291, -0.38789743185043335, 0.7320082187652588, 5.949556827545166, 3.3279502391815186, 0.6024587154388428, -0.039334774017333984, 0.2483900785446167, 0.6808249354362488, 7.891293525695801, 4.757511615753174, 5.602342128753662, 2.357527256011963, 2.0638976097106934, 0.636166512966156, -1.0997508764266968, 1.996119737625122, 2.1897733211517334, 1.8743704557418823, 3.117839813232422, 1.882676124572754, 1.143105387687683, -1.7836204767227173, 1.8928104639053345, 1.6177157163619995, -5.095090866088867, 1.873120903968811, 1.0769466161727905, 0.19071130454540253, 1.863064169883728, 1.8593698740005493, 1.6756086349487305, 1.9361631870269775, 0.6674870252609253, 1.7194768190383911, -3.507887840270996, 0.13539540767669678, 1.7885146141052246, 2.014915943145752, -0.24403142929077148, 1.2357548475265503, -6.062086582183838, 0.692834734916687, -3.851337432861328, 0.5615318417549133, 0.8464506268501282, -9.340394973754883, -3.418257236480713, -1.5114721059799194, -3.7737162113189697, 1.9229724407196045, 1.2763211727142334, 1.6491320133209229, 1.822506070137024, 1.30263090133667, -0.2916940450668335, -0.2541484534740448, 5.1021270751953125, 0.9038171172142029, 2.0575029850006104, 2.1997158527374268, 1.3800668716430664, 0.022755717858672142, -0.18469934165477753, 0.1612725555896759, 3.159061908721924, 1.8917431831359863, 2.060302734375, 1.653403401374817, 1.4466991424560547, 1.6136881113052368, -1.116693139076233, 0.7213726043701172, 0.39923396706581116, -0.17739258706569672, 8.318849563598633, 1.0747276544570923, -0.12139942497015, 1.8680284023284912, 0.03930806741118431, 0.007090954575687647, 0.5568574666976929, 1.4138871431350708, -0.5221264958381653, 0.07864288240671158, 0.8875758647918701, 1.7647874355316162, 0.12986072897911072, -1.1525318622589111, 0.7669426798820496, -1.7278828620910645, 1.1270194053649902, -4.611599445343018, -6.873719692230225, -2.7103631496429443, 1.0788089036941528, 0.26390406489372253, -0.3970734477043152, -0.24662776291370392, 5.283209323883057, -0.4962141811847687, -0.3492560386657715, 3.580881357192993, 6.061509609222412, 3.2536110877990723, 0.6525206565856934, 0.03408323600888252, 0.20668579638004303, 0.8124776482582092, 7.943572998046875, 1.9401533603668213, 5.636268138885498, 2.3818295001983643, 1.8514511585235596, 0.5609391927719116, -1.0832350254058838, 2.1581053733825684, 2.114447593688965, 2.0574190616607666, 3.1099600791931152, 1.7302532196044922, 1.0794622898101807, -1.5705474615097046, 1.761475920677185, 1.5851939916610718, -4.662375450134277, 1.9355350732803345, 0.9535320997238159, 0.08234860748052597, 1.8737255334854126, 1.7760297060012817, 1.621549367904663, 1.9808591604232788, 0.7491893172264099, 1.5175353288650513, -3.54213809967041, 0.26255255937576294, 1.897148609161377, 2.1748507022857666, -0.22237850725650787, 1.1595104932785034, -6.2182745933532715, 1.1302920579910278, -3.8986756801605225, 0.41321614384651184, 1.057801604270935, -9.344603538513184, -3.711775064468384, -1.6040369272232056, -3.8320343494415283, 1.9287633895874023, 1.2905747890472412, 1.8224948644638062, 2.647129535675049, 1.4227070808410645, -0.43910646438598633, -0.4198903441429138, 5.047460556030273, 0.8692330718040466, 3.626905918121338, 2.1514782905578613, 1.2575359344482422, 0.1689063310623169, -0.18400628864765167, 0.3576008975505829, 3.340428352355957, 2.0828359127044678, 2.1466312408447266, 1.7111241817474365, 1.5730745792388916, 1.7262765169143677, -1.13548743724823, 0.9122538566589355, 0.3348509967327118, -0.24802319705486298, 8.366022109985352, 0.9931071400642395, 0.040810056030750275, 1.9288711547851562, 0.10228022187948227, 0.11558893322944641, 0.6280979514122009, 1.4865061044692993, 0.5954208374023438, 0.024291472509503365, -0.9524036645889282, -1.7906547784805298, -0.06166830658912659, 0.847691535949707, -0.11259515583515167, -0.6423404812812805, -1.1712872982025146, 4.613446235656738, 6.780219554901123, 2.716954231262207, -1.2891643047332764, -0.258861780166626, 0.3887266516685486, 0.40966740250587463, -5.262836456298828, 0.35567229986190796, 0.38748103380203247, -3.5495169162750244, -5.864482402801514, -3.3234176635742188, -0.4793376624584198, -0.6022841334342957, -0.2556999623775482, -0.7792379260063171, -8.043661117553711, -2.107996702194214, -5.692515850067139, -2.237635612487793, -1.8771570920944214, -0.698318362236023, 1.0879309177398682, -2.006584882736206, -2.0324463844299316, -1.9851945638656616, -2.618317127227783, -1.893907904624939, -0.981057345867157, 1.5212393999099731, -1.922104001045227, -1.5093594789505005, 4.769593715667725, -2.06408953666687, -0.9250784516334534, -0.13341204822063446, -1.6680256128311157, -1.6747766733169556, -1.570725440979004, -1.979363203048706, 1.1579514741897583, -1.5347920656204224, 3.4744927883148193, 0.46436595916748047, -1.9164373874664307, -2.0490810871124268, 0.2818984389305115, -1.2782217264175415, 6.193326473236084, -1.1276849508285522, 3.9064526557922363, -0.48137369751930237, -0.9492633938789368, 10.150104522705078, 3.482677459716797, 1.5422648191452026, 3.6920034885406494, -2.2099697589874268, -1.2735788822174072, -1.8647860288619995, -2.6665146350860596, -1.3239099979400635, 0.3149753212928772, 0.3675116002559662, -5.076552391052246, -0.7541475296020508, -3.6901917457580566, -2.217299461364746, -1.2836296558380127, 0.01051655039191246, 0.30887287855148315, -1.2350393533706665, -3.178927421569824, -1.9682862758636475, -2.0522491931915283, -1.5633717775344849, -1.5799410343170166, -1.5730394124984741, 1.158988356590271, -0.7181025147438049, -0.42143598198890686, 0.2971124053001404, -8.24048137664795, -0.9713696241378784, 0.03768090158700943, -1.9632744789123535, 0.10011440515518188, 0.06530074030160904, -0.632578432559967, -1.5095447301864624, -0.6202589869499207, 0.055398184806108475, 0.8856496810913086, 1.9541689157485962, 0.10527031868696213, -0.8016684651374817, 0.162770077586174, 0.6263285279273987, 1.1864070892333984, -4.627506256103516, -6.863159656524658, -2.6275277137756348, 1.1898293495178223, 0.2936306297779083, -0.45190536975860596, -0.3680380880832672, 5.278356075286865, -0.5131756663322449, -0.3179140090942383, 3.51579213142395, 5.865565776824951, 3.1924924850463867, 0.5801934003829956, 0.6347711682319641, 0.21062399446964264, 0.8465264439582825, 8.034653663635254, 1.9977561235427856, 5.756322383880615, 2.452772378921509, 1.9034985303878784, 0.486421138048172, -1.0439702272415161, 2.2170379161834717, 1.9762922525405884, 2.0805277824401855, 2.623927593231201, 1.8956996202468872, 1.0526084899902344, -1.492738127708435, 1.9020651578903198, 1.4901982545852661, -4.902531147003174, 1.936944603919983, 0.8798261880874634, 0.18816129863262177, 1.8333758115768433, 1.7059041261672974, 1.718836784362793, 1.9634146690368652, -1.1527780294418335, 1.6917577981948853, -3.3705008029937744, -0.6092022657394409, 1.8550374507904053, 2.100226402282715, -0.10858079046010971, 1.2000430822372437, -6.001556873321533, 1.1139436960220337, -4.020358562469482, 0.44861915707588196, 0.9744906425476074, -9.193859100341797, -3.555845022201538, -1.5654202699661255, -3.666616678237915, 2.3932785987854004, 1.2444441318511963, 1.7108584642410278, 2.5939762592315674, 1.2669651508331299, -0.23719820380210876, -0.288639098405838, 5.143328666687012, 0.8475322127342224, 3.5729475021362305, 2.1985599994659424, 1.4159128665924072, 0.012579534202814102, -0.3513320982456207, 1.1216301918029785, 3.108123540878296, 2.0375897884368896, 2.0448694229125977, 1.6820334196090698, 1.449524164199829, 1.4881113767623901, -1.1107341051101685, 0.7716842293739319, 0.33053794503211975, -0.3705365061759949, 8.26908016204834, 0.8979277610778809, -0.1810518056154251, 1.9264767169952393, 0.054153893142938614, 0.06758151948451996, 0.5282236337661743, 1.4046988487243652, 0.4678749144077301, 0.015833666548132896, -0.8261371850967407, -1.7698715925216675, -0.22459372878074646, 0.7016385197639465, -0.10252054035663605, -0.5075404644012451, -1.1515045166015625, 4.717494010925293, 6.9447855949401855, 2.5476489067077637, -1.16715669631958, -0.14301659166812897, 0.3680901825428009, 0.256634920835495, -5.2634406089782715, 0.3471165895462036, 0.25105351209640503, -3.6982624530792236, -5.870053768157959, -3.3316798210144043, -0.4750809371471405, -0.45219749212265015, -0.23547150194644928, -0.78541100025177, -7.949777603149414, -1.8862528800964355, -5.806520938873291, -2.23911452293396, -2.073884963989258, -0.6894677877426147, 1.0706872940063477, -2.0697386264801025, -1.995505690574646, -1.9149621725082397, -2.5771231651306152, -1.8541995286941528, -1.0264265537261963, 1.5749093294143677, -1.7710412740707397, -1.6405638456344604, 4.904359340667725, -2.0414209365844727, -0.9331305623054504, -0.26968395709991455, -1.791082501411438, -1.6907402276992798, -1.7082462310791016, -1.9873732328414917, 1.2436439990997314, -1.6851905584335327, 3.4644546508789062, 0.5470081567764282, -1.9240694046020508, -2.031583547592163, 0.10837056487798691, -1.1846634149551392, 6.182166576385498, -1.165220856666565, 3.991225004196167, -0.4388599693775177, -0.9706416130065918, 9.19190502166748, 3.4547300338745117, 1.5505200624465942, 3.8297646045684814, -2.1353302001953125, -1.218308448791504, -1.7797008752822876, -2.5995984077453613, -1.367978572845459, 0.27616310119628906, 0.3187924325466156, -5.090645790100098, -0.8083189129829407, -3.6247811317443848, -2.1036736965179443, -1.3610713481903076, -0.054286811500787735, 0.16263972222805023, -1.2340954542160034, -3.1437277793884277, -1.874155879020691, -2.219064235687256, -1.5284968614578247, -1.4756200313568115, -1.6633855104446411, 1.2801142930984497, -0.875342845916748, -0.29891642928123474, 0.25260913372039795, -8.362515449523926, -1.1206303834915161, 0.06070593744516373, -1.862853765487671, -0.033583734184503555, -0.02431468665599823, -0.5189112424850464, -1.3375707864761353, -0.7346506714820862, -0.6322120428085327, 0.8534530401229858, -0.9359687566757202, 1.1447808742523193]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (1.37, 1.54)}}} - signatures["ElectronHighEnergyMediumConf"]={'et3_eta2': {'discriminator': {'threshold': 0.66999841928482051, 'nodes': [100, 5, 1], 'bias': [-0.048671018332242966, -0.15978042781352997, -0.11082698404788971, -0.16210871934890747, -0.17141708731651306, 0.19882182776927948], 'weights': [-0.3632931113243103, -0.01923835650086403, 1.1369900703430176, 0.6106459498405457, 1.1179195642471313, 0.8601119518280029, 0.15297159552574158, -1.2484897375106812, 0.04611027240753174, -1.791911244392395, -1.8554701805114746, -1.3258225917816162, -0.2647069990634918, -0.08365557342767715, 0.11529789865016937, -0.09376391023397446, 2.986898183822632, 0.04890431836247444, 0.14163194596767426, 1.3693817853927612, 2.7048888206481934, 1.698973536491394, -1.705853819847107, 1.041193962097168, 0.25598371028900146, 7.544079780578613, 2.643533945083618, 1.6536102294921875, 5.720820903778076, 1.3112801313400269, 0.4527432322502136, 1.1032109260559082, 0.40891873836517334, 0.6918326616287231, 1.7678627967834473, 1.2772915363311768, 3.531491756439209, 7.55782413482666, -1.8549127578735352, 0.25631117820739746, 1.107606053352356, 3.053387403488159, 1.3774820566177368, 1.091949462890625, -1.6798309087753296, 1.0967626571655273, 1.4026769399642944, -9.189362525939941, 0.7396649122238159, 2.7333266735076904, 0.7341042757034302, 1.249634027481079, 1.3394824266433716, 1.0249660015106201, 0.9889784455299377, 2.6513044834136963, 0.47440028190612793, 0.6699808239936829, -7.892445087432861, -0.20485791563987732, -3.0982911586761475, 0.60731041431427, -0.36252856254577637, 0.8766266107559204, 0.6254453659057617, 0.8613975644111633, -1.8762989044189453, 2.843782663345337, 1.9625056982040405, 9.164314270019531, 1.3218309879302979, 0.8237579464912415, -0.48010700941085815, -0.5016670823097229, 2.4927468299865723, 1.4995578527450562, 1.4353219270706177, 1.452754020690918, 1.2446411848068237, 1.4280821084976196, -0.2531065046787262, 0.4549713432788849, 1.59420907497406, 1.7902405261993408, 1.1301854848861694, 0.9125373959541321, 1.1771483421325684, 1.200839877128601, -0.8419439196586609, 0.8306178450584412, 0.6647038459777832, 0.048682115972042084, 0.8149041533470154, 2.753098726272583, -2.0759215354919434, 0.9654955267906189, -0.01617790013551712, -0.09517361968755722, 1.0762320756912231, -0.00576699199154973, 0.7799210548400879, -0.1299242228269577, -1.183490514755249, -0.5373464822769165, -1.0393232107162476, -0.5487764477729797, 0.013535041362047195, 1.2695026397705078, 0.010570468381047249, 3.1929681301116943, 1.6318724155426025, 1.809260368347168, 0.2041422426700592, 0.014497988857328892, 0.1008622869849205, 0.12331648170948029, -3.006898880004883, 0.006142372731119394, -0.10549131780862808, -0.5938358306884766, -2.7045400142669678, -0.7485429644584656, 1.7333658933639526, -1.156059980392456, -0.168192058801651, -7.555694103240967, -2.571162223815918, -1.6956462860107422, -5.67071008682251, -1.3260585069656372, -0.42301642894744873, -1.1530144214630127, -0.5906983017921448, -0.47045034170150757, -1.7386970520019531, -1.1423187255859375, -3.392827272415161, -7.625503063201904, -0.13216927647590637, -0.299122154712677, -1.0236870050430298, -1.4116584062576294, -1.517985224723816, -1.062925100326538, -0.5166425704956055, -1.2592618465423584, -1.3381396532058716, 1.5529818534851074, -0.6767204999923706, -2.6625189781188965, -0.8845092058181763, -1.424497127532959, -1.2011646032333374, -1.1535289287567139, -1.0405513048171997, -2.663351058959961, -0.6089074611663818, -0.6435121893882751, 7.84403133392334, 0.11479156464338303, 3.115651845932007, -0.36264458298683167, 0.4608149230480194, -0.7632660865783691, -0.42274901270866394, -0.9721015095710754, 1.8468523025512695, -2.7405776977539062, -1.9027326107025146, -9.037775039672852, -1.2557668685913086, -0.9182220101356506, 0.30087828636169434, 0.4215577244758606, -2.552516460418701, -1.33924400806427, -1.4397741556167603, -1.4536564350128174, -1.2354272603988647, -1.3639198541641235, 0.31734171509742737, -0.6018325686454773, -1.4667538404464722, -1.8258435726165771, -1.1674538850784302, -1.0748112201690674, -0.9866417050361633, -1.134459376335144, 0.7004688382148743, -0.9266799092292786, -0.6827194690704346, 0.05578913539648056, -0.9296520948410034, -2.9109840393066406, 2.0142033100128174, -1.1157033443450928, -0.014255393296480179, -0.0016610812162980437, -0.8850783705711365, -0.20304937660694122, 0.3480747640132904, -0.04769037291407585, -1.1761839389801025, -0.5469955205917358, -1.1071943044662476, -0.7038381695747375, 0.17196261882781982, 1.3797177076339722, -0.05204556882381439, 3.123474597930908, 1.79933500289917, 1.7915098667144775, 0.08041452616453171, -0.034891948103904724, -0.03786701709032059, -0.06639504432678223, -3.0744247436523438, -0.11333347856998444, -0.0804920494556427, -0.77297443151474, -2.6863858699798584, -0.7284291982650757, 1.696494460105896, -1.1224133968353271, -0.14744749665260315, -7.652820587158203, -2.5320777893066406, -1.823235273361206, -5.778429985046387, -1.3135641813278198, -0.5306881666183472, -1.1715729236602783, -0.5008342266082764, -0.5659509897232056, -1.771768569946289, -1.3576762676239014, -3.4060394763946533, -7.495283126831055, -0.24217566847801208, -0.37981462478637695, -1.2003105878829956, -1.3493379354476929, -1.3790780305862427, -1.1259262561798096, -0.49884796142578125, -1.2639484405517578, -1.3535021543502808, 1.2641304731369019, -0.7960184812545776, -2.6480181217193604, -0.8808931112289429, -1.2882907390594482, -1.1612993478775024, -1.181920051574707, -1.1080485582351685, -2.607605457305908, -0.49707499146461487, -0.6767892241477966, 8.009539604187012, 0.1237686350941658, 3.332219362258911, -0.3096736967563629, 0.4560976028442383, -0.6941847801208496, -0.4604146182537079, -1.0147546529769897, 1.9379265308380127, -2.7963199615478516, -1.8103015422821045, -9.05184268951416, -1.1548514366149902, -1.0072784423828125, 0.344266414642334, 0.4240301847457886, -2.467223882675171, -1.5154114961624146, -1.4371238946914673, -1.3788623809814453, -1.2288399934768677, -1.4854320287704468, 0.16928674280643463, -0.5867647528648376, -1.4471951723098755, -1.9388976097106934, -1.1759127378463745, -0.8853994011878967, -1.0390863418579102, -1.268436074256897, 0.8614676594734192, -0.8184821009635925, -0.5703690648078918, -0.038250721991062164, -0.7636191248893738, -2.8082151412963867, 1.9861506223678589, -0.9922001361846924, 0.05072460696101189, 0.06622473150491714, -1.0546678304672241, -0.05050240457057953, 0.7958235740661621, 0.014700939878821373, -1.0782191753387451, -0.6174961924552917, -1.1872469186782837, -0.5487807393074036, 0.10296972095966339, 1.364011287689209, -0.11685320734977722, 3.1712324619293213, 1.6476316452026367, 1.7377903461456299, 0.15083622932434082, -0.05724570155143738, -0.09545081853866577, -0.04088487848639488, -2.9213497638702393, -0.06669792532920837, 0.09497135877609253, -0.7412750124931335, -2.537299633026123, -0.6484242081642151, 1.8854727745056152, -1.103590726852417, -0.3239821195602417, -7.570978164672852, -2.684921979904175, -1.7028319835662842, -5.630488872528076, -1.3201934099197388, -0.5880939364433289, -1.0932011604309082, -0.4365180730819702, -0.53394615650177, -1.7553434371948242, -1.3648583889007568, -3.4526374340057373, -7.556405067443848, -0.03140399605035782, -0.25756001472473145, -1.2051204442977905, -1.2988239526748657, -1.5442034006118774, -1.068868637084961, -0.7043478488922119, -1.2529971599578857, -1.2794886827468872, 1.4453657865524292, -0.746985912322998, -2.6322014331817627, -0.6765123605728149, -1.3238325119018555, -1.299523949623108, -1.022221326828003, -1.1162136793136597, -2.6887047290802, -0.48919427394866943, -0.6041378378868103, 7.815181732177734, 0.045929841697216034, 3.164581060409546, -0.32777538895606995, 0.44807639718055725, -0.7889524698257446, -0.45506545901298523, -0.9977965950965881, 1.8274224996566772, -2.829014778137207, -1.8630194664001465, -8.960129737854004, -1.2989521026611328, -0.8311460614204407, 0.4950481057167053, 0.34846460819244385, -2.467694044113159, -1.5615752935409546, -1.510292649269104, -1.3138728141784668, -1.1023229360580444, -1.5010136365890503, 0.2586469352245331, -0.48952725529670715, -1.5068730115890503, -1.7541017532348633, -1.1526366472244263, -0.9617965221405029, -1.1690497398376465, -1.2287248373031616, 0.8491680026054382, -0.9091412425041199, -0.6170509457588196, -0.2096344530582428, -0.8809341192245483, -2.8543641567230225, 1.9536592960357666, -1.0956120491027832, 0.012979736551642418, -0.08532464504241943, -0.9571139216423035, -0.13241112232208252, 0.7505656480789185, -0.12238308787345886, -1.215778112411499, -0.744321882724762, -1.0964082479476929, -0.7366512417793274, 0.14085832238197327, 1.2977362871170044, 0.051823511719703674, 3.188023090362549, 1.658905029296875, 1.7734878063201904, 0.10579323023557663, 0.13964533805847168, -0.03720500320196152, 0.07405760884284973, -2.8514065742492676, 0.02813662588596344, -0.02393478713929653, -0.7721337676048279, -2.7159698009490967, -0.7076488733291626, 1.7448610067367554, -1.0958189964294434, -0.1937636435031891, -7.587071418762207, -2.7165181636810303, -1.7180616855621338, -5.784889221191406, -1.4275482892990112, -0.4315950274467468, -1.061868667602539, -0.4499662518501282, -0.5091215372085571, -1.6198458671569824, -1.2933523654937744, -3.384692668914795, -7.614009380340576, -0.02028832584619522, -0.25192928314208984, -1.2518190145492554, -1.5074256658554077, -1.50875985622406, -1.1547255516052246, -0.7219434380531311, -1.1534230709075928, -1.2445183992385864, 1.2667229175567627, -0.7835680246353149, -2.7220218181610107, -0.8801294565200806, -1.3080940246582031, -1.2175785303115845, -1.1354594230651855, -1.0985878705978394, -2.707531213760376, -0.3875346779823303, -0.6122236847877502, 8.012117385864258, -0.01269548013806343, 3.2801311016082764, -0.20533286035060883, 0.4266683757305145, -0.6927353143692017, -0.5387892723083496, -0.8895917534828186, 2.001030206680298, -2.8506782054901123, -1.8065345287322998, -9.006397247314453, -1.3208692073822021, -0.8154750466346741, 0.471169650554657, 0.3678755760192871, -2.543764591217041, -1.3720585107803345, -1.6222983598709106, -1.3490889072418213, -1.0855642557144165, -1.418610692024231, 0.3646010458469391, -0.44539517164230347, -1.402847170829773, -1.7971928119659424, -1.2276273965835571, -1.0711355209350586, -0.999976634979248, -1.207940697669983, 0.7376274466514587, -0.774124801158905, -0.6490070819854736, 0.02274652197957039, -0.854465901851654, -2.9136130809783936, 2.0538861751556396, -0.9218764305114746, 0.06782027333974838, -0.04248097911477089, -1.036033034324646, -0.026970257982611656, -0.1598840206861496, 2.7159435749053955, 3.600578784942627, 2.63897442817688, 2.504344940185547]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (1.37, 1.54)}}, 'et0_eta0': {'discriminator': {'threshold': -0.86000041961669926, 'nodes': [100, 6, 1], 'bias': [-0.01136678084731102, -0.1782160997390747, 0.054464004933834076, 0.04060710594058037, 0.07186396420001984, -0.1458592414855957, 0.30292394757270813], 'weights': [9.01987075805664, -0.03518577292561531, -0.46884268522262573, 0.15588437020778656, 0.31432536244392395, 1.1719588041305542, 0.621452808380127, -0.12481377273797989, 2.6661553382873535, 3.120647430419922, 20.042564392089844, 4.001049518585205, -0.4691924750804901, -4.405073642730713, -12.167277336120605, -4.039999961853027, -2.834879159927368, -4.690690040588379, -6.594064235687256, -3.0145294666290283, -4.962020397186279, -2.6768598556518555, -0.4535619616508484, -2.684878349304199, -2.111410140991211, -1.890016794204712, -2.464111328125, -2.4439945220947266, -2.3755640983581543, -2.397362470626831, -3.345147132873535, -1.345889687538147, -0.9984797239303589, -0.29491767287254333, -1.250179648399353, -21.641355514526367, -1.229132056236267, -1.5000431537628174, -1.8025377988815308, -1.0384272336959839, -16.716285705566406, -0.8255010843276978, -1.0276564359664917, -0.537658154964447, 0.2807220220565796, 0.57619309425354, -0.5989243388175964, -0.6295759081840515, -0.745419442653656, -0.8610708117485046, 0.3153530955314636, 21.523473739624023, 1.5775901079177856, -0.7692492008209229, -0.6981480121612549, -0.42572879791259766, -0.384321928024292, 0.09645713865756989, -0.46849438548088074, -0.6688112020492554, -0.37966063618659973, 1.7942391633987427, -0.5020682215690613, 0.17839659750461578, 0.7165035605430603, 0.3030983507633209, 0.39278408885002136, -0.41801556944847107, -0.7241864204406738, 0.4044226408004761, -0.18019112944602966, -3.6531472206115723, 1.939813256263733, 7.395075798034668, -0.4404732584953308, -1.0175961256027222, -1.206782579421997, -6.643551826477051, -3.6062512397766113, -4.67418098449707, -1.7125831842422485, -0.06102985143661499, -2.4709413051605225, -1.6413654088974, -1.4180688858032227, -1.5595781803131104, -1.1826645135879517, -0.5493459701538086, -2.8270368576049805, -1.0286604166030884, -5.24298620223999, -2.8239104747772217, -0.7543736696243286, -1.9295884370803833, -2.497220277786255, 0.4698377847671509, -2.427469491958618, -1.1779704093933105, -1.1535083055496216, 0.4579063355922699, 3.681973457336426, 0.8046421408653259, -0.49003419280052185, -0.20977216958999634, -0.10569418221712112, 0.5196964144706726, -0.038742005825042725, -0.019086414948105812, 3.136380910873413, 4.6013383865356445, 0.24897688627243042, -3.8071939945220947, -9.356066703796387, -5.3722004890441895, -9.773921012878418, -7.942467212677002, -9.558570861816406, -8.850022315979004, -7.337759494781494, -7.268890380859375, -3.1062941551208496, -3.7530319690704346, -2.819653272628784, -3.0603721141815186, -10.741296768188477, -2.474848747253418, -2.4643959999084473, -2.3311655521392822, -2.493574857711792, -3.0792882442474365, -5.52104377746582, -2.0570449829101562, -1.7622098922729492, -3.4724388122558594, -0.6378179788589478, -1.331749439239502, -1.3443167209625244, -1.5802240371704102, -1.4302741289138794, -0.6937366724014282, -1.29665207862854, -0.5291470885276794, -1.0695449113845825, -0.8558090329170227, -0.0695672556757927, -1.08797287940979, -0.4912714660167694, -0.7099616527557373, -0.6885566115379333, -0.7720600366592407, 0.19422847032546997, -2.0356953144073486, -1.2078481912612915, -0.7959491014480591, -0.733663022518158, -0.1765640825033188, -0.5480073094367981, 0.1288779377937317, 1.3124580383300781, -0.5015966892242432, -0.22093239426612854, 0.49837827682495117, -0.21850049495697021, -0.1739213913679123, 1.0254299640655518, 0.1101001426577568, 0.4242246150970459, -0.3589154779911041, -0.339095801115036, 1.0370818376541138, -0.0009136381559073925, -0.06344874203205109, 0.3598265051841736, -0.15946713089942932, -0.7707175016403198, -2.1223952770233154, -1.8511649370193481, -1.8694562911987305, -1.2677456140518188, -0.7573164701461792, -16.54351806640625, -6.4279866218566895, -3.00040864944458, -1.7074041366577148, -1.2595458030700684, -1.4322413206100464, -1.1505391597747803, -0.33996301889419556, -7.54207706451416, -3.8208913803100586, -1.3557288646697998, 0.39237499237060547, -6.8621625900268555, -4.759374141693115, -0.7991504669189453, 0.5344062447547913, -2.4636857509613037, -0.8247212171554565, -0.8689799904823303, 0.40556246042251587, -2.2983672618865967, -0.40858766436576843, -0.1691615879535675, -0.05508086457848549, -0.18790024518966675, -0.23666058480739594, -0.16220496594905853, -0.15269269049167633, -0.23917309939861298, -2.0612709522247314, -0.3885083794593811, -0.25118622183799744, 2.0046181678771973, 6.578591346740723, -2.2192814350128174, -0.31168967485427856, -2.1611480712890625, -1.8496649265289307, -1.2020740509033203, -1.6346501111984253, -0.21165145933628082, -0.1735413521528244, -0.28899896144866943, -0.029980747029185295, 0.0648520290851593, 0.10884208977222443, -0.17157121002674103, -1.1487562656402588, -0.8360415101051331, -0.04847188666462898, 0.9123522043228149, -0.633462131023407, -0.26276636123657227, -0.07286661118268967, -0.22363461554050446, -0.4531567394733429, -1.063921332359314, -0.07878665626049042, -0.023129576817154884, -0.14414668083190918, 0.05295134708285332, -0.40469470620155334, -0.3811474144458771, 0.015043376013636589, -1.1566005945205688, -0.05888320878148079, -0.12097274512052536, -0.01265923772007227, -0.10554582625627518, -0.12560421228408813, -0.38562315702438354, -0.11268538981676102, -0.001007283921353519, 0.07936564832925797, -0.06253787130117416, -0.13419751822948456, -0.07085855305194855, -0.0798681303858757, -0.15192435681819916, -0.06100115925073624, -0.017935331910848618, -0.8524407148361206, -0.028408104553818703, -0.005268263630568981, -0.1929444819688797, -0.019991155713796616, -0.22417044639587402, -0.009491882286965847, -0.21192045509815216, -0.10742053389549255, 0.024758635088801384, -0.0636126771569252, -0.35273227095603943, -0.2769015431404114, 0.8114498853683472, -0.7977434992790222, -0.18997128307819366, -1.1608176231384277, -0.360253244638443, -0.4729072153568268, 3.8734652996063232, -5.678352355957031, -0.2599145174026489, -0.5669599175453186, -0.23816123604774475, -0.010319755412638187, -0.08687549829483032, -0.05709803104400635, -2.598600387573242, -3.256776809692383, -0.4089433252811432, -0.028902392834424973, -5.788078308105469, -2.420192003250122, -0.19718678295612335, -0.35650065541267395, 0.050737980753183365, -1.4753522872924805, -0.060320205986499786, -0.16610264778137207, -4.135383605957031, -0.1069088950753212, 0.362106591463089, 0.17960122227668762, 0.14129745960235596, -0.48702356219291687, 0.1761319786310196, 0.05973678082227707, -3.193812131881714, -2.102048635482788, -0.27130937576293945, 6.771458148956299, 8.337845802307129, 4.801966667175293, 9.312788963317871, 7.583322525024414, 6.088551998138428, 6.638938903808594, 10.206466674804688, 6.823215961456299, 3.1751976013183594, 2.9218509197235107, 3.3843002319335938, 2.9952006340026855, 3.364917755126953, 2.5241050720214844, 2.353303909301758, 2.5631401538848877, 2.436708450317383, 2.7848753929138184, 3.227890968322754, 1.6638038158416748, 1.670957326889038, 3.5906875133514404, 0.7348370552062988, 1.4496045112609863, 1.2641363143920898, 1.5086523294448853, 1.499687910079956, 1.119602084159851, 1.1404856443405151, 1.035091519355774, 1.160691738128662, 0.9853762984275818, 0.023800093680620193, 0.909044623374939, 0.6199456453323364, 0.6726546287536621, 0.824012279510498, 0.9742962718009949, -0.3959726095199585, 1.8761155605316162, 1.0572471618652344, 0.8336468935012817, 0.7681624889373779, 0.3390689194202423, 0.54653000831604, -0.22937266528606415, -1.015300989151001, 0.5612056851387024, 0.19758827984333038, -1.6588265895843506, 0.3724830448627472, 0.15912692248821259, -0.8954120874404907, -0.15293125808238983, -0.619022011756897, 0.6916226148605347, 0.5226624608039856, -1.0737968683242798, -0.0770862028002739, -0.13126160204410553, -0.5001769065856934, -0.045417748391628265, 0.5876344442367554, 2.2558538913726807, 2.401465892791748, 1.823835015296936, 1.0194467306137085, 0.6076213121414185, 3.994291067123413, 6.166980743408203, 3.8464877605438232, 1.332905650138855, 1.229944109916687, 1.4130218029022217, 1.0766500234603882, 0.41440293192863464, 3.074331760406494, 5.47773551940918, 0.7946798801422119, -0.2935554087162018, 12.233807563781738, 3.601130247116089, 0.7054237723350525, -0.47403693199157715, 2.435894012451172, 0.7125208377838135, 1.0286706686019897, -0.28793734312057495, -3.9683053493499756, -0.14426389336585999, 0.4341489374637604, 0.1832311898469925, 0.20478136837482452, -0.3127519190311432, 0.0590548999607563, -0.00019025674555450678, -3.245378255844116, -2.1758551597595215, -0.456599622964859, 6.952091217041016, 8.26875114440918, 4.635740280151367, 9.365004539489746, 7.7002458572387695, 6.121082782745361, 7.563103199005127, 10.276198387145996, 6.908629417419434, 3.0921669006347656, 2.9263715744018555, 3.385561466217041, 2.936856269836426, 3.1792619228363037, 2.511370897293091, 2.35496187210083, 2.3895580768585205, 2.4292025566101074, 2.909292221069336, 3.2825124263763428, 1.4810638427734375, 1.6027350425720215, 3.62443470954895, 0.7888603210449219, 1.4236286878585815, 1.2817354202270508, 1.4375942945480347, 1.6879193782806396, 1.0937803983688354, 1.2003239393234253, 1.0144010782241821, 1.0534071922302246, 0.9542540907859802, 0.07949057221412659, 0.806453287601471, 0.46324774622917175, 0.5182538032531738, 0.8175613880157471, 0.8954757452011108, -0.22423702478408813, 1.7782195806503296, 1.2254350185394287, 0.7767571210861206, 0.7505975961685181, 0.31346067786216736, 0.48678913712501526, -0.23716974258422852, -0.9710901379585266, 0.48548635840415955, 0.19500727951526642, -1.652909278869629, 0.3563382625579834, 0.0732271820306778, -0.863884687423706, -0.10678214579820633, -0.4851662814617157, 0.7486752271652222, 0.4894939363002777, -1.0258220434188843, -0.05377648025751114, -0.09645101428031921, -0.48305970430374146, -0.12129934132099152, 0.5895178318023682, 2.109104871749878, 2.2148983478546143, 1.6714695692062378, 0.9397296905517578, 0.6571053862571716, 4.008462905883789, 8.20163631439209, 4.04057502746582, 1.668599009513855, 1.2664713859558105, 1.3478388786315918, 1.2298848628997803, 0.3989931046962738, 3.008673667907715, 5.428922176361084, 0.9467208981513977, -0.36967578530311584, 14.033687591552734, 3.659334182739258, 0.7833492755889893, -0.474465936422348, 2.366950511932373, 0.9190989136695862, 1.070186972618103, -0.3821124732494354, 3.0633015632629395, 0.8150948882102966, -0.41906359791755676, -0.20512688159942627, -0.5525700449943542, 0.36142969131469727, 0.03444362059235573, -0.12303842604160309, 2.5672919750213623, 5.61810302734375, -0.05225738510489464, -3.5295486450195312, -9.482361793518066, -5.27308464050293, -10.127195358276367, -8.47729778289795, -9.685062408447266, -8.817888259887695, -7.538350582122803, -10.319197654724121, -3.1412336826324463, -3.7200396060943604, -2.7665517330169678, -2.7302675247192383, -5.089662551879883, -2.6372063159942627, -2.277743101119995, -2.2320876121520996, -2.3880703449249268, -3.054008960723877, -6.318255424499512, -1.9425923824310303, -1.7222853899002075, -3.4248640537261963, -0.7689271569252014, -1.4545224905014038, -1.285597324371338, -1.3321398496627808, -1.5888707637786865, -1.2224270105361938, -3.181523323059082, -0.8500968813896179, -1.0883302688598633, -0.8908826112747192, 0.05608029291033745, -1.0544918775558472, -0.6303791999816895, -0.5882346630096436, -0.8089964389801025, -0.87647545337677, 0.2349333018064499, -2.088914394378662, -1.0309410095214844, -0.9465101361274719, -0.7140549421310425, -0.36977818608283997, -0.5340608954429626, 0.3402877151966095, 1.2501572370529175, -0.6743406653404236, -0.22704602777957916, 1.7960454225540161, -0.026403190568089485, -0.1975802779197693, 0.9950613379478455, 0.1580113172531128, 0.587617039680481, -0.3259707987308502, -0.3312339186668396, 0.980118989944458, 0.06564810872077942, 0.058355655521154404, 0.8956661224365234, -0.10214731842279434, -0.694542407989502, -2.2803661823272705, -1.758186936378479, -2.7518928050994873, -1.3518487215042114, -0.61531662940979, -15.511337280273438, -8.048812866210938, -3.084141492843628, -1.6935824155807495, -1.217545509338379, -1.4837414026260376, -1.0506166219711304, -0.36436375975608826, -8.56169605255127, -5.784923076629639, -0.8517770171165466, 0.25702813267707825, -5.408534526824951, -4.901888370513916, -0.86708003282547, 0.47227075695991516, -2.4072721004486084, -0.7340108156204224, -0.8928924202919006, 0.4653438925743103, -0.37404778599739075, 0.8757453560829163, -1.8297946453094482, -0.6319535970687866, -0.358705073595047, 0.7328855991363525]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (0, 20), 'etaBin': (0, 0.8)}}, 'et0_eta1': {'discriminator': {'threshold': -0.75000052452087407, 'nodes': [100, 5, 1], 'bias': [0.13810545206069946, -0.18201099336147308, 0.021036244928836823, -0.009202640503644943, 0.07187016308307648, 0.46104055643081665], 'weights': [-1.8925094604492188, -1.2238150835037231, 0.6562626361846924, 0.9511800408363342, 0.36389872431755066, 0.6864233613014221, 0.18824709951877594, -0.2274571657180786, -1.6624797582626343, -5.2217116355896, -1.4616903066635132, -0.5122133493423462, 5.8331427574157715, 1.8483517169952393, 20.57921028137207, 7.102513790130615, 7.527975082397461, 5.936316013336182, 14.643430709838867, 6.8599138259887695, 9.316164016723633, 7.187514781951904, 4.620754241943359, 3.413209915161133, 6.658180236816406, 4.85620641708374, 4.100029945373535, 5.566649436950684, 3.731907844543457, 3.060131072998047, 4.659031867980957, 5.583804607391357, 2.7307114601135254, 2.994131088256836, 8.642337799072266, 2.289883613586426, 0.6494693160057068, 2.0231640338897705, 1.0012233257293701, 1.081325888633728, -0.5261492133140564, 0.3800708055496216, 0.34528055787086487, 6.915417194366455, -1.0193991661071777, -0.14056496322155, -0.09725432842969894, -0.173580139875412, -2.483555555343628, 0.9920685291290283, -0.26640722155570984, 0.3975827693939209, -0.25772494077682495, 1.210814356803894, 0.9771003723144531, -0.8578104376792908, 0.3760906159877777, 0.8532245755195618, 0.27929580211639404, 1.2646905183792114, 0.3316922187805176, 0.9337028861045837, 0.1462925225496292, -0.3613526225090027, 0.5072650909423828, 1.0561286211013794, 0.22868841886520386, 0.1604975163936615, 0.17903226613998413, 0.7918182015419006, -0.3503126800060272, 0.45072266459465027, -0.20369163155555725, -0.2662750482559204, 0.49260711669921875, 2.1276614665985107, 4.565790176391602, 2.230461359024048, 1.02570378780365, 0.07946263998746872, 11.287789344787598, 11.458906173706055, 7.035044193267822, 3.392335891723633, 1.8007370233535767, 1.7647638320922852, 2.2105367183685303, 2.268641948699951, 2.29552960395813, 1.3446894884109497, 0.20554538071155548, -0.26203346252441406, 4.533621788024902, 5.401577949523926, 0.4493290185928345, -0.024416958913207054, -2.289726734161377, 1.5831325054168701, 1.9929925203323364, 0.2930375337600708, 1.952457308769226, 1.2462477684020996, -1.0876314640045166, -0.9175639152526855, -0.32505589723587036, -0.7088087797164917, -0.1336529403924942, 0.3321419060230255, 2.536004066467285, 5.79353141784668, 1.459064245223999, 0.33216339349746704, -14.200791358947754, -1.8836852312088013, -7.968325138092041, -6.980250358581543, -5.158376216888428, -5.871337413787842, -9.588560104370117, -6.664106369018555, -5.1132612228393555, -7.1706647872924805, -4.576247215270996, -2.6326558589935303, -4.7970709800720215, -3.771188259124756, -3.8895199298858643, -5.623331546783447, -3.0061848163604736, -2.9450266361236572, -4.479562282562256, -5.576552391052246, -2.870198965072632, -3.0367915630340576, -3.4783716201782227, -2.390235185623169, -0.5095173120498657, -1.5458441972732544, -1.0594172477722168, -3.532752752304077, 0.49488940834999084, -0.3730463981628418, -0.4775383770465851, -1.6226712465286255, 1.2465732097625732, 0.1816977709531784, 0.052189912647008896, 0.2135578989982605, 2.517794609069824, -0.9796221256256104, 0.19435077905654907, -0.3447989225387573, 0.26036354899406433, -1.0289835929870605, -0.6525987386703491, 0.8082085847854614, -0.24394521117210388, -0.29113930463790894, -0.3918320834636688, -1.1734482049942017, -0.38091614842414856, -0.8932517766952515, -0.3040578365325928, 0.42996177077293396, -0.5035845041275024, -0.901124119758606, -0.24702927470207214, -0.03485172614455223, -0.039679765701293945, -0.8138376474380493, 0.787928581237793, -0.34799909591674805, 0.2127179205417633, 0.08500823378562927, -0.49812158942222595, -2.0146515369415283, -2.5852603912353516, -2.0965754985809326, -0.6987488269805908, -0.157260924577713, -11.415349960327148, -8.285144805908203, -6.790378093719482, -4.310431957244873, -1.3116488456726074, -1.6353237628936768, -1.6259948015213013, -3.199120283126831, -5.152630805969238, -2.2409863471984863, -0.2359311282634735, 0.18523359298706055, -9.14281177520752, -4.135699272155762, -0.3192756175994873, -0.08470670878887177, 0.24450591206550598, -5.539525985717773, -1.854263424873352, -0.1801915019750595, -1.8780862092971802, -1.2834389209747314, 0.7041327953338623, 1.0591145753860474, 0.4457995593547821, 0.5730429887771606, 2.018894672393799, -0.039033442735672, -2.2105350494384766, -5.289902210235596, -1.3138792514801025, -0.5064011216163635, 8.338859558105469, 6.455643653869629, 20.42310905456543, 7.121894359588623, 6.050099849700928, 7.905551433563232, 14.820043563842773, 7.19402551651001, 9.163422584533691, 7.031611442565918, 4.7066168785095215, 3.2067506313323975, 6.8134307861328125, 4.760343551635742, 4.175156593322754, 5.316094398498535, 2.9997072219848633, 2.9315690994262695, 5.05702018737793, 5.6292829513549805, 2.824653387069702, 3.010867118835449, 9.389309883117676, 2.191251516342163, 0.5466648936271667, 2.022000312805176, 1.1206458806991577, 2.507119655609131, -0.04510550945997238, 0.32944920659065247, 0.4817630648612976, 1.4827300310134888, -1.1729286909103394, -0.14405271410942078, -0.1474020630121231, -0.11235252767801285, -2.3419976234436035, 1.054763674736023, -0.2517300546169281, 0.45212826132774353, -0.3218640983104706, 1.0747690200805664, 1.0433205366134644, -0.9130086302757263, 0.40176406502723694, 0.9110763669013977, 0.2630470395088196, 1.3611962795257568, 0.5164622068405151, 0.7935552000999451, 0.2779427170753479, -0.3644547760486603, 0.37541812658309937, 0.8469223380088806, 0.11413981765508652, 0.4625149071216583, 0.19138678908348083, 0.9879692196846008, -0.8283549547195435, 0.3583611845970154, -1.2395589351654053, -0.20304115116596222, 1.4783496856689453, 2.1369123458862305, 3.2162489891052246, 2.189713716506958, 1.1040245294570923, 0.06041760370135307, 17.903512954711914, 11.216879844665527, 5.829072952270508, 2.9720444679260254, 1.7591387033462524, 1.8255236148834229, 2.283552408218384, 3.0886728763580322, 3.9979867935180664, 5.058059215545654, 0.2873322069644928, -0.2054530382156372, 2.1999025344848633, 4.702675819396973, 0.6885371208190918, 0.03910418227314949, -2.3075804710388184, 1.5203689336776733, 1.6801518201828003, 0.2807612717151642, -19.431434631347656, -0.7079209685325623, 2.009190797805786, 6.4891791343688965, 7.062210559844971, 0.6609626412391663, -1.3742560148239136, -0.17222720384597778, -27.03448486328125, -61.39654541015625, -5.1306376457214355, -6.9397125244140625, 8.774383544921875, -1.95246422290802, 60.87514877319336, 20.223072052001953, 9.3819580078125, 38.12455368041992, 18.46353530883789, 7.2530412673950195, -2.2757513523101807, -29.10565185546875, 19.837278366088867, 13.1071195602417, 5.815578937530518, 0.5362417697906494, 7.16448974609375, 53.5877799987793, 3.04994535446167, 0.8775137066841125, 3.0282115936279297, 18.61113739013672, 13.23752498626709, 5.090209007263184, 67.30415344238281, 33.3084831237793, 6.271228313446045, 3.4189741611480713, 1.6367242336273193, 38.8242301940918, 0.3753618001937866, 0.8644266128540039, 1.065105676651001, 1.6667332649230957, -0.2638069689273834, 58.8161735534668, 4.232236385345459, 75.44316101074219, -3.066237211227417, 0.5389311909675598, -0.266434907913208, 0.47315940260887146, 0.9555960893630981, 1.1678986549377441, 0.7565997242927551, -0.7215517163276672, 0.18236379325389862, 0.5382163524627686, 0.31355616450309753, 1.0017755031585693, 1.3976796865463257, 1.2884217500686646, 0.2909504175186157, -0.22075514495372772, 0.546885073184967, 0.880285918712616, 0.242771178483963, 0.36143794655799866, 0.13656610250473022, 1.0381686687469482, -0.6763685345649719, 0.30215805768966675, -12.381731033325195, -8.0579195022583, 6.540484428405762, 2.4167001247406006, 4.042524337768555, 15.822314262390137, 2.4656457901000977, 10.052105903625488, 8.63068675994873, 36.50438690185547, 3.510387420654297, 5.914213180541992, 14.6420316696167, 43.4828987121582, 2.3191707134246826, 0.3620098829269409, 6.536006450653076, 1.9789578914642334, 0.37560588121414185, -3.4471843242645264, 1.8010627031326294, 2.6052134037017822, 20.492565155029297, -0.0290924571454525, 0.09737208485603333, 8.648964881896973, 1.8274562358856201, 0.14330635964870453, -0.9631259441375732, -1.3539581298828125, -0.07848529517650604, -0.04655064269900322, -0.16150283813476562, -0.20293954014778137, -0.19901928305625916, -0.2585231065750122, -0.6610293388366699, -2.7294886112213135, -0.8143680691719055, -0.2913510501384735, 2.6277952194213867, 12.974698066711426, -2.7927517890930176, 2.4714112281799316, 1.9590502977371216, 1.6951347589492798, -0.5213738679885864, -3.7651565074920654, -1.9073591232299805, -0.2620479166507721, -0.5145399570465088, -0.7107497453689575, 0.07638556510210037, -0.22756987810134888, -0.10972726345062256, 0.2400413453578949, 0.2121530920267105, -0.0002191988460253924, -0.8328074216842651, -0.07249060273170471, -0.9831439256668091, -0.0514051727950573, -0.25581061840057373, 0.07119639962911606, -0.6884536147117615, -0.09830063581466675, -0.024550490081310272, -0.16045953333377838, -0.43433311581611633, -0.24456320703029633, -0.41793352365493774, -0.3608315587043762, -0.36864084005355835, -0.4849030673503876, -0.1755562126636505, -0.40205124020576477, -0.299599826335907, -0.16571997106075287, -0.3376643657684326, -0.20545193552970886, -0.26081135869026184, -0.015347293578088284, -0.13775987923145294, -0.5051273703575134, -0.09726136177778244, -0.06344534456729889, -0.20437148213386536, 0.03775722160935402, -0.007660008035600185, 0.0008244303753599524, -0.23009449243545532, -0.25706928968429565, -0.18932904303073883, -0.15042315423488617, -0.03665834292769432, -0.12307917326688766, -0.14365243911743164, -0.0026790336705744267, -0.20218591392040253, -0.1664867103099823, -0.2635151743888855, -0.23800744116306305, 0.4642724096775055, -0.8392537832260132, -2.3402488231658936, -1.4726476669311523, -0.2590694725513458, -0.32754141092300415, -0.541354238986969, -0.5725244879722595, -5.093498229980469, -1.117193579673767, -0.7368503212928772, -0.34520789980888367, 0.061895254999399185, -0.038676101714372635, -2.568580389022827, -2.366105556488037, 0.035846397280693054, -0.07814716547727585, -6.107456207275391, -4.432236671447754, -0.25411027669906616, -0.9613468647003174, -0.6015036106109619, -1.5356148481369019, 0.030305882915854454, -0.3353346884250641, -1.0183240175247192, 1.2881017923355103, -0.5610806941986084, 0.3517586290836334, -1.7679719924926758]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (0, 20), 'etaBin': (0.8, 1.37)}}, 'et1_eta1': {'discriminator': {'threshold': 0.019999039173126232, 'nodes': [100, 6, 1], 'bias': [0.10486491769552231, -0.12511692941188812, -0.15801553428173065, 0.19460082054138184, 0.19272653758525848, -0.19290275871753693, 0.21625825762748718], 'weights': [-24.875232696533203, -35.52052307128906, -1.6133642196655273, -0.008624027483165264, -0.05626048892736435, -0.3086847960948944, -0.020699650049209595, -0.36371681094169617, -0.7491006851196289, 9.88141918182373, 3.7016844749450684, 47.948612213134766, 29.423078536987305, 3.0021779537200928, 2.617471218109131, 1.5538839101791382, 1.6353963613510132, 1.3132680654525757, 8.18600845336914, 3.481529474258423, 2.213709831237793, 2.721906900405884, 1.4094911813735962, 1.842166781425476, 2.055157423019409, 1.02581787109375, -32.34109115600586, 0.5193427205085754, 1.0854448080062866, 0.7986941337585449, 0.7937002778053284, -39.9202995300293, 0.6154786944389343, 1.2842981815338135, 0.8223607540130615, 0.35938817262649536, 0.27384892106056213, 0.3549516201019287, 1.0272786617279053, 0.556393027305603, 0.9667421579360962, -27.509204864501953, 0.6893214583396912, -0.22417894005775452, 0.18357644975185394, -0.03378888964653015, 0.2211812287569046, 0.0843660831451416, 0.870056688785553, 0.9310393929481506, -41.212486267089844, -7.586906909942627, 0.02240859530866146, -0.34544894099235535, -0.013609317131340504, 0.05311030149459839, 0.39030352234840393, -2.412696123123169, 0.323057621717453, -0.0783422514796257, 0.420240581035614, 0.30666735768318176, -0.010727977380156517, -0.2036086767911911, -0.939023494720459, -14.801352500915527, 0.0008461455581709743, -0.320068895816803, 0.18558304011821747, -0.7366596460342407, -0.5172358155250549, -1.1228679418563843, -0.8335043787956238, -0.0874503031373024, 0.17609955370426178, 1.084976315498352, 0.3574119806289673, 0.28965112566947937, 0.5148221850395203, -4.263965129852295, 7.01619291305542, 2.117969512939453, 1.4213595390319824, 0.7547821998596191, 0.8998038172721863, 0.4079223573207855, 0.6221122145652771, 0.6246194839477539, 0.6907567977905273, 0.34567877650260925, 0.04977800324559212, -1.0399022102355957, 1.166904330253601, 0.7002080082893372, 0.20356878638267517, -0.2037377655506134, 0.9589799046516418, -0.1373915672302246, 0.1627029925584793, 0.13170559704303741, 2.0245139598846436, 0.8271703720092773, -0.22186963260173798, -0.5199185609817505, -0.5545067191123962, -0.7945814728736877, -0.09759623557329178, 0.5519661903381348, 2.107658863067627, 5.196192264556885, 0.636294960975647, -5.638603210449219, -3.7636923789978027, -7.1080121994018555, -5.876524925231934, -4.993096351623535, -7.033196926116943, -4.254160404205322, -3.846722364425659, -9.72186279296875, -6.007926940917969, -5.542205333709717, -3.613792657852173, -4.872674465179443, -4.930007457733154, -3.872875690460205, -3.002730369567871, -1.7604550123214722, -2.6564693450927734, -4.5585126876831055, -3.900041341781616, -1.9911246299743652, -2.1886584758758545, -2.9386982917785645, -2.142312526702881, -1.4066506624221802, -0.9322798848152161, -1.4100180864334106, -2.4112284183502197, -1.2949612140655518, -2.606065511703491, -2.0816357135772705, -1.8875538110733032, 0.3693794310092926, -0.11105670034885406, -0.11997859179973602, -0.9382053017616272, 0.05954858288168907, -1.991539716720581, -2.060246467590332, -0.9869577288627625, -1.0988168716430664, -0.13669247925281525, -0.1764475703239441, 0.3320315182209015, -0.4457632899284363, -0.972248911857605, -2.120349884033203, -0.877682626247406, -0.0973014310002327, -0.44584837555885315, -0.8447644114494324, 0.1244892030954361, 0.3315380811691284, -0.1593199521303177, -1.2802783250808716, -0.8253623247146606, 0.5115103125572205, -0.33466649055480957, 1.0827850103378296, 0.6420692801475525, 2.7061526775360107, 0.385178804397583, 0.24092887341976166, -0.592490553855896, -2.7468035221099854, -1.1873877048492432, -1.0082688331604004, 0.2514231204986572, -0.18529607355594635, -10.175785064697266, -6.061328411102295, -3.4879937171936035, -2.02803897857666, -2.090017080307007, -1.4665274620056152, -1.8255035877227783, -1.5488629341125488, -1.5534313917160034, -0.9540573358535767, -0.01422670017927885, 0.1602276712656021, -3.031005859375, -2.1862339973449707, -0.614523708820343, 0.27786076068878174, -2.9442219734191895, -1.6134992837905884, -0.8152170777320862, -0.36227500438690186, 2.0914957523345947, 0.8605437874794006, -0.21348552405834198, -0.42250150442123413, -0.4221906065940857, -0.7759079337120056, -0.09413494169712067, 0.7776044607162476, 2.0629820823669434, 5.058802127838135, 0.6398661732673645, -5.7220234870910645, -3.8140790462493896, -7.059181213378906, -6.043213844299316, -4.332267761230469, -7.06245756149292, -4.410898208618164, -3.8616888523101807, -8.815730094909668, -6.082442283630371, -5.471698760986328, -3.761535882949829, -4.784187316894531, -5.023107528686523, -4.105536460876465, -3.0269956588745117, -1.7105648517608643, -2.7417643070220947, -4.617550373077393, -4.103362083435059, -2.0788066387176514, -2.2058041095733643, -2.8836936950683594, -2.062774181365967, -1.3000037670135498, -1.1085129976272583, -1.3346741199493408, -2.3267407417297363, -1.2659637928009033, -2.6595935821533203, -1.9944506883621216, -1.933461308479309, 0.2566291391849518, -0.22493742406368256, -0.10066007077693939, -0.9923979640007019, 0.16629832983016968, -2.091920852661133, -2.1379387378692627, -1.9406322240829468, -1.2982583045959473, -0.1721581220626831, -0.1789523810148239, 0.22955913841724396, -0.3632001280784607, -0.95749831199646, -1.9993577003479004, -0.7545385360717773, 0.05745566636323929, -1.3660675287246704, -0.6751365065574646, 0.28486204147338867, 0.33897238969802856, -0.18478795886039734, -1.2895563840866089, -1.054251790046692, 0.5599813461303711, -0.5184959769248962, 1.0679672956466675, 0.41148513555526733, 2.236036777496338, 0.4061366319656372, 0.272536963224411, -0.7011982202529907, -0.6965756416320801, -1.3738293647766113, -0.9214045405387878, -1.2908315658569336, 0.002735928865149617, -10.121125221252441, -6.16944694519043, -3.2490994930267334, -2.747593879699707, -2.122638463973999, -1.343381404876709, -1.9829074144363403, -1.558193564414978, -1.554426908493042, -0.9791358113288879, -0.1586589217185974, 0.22117124497890472, -3.136153221130371, -2.1134538650512695, -0.5171348452568054, 0.13903111219406128, -3.1306419372558594, -1.8257617950439453, -0.6556441187858582, -0.48264211416244507, -0.4650673270225525, -2.025869369506836, -0.08367107063531876, 0.06120254099369049, 0.1299218237400055, 0.304646372795105, 0.024342473596334457, -0.47125324606895447, -0.655540943145752, -2.0782227516174316, -0.9083961248397827, 3.9407615661621094, 16.185447692871094, 2.990055799484253, 2.026270627975464, 1.4965132474899292, 2.0964038372039795, 1.7466181516647339, 14.329285621643066, 3.412203788757324, 2.1346399784088135, 2.927086353302002, 1.5311397314071655, 2.0526013374328613, 2.0255112648010254, 1.7447408437728882, 1.3085241317749023, 0.6297897100448608, 1.064219355583191, 0.968110978603363, 1.0392800569534302, 0.6658504605293274, 0.634518563747406, 0.7891107201576233, 0.9030886292457581, 0.5654179453849792, 0.22177866101264954, 0.46843838691711426, 0.8789970874786377, 0.29611310362815857, 1.1163743734359741, 0.8881351351737976, 0.7998219728469849, -0.3377310633659363, 0.03779512643814087, -0.003236232791095972, 0.2820183336734772, -0.1648709625005722, 0.15052199363708496, 1.0259461402893066, 0.41772717237472534, 0.19212758541107178, 0.01985853537917137, 0.08016595244407654, 0.10540862381458282, 0.18772593140602112, 0.445149302482605, 0.9478403329849243, 0.14493513107299805, -0.04540832340717316, 0.07517718523740768, 0.26397761702537537, -0.12919968366622925, -0.09367705136537552, -0.06310030817985535, 0.5289011001586914, 0.07312864065170288, -0.18277166783809662, 0.13392755389213562, -0.5700629353523254, -0.6822415590286255, -1.121700406074524, -0.819206714630127, -0.6899083852767944, 0.06360030174255371, 1.2203261852264404, 0.5286192297935486, 0.4246649742126465, 0.608282208442688, 0.169428288936615, 5.529989719390869, 0.22635023295879364, 1.2797627449035645, 0.641566276550293, 0.7311424016952515, 0.6146060228347778, 0.6039493083953857, 0.7468789219856262, 0.5795114040374756, 0.14851737022399902, 0.003916430752724409, -0.8177333474159241, 1.1558339595794678, 0.8150486350059509, 0.28721505403518677, -0.08295724540948868, 0.8663042783737183, -0.12019255012273788, 0.21481435000896454, -0.006899334955960512, -1.9006359577178955, -0.930885374546051, 0.2417631298303604, 0.4728584885597229, 0.35391226410865784, 0.5776044726371765, 0.05797308683395386, -0.6158409118652344, -2.571823835372925, -5.077270984649658, -0.6109508275985718, 5.852639675140381, 3.8164560794830322, 7.093533039093018, 5.847262859344482, 4.422942638397217, 7.051522731781006, 4.403559684753418, 3.741119146347046, 8.884323120117188, 6.005716800689697, 5.438824653625488, 3.7669293880462646, 4.6668925285339355, 4.958282470703125, 4.039247512817383, 3.050180673599243, 1.744162917137146, 2.618724822998047, 4.599602699279785, 3.1491522789001465, 1.8947088718414307, 2.128077507019043, 2.850562572479248, 2.1813929080963135, 1.4062283039093018, 0.968116819858551, 1.4218378067016602, 2.3448917865753174, 1.3854869604110718, 2.4763386249542236, 1.6235952377319336, 1.926133632659912, -0.18555384874343872, 0.3139816224575043, 0.1395268440246582, 0.9016680121421814, -0.47601744532585144, 0.47541648149490356, 2.1785831451416016, 0.6198124289512634, 1.2655575275421143, 0.15374556183815002, -0.022515274584293365, -0.2487664520740509, 0.3061142563819885, 1.0221470594406128, 1.9954326152801514, 0.7287238836288452, 0.11155026406049728, 0.31069719791412354, 0.8503714799880981, -0.2865869104862213, -0.21749991178512573, 0.07167358696460724, 1.154962182044983, 0.6785088777542114, -0.5581897497177124, 0.46549561619758606, -1.0355132818222046, -0.6002509593963623, -2.211726665496826, -0.38301149010658264, -0.15297500789165497, 0.7663475871086121, 0.5997673273086548, 1.2928448915481567, 0.9078907370567322, -0.08547566086053848, -0.061220988631248474, 7.299069404602051, 5.294886589050293, 3.4102556705474854, 1.757995843887329, 2.118530035018921, 1.4748600721359253, 1.9860522747039795, 1.3780364990234375, 1.6924394369125366, 0.9677131175994873, 0.159409761428833, -0.10508045554161072, 3.048171281814575, 2.0720133781433105, 0.5233007073402405, -0.08477571606636047, 3.0193474292755127, 1.8385801315307617, 0.7011741995811462, 0.32417529821395874, 2.037968635559082, 0.7316104769706726, -0.07307479530572891, -0.37979012727737427, -0.5682746767997742, -0.5587223172187805, -0.1056552603840828, 0.6538429260253906, 2.6420161724090576, 4.95098352432251, 0.6947001814842224, -5.681090354919434, -3.669278621673584, -7.030954837799072, -6.037749290466309, -5.058415412902832, -7.002641677856445, -4.334777355194092, -3.892927646636963, -8.844118118286133, -6.0192766189575195, -5.647950649261475, -3.7604215145111084, -4.970141410827637, -4.995177745819092, -4.099310874938965, -3.0438473224639893, -1.7268157005310059, -2.638028144836426, -4.484391212463379, -2.984726905822754, -2.0249733924865723, -2.1979408264160156, -2.7437589168548584, -1.9702707529067993, -1.4418545961380005, -1.0907553434371948, -1.4923373460769653, -2.3664932250976562, -1.4237343072891235, -2.596942186355591, -1.5654140710830688, -1.8069599866867065, 0.22664067149162292, -0.1594325304031372, 0.24011728167533875, -0.8582908511161804, 0.4311347007751465, -0.41843128204345703, -4.925808429718018, -0.6386445164680481, -1.207939624786377, -0.20867477357387543, 0.025181923061609268, 0.37170419096946716, -0.33662962913513184, -1.0937501192092896, -2.111860990524292, -0.7560731172561646, 0.04591921344399452, -0.2978529632091522, -0.6991146206855774, 0.29959744215011597, 0.1464262157678604, -0.06530778855085373, -1.1791579723358154, -0.7995136380195618, 0.6936266422271729, -0.32824814319610596, 1.1511420011520386, 0.39860597252845764, 2.251163959503174, 0.30454736948013306, 0.13520225882530212, -0.719683051109314, -0.7680479884147644, -1.3224217891693115, -1.043531894683838, 0.120638407766819, -0.16004304587841034, -12.51164722442627, -6.186787128448486, -3.325183153152466, -1.8037481307983398, -2.099346876144409, -1.5151959657669067, -1.814008116722107, -1.4446308612823486, -1.6001267433166504, -0.8087900280952454, -0.012988340109586716, 0.19559377431869507, -2.9863476753234863, -2.2022581100463867, -0.5182163119316101, 0.17054039239883423, -2.9254534244537354, -1.7060649394989014, -0.7282992005348206, -0.32495301961898804, -0.31928423047065735, 0.8333481550216675, 1.3106924295425415, -0.9618647694587708, -1.4151382446289062, 0.9778494238853455]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (0.8, 1.37)}}, 'et1_eta0': {'discriminator': {'threshold': 0.089998972415924083, 'nodes': [100, 5, 1], 'bias': [0.13026855885982513, -0.26550668478012085, 0.10098384320735931, 0.2817646265029907, -0.24148190021514893, 0.28516680002212524], 'weights': [6.899774074554443, 16.352725982666016, 0.5933220386505127, 2.4192605018615723, 0.11743052303791046, 4.809587001800537, -0.343030720949173, -0.24318425357341766, 0.03658125922083855, -3.1363468170166016, -0.11848730593919754, -133.99517822265625, 5.193421363830566, 5.081463813781738, 34.88224792480469, 2.887279987335205, 4.678894996643066, 2.649254560470581, 5.661073684692383, 12.021714210510254, 2.9697964191436768, 2.6748416423797607, 1.496754765510559, 2.3502867221832275, 2.18495512008667, 2.2296648025512695, 4.823065280914307, 1.9415361881256104, 1.8471628427505493, 1.553573727607727, 1.784615159034729, 1.7211287021636963, 0.866039514541626, 0.6766988635063171, 1.4916530847549438, 1.1342616081237793, 0.9869433045387268, -2.0301432609558105, 0.6865469813346863, 1.4280389547348022, 0.7327931523323059, 0.2371402084827423, 1.8007099628448486, 1.1863741874694824, -0.014120065607130527, -0.2791396677494049, 0.7089519500732422, 0.4246557950973511, 1.2188538312911987, 0.5817012786865234, 0.499347060918808, 0.15267817676067352, 0.14925161004066467, -23.053922653198242, -7.309223175048828, 0.5530054569244385, 0.7288325428962708, -0.48038211464881897, 0.6218819618225098, -0.20887674391269684, -0.8501588106155396, 1.2204691171646118, -0.4112662374973297, 1.3383499383926392, -7.248931884765625, 0.6939977407455444, -0.5631090998649597, 0.2956172227859497, -0.09469417482614517, 0.9803329110145569, -0.6680454611778259, -0.5637686252593994, -0.40396279096603394, -0.23399324715137482, 0.7935812473297119, 5.329383373260498, 1.2227143049240112, 0.8110776543617249, 1.0557469129562378, -0.09967409074306488, 7.470627307891846, 2.7973663806915283, 12.985594749450684, 10.80945110321045, 5.312950134277344, 1.4698386192321777, 1.2358468770980835, 1.7002789974212646, 2.332430124282837, 1.9757977724075317, 1.008349061012268, -0.3452204167842865, 2.5461506843566895, 1.5805330276489258, -2.5452659130096436, -0.2858031392097473, 4.327240467071533, 1.6949045658111572, -0.5474514365196228, -1.0070194005966187, 3.1365036964416504, 1.4264229536056519, 0.46255072951316833, -0.06407009065151215, -0.08005370944738388, 0.21678487956523895, 0.3651900887489319, 0.5949395298957825, 2.2012155055999756, 2.7517831325531006, -4.617430210113525, -7.510282516479492, -6.630491733551025, -4.501444339752197, -5.261494159698486, -3.223292350769043, -4.61243200302124, -2.772080659866333, -2.796226978302002, -3.223543405532837, -3.2556803226470947, -2.647357702255249, -2.1666717529296875, -2.266063690185547, -2.1483471393585205, -2.18593692779541, -1.7709323167800903, -1.8062844276428223, -1.743281364440918, -1.4827731847763062, -1.8574687242507935, -1.648593783378601, -0.9516342878341675, -0.7328382134437561, -1.3366445302963257, -0.9306458830833435, -0.9237238764762878, -0.926608681678772, -0.7026310563087463, -1.3953449726104736, -0.8315156102180481, 0.021193236112594604, -1.6468673944473267, -0.3374200165271759, 0.08506361395120621, 0.29782259464263916, -0.7337348461151123, -0.44007250666618347, -1.2420686483383179, -0.6445106863975525, -0.31814923882484436, -0.5961984395980835, -0.16995586454868317, -1.443328619003296, -0.191337451338768, -0.580639660358429, -0.25931718945503235, 0.3832920491695404, -0.5014948844909668, 0.15482033789157867, 0.794733464717865, -1.4419859647750854, 0.5691285133361816, -1.1889307498931885, -0.4611969292163849, -0.6314657330513, 0.6613544821739197, -0.21968477964401245, 0.07686891406774521, -1.1416877508163452, 0.5154832601547241, 0.459480345249176, 0.5681905746459961, 0.4546891748905182, -0.5072559118270874, -1.0298582315444946, -1.1796760559082031, -0.716462254524231, -0.13588790595531464, 0.055263034999370575, -8.00947093963623, -2.617304563522339, -2.155120611190796, -0.8165661096572876, -1.546573519706726, -0.6795950531959534, -1.1418935060501099, -1.5697532892227173, -2.318981885910034, -2.0122148990631104, -0.2781384587287903, 0.1994207799434662, -2.535902738571167, -1.5865310430526733, -0.20114310085773468, 0.29925528168678284, -4.517794132232666, -1.6401015520095825, -0.16101348400115967, 0.34219953417778015, -4.2039713859558105, -2.2228593826293945, -0.36036258935928345, 0.006430026143789291, 0.00564979761838913, -0.2846749424934387, -0.1690729856491089, -0.713566780090332, -2.1880154609680176, -2.8614342212677, 1.3553072214126587, -0.09500797837972641, 6.485579967498779, 4.338515758514404, 4.054488182067871, 2.1393210887908936, 4.3361616134643555, 2.6636030673980713, 2.965369462966919, 3.042334794998169, 3.0481913089752197, 2.8283920288085938, 2.3292248249053955, 2.269939661026001, 2.2794978618621826, 2.1206231117248535, 1.8981077671051025, 1.9247421026229858, 1.8147590160369873, 1.5951828956604004, 1.841043472290039, 1.699897050857544, 1.0185341835021973, 0.8176997900009155, 1.804958701133728, 0.9224161505699158, 0.9395413994789124, 0.9981505870819092, 0.5674375891685486, 1.4063092470169067, 0.8281000852584839, 0.13445372879505157, 1.7218259572982788, 1.3947255611419678, 0.12177100032567978, -0.2041916400194168, 0.669011116027832, 0.5964751243591309, 1.2814091444015503, 0.5093510746955872, 0.11234066635370255, 0.6185265779495239, 0.21782174706459045, 1.4358878135681152, 0.2166738212108612, 0.7268922924995422, 0.7358065843582153, -0.2957155704498291, 0.5267340540885925, 0.018530720844864845, -0.8329143524169922, 1.4509282112121582, -0.4544578790664673, 1.213326096534729, 0.5540860295295715, 0.6212376952171326, -0.6449874639511108, 0.33839884400367737, -0.015398956835269928, 1.0235668420791626, -0.635717511177063, -0.4007470905780792, -0.5329344272613525, -0.037641871720552444, 0.5998761057853699, 0.9821504950523376, 1.2193130254745483, 0.5014228224754333, 1.4592225551605225, 0.0007539120269939303, 7.4821882247924805, 2.9073970317840576, 2.234830617904663, 1.2812618017196655, 1.4794807434082031, 1.4617334604263306, 1.226047158241272, 1.664346694946289, 2.2560362815856934, 1.880759835243225, 1.8559043407440186, 0.30874988436698914, 2.4118285179138184, 1.7293230295181274, 0.37950506806373596, -0.32922399044036865, 4.410937309265137, 2.077910900115967, -0.5310007929801941, -0.8569069504737854, -3.2046031951904297, -1.878570556640625, -0.4966791272163391, -0.041915521025657654, 0.0010237264214083552, -0.35946255922317505, -0.16862881183624268, -0.6730135679244995, -2.2084267139434814, -2.830782175064087, 1.444815993309021, 7.311896800994873, 6.746527671813965, 4.426757335662842, 5.439311981201172, 3.1424455642700195, 4.659900188446045, 2.7016937732696533, 2.9734232425689697, 3.1668307781219482, 3.2199769020080566, 2.7241642475128174, 2.252969264984131, 2.3151626586914062, 2.0955772399902344, 2.339506149291992, 1.7223293781280518, 1.7967665195465088, 1.7298623323440552, 1.7324773073196411, 1.7900738716125488, 1.5840544700622559, 0.933102011680603, 0.8880665898323059, 1.4224761724472046, 1.1536072492599487, 0.9202759265899658, 0.9527393579483032, 0.5907071232795715, 1.382846713066101, 0.7373377680778503, 0.11727926880121231, 1.6933280229568481, 0.37634551525115967, -0.05939439311623573, -0.32975059747695923, 0.6748769879341125, 0.5615000128746033, 1.1567221879959106, 0.506033182144165, 0.08262698352336884, 0.458146333694458, 0.12529253959655762, 1.3546130657196045, 0.35908567905426025, 0.7352120280265808, 0.30408918857574463, -0.2514974772930145, 0.6668548583984375, -0.22145557403564453, -1.1797659397125244, 1.2833958864212036, -0.6023738980293274, 1.2626928091049194, 0.44070497155189514, 0.7011858224868774, -0.6213901042938232, 0.2127763330936432, 0.0018709421856328845, 0.7595801949501038, -0.5178589820861816, -0.4579158425331116, -0.5081691741943359, -0.4273574948310852, 0.530954122543335, 1.1548372507095337, 1.1909937858581543, 0.6980268955230713, -0.21412287652492523, -0.14805613458156586, 8.138078689575195, 2.6744754314422607, 2.1828529834747314, 0.854567289352417, 0.9787827730178833, 0.8920714855194092, 1.081211805343628, 1.5808980464935303, 3.3566043376922607, 1.8604305982589722, 0.3846227824687958, -0.25873804092407227, 2.4828872680664062, 1.646903157234192, 0.1991197019815445, -0.35633036494255066, 4.391186714172363, 1.694061517715454, -0.010804381221532822, -0.13379591703414917, 3.142569065093994, 1.885544776916504, 0.42330726981163025, -0.02307279221713543, 0.03883444890379906, 0.22803469002246857, 0.15954458713531494, 0.6746170520782471, 2.1230428218841553, 2.7047719955444336, -1.42130708694458, -7.3318586349487305, -6.713561534881592, -4.5120673179626465, -5.326016426086426, -3.2210566997528076, -4.770684242248535, -2.7039825916290283, -2.9834811687469482, -3.2463696002960205, -3.198507308959961, -2.676010847091675, -2.2476842403411865, -2.3895657062530518, -2.085507392883301, -2.3317718505859375, -1.8416802883148193, -1.9407689571380615, -1.777759313583374, -1.641348123550415, -1.8573496341705322, -1.6751770973205566, -0.8691015243530273, -0.7737262845039368, -1.3237534761428833, -1.0309513807296753, -0.956010103225708, -0.8817286491394043, -0.7214582562446594, -1.485176920890808, -0.8006212115287781, 0.03045649640262127, -1.7968178987503052, -0.15167224407196045, 0.10287018120288849, 0.32076430320739746, -0.7837929129600525, -0.6078547835350037, -1.1492019891738892, -0.6437928676605225, -0.2273150086402893, -0.4479551315307617, -0.19615353643894196, -1.475245475769043, -0.16832801699638367, -0.7806887030601501, -0.43588489294052124, 0.3417947590351105, -0.5984894633293152, 0.18171395361423492, 1.3271015882492065, -1.3004610538482666, 0.567756712436676, -1.3063372373580933, -0.595904529094696, -0.6181480288505554, 0.6816067695617676, -0.3874245882034302, -0.10277097672224045, -0.8113201856613159, 0.4958667755126953, 0.5487250089645386, 0.5853757262229919, 0.28303003311157227, -0.47044941782951355, -1.012993574142456, -1.0892679691314697, -0.7276430130004883, -0.0545482262969017, 0.0023131719790399075, -8.050432205200195, -2.7260515689849854, -2.2996180057525635, -0.8566168546676636, -0.8960089683532715, -0.7992809414863586, -1.1440401077270508, -1.6487165689468384, -2.2422666549682617, -1.8732126951217651, -0.3583516776561737, 0.31507444381713867, -2.49290132522583, -1.6364563703536987, -0.20403233170509338, 0.4427047073841095, -4.316447734832764, -1.6208338737487793, -0.05867146700620651, 0.1259959191083908, -0.49012619256973267, 1.3664380311965942, -0.9122105836868286, -1.5342460870742798, 1.4196211099624634]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (0, 0.8)}}, 'et3_eta1': {'discriminator': {'threshold': 0.37499870061874391, 'nodes': [100, 5, 1], 'bias': [0.08650511503219604, -0.055272262543439865, 0.10310862213373184, 0.016909923404455185, -0.12306475639343262, -0.13866235315799713], 'weights': [-1.8073946237564087, -1.5411490201950073, 0.5207444429397583, 0.9707058668136597, 0.25348761677742004, 0.04366215318441391, -0.24979205429553986, -0.27689307928085327, -2.309197187423706, -3.3570711612701416, 1.4562300443649292, 7.651455879211426, 0.36543744802474976, 2.8513708114624023, 2.6874794960021973, 6.057408809661865, 6.057231426239014, 5.669864177703857, 4.801469326019287, 12.592092514038086, 4.3951287269592285, 3.525283098220825, 3.761875629425049, 2.5921874046325684, 2.918700933456421, 2.418201208114624, 3.809760093688965, 2.845146417617798, 1.6797908544540405, 2.6805214881896973, 2.7352213859558105, 2.2525758743286133, 2.9871532917022705, 2.7930495738983154, 2.393132448196411, 0.47632381319999695, 1.7430351972579956, 1.497951865196228, 2.175682544708252, 1.54957914352417, 2.5405402183532715, 1.7708392143249512, 0.7371238470077515, 0.6540555357933044, 0.7026950120925903, 0.46482789516448975, -0.3877534866333008, 1.530444860458374, 1.3411180973052979, 0.5750821828842163, 0.39422816038131714, -0.08476825058460236, 0.8233877420425415, -3.1044533252716064, 0.5614856481552124, 0.21811482310295105, 0.895219624042511, 0.2259756177663803, 0.8229779005050659, -0.4962327480316162, 0.42732468247413635, -0.17410647869110107, 0.41408899426460266, 0.30640730261802673, 0.708544135093689, 0.9880279302597046, 0.616394579410553, -0.7441698908805847, -2.3464620113372803, -0.3689490556716919, -1.6319341659545898, 0.1698792278766632, -0.44919198751449585, -0.4705634117126465, 0.9533016681671143, 1.566569447517395, 2.190119743347168, 1.4812970161437988, 1.2188771963119507, 0.043788351118564606, 2.7045044898986816, 6.087611198425293, 3.965449333190918, 2.5000901222229004, 3.1309781074523926, 2.265713691711426, 3.033586263656616, 2.9956352710723877, 2.1402223110198975, 1.0625516176223755, 0.13269169628620148, -0.4519107937812805, 4.085275173187256, 2.943455219268799, 1.3587406873703003, 0.6337225437164307, 4.183228015899658, 3.148148536682129, 2.5254170894622803, 0.5404440760612488, 1.4453608989715576, 1.6564768552780151, -0.4487656354904175, -0.9476009607315063, -0.09270484745502472, 0.045866623520851135, 0.2483207732439041, 0.1396970897912979, 2.2485430240631104, 3.079014778137207, -1.2493622303009033, -7.264638423919678, -1.4254909753799438, -2.8907840251922607, -2.5356640815734863, -6.107833385467529, -6.015527725219727, -5.6949782371521, -4.718616485595703, -12.774330139160156, -4.4238810539245605, -3.4205734729766846, -3.7510557174682617, -2.7808003425598145, -2.836054563522339, -2.5392425060272217, -3.7995500564575195, -2.768383502960205, -1.7824243307113647, -2.5556480884552, -2.804090738296509, -2.346342086791992, -2.9805829524993896, -2.7800140380859375, -2.4737284183502197, -0.5426251888275146, -1.8741132020950317, -1.5899451971054077, -2.1455368995666504, -1.5076541900634766, -2.534780979156494, -1.767467975616455, -0.6016656160354614, -0.7123382091522217, -0.7486628293991089, -0.754169225692749, 0.28897523880004883, -1.5247836112976074, -1.3225271701812744, -0.5810943841934204, -0.3371606469154358, 0.3082497715950012, -0.958335816860199, 3.1822664737701416, -0.7602589726448059, -0.2604738175868988, -0.7048048973083496, -0.4244652986526489, -0.7984673976898193, 0.3503713309764862, -0.26729831099510193, 0.13962948322296143, -0.4200628101825714, -0.373464971780777, -0.7399169206619263, -1.0845354795455933, -0.7398272156715393, 0.8153616786003113, 2.39160418510437, 0.5093047022819519, 1.5113933086395264, -0.033965103328228, 0.3592761754989624, 0.49540650844573975, -0.9408409595489502, -1.692526936531067, -2.3452839851379395, -1.5775525569915771, -1.105531096458435, -0.17043983936309814, -2.573122978210449, -6.150838375091553, -4.102262020111084, -2.51358962059021, -3.126319408416748, -2.367657423019409, -3.0993878841400146, -3.0342042446136475, -2.2070131301879883, -1.0939661264419556, -0.35196807980537415, 0.3115089237689972, -4.141249656677246, -2.8903026580810547, -1.332562804222107, -0.48742029070854187, -4.5644211769104, -3.011760711669922, -2.541569471359253, -0.5386564135551453, -1.9346240758895874, -1.5834821462631226, 0.4096720814704895, 1.0849721431732178, 0.17380240559577942, 0.027415642514824867, -0.030130337923765182, -0.15520454943180084, -2.299142360687256, -3.3818070888519287, 1.3688827753067017, 7.676735877990723, 1.605080246925354, 3.000534772872925, 2.678732395172119, 5.935696125030518, 6.06373405456543, 5.805450439453125, 4.718634128570557, 12.794767379760742, 4.594069957733154, 3.5172908306121826, 3.708810329437256, 2.7571866512298584, 2.722099781036377, 2.40950608253479, 3.974444627761841, 2.799480438232422, 1.6455305814743042, 2.7383944988250732, 2.6431944370269775, 2.323991298675537, 2.9935028553009033, 2.82285475730896, 2.345909595489502, 0.3938029110431671, 1.7474058866500854, 1.4374860525131226, 2.2240378856658936, 1.5731925964355469, 2.464531660079956, 1.7226593494415283, 0.5531126260757446, 0.5788571238517761, 0.5707744359970093, 0.8479485511779785, -0.35176020860671997, 1.6379313468933105, 1.2839455604553223, 0.7611449956893921, 0.47148340940475464, -0.17590422928333282, 0.9922735095024109, -3.0894510746002197, 0.6261608004570007, 0.4233037829399109, 0.9107146859169006, 0.22243081033229828, 0.7495966553688049, -0.5241858959197998, 0.2487483024597168, -0.10661022365093231, 0.4667392075061798, 0.3670872747898102, 0.5729408860206604, 1.0026434659957886, 0.585365355014801, -0.8662146925926208, -2.383124828338623, -0.34243500232696533, -1.4974608421325684, 0.04802016168832779, -0.48004579544067383, -0.5292894244194031, 0.989148736000061, 1.6366991996765137, 2.1623520851135254, 1.5623252391815186, 1.163589358329773, 0.1917525827884674, 2.7386865615844727, 6.100390911102295, 4.013089179992676, 2.4702577590942383, 2.9258551597595215, 2.3872175216674805, 2.9061832427978516, 3.0389115810394287, 2.267369270324707, 0.9224342107772827, 0.13882692158222198, -0.27043575048446655, 4.245561122894287, 3.0114283561706543, 1.367991328239441, 0.42549777030944824, 4.6043925285339355, 3.1355578899383545, 2.4280529022216797, 0.5863694548606873, 1.4754598140716553, 1.5698059797286987, -0.4823726713657379, -0.9748214483261108, -0.2041388303041458, 0.08785350620746613, 0.199985533952713, 0.17536546289920807, 2.2290570735931396, 3.3302524089813232, -1.426261067390442, -7.453845500946045, -1.5029581785202026, -2.8574960231781006, -2.51312518119812, -6.05672025680542, -6.044571399688721, -5.634576797485352, -4.779540061950684, -12.704353332519531, -4.59316873550415, -3.5367848873138428, -3.756740093231201, -2.6343228816986084, -2.704092025756836, -2.5194485187530518, -3.8116281032562256, -2.658090353012085, -1.6250009536743164, -2.5274710655212402, -2.6961114406585693, -2.4041428565979004, -3.039490222930908, -4.3730998039245605, -2.557791233062744, -0.40343430638313293, -1.7577539682388306, -1.4783707857131958, -2.2146480083465576, -1.6547660827636719, -2.558105707168579, -1.7695081233978271, -0.510453999042511, -0.5691689848899841, -0.7173045873641968, -0.6408175230026245, 0.23928460478782654, -1.5225844383239746, -1.1491734981536865, -0.6912940740585327, -0.26458418369293213, 0.3127172291278839, -0.940774142742157, 3.005188465118408, -0.6097161173820496, -0.35493654012680054, -0.8616894483566284, -0.28624242544174194, -0.7830718755722046, 0.3505081832408905, -0.34502825140953064, 0.2634536921977997, -0.4759857952594757, -0.2661202847957611, -0.541718065738678, -0.9805392026901245, -0.7372620701789856, 0.8859495520591736, 2.363197088241577, 0.4431571066379547, 1.67885422706604, -0.16037490963935852, 0.5349763035774231, 0.3455374836921692, -1.0929559469223022, -1.7298650741577148, -2.2176284790039062, -1.5353748798370361, -1.5175400972366333, -0.5990257859230042, -2.6407501697540283, -6.11340856552124, -4.0411529541015625, -2.5640499591827393, -3.0219898223876953, -2.3999757766723633, -3.000324010848999, -2.844813823699951, -2.1008665561676025, -0.9790552854537964, -0.23401658236980438, 0.3395158052444458, -4.146481513977051, -2.998228073120117, -1.1968015432357788, -0.5384282469749451, -4.567948818206787, -3.1174044609069824, -2.522387981414795, -0.570985734462738, 1.9201645851135254, 1.625332236289978, -0.4284254312515259, -0.9992616772651672, -0.15117469429969788, 0.019743775948882103, 0.09398511052131653, 0.2782013416290283, 2.1579794883728027, 3.469564199447632, -1.3766605854034424, -7.3433756828308105, -0.28918886184692383, -2.934257745742798, -2.506077766418457, -5.9221601486206055, -5.87907075881958, -5.6570539474487305, -4.644432067871094, -12.650253295898438, -4.3996124267578125, -3.56400203704834, -3.7642898559570312, -2.7329769134521484, -2.7007155418395996, -2.4277775287628174, -4.000192642211914, -2.8354525566101074, -1.6353849172592163, -2.692246437072754, -2.6824562549591064, -2.333967685699463, -2.899958372116089, -2.886532783508301, -2.5179288387298584, -0.5252694487571716, -1.7582615613937378, -1.5399903059005737, -2.2383580207824707, -1.4774408340454102, -1.805370569229126, -1.7390944957733154, -0.674606204032898, -0.7607637047767639, -0.7686880826950073, -0.4594736695289612, 0.4311450123786926, -1.4034266471862793, -1.3378093242645264, -0.6132334470748901, -0.34021979570388794, 0.28610631823539734, -0.8854137659072876, 2.952155113220215, -0.7034514546394348, 0.01109424326568842, -0.8532021045684814, -0.31980711221694946, -0.6572751402854919, 0.34408852458000183, -0.2943135201931, 0.15395930409431458, -0.4090576469898224, -0.3246546685695648, -0.5836114883422852, -0.8692274689674377, -0.6687362790107727, 0.8390278220176697, 2.4083733558654785, 0.49250155687332153, 1.5603394508361816, -0.037518538534641266, 0.36591941118240356, 0.47634559869766235, -0.912810206413269, -1.700984001159668, -2.164130687713623, -1.4122774600982666, -1.2411245107650757, -0.2530621886253357, -2.6884801387786865, -6.040997505187988, -4.175899982452393, -2.5609495639801025, -3.0327723026275635, -2.379563093185425, -2.868626356124878, -2.8405611515045166, -2.1093356609344482, -1.0403660535812378, -0.11491069942712784, 0.3772459030151367, -4.0683913230896, -2.9354939460754395, -1.2130905389785767, -0.506747841835022, -4.071317195892334, -3.0696909427642822, -2.5421555042266846, -0.3517703413963318, -1.0184422731399536, 1.6149846315383911, -1.1489373445510864, 2.899430274963379, 0.9671260714530945]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (0.8, 1.37)}}, 'et0_eta3': {'discriminator': {'threshold': -0.31500081177800893, 'nodes': [100, 7, 1], 'bias': [-0.2698359191417694, -0.021040206775069237, -0.10066322982311249, -0.008700813166797161, -0.0809217244386673, -0.09307112544775009, 0.002951504662632942, -0.055201806128025055], 'weights': [0.20225106179714203, -0.9006369709968567, 0.03466144949197769, -0.2889445722103119, 0.07475759088993073, -0.13977815210819244, 0.04881351813673973, 0.02957393415272236, -0.24632103741168976, -0.4430311918258667, -3.228940725326538, 0.20872461795806885, 1.6354045867919922, -6.902615547180176, 1.333670735359192, 0.8173291087150574, 0.44339412450790405, 0.9221566319465637, 0.30203866958618164, 0.8357586860656738, -374.33819580078125, -100.91007232666016, 0.40322041511535645, -105.98914337158203, 35.8812255859375, -291.89166259765625, 0.17422837018966675, -76.4021987915039, -491.6601257324219, -0.16425257921218872, -0.13429200649261475, 0.20934633910655975, 0.01121070422232151, 0.22853007912635803, 0.014218064956367016, 0.10473887622356415, -0.03651595488190651, 0.07260922342538834, -0.34782665967941284, -0.009246349334716797, -0.039252765476703644, -0.07105270773172379, -0.06934697180986404, 0.10464552789926529, 0.1353124976158142, -0.13408182561397552, 0.031428251415491104, -0.00043547828681766987, -0.12158826738595963, 0.16264048218727112, -0.0336020365357399, 56.602081298828125, -0.14486771821975708, 25.081844329833984, -0.14430655539035797, -0.028534093871712685, 0.12397117167711258, 0.4500467777252197, -0.18105795979499817, 0.0884188562631607, -0.08558822423219681, -0.01410595327615738, -0.2034880816936493, -0.00359709863550961, -0.023490779101848602, -0.13555382192134857, -0.19149203598499298, -0.0329434908926487, -0.03576066344976425, 0.1175893172621727, -2.5838210582733154, -0.3766530454158783, 0.0775269940495491, -0.18933957815170288, 0.0820411816239357, 0.03480014577507973, 0.2163989096879959, 0.0517808236181736, -0.10070717334747314, 12.077496528625488, 4.14965295791626, -0.1262219250202179, 86.37357330322266, -4.0285162925720215, 0.25238341093063354, 0.173043355345726, -0.4014592170715332, 0.2288466840982437, -0.07247157394886017, 0.4948960244655609, -0.04976343736052513, -0.3145294189453125, 0.2821393609046936, 6.633347034454346, -0.10303610563278198, -0.18202932178974152, -0.31121909618377686, -0.16638228297233582, -0.3183334171772003, 51.533748626708984, -1.0530906915664673, -0.9841030836105347, 0.29775214195251465, 0.5295977592468262, 0.8868358135223389, 0.3516679108142853, 0.21565701067447662, 0.0794435515999794, -2.2470850944519043, -1.9531877040863037, -2.1994662284851074, 0.20457442104816437, 2.939715623855591, 0.3507762849330902, 7.303609848022461, 4.734809875488281, 1.9167451858520508, 5.447176933288574, 1.738074541091919, 4.827472686767578, 1.8147984743118286, 1.2954773902893066, 2.951904773712158, 2.7711808681488037, 5.329275608062744, 1.5482845306396484, 1.5833131074905396, 2.7048208713531494, 1.9742443561553955, 1.1318703889846802, 1.0929538011550903, 1.749925136566162, 0.7001661062240601, 2.305717945098877, 0.05212286114692688, 1.4895020723342896, 0.3556216359138489, 0.9450576901435852, -0.6107288002967834, 0.649321973323822, -0.023156901821494102, -0.1220313087105751, 0.6576177477836609, 0.4568925201892853, 0.5959261655807495, -0.33617663383483887, 2.443324327468872, 0.10611805319786072, 0.24280813336372375, 0.5849461555480957, -0.1503051519393921, 0.7810186743736267, -0.027534402906894684, 0.4089702367782593, 0.014316439628601074, 0.3819413185119629, 0.446049302816391, 0.7746580243110657, -0.421926349401474, 0.5414602160453796, -0.21584512293338776, 0.01064643356949091, -0.4630609154701233, 0.42981064319610596, -0.28911176323890686, 0.13013294339179993, -0.663794755935669, 0.5548304915428162, -0.03197551518678665, 0.6406247019767761, -3.3596580028533936, -1.2676362991333008, -0.6108476519584656, -0.19657936692237854, 1.2165848016738892, 1.669739842414856, 1.698229193687439, 1.3538898229599, 0.702858030796051, 0.3418480157852173, 6.1677141189575195, 4.947031497955322, 2.064474105834961, 1.4611104726791382, 1.4244046211242676, 1.2800779342651367, 0.5524511933326721, 1.1216765642166138, 0.5202028751373291, 0.9660008549690247, 0.0637206956744194, 0.18642033636569977, 2.2422211170196533, 0.9906512498855591, 0.08027803152799606, -0.4177014231681824, -0.23565077781677246, 0.1196693554520607, 0.06809215992689133, 4.783222198486328, 1.1031341552734375, 0.9078258872032166, -0.22757139801979065, -0.47363269329071045, -0.6869458556175232, -0.3318561613559723, -0.33094659447669983, -0.29374340176582336, 2.0499820709228516, 2.239422559738159, 2.078904390335083, -0.21715745329856873, -1.245003581047058, -0.4031929075717926, -6.946435451507568, -4.712887287139893, -1.9018898010253906, -5.241952896118164, -1.8523764610290527, -4.795210361480713, -1.8940085172653198, -1.2504463195800781, -7.217137813568115, -2.7899413108825684, -5.231794357299805, -1.6275787353515625, -1.6051292419433594, -3.8509366512298584, -3.8491742610931396, -1.1744351387023926, -0.8577916026115417, -1.7116165161132812, -0.36539626121520996, -4.793726921081543, -0.08205004781484604, -1.5022155046463013, -0.5438974499702454, -0.7923613786697388, 0.5673443078994751, -0.7924880385398865, 0.11560714989900589, 0.02123773843050003, -0.8034487366676331, -0.5616395473480225, -0.5233768224716187, -0.2722334861755371, -2.5108327865600586, -0.5720518231391907, -0.4061076045036316, -0.7818689346313477, 0.019294343888759613, -0.7768457531929016, 0.13501304388046265, -0.47803908586502075, -0.029811006039381027, -0.42356646060943604, -0.34774869680404663, -0.7984080910682678, 0.3588971793651581, -0.6726347804069519, -0.5343213081359863, -0.4000171422958374, 0.357125461101532, -0.46829697489738464, 0.39098119735717773, -0.2298913598060608, 0.8594713807106018, -0.7110618352890015, -0.061636701226234436, -0.6693058609962463, 1.1489728689193726, 0.3318289518356323, 0.7837057113647461, 0.1749361902475357, -1.3185076713562012, -1.516122579574585, -1.7037216424942017, -1.2789870500564575, -0.4620683789253235, -0.26407337188720703, -6.04487419128418, -4.833531856536865, -1.9617811441421509, -1.4752931594848633, -1.3945602178573608, -1.2135614156723022, -0.3616400957107544, -0.9785630106925964, -0.7223881483078003, -1.228663444519043, -0.06690476834774017, -0.1908154934644699, -2.6066627502441406, -0.9647290706634521, -0.10820335149765015, 0.2571292519569397, -0.1646440029144287, 0.03318246826529503, -0.053327761590480804, -4.849867343902588, -0.9206339120864868, -0.9598978757858276, 0.002367813605815172, 0.6184605360031128, 0.7723608613014221, 0.20745083689689636, 0.23745183646678925, 0.20646026730537415, -2.1763594150543213, -2.0287892818450928, -2.282665967941284, 0.19380436837673187, 1.2973726987838745, 0.42046311497688293, 6.772983551025391, 4.822548866271973, 1.8652130365371704, 5.3888702392578125, 1.7751623392105103, 4.914341926574707, 1.8140294551849365, 1.39537513256073, 1.8427232503890991, 2.7229926586151123, 2.17301607131958, 1.5756100416183472, 1.5816236734390259, 2.6944282054901123, 1.9131555557250977, 1.321346402168274, 0.9164560437202454, 1.57354736328125, 0.4657553434371948, 2.363318920135498, 0.21329212188720703, 1.4519634246826172, 0.5176462531089783, 0.8253650665283203, -0.7699162364006042, 0.6339988708496094, -0.10295349359512329, -0.1282825767993927, 0.6225374937057495, 0.3867333233356476, 0.6584811210632324, 0.10895311087369919, 2.4481003284454346, 0.1392822414636612, 0.39405396580696106, 0.6399299502372742, -0.027020787820219994, 0.6829317808151245, -0.1337304562330246, 0.3378160893917084, 0.11674128472805023, 0.3012418746948242, 0.38937267661094666, 0.8625653386116028, -0.46745651960372925, 0.6723899245262146, -0.18008916079998016, 0.0021010921336710453, -0.2173125147819519, 0.5533600449562073, -0.25419265031814575, 0.34476810693740845, -0.8264703750610352, 0.5261073708534241, -0.023064417764544487, 0.5674001574516296, -3.2025935649871826, -1.2528597116470337, -0.4238010048866272, -0.0675603374838829, 1.3090697526931763, 1.6422717571258545, 1.7788664102554321, 1.2009772062301636, 0.5008041262626648, 0.3263235092163086, 6.060380458831787, 4.866382122039795, 1.925684928894043, 1.4962143898010254, 1.5213629007339478, 1.2689807415008545, 0.49399247765541077, 0.9131807684898376, 0.6098441481590271, 1.0815221071243286, 0.2259044200181961, 0.06316171586513519, 2.099392890930176, 1.1164296865463257, 0.06768371164798737, -0.2768418788909912, 0.19758757948875427, 0.1930726021528244, -0.09152580052614212, 4.797698497772217, 1.0277148485183716, -2.22694993019104, -0.04415075108408928, -0.12518760561943054, 0.16564080119132996, -0.05261689051985741, -0.03446321561932564, 0.08158248662948608, -0.5113720893859863, -0.3788033127784729, -0.5971873998641968, 0.13953155279159546, 4.506430625915527, 0.2659728229045868, 1.3502607345581055, 0.9779933094978333, 0.351772278547287, 0.9250448942184448, 0.41677066683769226, 0.9519994854927063, 0.2502197027206421, -9.120316505432129, 0.3444167375564575, 0.3123454451560974, 0.40910106897354126, 0.0916995108127594, 0.2373439073562622, 0.43546077609062195, -14.573567390441895, 0.15171678364276886, -0.055674199014902115, 0.3707161545753479, -0.05302024260163307, 0.358106404542923, -0.07901870459318161, 0.2045583873987198, 0.0697036162018776, 0.10527680069208145, -0.2687459886074066, 0.15632261335849762, -0.11626090854406357, -0.14377674460411072, 0.05710787698626518, 0.19631843268871307, 0.18389847874641418, -0.08253363519906998, 0.10760928690433502, -0.2127053141593933, 0.07326456159353256, 0.040400728583335876, -0.06481891125440598, 0.23098519444465637, 0.05147608742117882, 0.1465410590171814, 0.0579967275261879, 0.10700484365224838, 0.14924295246601105, 0.037807874381542206, -0.12092505395412445, 0.21576111018657684, -0.09722263365983963, 0.0056007616221904755, -0.03826138749718666, 0.06926880776882172, 0.01470389124006033, 0.09834640473127365, -0.11117671430110931, 0.04086750000715256, 0.06830863654613495, 0.18669994175434113, -1.8611273765563965, -0.19118912518024445, -0.00022084862575866282, -0.43339014053344727, 0.2761912941932678, 0.18247313797473907, -0.3071092367172241, -0.030098382383584976, 0.15324388444423676, 0.07706119120121002, 1.089043378829956, -0.3839241862297058, 0.4835626780986786, -4.151394367218018, 0.14189095795154572, 0.32883313298225403, 0.05562252178788185, 0.3006491959095001, 0.15693596005439758, 0.10109970718622208, 0.07931047677993774, -0.059077147394418716, 0.3848729133605957, 0.1263601928949356, -0.020419638603925705, -0.11904185265302658, -0.20301781594753265, -0.07345139235258102, -0.012471398338675499, 0.9680086970329285, -0.9358425736427307, -0.8182768821716309, 0.32609692215919495, 0.2679734230041504, 0.9349111914634705, 0.23690611124038696, 0.19807754456996918, 0.25633737444877625, -2.16581392288208, -2.012897253036499, -2.118820905685425, 0.3466905951499939, 2.1918342113494873, 0.469011127948761, 7.494755744934082, 4.930378437042236, 1.8796205520629883, 5.377964496612549, 1.7996736764907837, 4.8660888671875, 1.8072516918182373, 1.36774480342865, 2.0416035652160645, 2.8872687816619873, 2.3359196186065674, 1.5760948657989502, 1.7236955165863037, 1.9696800708770752, 1.7144217491149902, 1.3210614919662476, 0.9248697757720947, 1.7599890232086182, 0.8116555213928223, 2.4698283672332764, 0.2059156745672226, 1.3981654644012451, 0.41586068272590637, 0.8404405117034912, -0.7753180861473083, 0.6789394617080688, 0.022743070498108864, 0.010476325638592243, 0.6788951754570007, 0.37160664796829224, 0.6302220821380615, -0.3735024034976959, 2.5426855087280273, 0.11551742255687714, 0.3873821198940277, 0.7570158839225769, -0.11191364377737045, 0.6684703826904297, -0.034952033311128616, 0.4980826675891876, 0.033552736043930054, 0.451158732175827, 0.3124142587184906, 0.6837500333786011, -0.5132716298103333, 0.6350975632667542, -0.3610364496707916, 0.0016025649383664131, -0.3483062982559204, 0.6467903256416321, -0.3843829035758972, 0.15782345831394196, -0.8129379153251648, 0.5089651346206665, 0.14174644649028778, 0.6021339893341064, -3.525460720062256, -1.2975656986236572, -0.470624715089798, -0.08992313593626022, 1.3491078615188599, 1.552371621131897, 1.755676031112671, 1.3366750478744507, 0.6237494349479675, 0.29452434182167053, 6.071795463562012, 4.917517185211182, 2.1172122955322266, 1.364637851715088, 1.4950215816497803, 1.3792357444763184, 0.5199951529502869, 1.0476226806640625, 0.5393630862236023, 1.0928481817245483, 0.08544348925352097, 0.04950239509344101, 2.109650135040283, 1.1252402067184448, -0.09029020369052887, -0.39486026763916016, -0.3239646255970001, 0.07521496713161469, 0.03412073478102684, 4.873011589050293, -0.8586660623550415, -1.0525412559509277, 0.07509074360132217, 0.4819488525390625, 0.7972657084465027, 0.13409405946731567, 0.10143954306840897, 0.31604617834091187, -2.063786745071411, -2.093536138534546, -2.2159135341644287, 0.26373958587646484, 1.229822039604187, 0.3812316358089447, 6.935065746307373, 4.815906524658203, 1.8225938081741333, 5.333498954772949, 1.7477914094924927, 4.78044319152832, 1.9142042398452759, 1.3428295850753784, 1.9110363721847534, 2.8914854526519775, 2.352703809738159, 1.6458407640457153, 1.5780705213546753, 2.5145366191864014, 1.8319544792175293, 1.3093864917755127, 0.9795845150947571, 1.798264503479004, 0.35299715399742126, 2.2552196979522705, 0.05755537748336792, 1.3722851276397705, 0.3443555533885956, 0.8321239948272705, -0.7481610178947449, 0.8172251582145691, -0.16909922659397125, -0.0316196084022522, 0.6316993236541748, 0.5031779408454895, 0.4719659686088562, -0.40451106429100037, 2.313936471939087, 0.1540975123643875, 0.31803032755851746, 0.722418487071991, 0.09785754233598709, 0.6992901563644409, -0.11194178462028503, 0.2870538532733917, 0.0576513297855854, 0.25876832008361816, 0.4169984757900238, 0.8080670833587646, -0.4458756148815155, 0.6269686818122864, -0.2547069787979126, 0.09498245269060135, -0.28197652101516724, 0.6099480390548706, -0.2612399458885193, 0.1162339448928833, -0.8577127456665039, 0.5897204279899597, -0.0008873241604305804, 0.5660701394081116, -3.1996941566467285, -1.2886680364608765, -0.5724131464958191, -0.04713967815041542, 1.3978859186172485, 1.5510962009429932, 1.7785773277282715, 1.147539496421814, 0.6683967709541321, 0.2418586015701294, 6.097591400146484, 4.914902210235596, 2.101524829864502, 1.5633659362792969, 1.52678644657135, 1.1417715549468994, 0.5268220901489258, 0.9385673403739929, 0.6720860600471497, 0.8914452791213989, 0.21402402222156525, 0.04264415055513382, 2.2466981410980225, 1.0317379236221313, 0.11190563440322876, -0.38053470849990845, 0.12831388413906097, -0.03789529576897621, 0.11234768480062485, 4.994553565979004, -0.1770661175251007, -0.5325038433074951, 0.8114240169525146, -0.9086681604385376, -0.36800312995910645, -0.8545414805412292, -1.0581774711608887]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (0, 20), 'etaBin': (1.54, 2.5)}}, 'et3_eta3': {'discriminator': {'threshold': 0.35999871492385865, 'nodes': [100, 5, 1], 'bias': [0.5159038305282593, -0.013890129514038563, -0.14351433515548706, -0.06087241694331169, -0.035346969962120056, -0.11732066422700882], 'weights': [-8.92424201965332, -14.35389518737793, -3.5922393798828125, 0.5395880341529846, -0.2549460828304291, 0.19084329903125763, -0.2808282673358917, -0.3631875514984131, -0.7719464302062988, -0.5012274980545044, 0.4520082473754883, 14.744214057922363, 1.4734541177749634, 0.09389933943748474, 1.219815969467163, 0.8421317338943481, 0.36871182918548584, 2.3683958053588867, 0.8821505308151245, 2.182751178741455, 0.773385763168335, 0.5395814180374146, 0.52494877576828, 0.9898393750190735, 0.6274219751358032, 0.8716437816619873, 0.4428722560405731, 1.572168231010437, 0.5276930332183838, 0.521804928779602, 0.4996563494205475, 1.8987674713134766, 0.5535033941268921, 0.5482311844825745, 46.47129821777344, 0.6383989453315735, 0.46053922176361084, 0.49767550826072693, 0.5004040598869324, 0.6187031269073486, 0.40190207958221436, 1.501409649848938, 0.47336840629577637, -65.14677429199219, 48.5474739074707, 0.5614616274833679, 0.4142259359359741, 0.5373347401618958, -1.566516637802124, 0.5767366290092468, 0.11587122827768326, -88.1963882446289, 0.21070167422294617, 0.3519592583179474, -0.1482011377811432, 0.18854816257953644, -0.58920818567276, 0.4348776936531067, -0.16200405359268188, 0.4969814121723175, -0.19106420874595642, 0.24878983199596405, -0.07973922044038773, -0.4645341634750366, -0.2678266167640686, 0.2965974807739258, 73.08518981933594, -0.25330105423927307, -2.0161304473876953, -0.5542007684707642, 0.09175889194011688, 0.4748390316963196, 4.518786430358887, -0.4171540141105652, 0.5947842001914978, 1.0116089582443237, 6.692963123321533, 4.287669658660889, 0.5925718545913696, 0.19356606900691986, 0.8634646534919739, 189.3330078125, 3.5947797298431396, 0.9175381064414978, 0.8372741341590881, 21.873180389404297, 62.2232666015625, 54.95687484741211, -9.891582489013672, -6.173172473907471, -0.7017567157745361, -12.107324600219727, -2.0871500968933105, 0.5723487138748169, 0.05632268637418747, 0.5136232376098633, 1.210272192955017, 0.08626605570316315, -0.27492398023605347, -1.8608883619308472, -1.069946527481079, -0.6936960220336914, 0.7365202307701111, 1.546463966369629, -0.4239451289176941, 0.8776395916938782, -0.5269442200660706, -0.041200943291187286, -1.6542311906814575, -1.5785257816314697, -0.5987526774406433, 1.5775848627090454, 0.4962875545024872, 0.31063947081565857, 3.2284812927246094, 2.8709609508514404, 1.9071259498596191, 5.294119834899902, 2.4774889945983887, 3.8454742431640625, 1.8301663398742676, 1.4755433797836304, 1.4741829633712769, 1.5041122436523438, 5.954089641571045, 3.0636110305786133, 1.4296730756759644, 1.675854206085205, 1.4774678945541382, 3.569460868835449, 0.1801801323890686, 3.2323882579803467, 1.336500644683838, 2.6678333282470703, 1.4733026027679443, 1.3343086242675781, 1.4705220460891724, 1.984933614730835, 1.0672568082809448, 3.389904499053955, -0.23274369537830353, 2.797027587890625, 0.9999473094940186, 1.198522686958313, 0.704962968826294, 1.4565412998199463, 1.1679123640060425, -0.5551745891571045, -1.7960987091064453, 2.2441368103027344, 0.40111762285232544, -0.49642348289489746, 0.7734733819961548, 1.341956377029419, 0.06617511063814163, 0.6418896317481995, -0.4321531355381012, 1.1610125303268433, -0.03851023688912392, 1.2840443849563599, -0.21741485595703125, 0.36016517877578735, 0.4743955433368683, -0.7105668783187866, -0.09740454703569412, 0.7039214372634888, -0.27873697876930237, -0.39580559730529785, -0.8952370285987854, -0.9746796488761902, 0.462026447057724, 1.1764204502105713, -0.619096040725708, -0.30376991629600525, 1.3786150217056274, 1.437181830406189, 1.7358534336090088, 1.3875480890274048, 1.0958871841430664, 0.35188084840774536, 0.8891122341156006, 3.9632816314697266, 6.857825756072998, 1.146546721458435, 2.0841546058654785, 2.112961769104004, 0.3354015648365021, 1.4218417406082153, 0.6604508757591248, 1.4536211490631104, 0.3090585172176361, 0.200468510389328, 3.744932174682617, 1.5200996398925781, 0.46393081545829773, 1.4258904457092285, -1.3119555711746216, 0.2614569664001465, -0.33304330706596375, -4.066699028015137, -973.1559448242188, 3.3467745780944824, -1.0383483171463013, -1.4209433794021606, 49.040775299072266, -1.0063509941101074, -14.254961967468262, 0.011091030202805996, 3.3505191802978516, 12.669255256652832, 1.293007731437683, -1.4403539896011353, -0.35303956270217896, 13.725162506103516, -3.2876007556915283, -2.262681245803833, -1.8829076290130615, 179.36973571777344, -2.442866563796997, 30.570972442626953, -1.9086859226226807, 0.5755576491355896, -1.3558117151260376, -1.5759135484695435, -2.749817132949829, -3.0641396045684814, -1.3838152885437012, -1.4915021657943726, -1.3418519496917725, -3.343719720840454, 1.986281156539917, -3.031704902648926, -1.1426877975463867, -2.207475185394287, -1.4450491666793823, -1.2727844715118408, -1.4799542427062988, -1.4137312173843384, -0.5670992136001587, -3.2650339603424072, 7.378058433532715, -2.9638445377349854, -1.081111192703247, -1.4430744647979736, -0.12499462813138962, -1.3237614631652832, -1.2641364336013794, 25.407005310058594, 4.2790398597717285, -2.311258554458618, -0.5953714847564697, 0.41318225860595703, -0.7834321856498718, -1.1685887575149536, 0.010291636921465397, -0.6072435975074768, 0.9716203212738037, -1.2918939590454102, 0.2121473252773285, -1.2694240808486938, 0.3396367132663727, -0.41624337434768677, -83.09402465820312, 0.7709457278251648, -37.80040740966797, -0.7723330855369568, 0.23276476562023163, 0.30428317189216614, 1.0283234119415283, 1.0044687986373901, -0.6878232955932617, -1.282426118850708, 0.9166584014892578, 0.30262649059295654, -1.3853543996810913, -1.4059345722198486, -1.9089149236679077, -1.4865010976791382, -1.0912668704986572, -0.3329261541366577, 5.820478439331055, -1.8723522424697876, 226.25360107421875, -1.0601497888565063, -2.2278172969818115, -1.8809983730316162, 18.64459991455078, -1.324453353881836, -185.19593811035156, -1.604863166809082, -0.3450887203216553, -0.23873785138130188, -4.564448833465576, 8.61242961883545, -0.44296693801879883, -2.0209810733795166, 1.2588388919830322, 18.957509994506836, 0.22489280998706818, 2.67502760887146, -0.2524420917034149, -1.750198245048523, -0.0713535025715828, 0.38324564695358276, -0.1691664308309555, 0.20342226326465607, -0.17250482738018036, -0.0994173139333725, -0.4241909980773926, -0.6622026562690735, -0.2032008022069931, 7.643695831298828, 0.36516329646110535, 0.022505857050418854, 1.0914068222045898, 0.6613244414329529, 0.5960760116577148, 1.1830830574035645, 0.9505797624588013, -0.2137775868177414, 0.3852855861186981, 0.20131807029247284, 0.37725454568862915, 0.2860073149204254, 1.1712936162948608, 0.7631077766418457, 0.36484646797180176, 0.9126747250556946, 0.2872623801231384, 0.6495153903961182, -0.9618628025054932, 0.7487784028053284, 0.23168718814849854, 0.7674897313117981, 0.385774165391922, 0.5935032367706299, 0.2931688129901886, 0.4898456633090973, -0.4582892954349518, 0.7778542637825012, -1.5934091806411743, 0.6740440726280212, -0.1486721932888031, 0.30820193886756897, 0.021947376430034637, 0.3179631233215332, 0.31545159220695496, -1.4557726383209229, -0.49720868468284607, 0.5027399063110352, 0.10336340218782425, 0.011729179881513119, 0.23809954524040222, 0.22493137419223785, -0.03418179601430893, 0.05231905356049538, -0.09845005720853806, 0.14920184016227722, 0.13844291865825653, 0.294969379901886, -0.11790864169597626, 0.0743807926774025, 0.11044170707464218, 0.019919605925679207, -0.13124306499958038, 0.11282692849636078, 0.018924791365861893, -0.06314593553543091, -0.28759080171585083, -0.31913653016090393, 0.08792795985937119, 0.2088247835636139, 0.5437398552894592, -0.7424893975257874, 0.22678695619106293, 0.4331795573234558, 0.6034470796585083, 0.38848546147346497, 0.30855226516723633, 0.09634286165237427, -6.851980686187744, 2.4281129837036133, 0.5386146306991577, -0.0704117864370346, 0.4102773368358612, 0.5053914785385132, -0.66060471534729, 0.3391190767288208, 0.26782163977622986, 0.2698085308074951, -0.07950277626514435, 0.15187831223011017, 0.37309354543685913, 0.33137819170951843, 0.16375945508480072, 0.28786933422088623, -0.3265060782432556, 0.09181403368711472, -0.15623581409454346, -0.8607839941978455, 1.155824065208435, 0.7093499898910522, -0.8884782791137695, -1.3143787384033203, 0.16392965614795685, -1.4178332090377808, 0.29729264974594116, 0.15227840840816498, 1.5919283628463745, 1.741304874420166, 0.5151142477989197, -1.4512939453125, -0.5040929913520813, -0.2583470046520233, -3.2900969982147217, -2.8938028812408447, -1.691943883895874, -5.340921401977539, -2.6091971397399902, -3.921100616455078, -1.714521050453186, -1.2627499103546143, -1.4050501585006714, -3.1522951126098633, -5.809540271759033, -3.2042012214660645, -1.4069846868515015, -1.6261558532714844, -1.6122939586639404, -3.523986577987671, -0.2875919044017792, -3.206855535507202, -1.2767186164855957, -2.688906192779541, -1.4667103290557861, -2.3743109703063965, -1.4705839157104492, -1.9569519758224487, -1.1054956912994385, -3.44683575630188, 0.1697864979505539, -3.02618145942688, -1.019812822341919, -1.266537070274353, -0.8594977855682373, -1.4542962312698364, -1.2575082778930664, -0.39963796734809875, 1.6845989227294922, -2.2143306732177734, -0.5011420845985413, 0.5701939463615417, -0.7805647850036621, -1.3741850852966309, -0.1352086067199707, -0.7554540038108826, 0.9084997177124023, -1.1479547023773193, 0.2256636768579483, -1.2273677587509155, 0.274618536233902, -0.27907174825668335, -0.3908369541168213, 0.5765394568443298, 0.15607663989067078, -0.8647779226303101, 0.2562597095966339, 0.45738667249679565, 1.0133880376815796, 0.9238247275352478, -0.4612041413784027, -1.3823575973510742, 0.7870680689811707, 0.41245537996292114, -1.3887417316436768, -1.3906465768814087, -1.9199610948562622, -1.4885333776474, -1.3261096477508545, -0.32818204164505005, -0.9589434862136841, -4.042566776275635, -7.011380672454834, -1.224815011024475, -1.9445774555206299, -2.026455879211426, -0.274452805519104, -1.2027039527893066, -0.811894953250885, -1.4582953453063965, -0.2804015874862671, -0.12942883372306824, -3.720458984375, -1.6627962589263916, -0.4425341784954071, -1.2907965183258057, 1.2594455480575562, -0.26118844747543335, 0.2786886394023895, 3.8813130855560303, -0.7261561751365662, -3.593240976333618, 0.3302586078643799, -1.7936766147613525, 4.231797218322754]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (1.54, 2.5)}}, 'et0_eta2': {'discriminator': {'threshold': 0.1499989151954651, 'nodes': [100, 7, 1], 'bias': [0.02897539548575878, -0.060969915241003036, 0.06634701788425446, 0.0544699989259243, -0.09812245517969131, -0.05099761113524437, 0.07674534618854523, 0.15951259434223175], 'weights': [-0.31444844603538513, -0.007974973879754543, 0.9767981171607971, 0.35912060737609863, 0.35773709416389465, -0.5487702488899231, 0.09982731938362122, 0.12788008153438568, 1.032709002494812, -1.904083013534546, -2.248551607131958, -1.6217820644378662, -0.23122698068618774, 0.29727718234062195, -0.7643448710441589, -0.6755456328392029, 2.9860918521881104, -0.6813769340515137, -0.7880873084068298, 0.0075999656692147255, 0.6813167333602905, -0.06051838770508766, 0.052355457097291946, 0.08054331690073013, 2.4868640899658203, 0.5442368984222412, 0.2716333568096161, 1.094430685043335, 2.226045608520508, 0.7167837023735046, 1.3470226526260376, -0.8734205961227417, -2.338249683380127, 0.5108520984649658, 0.9323012232780457, 0.8195506930351257, 1.7410813570022583, 0.2120186984539032, 0.9207930564880371, -1.0934228897094727, 0.3437107503414154, 0.5938838124275208, 0.6561219692230225, 1.4730861186981201, 0.8714040517807007, 0.8451336026191711, 0.66062331199646, 0.505739152431488, 1.5044615268707275, -1.7701197862625122, -0.028650322929024696, 0.5727477669715881, -3.205003023147583, 0.7880567312240601, 0.7176578044891357, 1.824846625328064, 1.4142401218414307, 0.8913534879684448, -1.9818415641784668, -2.3631978034973145, -0.07163838297128677, 0.33649447560310364, 0.4653497338294983, 0.31566813588142395, 0.37186628580093384, 0.4869270622730255, 0.04481872171163559, -6.84542989730835, -0.46517127752304077, -0.7622383236885071, 0.5973423719406128, 0.010064831003546715, -0.05368892475962639, -0.07345297932624817, 1.43589448928833, 0.4998248219490051, 0.8684946894645691, 0.5807375907897949, 0.3104188144207001, 0.10302061587572098, -0.2189861536026001, -0.372873455286026, 0.3355155885219574, 0.6526758074760437, -1.0521202087402344, -4.109001159667969, -0.13541299104690552, -0.18932859599590302, -0.6796913146972656, 0.5462668538093567, -0.1074884757399559, -0.18989868462085724, 0.814207911491394, -0.1715472787618637, 0.6011205315589905, 0.6105196475982666, 0.06973204761743546, -0.09578269720077515, -0.31661465764045715, 0.617203950881958, -0.19265924394130707, 0.12053674459457397, 0.974147617816925, 0.1614314615726471, 0.4581965506076813, -0.7592872977256775, 0.19167475402355194, 0.21580862998962402, 1.0244218111038208, -1.6844286918640137, -2.3509373664855957, -1.646841049194336, 0.5595585703849792, 0.3063804805278778, -0.7776933312416077, -0.7148526310920715, 3.0630366802215576, -0.749292254447937, -0.6619084477424622, 0.17203514277935028, 0.8771023750305176, -0.08928745239973068, 0.11115219444036484, 0.23463912308216095, 2.544220447540283, 0.5153621435165405, 0.3094092607498169, 1.1637088060379028, 2.124666690826416, 0.7888297438621521, 1.2978804111480713, -0.8465616703033447, -2.3852148056030273, 0.71919184923172, 1.0152634382247925, 0.8795061707496643, 1.7327245473861694, 0.38038262724876404, 0.6871808767318726, -1.1165032386779785, 0.48346737027168274, 0.5054036378860474, 0.6144312620162964, 1.4871852397918701, 0.7855807542800903, 0.7836456894874573, 0.6418640613555908, 0.5033224821090698, 1.3686096668243408, -1.9102201461791992, -0.1144571378827095, 0.3851611912250519, -3.126352548599243, 0.754887580871582, 0.6907877922058105, 1.7133334875106812, 1.358647346496582, 0.8958308696746826, -2.0305330753326416, -2.272655963897705, -0.24263274669647217, 0.24511389434337616, 0.33523690700531006, 0.34523364901542664, 0.22868919372558594, 0.43332818150520325, 0.127890944480896, -6.749431133270264, -0.5979211926460266, -0.6652582883834839, 0.42274075746536255, 0.023517845198512077, -0.01829851046204567, -0.04222530871629715, 1.469895362854004, 0.6764675974845886, 0.8317858576774597, 0.5895307064056396, 0.23711629211902618, 0.17798003554344177, -0.343845009803772, -0.5381394624710083, 0.13865022361278534, 0.6000189185142517, -1.0030326843261719, -4.007426738739014, -0.052062954753637314, -0.18938522040843964, -0.5671910047531128, 0.5872241258621216, 0.1895119547843933, -0.0008728714310564101, 0.7574934959411621, 0.029902983456850052, 0.9452706575393677, 0.6581463813781738, -0.02993658557534218, -0.03519058600068092, -0.4205071032047272, 0.6323032379150391, 0.36742377281188965, -0.14554525911808014, -0.8780345320701599, -0.369386225938797, -0.4107704162597656, 0.6359339356422424, -0.20659451186656952, -0.043877117335796356, -1.018278956413269, 1.6628787517547607, 2.247135639190674, 1.6568918228149414, -0.5677234530448914, -0.3028664290904999, 0.7126548886299133, 0.791175901889801, -3.059911012649536, 0.7927080392837524, 0.7249336838722229, 0.02634100802242756, -0.7237766981124878, -0.06197630614042282, -0.039514582604169846, -0.06623738259077072, -2.4259910583496094, -0.5086884498596191, -0.3519606590270996, -1.175911545753479, -1.1035706996917725, -0.7128134369850159, -1.351284384727478, 0.9043750762939453, 2.439188003540039, -0.6810190081596375, -0.921366274356842, -1.0221166610717773, -1.8235079050064087, -0.30437231063842773, -0.9019280672073364, 1.2759015560150146, -0.42603960633277893, -0.5799115300178528, -0.6890209913253784, -1.440889835357666, -0.8595443964004517, -0.9262452721595764, -0.5162779092788696, -0.5711930990219116, -1.4707610607147217, 1.8547927141189575, 0.0009237970225512981, -0.5780258774757385, 3.1636998653411865, -0.7997531890869141, -0.714714765548706, -1.802286982536316, -1.393869400024414, -0.7182701826095581, 2.1734135150909424, 2.36154842376709, 0.2521708607673645, -0.3996798098087311, -0.8413771986961365, -0.2846900522708893, -0.3506854176521301, -0.4397309720516205, 0.03405170887708664, 6.780691623687744, 0.6704962849617004, 0.8564925193786621, -0.47612154483795166, -0.4390150010585785, -0.08857692033052444, -0.08871271461248398, -1.5346685647964478, -0.6337047219276428, -0.8612844347953796, -0.5316849946975708, -0.25925248861312866, -0.06559115648269653, 0.34923067688941956, 0.39949578046798706, 0.06106622889637947, -0.5602529644966125, 1.0635648965835571, 4.144095420837402, -0.005170879885554314, 0.2176627665758133, 0.6373814344406128, -0.48048222064971924, -0.07527250796556473, 0.07763375341892242, -0.8213342428207397, -0.01599724404513836, -0.6789261102676392, -0.5999417304992676, 0.040403690189123154, 0.0933663621544838, 0.5129363536834717, -0.552228569984436, 0.25342461466789246, 0.064550019800663, -0.7719321250915527, -0.254232257604599, -0.37257328629493713, 0.5826165080070496, -0.2827109396457672, -0.07808215171098709, -1.1532353162765503, 1.7887396812438965, 2.3549227714538574, 1.544877290725708, -0.5747133493423462, -0.44456446170806885, 0.6890226006507874, 0.7301904559135437, -3.0897836685180664, 0.6887918710708618, 0.6325669884681702, -0.1914738267660141, -0.9138544797897339, -0.04270365461707115, -0.09455379098653793, -0.20914599299430847, -2.5104267597198486, -0.48681962490081787, -0.16458961367607117, -1.1317005157470703, -1.0096282958984375, -0.8340103030204773, -1.417182445526123, 0.8875043392181396, 2.2778992652893066, -0.8808652758598328, -1.0732719898223877, -0.8950208425521851, -1.8264819383621216, -0.28220537304878235, -0.812218427658081, 1.1411540508270264, -0.4348108470439911, -0.6162168383598328, -0.6855888366699219, -1.459834337234497, -0.7873580455780029, -0.9496245980262756, -0.8507062196731567, -0.9182076454162598, -1.3478670120239258, 1.9358686208724976, 0.12279247492551804, -0.3950200378894806, 3.013859510421753, -0.7361040115356445, -0.6690075397491455, -1.7863739728927612, -1.305168628692627, -0.7409262657165527, 1.9833468198776245, 2.294002056121826, 0.10513488203287125, -0.4054502546787262, -0.5201694369316101, -0.34282538294792175, -0.3061125874519348, -0.42904797196388245, -0.14717519283294678, 6.825473308563232, 0.4531589150428772, 0.7681583762168884, -0.5692703723907471, -0.11347512900829315, 0.016534041613340378, 0.07176008820533752, -1.5263510942459106, -0.6861600279808044, -0.9743805527687073, -0.6032975912094116, -0.26303204894065857, -0.05260995402932167, 0.36187732219696045, 0.5144113898277283, 0.006863786838948727, -0.4472571313381195, 0.9919403791427612, 4.13241720199585, 0.12055417895317078, 0.23792202770709991, 0.5998636484146118, -0.5416392087936401, -0.12574274837970734, 0.1432696133852005, -0.6380724906921387, 0.09612179547548294, -0.6746088266372681, -0.6222988367080688, -0.08698374032974243, -0.08036011457443237, 0.5385463237762451, -0.646765947341919, 0.18152303993701935, 0.007718496955931187, -0.9017154574394226, -0.15950575470924377, -0.43577849864959717, 0.6454395651817322, -0.30594679713249207, -0.07777499407529831, -0.2768642008304596, 1.8883517980575562, 2.3471567630767822, 1.7210108041763306, 0.2697894871234894, -0.4556847810745239, 0.7949007153511047, 0.6492237448692322, -2.9696013927459717, 0.8122413158416748, 0.7689918279647827, -0.09277377277612686, -0.8445194959640503, -0.14155295491218567, -0.10827150195837021, 0.021438149735331535, -2.5556159019470215, -0.5210983753204346, -0.3694680631160736, -1.0982404947280884, -2.1612095832824707, -0.8739190697669983, -1.3987609148025513, 0.8075590133666992, 2.424760341644287, -0.4959585964679718, -1.3643627166748047, -0.8088565468788147, -1.8851650953292847, -0.29065799713134766, -0.8622208833694458, 1.141046166419983, -0.4537082016468048, -0.4950883984565735, -0.7654668688774109, -1.2891098260879517, -0.7138290405273438, -0.6684709191322327, -0.5007423162460327, -0.5878694653511047, -1.456843376159668, 1.9087945222854614, 0.1175469160079956, -0.4605148732662201, 3.1904404163360596, -0.757300853729248, -0.7752445936203003, -1.885115623474121, -1.3575143814086914, -0.7935184240341187, 2.148690700531006, 2.2285685539245605, 0.27148741483688354, -0.21915796399116516, -0.4096425175666809, 0.2009628415107727, -0.2413228303194046, -0.5621650815010071, -0.006187445018440485, 6.8341193199157715, 0.5674905180931091, 0.8719193339347839, -0.56325364112854, -0.015516220591962337, -0.04328717663884163, 0.0011602623853832483, -1.5135656595230103, -0.695424497127533, -0.7663698196411133, -0.5022937655448914, -0.3319525420665741, -0.20945343375205994, 0.1814481019973755, 0.4380049407482147, -0.29913362860679626, -0.44858255982398987, 1.1502363681793213, 3.727433204650879, 0.005669411271810532, -0.43110281229019165, 0.5008920431137085, -0.30187368392944336, 0.12769964337348938, 0.2131757289171219, -0.6690605878829956, -0.009350295178592205, -0.5499063730239868, -0.5896272659301758, -0.06904992461204529, -0.07056774199008942, 0.32389965653419495, -0.1490631401538849, -0.34620583057403564, 0.021604102104902267, 0.8964369297027588, 0.33745077252388, 0.24696482717990875, -0.6392362713813782, 0.23555251955986023, 0.20643915235996246, 0.9265234470367432, -1.5724503993988037, -2.2478573322296143, -1.6098995208740234, 0.7351807355880737, 0.44913777709007263, -0.7584468722343445, -0.7800948023796082, 3.1549291610717773, -0.6995084285736084, -0.7747853398323059, 0.1850854456424713, 0.684406042098999, -0.023160457611083984, 0.0527169294655323, 0.05131242424249649, 2.599490165710449, 0.5896647572517395, 0.2364015430212021, 1.0115768909454346, 1.0914065837860107, 0.7217136025428772, 1.275020718574524, -0.8868167400360107, -2.315732002258301, 0.8515210747718811, 1.1454874277114868, 0.9732614755630493, 1.7522085905075073, 0.31894785165786743, 0.7771338224411011, -1.200458288192749, 0.44616082310676575, 0.462900847196579, 0.8029491901397705, 1.3899693489074707, 0.6503082513809204, 0.9858700633049011, 0.7423867583274841, 0.8579938411712646, 1.3850865364074707, -1.944483757019043, 0.05228741094470024, 0.4444732964038849, -3.100029230117798, 0.6276625394821167, 0.8047358989715576, 1.800484299659729, 1.311264991760254, 0.9312310218811035, -2.101048469543457, -2.217818021774292, -0.2688087522983551, 0.3872702419757843, 0.7641764879226685, 0.3830004632472992, 0.2702789902687073, 0.34814348816871643, 0.023908797651529312, -6.693897724151611, -0.509006917476654, -0.6848273277282715, 0.3998594284057617, 0.3821243941783905, -0.0748259648680687, 0.11787129193544388, 1.4353647232055664, 0.4791247546672821, 0.9585753083229065, 0.6225333213806152, 0.23746784031391144, 0.08571476489305496, -0.33956611156463623, -0.37658610939979553, 0.06400368362665176, 0.6250810027122498, -1.2042359113693237, -4.167503356933594, -0.17030271887779236, -0.2024393230676651, -0.686327338218689, 0.6158691048622131, -0.004272652789950371, -0.15172500908374786, 0.7058130502700806, -0.1492621749639511, 0.8377251029014587, 0.6425130367279053, -0.0587550513446331, -0.011186622083187103, -0.3750644028186798, 0.45686501264572144, 0.39105644822120667, -0.025475554168224335, -0.9448084235191345, -0.17672255635261536, -0.3310766816139221, 0.6198084950447083, -0.12551653385162354, -0.17280590534210205, -1.0382109880447388, 1.7992517948150635, 2.3504867553710938, 1.5589361190795898, -0.6244323253631592, -0.545194149017334, 0.6514461636543274, 0.8150684237480164, -3.042853355407715, 0.7147244215011597, 0.6197592616081238, -0.20456333458423615, -0.7576584815979004, -0.07558997720479965, -0.03151063248515129, -0.042013317346572876, -2.555046558380127, -0.5121866464614868, -0.35546499490737915, -1.031944751739502, -1.0589368343353271, -0.906965434551239, -1.4501054286956787, 0.7234553098678589, 2.3673014640808105, -0.834284245967865, -1.1588187217712402, -1.0165021419525146, -1.7437015771865845, -0.21355247497558594, -0.7760430574417114, 1.0865788459777832, -0.35465338826179504, -0.5834845900535583, -0.7270978689193726, -1.4284029006958008, -0.7141002416610718, -0.7763300538063049, -1.0142265558242798, -1.0503994226455688, -1.4010200500488281, 1.785997748374939, -0.023478718474507332, -0.5443571209907532, 3.083482027053833, -0.5669548511505127, -0.9035919904708862, -1.7623683214187622, -1.4137661457061768, -0.9140440225601196, 2.1081018447875977, 2.3884761333465576, 0.11144188791513443, -0.3146120011806488, -0.7461819648742676, -0.2481086552143097, -0.16968579590320587, -0.3327823579311371, 0.0784405842423439, 6.792299747467041, 0.6190653443336487, 0.7775694727897644, -0.4046388268470764, -0.4212479293346405, 0.050741661339998245, -0.05749735236167908, -1.502224087715149, -0.5707641243934631, -0.9293507933616638, -0.46286097168922424, -0.280815452337265, -0.061725880950689316, 0.3514498472213745, 0.35134655237197876, -0.150596484541893, -0.6404426693916321, 0.9990173578262329, 3.992751359939575, 0.20375502109527588, 0.13540880382061005, 0.5394612550735474, -0.5991140007972717, -0.13278932869434357, 0.08818145096302032, -0.8440395593643188, 0.01949687860906124, -1.0070663690567017, -0.43945908546447754, -0.0663471668958664, -0.06650318205356598, 0.4358328878879547, -0.46121084690093994, -1.9063987731933594, -0.6755901575088501, 0.7471257448196411, 0.683555543422699, 0.8501876592636108, -0.7736931443214417, 0.8787028193473816]}, 'datecode': '2016-10-18 17:02', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (0, 20), 'etaBin': (1.37, 1.54)}}, 'et4_eta1': {'discriminator': {'threshold': 0.43499864339828492, 'nodes': [100, 5, 1], 'bias': [-0.006794690620154142, -0.1554284542798996, -0.3984045386314392, 0.030208555981516838, -0.10840713977813721, -0.14096811413764954], 'weights': [-1.7999227046966553, -1.027034878730774, 1.5167815685272217, 1.3038241863250732, 1.0221314430236816, 1.30545973777771, -0.8648515939712524, -1.0125584602355957, -1.7937843799591064, -2.820099353790283, 0.2814648151397705, 0.5318836569786072, 0.5089548826217651, 5.107941150665283, 4.707424163818359, 10.953789710998535, 9.580018997192383, 6.9715094566345215, 7.283199787139893, 7.441274642944336, 7.319461345672607, 7.384079933166504, 10.955340385437012, 6.394368648529053, 4.812088966369629, 4.612451076507568, 4.57286262512207, 8.837888717651367, 6.0176286697387695, 4.635505199432373, 4.066656589508057, 2.8422253131866455, 4.092710971832275, 4.315120697021484, 3.0796291828155518, 2.271243095397949, 0.3258189260959625, 2.9608850479125977, 4.199531078338623, 2.9192416667938232, 2.390683889389038, 2.393772602081299, 3.086351156234741, -4.281545639038086, -0.27714815735816956, 2.386082410812378, -1.8600664138793945, 0.5252542495727539, 0.7647185921669006, -1.2609208822250366, -2.265915632247925, -4.432082653045654, 2.5929415225982666, 1.3052434921264648, 0.9118005037307739, -0.11201512068510056, 3.186361074447632, 1.0065803527832031, 0.7002419829368591, -2.3315236568450928, -1.2701539993286133, -4.695784091949463, 0.8107354640960693, 4.077216148376465, -1.2741401195526123, -1.6601881980895996, -0.9998442530632019, 2.0348238945007324, -1.7414342164993286, 0.7748311161994934, 0.10149277001619339, 1.1885353326797485, -1.001505732536316, -0.2078997641801834, 1.7877411842346191, 3.9085121154785156, 4.058349609375, 3.022414207458496, 1.167700171470642, 0.8763085603713989, 5.2606072425842285, 6.248317718505859, 7.434049129486084, 6.32707405090332, 5.177743911743164, 1.253045678138733, 3.2860896587371826, 4.109064102172852, 3.6760289669036865, 2.5070691108703613, 0.16121390461921692, -0.3287222683429718, 9.529077529907227, 5.444869041442871, 2.950199842453003, 1.7038172483444214, 3.7537684440612793, 4.954484939575195, 1.5676814317703247, 0.43348121643066406, 1.9155974388122559, -0.27084213495254517, -1.8248854875564575, -1.8497902154922485, -0.48866498470306396, -1.2326923608779907, -0.7088906764984131, -0.3377949297428131, 2.383814573287964, 2.227478265762329, 4.464389801025391, 0.2766726315021515, 0.09003609418869019, -1.466630220413208, -1.7234777212142944, -5.583449840545654, -4.656095027923584, -6.059502601623535, -5.832686424255371, -5.874022483825684, -5.76144552230835, -5.927149772644043, -4.147836208343506, -6.162843704223633, -4.859310150146484, -4.424472808837891, -4.334743022918701, -5.037566184997559, -5.423601150512695, -3.8823442459106445, -4.021630764007568, -3.7493598461151123, -3.977189302444458, -4.179591178894043, -3.0509562492370605, -3.055844783782959, -2.249603271484375, -3.1172916889190674, -4.28181266784668, -3.141746997833252, -2.578383207321167, -2.4541687965393066, -3.008423328399658, 3.0007166862487793, -0.8047334551811218, 1.444414734840393, 1.9381978511810303, -0.5315545201301575, -0.8709000945091248, -1.3247100114822388, -1.6892642974853516, 4.959435939788818, 0.4229227602481842, -1.4444005489349365, -0.9399492740631104, 0.13651129603385925, -1.2663679122924805, -1.0414769649505615, -0.3001660108566284, 2.391136407852173, 1.2387099266052246, 5.031053066253662, -0.813446044921875, 2.007856607437134, 1.3512825965881348, 1.6835397481918335, 1.424838662147522, -0.5842573046684265, 1.823012113571167, -0.5202951431274414, -0.9089785814285278, -1.0309703350067139, 1.2853267192840576, 0.1413520872592926, -2.0295960903167725, -4.015827178955078, -4.124287128448486, -3.0098304748535156, -1.6257693767547607, -0.790565550327301, -8.66431713104248, -6.247581481933594, -5.837586879730225, -4.8163886070251465, -4.966397285461426, -3.8456342220306396, -3.212890625, -4.001729488372803, -3.8169500827789307, -3.0062172412872314, -0.01592959091067314, 0.331468790769577, -8.44169807434082, -5.0702314376831055, -3.0035383701324463, -1.620993733406067, -4.026189804077148, -4.6726484298706055, -2.8539879322052, -1.3541570901870728, 1.5974605083465576, 1.9344853162765503, -0.5923197865486145, -0.5208407640457153, 1.3568525314331055, 1.4686882495880127, 0.46828562021255493, 0.6234206557273865, 1.6291574239730835, 3.773839235305786, -2.2849690914154053, -0.0173037126660347, -0.6913514137268066, -2.2018117904663086, -2.005866527557373, -1.1781272888183594, -1.0746055841445923, -2.960521936416626, -3.020195960998535, -3.291041612625122, -3.1039140224456787, -3.1437220573425293, -3.365147590637207, -2.7703027725219727, -2.0528550148010254, -1.8534427881240845, -1.9343363046646118, -3.7497124671936035, -2.482781171798706, -1.8200953006744385, -1.5440616607666016, -1.1102930307388306, -1.817267894744873, -1.8834421634674072, -1.1623601913452148, -0.9870098233222961, -0.010297157801687717, -1.1041889190673828, -1.671156883239746, -1.2849154472351074, -0.8064302206039429, -0.991357147693634, -1.1975551843643188, -0.10585328191518784, 0.3697037100791931, -0.556940495967865, -0.15853485465049744, -0.034072861075401306, -0.42182764410972595, 0.7920054197311401, 1.2212443351745605, 2.1734256744384766, -1.0674257278442383, 0.40708163380622864, 1.3429632186889648, 0.32503095269203186, -2.000063896179199, -0.30996984243392944, -0.09442844241857529, 1.2394380569458008, 0.6918144822120667, 2.3371236324310303, 2.3947508335113525, -1.6665288209915161, 1.0100497007369995, 1.0625598430633545, 0.7157778739929199, -0.7973801493644714, 1.003158450126648, -0.2244928777217865, -0.23057889938354492, -0.25567328929901123, 0.26687583327293396, 0.5571849942207336, -0.8021562099456787, -0.9193214178085327, -1.7109324932098389, -1.3166331052780151, -0.056996699422597885, -0.3299941420555115, -2.3191375732421875, -2.720602035522461, -3.1226112842559814, -2.6633172035217285, -2.2291204929351807, -0.5240607857704163, -1.3279191255569458, -1.5835566520690918, -1.4658986330032349, -1.0713777542114258, -0.3082595467567444, 0.4604063332080841, -4.250147342681885, -2.1554455757141113, -1.1069138050079346, -0.11036043614149094, -1.5041146278381348, -1.9783992767333984, -0.34503164887428284, -0.10214173793792725, -1.938421607017517, -1.0800155401229858, 1.4481016397476196, 1.524210810661316, 1.0090358257293701, 1.4126237630844116, 0.8840153813362122, -0.8710037469863892, -3.8382015228271484, -2.941593647003174, 0.26305797696113586, 0.5373278856277466, 0.6271727681159973, 5.087252140045166, 4.527551174163818, 11.104263305664062, 9.684577941894531, 6.9155778884887695, 7.264986515045166, 7.306527137756348, 7.2929253578186035, 7.236979007720947, 10.854584693908691, 6.553384780883789, 4.738665580749512, 4.4313812255859375, 4.579624652862549, 8.656661987304688, 5.997731685638428, 4.638885974884033, 4.00109338760376, 2.936990976333618, 4.047165393829346, 4.184921741485596, 2.9954614639282227, 2.2098889350891113, 0.3068324625492096, 2.9505794048309326, 4.352214813232422, 3.034167528152466, 2.4667346477508545, 2.46748948097229, 2.969614267349243, -4.291418075561523, -0.24009820818901062, 2.3423354625701904, -1.9760377407073975, 0.44410112500190735, 0.6611433625221252, -1.142242670059204, -2.1912992000579834, -4.314085006713867, 2.5685765743255615, 1.4943268299102783, 0.9407423734664917, -0.21247321367263794, 3.203758478164673, 1.0463519096374512, 0.6714291572570801, -2.343329429626465, -1.222947359085083, -4.786113262176514, 0.8974404335021973, 4.074822425842285, -1.2417911291122437, -1.661712884902954, -1.067645788192749, 2.0441198348999023, -1.7505759000778198, 0.7762546539306641, 0.2216433435678482, 1.0408440828323364, -0.9313820004463196, -0.19841738045215607, 1.8793439865112305, 4.019741535186768, 4.018013954162598, 2.993985414505005, 1.201834797859192, 0.9852899312973022, 5.097991466522217, 6.315361022949219, 7.412949562072754, 6.136035919189453, 5.180999755859375, 1.2649462223052979, 3.2474563121795654, 4.1203389167785645, 3.7236316204071045, 2.692964792251587, 0.16463275253772736, -0.23796097934246063, 9.620084762573242, 5.165962219238281, 3.042635679244995, 1.5743240118026733, 3.593649387359619, 4.726230621337891, 1.7003471851348877, 0.518455982208252, -0.4016145169734955, -1.1008011102676392, 0.317803293466568, 0.28608277440071106, 0.32597100734710693, 0.45084553956985474, -0.07374785095453262, -0.12140609323978424, -0.7596582174301147, -0.6700848340988159, 0.9180830121040344, 0.17629995942115784, 0.3709384500980377, 1.237718105316162, 1.0335623025894165, 1.8659745454788208, 1.5641096830368042, 1.5010194778442383, 1.4791438579559326, 1.5595364570617676, 1.4915823936462402, 1.641279935836792, 1.5178728103637695, 1.3930697441101074, 0.9667136073112488, 1.000006914138794, 1.079171895980835, 1.8384828567504883, 1.255077838897705, 0.9240754246711731, 0.940382182598114, 0.5644510388374329, 0.9919483065605164, 1.055948257446289, 0.6073247194290161, 0.6412028670310974, 0.2344931662082672, 0.7457457780838013, 0.9121500849723816, 0.7754244804382324, 0.4824374318122864, 0.6844104528427124, 0.7171680927276611, -0.7123866081237793, 0.08371774107217789, 0.6915780305862427, -0.22039438784122467, 0.09132708609104156, 0.1909630447626114, -0.06418135017156601, -0.3973239064216614, 0.16872800886631012, 0.7118033170700073, 0.38794857263565063, 0.33103108406066895, -0.05470170080661774, 0.5033832788467407, 0.3071689009666443, 0.18335385620594025, -0.4761725962162018, -0.1390201449394226, -0.7718136310577393, 0.20810943841934204, 0.8809258937835693, -0.11245188117027283, -0.3263871371746063, -0.22725363075733185, 0.5411223769187927, -0.15130744874477386, 0.2490055114030838, 0.082724928855896, 0.3128555417060852, -0.373563677072525, -0.08090195804834366, 0.45042020082473755, 0.7943832874298096, 1.0029401779174805, 0.6371498107910156, 0.26931270956993103, 0.1977020800113678, 1.0659189224243164, 1.3883217573165894, 1.6231980323791504, 1.4670684337615967, 1.0528758764266968, 0.31061288714408875, 0.8662287592887878, 0.8216555118560791, 0.9152927398681641, 0.5646606683731079, 0.07351450622081757, -0.04422774538397789, 1.976365089416504, 1.1628947257995605, 0.7537108659744263, 0.3191155791282654, 0.9357360005378723, 1.1520085334777832, -0.09915212541818619, 0.28015679121017456, -1.47908353805542, -5.043899059295654, 1.3066630363464355, -8.05117416381836, -1.4243520498275757]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (0.8, 1.37)}}, 'et4_eta3': {'discriminator': {'threshold': 0.42499865293502809, 'nodes': [100, 5, 1], 'bias': [0.10244271904230118, -0.026634719222784042, -0.027671828866004944, -0.11646553128957748, -0.0258479006588459, -0.23860521614551544], 'weights': [2.1136536598205566, 2.4761157035827637, -1.3354885578155518, -2.1343538761138916, -1.1735503673553467, -0.47224685549736023, 1.0595214366912842, -1.2222939729690552, 2.3140790462493896, 1.6813380718231201, 0.6189742684364319, -3.9977757930755615, -0.8143018484115601, -0.1061888113617897, -4.447263717651367, -5.6257452964782715, -2.7986018657684326, -6.704593658447266, -5.6314496994018555, -8.470595359802246, -3.464118480682373, -2.936347246170044, -2.4384608268737793, -8.164268493652344, -7.307194232940674, 0.27701619267463684, -2.2832694053649902, -7.54141092300415, -3.060548782348633, -4.162448883056641, -0.8520064949989319, -4.523809432983398, -2.304520845413208, -6.090267658233643, -2.2615864276885986, -4.290173053741455, -2.205183982849121, -2.169804573059082, -2.0118966102600098, -3.0833938121795654, 0.018090147525072098, -3.1861417293548584, 0.1231064423918724, -3.103140354156494, -0.29170987010002136, -1.815237045288086, -0.7281785011291504, -2.0659029483795166, 3.505709171295166, -2.0389456748962402, 0.6046255826950073, -1.3204889297485352, 1.9987943172454834, 3.2374703884124756, 1.3518534898757935, -1.6912293434143066, 4.667560577392578, -0.3907375633716583, 1.0986171960830688, -6.122414588928223, -0.08550530672073364, -1.7563936710357666, 1.0574041604995728, -1.828696608543396, 4.339155673980713, -1.344999074935913, -0.3004172742366791, -2.09759783744812, -0.899025559425354, -2.705749034881592, -1.429856538772583, -2.304187297821045, 0.5561367273330688, 0.4578809142112732, -2.1317460536956787, -2.1856703758239746, -2.2690391540527344, -2.1190686225891113, -1.5095014572143555, -0.742570698261261, -1.509751558303833, -2.2176427841186523, -13.434452056884766, -5.1173095703125, -2.595923900604248, -1.789684772491455, -1.9907029867172241, -2.071993350982666, -0.687940239906311, -2.993159770965576, -0.9220067262649536, -1.0641709566116333, -8.194657325744629, -3.4413692951202393, -0.4580751359462738, -1.7424548864364624, -1.2552765607833862, 0.010018037632107735, -0.4191332459449768, -1.4578543901443481, -2.115049362182617, -2.398184061050415, 1.4441759586334229, 2.0071306228637695, 1.2278002500534058, 0.42092978954315186, -0.6694797873497009, 1.3636431694030762, -2.4132156372070312, -1.0785812139511108, -0.654043972492218, 4.0377326011657715, 0.7583564519882202, 0.10480508208274841, 5.242630958557129, 5.689621925354004, 2.6909446716308594, 6.801192760467529, 5.60910177230835, 8.38937759399414, 8.718599319458008, 2.0788073539733887, 2.23823881149292, 8.17409610748291, 7.450192451477051, 3.954339027404785, 2.0829038619995117, 7.580160140991211, 3.045069932937622, 4.2243332862854, 1.0374382734298706, 4.511968612670898, 2.166616678237915, 5.162961959838867, 2.372391939163208, 4.462983131408691, 2.1679937839508057, 2.0365359783172607, 2.0696470737457275, 3.3711631298065186, 0.05041453242301941, 3.205158233642578, 0.8907615542411804, 3.0509016513824463, 0.35105249285697937, 1.9714038372039795, 0.8271780610084534, 2.0119431018829346, -2.7213120460510254, 2.012510061264038, -0.59637051820755, 1.2845218181610107, -1.8807774782180786, -3.1734073162078857, -1.3776136636734009, 1.7171220779418945, -4.140094757080078, 0.43026307225227356, -1.132845163345337, 6.066633224487305, 0.17703993618488312, 1.8853768110275269, -1.108108639717102, 2.038774013519287, -4.435719013214111, 1.3822416067123413, 0.42699965834617615, 2.2038395404815674, 0.8026497960090637, 3.318131446838379, 1.2378698587417603, 2.1552581787109375, -1.622920274734497, -0.06758100539445877, 2.2439637184143066, 2.1693456172943115, 2.299821615219116, 2.2396175861358643, 1.6990301609039307, 0.8935832381248474, 2.048569917678833, 2.1562492847442627, 9.985710144042969, 5.1122918128967285, 4.914822578430176, 1.878947377204895, 2.068976640701294, 2.03466534614563, -3.1008622646331787, 2.884702205657959, 0.8316497206687927, 1.0190722942352295, 7.438014507293701, 3.340212345123291, 0.36704349517822266, 1.803732991218567, 0.9005705118179321, 0.026195265352725983, 0.9331294298171997, 1.4886400699615479, -2.242891311645508, -2.551076650619507, 1.4809571504592896, 2.238367795944214, 1.4156361818313599, 0.4944586157798767, -0.9664744138717651, 1.3584625720977783, -2.4787468910217285, -2.2724645137786865, -0.5287601351737976, 4.111442565917969, 0.6733664274215698, -0.03702039271593094, 4.495578289031982, 5.7202863693237305, 2.8017024993896484, 6.816144943237305, 5.799431324005127, 8.432250022888184, 3.287015199661255, 2.8676507472991943, 2.196160316467285, 8.338970184326172, 7.510587692260742, -0.20106478035449982, 2.0992941856384277, 7.659865856170654, 3.217709541320801, 4.208213806152344, 1.0480554103851318, 4.542307376861572, 2.265922784805298, 6.185456275939941, 2.393498420715332, 4.5030412673950195, 2.059751272201538, 2.1484198570251465, 2.1146152019500732, 3.019162178039551, -0.11174126714468002, 3.1327524185180664, -0.08307851850986481, 3.114877700805664, 0.341488778591156, 1.9128708839416504, 0.5881271362304688, 2.128124475479126, -3.35807728767395, 2.0762782096862793, -0.5713495016098022, 1.3524963855743408, -2.0395641326904297, -3.2001678943634033, -1.3914719820022583, 1.5958410501480103, -4.563697338104248, 0.4134733974933624, -1.06615149974823, 6.13709831237793, 0.06818988174200058, 1.8502658605575562, -1.3920928239822388, 1.8773846626281738, -4.271185874938965, 1.2731740474700928, 0.3156578242778778, 2.02909255027771, 0.8152152895927429, 5.316812992095947, 1.2877037525177002, 2.1201581954956055, -0.4915796220302582, -0.6078155040740967, 2.202939748764038, 2.053640127182007, 2.2646613121032715, 2.059619426727295, 1.4302775859832764, 0.9473094344139099, 1.4782090187072754, 2.1622867584228516, 9.86046314239502, 5.054417133331299, 2.245720863342285, 1.9868146181106567, 2.0787513256073, 2.1578099727630615, 0.6623260974884033, 2.8673501014709473, 0.7761743068695068, 1.106217384338379, 8.041617393493652, 3.436439275741577, 0.30246272683143616, 1.6667946577072144, 1.0801926851272583, -0.15979406237602234, 0.8684966564178467, 1.4452787637710571, -142.03860473632812, 1.9209511280059814, -1.4678245782852173, -2.176791191101074, -1.36861252784729, -0.5441265106201172, 0.7711635828018188, 9.741856575012207, 2.471639633178711, 4.0471720695495605, 0.6153625845909119, -2.9475879669189453, -0.5559614896774292, 5.189255714416504, -5.787713050842285, 3.5091118812561035, -2.64949893951416, 60.66307067871094, -5.6393351554870605, 59.194366455078125, -8.789266586303711, -0.28474676609039307, -2.2303760051727295, -8.293728828430176, -7.3675312995910645, -3.7747671604156494, 7.462562084197998, -7.0675859451293945, -3.0233042240142822, 4.3458333015441895, -1.0345925092697144, -2.9636011123657227, -2.2457046508789062, -5.228454113006592, -2.309159278869629, -3.00010085105896, -2.1044833660125732, -0.8779270648956299, -1.9660024642944336, -3.2438900470733643, -0.07719025760889053, -3.0831034183502197, 5.522830009460449, -3.0399866104125977, -0.26664799451828003, -1.8533949851989746, -0.9435549974441528, -2.143346071243286, 2.924920082092285, -2.0373075008392334, 0.3517892062664032, -1.4308514595031738, 1.8721117973327637, 3.143479824066162, 1.3025211095809937, -1.8728183507919312, 4.106044292449951, -0.3792337477207184, 0.9321981072425842, -6.085890293121338, -0.23069553077220917, -1.915037751197815, 1.0746597051620483, -1.9125007390975952, 4.342075347900391, -1.3776702880859375, -0.5140342116355896, -2.228787660598755, -0.8907374739646912, -2.615466833114624, -1.2966004610061646, -2.0413265228271484, 1.7899733781814575, 0.5288868546485901, -2.090083360671997, -2.2000763416290283, -2.1760451793670654, -2.088895082473755, -1.6077251434326172, -0.8657386302947998, 18.871570587158203, -1.9380265474319458, -13.092113494873047, -4.997984409332275, -4.738004207611084, -1.958965539932251, -2.112590789794922, -2.1513755321502686, -88.76246643066406, -17.29631233215332, -1.2429815530776978, -0.9369333386421204, -7.299914836883545, -3.3198277950286865, -0.4131157696247101, -1.92756187915802, -0.8283920288085938, 0.10012806951999664, -1.0590925216674805, -1.5049571990966797, -2.0256004333496094, -2.5168638229370117, 1.301788568496704, 2.200427532196045, 1.1756267547607422, 0.514249324798584, -1.042991042137146, 1.333069920539856, -2.4084813594818115, -2.1737043857574463, -0.6555187702178955, 3.9782373905181885, 0.6623839139938354, -0.035289861261844635, 4.552762985229492, 5.56650972366333, 2.6981701850891113, 6.703571319580078, 5.752769947052002, 8.487652778625488, 3.302428722381592, 2.899444341659546, 2.264791965484619, 8.146153450012207, 7.5582122802734375, -0.26566651463508606, 2.252723217010498, 7.596414089202881, 3.1182103157043457, 4.093232154846191, 0.8007409572601318, 4.4159111976623535, 2.208712577819824, 6.049647808074951, 2.221940279006958, 4.450047016143799, 2.204908847808838, 2.144577980041504, 2.0289366245269775, 2.9903759956359863, -0.024109508842229843, 3.1645309925079346, -0.23779073357582092, 3.198810338973999, 0.3822338283061981, 1.8081729412078857, 0.5110057592391968, 2.058108329772949, -3.3312489986419678, 2.1967084407806396, -0.5932506322860718, 1.4020277261734009, -2.131554126739502, -3.1461503505706787, -1.2905434370040894, 1.544182300567627, -4.567009449005127, 0.4236147701740265, -0.9370492100715637, 6.027017593383789, 0.20755675435066223, 1.9110465049743652, -1.384356141090393, 1.9522731304168701, -4.4787397384643555, 1.3535667657852173, 0.3302721083164215, 2.2109057903289795, 0.8844916820526123, 5.253039836883545, 1.4480197429656982, 2.2843456268310547, -0.5308747887611389, -0.5522910952568054, 2.206855058670044, 2.0478646755218506, 2.1654529571533203, 2.2306225299835205, 1.3617877960205078, 0.8822181820869446, 1.525431513786316, 2.0791828632354736, 13.402020454406738, 5.2538652420043945, 2.544570207595825, 1.820676326751709, 1.9823253154754639, 2.125417947769165, 0.7496980428695679, 2.892738103866577, 0.8779227137565613, 1.0895835161209106, 8.246766090393066, 3.4497177600860596, 0.3534480631351471, 1.908599615097046, 1.0185743570327759, -0.08690472692251205, 0.44496309757232666, 1.4602241516113281, 1.7230116128921509, -0.08106107264757156, -2.1638827323913574, 0.417394757270813, -2.439040184020996]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (1.54, 2.5)}}, 'et3_eta0': {'discriminator': {'threshold': 0.42499865293502809, 'nodes': [100, 5, 1], 'bias': [-0.1838398277759552, 0.008611112833023071, 0.18154369294643402, 0.023585721850395203, -0.035233061760663986, 0.19036158919334412], 'weights': [4.017240047454834, 1.901187777519226, -0.294178307056427, -0.08676494657993317, 0.6386704444885254, 0.26069581508636475, 0.4465356171131134, 0.6096044778823853, 1.518546462059021, 2.2324438095092773, -2.307410478591919, -5.6883015632629395, -2.416430950164795, -0.5659266114234924, -1.99880051612854, -1.188903570175171, -4.143251419067383, -4.194454669952393, -3.770979404449463, -3.602367639541626, -4.060153961181641, -3.8789095878601074, -2.8690292835235596, -1.0932801961898804, -3.167452335357666, -1.913938045501709, -2.9928972721099854, -2.8793139457702637, -2.1918280124664307, -2.0739057064056396, -0.3669455945491791, -0.953891932964325, -1.7267831563949585, -1.0764167308807373, -2.0238027572631836, -1.078501582145691, -1.0553325414657593, -0.8950349688529968, -1.080519199371338, -1.1914687156677246, -1.0000526905059814, -1.2180471420288086, -0.5844687819480896, 0.8340210914611816, -0.04327065870165825, -2.5265517234802246, -1.110429286956787, -1.8567613363265991, -0.8584017753601074, -0.9068220257759094, -1.8937453031539917, 2.2211856842041016, 0.5059202909469604, 0.5171898603439331, -0.48264437913894653, -0.4789438247680664, -0.014382182620465755, 0.6536459922790527, -1.3602056503295898, -2.2299585342407227, -0.7366456389427185, 0.6679100394248962, 0.3166215717792511, 0.261661559343338, 1.1499239206314087, 2.046154499053955, -0.18762975931167603, 0.3376421332359314, -0.16516658663749695, -1.997430443763733, 0.0856507271528244, 0.13066110014915466, 0.5849431157112122, 0.2665240168571472, -0.8466548919677734, -1.3664209842681885, -1.8862532377243042, -1.1348214149475098, -1.0910627841949463, -0.4562837779521942, -1.5834029912948608, -1.6089749336242676, -3.3822426795959473, -3.456171751022339, -0.7796923518180847, -1.6461519002914429, -1.1340405941009521, -3.9541521072387695, -3.7404253482818604, -2.9091439247131348, -0.9762431979179382, -0.2890397906303406, -3.1414473056793213, -2.7521419525146484, -1.2586270570755005, 0.12843632698059082, -3.800344705581665, -2.299518585205078, 0.45417091250419617, 0.31377050280570984, 3.8944687843322754, 1.999672293663025, -0.07867418229579926, 0.15685665607452393, 0.2627567946910858, 0.1827951967716217, 0.14163373410701752, 0.2930928170681, 0.38362523913383484, 0.48111438751220703, -2.7268178462982178, -1.248624563217163, -0.7392311692237854, -0.5173453092575073, -0.40430089831352234, -0.22306902706623077, -0.9117127060890198, -0.8576411008834839, 0.34807175397872925, -0.6444129943847656, -0.8651413917541504, -0.6868612170219421, -0.477109432220459, -0.1258327066898346, -0.6597129106521606, -0.39250457286834717, -0.5497321486473083, -0.4838884770870209, -0.2474060356616974, -0.25912752747535706, -0.12114058434963226, -0.14721599221229553, -0.3660867512226105, -0.31196725368499756, -0.3536289930343628, -0.31311020255088806, -0.04534778743982315, -0.05778997391462326, -0.18178151547908783, -0.22856144607067108, -0.0798610970377922, -0.11474566906690598, -0.07250209897756577, -0.09596741199493408, 0.15977729856967926, -0.41160133481025696, -0.08453217893838882, -0.43885675072669983, -0.1770142763853073, -0.13345424830913544, -1.17366623878479, 0.5165542364120483, 0.29159772396087646, 0.11940954625606537, 0.07757951319217682, -0.22602234780788422, 0.06414084881544113, 0.15127034485340118, -0.1787368208169937, -0.44541624188423157, -0.16916730999946594, 0.310271680355072, 0.1992655247449875, 0.18474328517913818, 0.239637553691864, 0.39673730731010437, -0.03368983790278435, 0.05020802840590477, 0.1382662057876587, -0.3465578854084015, 0.036332324147224426, 0.15974746644496918, -0.040685202926397324, 0.030806664377450943, -0.1778826117515564, -0.29523417353630066, -0.27746203541755676, -0.13261963427066803, -0.22235094010829926, 0.0376976877450943, -0.3301202058792114, -0.6011791229248047, -0.7274138331413269, -0.7476048469543457, 0.12260767817497253, -0.17147031426429749, -0.2323864996433258, -0.7875206470489502, -0.7389765977859497, -0.6192401647567749, -0.13957960903644562, 0.1485101282596588, -0.6610538363456726, -0.5390209555625916, -0.2591564953327179, 0.03768515959382057, -0.7620188593864441, -0.4495212137699127, 0.09886474162340164, 0.3735031485557556, -4.349002361297607, -2.0140697956085205, 0.16961106657981873, 0.08638744801282883, -0.6418488621711731, -0.28390932083129883, -0.47101926803588867, -0.45441934466362, -3.9473867416381836, -2.0091233253479004, 4.491796970367432, 1.2081955671310425, 2.368443012237549, 0.5533127188682556, 1.78851318359375, 1.1381349563598633, 4.211236000061035, 4.256258964538574, 0.12619255483150482, 3.5174572467803955, 4.324417591094971, 3.884711265563965, 2.904780626296997, 0.7691080570220947, 3.184690475463867, 1.8505256175994873, 2.955599308013916, 2.937620162963867, 2.0355820655822754, 2.0547971725463867, 0.3605779707431793, 1.0816826820373535, 2.2948079109191895, 0.9985011219978333, 1.8475412130355835, 1.2247549295425415, 0.9468311667442322, 0.9726732969284058, 1.1364326477050781, 1.114496111869812, 1.055133581161499, 1.3230808973312378, 0.7693186402320862, -0.8299221396446228, 0.6903948783874512, 2.4977214336395264, 0.9487977027893066, 1.9027584791183472, 0.6572574973106384, 0.858169674873352, 2.1037802696228027, -2.4640583992004395, -0.5442397594451904, -0.5171831250190735, 0.3147822320461273, 0.9029700756072998, 0.0022602735552936792, -0.6214304566383362, 1.61095130443573, 2.2958576679229736, 0.7556024193763733, -0.6404473781585693, -0.3824630081653595, -0.3357415497303009, -1.2038938999176025, -2.009843587875366, 0.01393294520676136, -0.2452181726694107, 0.275690495967865, 2.1256227493286133, -0.07153146713972092, -0.1839424967765808, -0.47109949588775635, -0.23984293639659882, 0.7661051750183105, 1.450323224067688, 1.8122284412384033, 1.1394996643066406, 0.9768154621124268, 0.42858341336250305, 1.5428367853164673, 1.4586726427078247, 3.4258949756622314, 3.623342514038086, 0.8755447268486023, 1.712335228919983, 1.2801339626312256, 3.791755437850952, 3.5961012840270996, 2.8464343547821045, 1.1375927925109863, 0.40969330072402954, 3.1027917861938477, 2.6016037464141846, 1.3017994165420532, -0.22592635452747345, 3.932161331176758, 2.407233715057373, -0.3704981803894043, -0.30729368329048157, -0.8126057982444763, -1.7537109851837158, 0.30374670028686523, 0.19663259387016296, -0.5386314392089844, -0.32924944162368774, -0.48730379343032837, -0.5664172768592834, -1.548148274421692, -2.123664140701294, 4.870322227478027, 5.7860798835754395, 2.563075065612793, 2.6473259925842285, 2.016915798187256, 1.8301936388015747, 4.2211689949035645, 4.211395263671875, 2.56552791595459, 3.5541064739227295, 4.274668216705322, 3.9277493953704834, 2.8484106063842773, 1.1379717588424683, 3.108508586883545, 2.2655067443847656, 2.977306842803955, 2.9741694927215576, 2.1739916801452637, 1.906596064567566, 0.35444876551628113, 0.9516789317131042, 2.5770010948181152, 1.4899743795394897, 1.8481638431549072, 1.793818712234497, 1.1021093130111694, 0.9619314074516296, 0.9530016183853149, 1.0947790145874023, 1.1771873235702515, 1.2307186126708984, 0.9442250728607178, 0.6861011981964111, 0.1399785727262497, 2.7392351627349854, 1.091855525970459, 2.032843589782715, 0.8597733974456787, 0.7738080024719238, 2.0230090618133545, -2.256220579147339, -0.5889072418212891, -0.6591842174530029, 0.49085745215415955, 0.46377161145210266, -0.1410970240831375, -0.6811745762825012, 1.3132991790771484, 2.24558162689209, 0.7927380800247192, -0.7260120511054993, -0.28994667530059814, -0.22539548575878143, -1.2081248760223389, -1.9118139743804932, 0.05269121378660202, -0.21335916221141815, 0.11547877639532089, 1.98639714717865, -0.05950472131371498, -0.25412142276763916, -0.5847505927085876, -0.28743937611579895, 0.9534026980400085, 1.464464545249939, 1.8349294662475586, 1.3880878686904907, 1.1145753860473633, 0.4048563241958618, 1.634761095046997, 3.7688748836517334, 3.2943553924560547, 3.6754708290100098, 0.2433096021413803, 1.8173960447311401, 1.2114099264144897, 3.7607195377349854, 3.633229970932007, 2.940901041030884, 1.0611448287963867, -0.342640221118927, 3.116647481918335, 2.6127943992614746, 1.2437936067581177, -0.2212551236152649, 3.7938764095306396, 2.4011752605438232, -0.3933797776699066, -0.3684278726577759, 4.31880521774292, 1.863499402999878, -0.3975198566913605, -0.14641639590263367, 0.4882443845272064, 0.32593637704849243, 0.3952708840370178, 0.6339016556739807, 1.4983628988265991, 2.1759893894195557, -2.308568239212036, -5.713767051696777, -2.4012136459350586, -2.6025681495666504, -1.9277783632278442, -1.8282326459884644, -4.310369968414307, -4.324922561645508, -2.9907093048095703, -3.4338347911834717, -4.100180149078369, -3.754282236099243, -2.867154598236084, -0.9154580235481262, -3.1323704719543457, -1.7036194801330566, -3.062544822692871, -3.1084768772125244, -2.2277398109436035, -1.9954543113708496, -0.5607776045799255, -0.9103416204452515, -2.107111930847168, -1.5452295541763306, -2.0014686584472656, -1.1881822347640991, -1.153134822845459, -0.9623962640762329, -1.1597923040390015, -1.1880605220794678, -1.1179391145706177, -1.053280234336853, -0.5804172158241272, -0.7098435759544373, -0.16262097656726837, -2.5311379432678223, -1.1061019897460938, -1.9011772871017456, -0.6762722134590149, -0.9475154876708984, -2.0158958435058594, 2.3693811893463135, 0.583751916885376, 0.640284538269043, -0.40000060200691223, -0.6094009280204773, 0.032956309616565704, 0.6787713170051575, -1.6891632080078125, -2.212841749191284, -0.8768395185470581, 0.6011942028999329, 0.3715870678424835, 0.16223382949829102, 1.272762417793274, 2.0850090980529785, -0.15334901213645935, 0.2346344143152237, -0.187576025724411, -2.04852032661438, -0.02004624530673027, 0.23316223919391632, 0.4556224048137665, 0.1716165989637375, -0.834074079990387, -1.3717609643936157, -1.9067388772964478, -1.4470441341400146, -1.1350499391555786, -0.5380133986473083, -1.6193746328353882, -3.7912509441375732, -3.3218679428100586, -3.6576874256134033, -0.2755720019340515, -1.7465039491653442, -1.2226431369781494, -3.9437644481658936, -3.8099539279937744, -2.8706257343292236, -0.9666258692741394, 0.3260868787765503, -3.1636927127838135, -2.6814651489257812, -1.330487608909607, 0.2314634919166565, -3.9341835975646973, -2.3431928157806396, 0.43969932198524475, 0.4008959233760834, 0.8735739588737488, 1.2821769714355469, -2.0506646633148193, -3.0394513607025146, 1.1730223894119263]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (0, 0.8)}}, 'et4_eta0': {'discriminator': {'threshold': 0.52499855756759639, 'nodes': [100, 5, 1], 'bias': [0.02931458316743374, 0.07241812348365784, 0.10845600068569183, -0.09593469649553299, 0.04119148850440979, -0.3013235330581665], 'weights': [3.311089277267456, 2.7776033878326416, 0.18066610395908356, -1.2056864500045776, 1.604825735092163, 0.1865503191947937, 0.7730957865715027, 1.747846007347107, 3.180569648742676, 2.4392879009246826, -7.406797885894775, -2.3232455253601074, -6.833629608154297, -4.189258098602295, -6.104232311248779, -4.2750678062438965, -4.6247406005859375, -4.564622402191162, -4.813847064971924, -4.716826915740967, -5.312751293182373, -4.926319599151611, -4.884196758270264, -4.253235340118408, -4.336501121520996, -4.283618450164795, -5.591576099395752, -3.973464250564575, -9.319202423095703, -2.6603894233703613, -2.5613250732421875, -2.791975259780884, -6.357999801635742, -2.618309736251831, -2.1876912117004395, 3.915004253387451, -2.100966453552246, -2.618317127227783, -2.224304676055908, -1.1870745420455933, -2.20979905128479, -4.178243160247803, -2.71406626701355, -1.8115068674087524, -2.5513877868652344, -1.8894237279891968, -2.615633249282837, -2.727216958999634, -1.1780061721801758, 0.07806529104709625, 3.8563833236694336, -2.8403522968292236, 0.8701767325401306, -1.7194280624389648, -0.3875453770160675, -0.725654125213623, 0.1618911176919937, -2.067396879196167, 0.39956074953079224, -0.7730082869529724, -1.419706106185913, 0.44543057680130005, 1.257712721824646, -6.031074523925781, -0.2799831032752991, 0.6427088379859924, 1.126145601272583, -0.7146590948104858, 0.8776209950447083, -0.32623428106307983, 0.12489358335733414, 2.9221351146698, 0.6449100375175476, 0.4950735569000244, -1.5518912076950073, -3.279216766357422, -3.409505605697632, -2.5731496810913086, -1.338877558708191, -0.5686798095703125, -1.3578202724456787, -3.1066606044769287, -4.292603492736816, -4.043866157531738, -2.9960029125213623, -2.6689112186431885, -2.242722988128662, -1.8914425373077393, -5.118795394897461, -5.386273384094238, -1.6174904108047485, 0.12710949778556824, -4.624730587005615, -4.748095512390137, -2.024381637573242, -0.6438331007957458, -4.923405647277832, -3.7156264781951904, -0.7889842391014099, -0.24809014797210693, 4.9321746826171875, 2.719294548034668, 0.19921042025089264, -1.2299144268035889, 1.469421625137329, 0.27549803256988525, 0.6137067675590515, 1.9288514852523804, 3.162429094314575, 2.4241833686828613, -0.8821160793304443, -2.3855929374694824, -6.967386245727539, -3.6300206184387207, -5.987842559814453, -4.110408306121826, -4.806114196777344, -4.7161760330200195, -4.951784133911133, -4.617422103881836, -5.417108058929443, -4.941716194152832, -4.7647833824157715, -4.198006629943848, -4.221622467041016, -4.302094459533691, -5.669243335723877, -3.8399856090545654, -9.276651382446289, -2.588374137878418, -2.539703607559204, -2.676750421524048, -6.347228050231934, -2.7981884479522705, -2.3425776958465576, 3.793294668197632, -1.9462947845458984, -2.6869421005249023, -2.4106597900390625, -1.296339988708496, -2.0479044914245605, -4.174556255340576, -2.628129243850708, -2.0328147411346436, -2.6600518226623535, -1.9346470832824707, -2.426886558532715, -2.7716281414031982, -1.129162311553955, 0.13035979866981506, 3.499286413192749, -2.8930704593658447, 0.9111056327819824, -1.7877509593963623, -0.8029499053955078, -0.8154670000076294, 0.3207301199436188, -1.9210891723632812, 0.19757568836212158, -0.8172492384910583, -1.42578125, 0.2621346712112427, 0.9545161724090576, -6.406562328338623, -0.3975285589694977, 0.1815395951271057, 1.251863956451416, -0.674562931060791, 0.9707087874412537, -0.1411944031715393, -0.3243597149848938, 2.9314894676208496, 0.5880640745162964, 0.33994588255882263, -1.5169585943222046, -2.1622161865234375, -3.440775156021118, -2.5962939262390137, -1.306143879890442, -0.7967426180839539, -1.3246411085128784, -2.8446576595306396, -4.327754020690918, -4.215429782867432, -2.973690986633301, -2.707385778427124, -2.2584590911865234, -1.9559191465377808, -5.235342979431152, -5.3583760261535645, -1.4794776439666748, 0.0015658815391361713, -4.534499168395996, -4.82176399230957, -2.145214557647705, -0.6682068109512329, -4.796506404876709, -3.9563913345336914, -0.7762383818626404, -0.27372828125953674, 3.329188823699951, 2.699091672897339, 0.11544368416070938, -1.2733908891677856, 1.4800441265106201, 0.23912782967090607, 0.5339061617851257, 1.920528531074524, 3.16400408744812, 2.362506151199341, -7.369227409362793, -2.2801008224487305, -1.3484300374984741, -4.199735164642334, -6.1024885177612305, -4.2332444190979, -4.72761869430542, -4.6649370193481445, -4.950018405914307, -4.506102561950684, -5.2230048179626465, -4.822266101837158, -4.813889026641846, -4.29213809967041, -4.22196626663208, -4.380243301391602, -5.636888027191162, -3.8353168964385986, -9.337599754333496, -2.83490252494812, -2.5923819541931152, -2.799675703048706, -6.360905647277832, -2.7219579219818115, -2.255695104598999, 3.794724941253662, -1.9019191265106201, -2.6753854751586914, -2.422062397003174, -1.2958368062973022, -2.093534231185913, -4.1591315269470215, -2.7466561794281006, -1.9268056154251099, -2.5501599311828613, -1.9369505643844604, -2.4530510902404785, -2.8365652561187744, -1.0778427124023438, -0.0015444951131939888, 3.965160369873047, -2.9005653858184814, 1.0006400346755981, -1.790466070175171, -0.494064599275589, -0.7307782173156738, 0.24435079097747803, -1.9903603792190552, 0.2824591100215912, -0.701539933681488, -1.4626835584640503, 0.2898719906806946, 1.3288838863372803, -5.852675437927246, -0.28906452655792236, 0.6384750008583069, 1.1768627166748047, -0.7747824192047119, 0.8089156746864319, -0.2231132984161377, 0.24653974175453186, 2.9771029949188232, 0.5170877575874329, 0.33400091528892517, -1.6196229457855225, -3.4132800102233887, -3.3679802417755127, -2.728422164916992, -1.3321665525436401, -0.6771137714385986, -1.4866822957992554, -3.241295099258423, -4.46865701675415, -4.034861087799072, -2.951563835144043, -2.7013659477233887, -2.246248245239258, -1.7571269273757935, -5.0455474853515625, -5.256772041320801, -1.41910982131958, 0.12413366883993149, -4.658188819885254, -4.72866678237915, -2.0990781784057617, -0.6789646744728088, -4.915613651275635, -3.7322022914886475, -0.6341574788093567, -0.3005492091178894, -3.221585988998413, -2.7717816829681396, -0.016538845375180244, 1.2063384056091309, -1.51893949508667, -0.13385194540023804, -0.5516979098320007, -1.7744876146316528, -3.196636199951172, -2.4836816787719727, 7.317968368530273, 2.2688426971435547, 1.4693195819854736, 4.20490026473999, 6.045870304107666, 4.062985420227051, 4.715046405792236, 4.630736351013184, 4.8218770027160645, 4.606121063232422, 5.317939281463623, 4.854350566864014, 4.82401704788208, 4.2461700439453125, 4.220977306365967, 4.20060920715332, 5.639387607574463, 3.8129074573516846, 9.24327564239502, 2.6324856281280518, 2.6565353870391846, 2.5638163089752197, 6.334938049316406, 2.6358776092529297, 2.201953649520874, -3.851201057434082, 1.9294993877410889, 2.612241744995117, 2.2624528408050537, 1.2817121744155884, 2.158353090286255, 4.197438716888428, 2.712886095046997, 1.8633755445480347, 2.5852441787719727, 1.8549500703811646, 2.454957962036133, 2.609938383102417, 1.210780382156372, -0.133077010512352, -3.842630386352539, 2.879298210144043, -0.854038655757904, 1.6739861965179443, 0.4184418022632599, 0.6272525787353516, -0.2910340428352356, 1.9043742418289185, -0.4167815148830414, 0.8093799948692322, 1.4446698427200317, -0.3684280514717102, -1.2077643871307373, 6.057832717895508, 0.3735669255256653, -0.5794821381568909, -1.2773224115371704, 0.6377288103103638, -0.8214533925056458, 0.21222138404846191, -0.1485794484615326, -2.9164366722106934, -0.5532369017601013, -0.2782001197338104, 1.6084742546081543, 3.2182531356811523, 3.3501698970794678, 2.7107932567596436, 1.1596511602401733, 0.7838540077209473, 1.342819094657898, 3.182922601699829, 4.304990768432617, 4.045987129211426, 3.025850296020508, 2.7112162113189697, 2.1454615592956543, 1.7928255796432495, 5.239800453186035, 5.270802021026611, 1.5542607307434082, -0.5743051171302795, 4.585275173187256, 4.7357988357543945, 1.9821984767913818, 0.6989428400993347, 4.97335147857666, 3.764003038406372, 0.7662184834480286, 0.35413622856140137, -3.4379727840423584, -2.8555643558502197, -0.3663407564163208, -2.408470630645752, -1.5430840253829956, -0.25652015209198, -0.7511703372001648, -1.8620102405548096, -3.0778346061706543, -2.589646100997925, 7.514346122741699, 2.2859439849853516, 6.818809509277344, 4.352261066436768, 5.9318766593933105, 4.255453109741211, 4.759824275970459, 4.558107852935791, 4.970895767211914, 4.701549053192139, 5.4484686851501465, 4.889317989349365, 4.80600118637085, 4.209726333618164, 4.373593330383301, 4.147166728973389, 5.483404636383057, 4.042483806610107, 9.351543426513672, 2.766465187072754, 2.6710317134857178, 2.704195976257324, 6.392306327819824, 2.766118288040161, 2.2967467308044434, -3.825340509414673, 1.929464340209961, 2.756084680557251, 2.4494926929473877, 1.3677963018417358, 2.203979730606079, 4.26149320602417, 2.6080007553100586, 1.5381990671157837, 2.548158645629883, 1.8604775667190552, 2.5752758979797363, 2.6095759868621826, 1.1493122577667236, -0.21643872559070587, -3.739816665649414, 7.5353312492370605, -1.0523262023925781, 1.7510257959365845, 0.45105794072151184, 0.8300859928131104, -0.2599686086177826, 2.0507545471191406, -0.23286698758602142, 0.700499951839447, 1.4811276197433472, -0.41851431131362915, -1.1686880588531494, 5.877883434295654, 0.20521989464759827, -0.6939062476158142, -1.182706594467163, 0.71788489818573, -0.7842925190925598, 0.2453644722700119, -0.19043582677841187, -2.841397523880005, -0.7045305967330933, -0.41718268394470215, 1.6119834184646606, 2.2414355278015137, 3.465207815170288, 2.5861291885375977, 1.2271615266799927, 0.5889217853546143, 1.1283658742904663, 3.104675531387329, 4.419867038726807, 4.235025405883789, 3.0294127464294434, 2.6096696853637695, 2.289092779159546, 1.8230525255203247, 5.271679878234863, 5.349844932556152, 1.482431173324585, -0.5044125318527222, 4.621979713439941, 4.696404933929443, 2.0854992866516113, 0.8158512115478516, 4.82727575302124, 3.7134132385253906, 0.7147044539451599, 0.23747116327285767, 1.417057752609253, 1.7022205591201782, 0.6667920351028442, -0.9233080148696899, -1.287419080734253]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (0, 0.8)}}, 'et1_eta3': {'discriminator': {'threshold': 0.11499894857406617, 'nodes': [100, 18, 1], 'bias': [-0.2002144455909729, -0.15363548696041107, -0.16188405454158783, -0.017389720305800438, 0.14820167422294617, -0.17858947813510895, -0.18675900995731354, -0.032089632004499435, -0.11576628684997559, -0.03401807323098183, -0.2495034635066986, -0.1558571606874466, -0.19357968866825104, 0.16586734354496002, -0.0014014645712450147, 0.20652197301387787, -0.17826637625694275, 0.1897476762533188, -0.054813455790281296], 'weights': [-0.38340234756469727, -0.6566517353057861, 0.16483989357948303, 0.4977419674396515, 0.7625945806503296, 0.19190865755081177, 0.24609415233135223, -0.7307010889053345, -0.8119046092033386, -1.2132209539413452, -0.5309129953384399, 1.3090801239013672, 0.796664297580719, -0.5182087421417236, 1.868080973625183, 4.295961380004883, 1.4176360368728638, 2.454637289047241, 1.4464610815048218, 2.5349671840667725, 0.9971038699150085, 1.1965296268463135, 1.496915578842163, 2.121141195297241, 3.29137921333313, 1.6098891496658325, 0.6513527035713196, 2.1739296913146973, 1.0169310569763184, 1.544034481048584, 1.0793766975402832, 1.3991395235061646, 1.6352118253707886, 1.3835066556930542, 1.1499985456466675, 1.0610237121582031, 0.05404287204146385, 0.41538554430007935, 0.43702971935272217, 0.9927192330360413, 0.07816965878009796, 0.7781451940536499, 0.7118356823921204, 1.3025516271591187, -0.030876843258738518, 1.1513395309448242, 0.2942968010902405, 0.5993052124977112, 0.20513437688350677, 0.8833693861961365, 0.46746826171875, 0.9571513533592224, -0.07157488912343979, 0.72287917137146, 0.7263399958610535, 0.580528199672699, 0.023384803906083107, 0.5015721321105957, 0.39651399850845337, 0.2557906210422516, 0.22474272549152374, 0.2975868880748749, 0.16423001885414124, -0.01598936691880226, 0.005907304584980011, 0.8213630318641663, 0.8370744585990906, 0.27068042755126953, -0.2674257159233093, -0.17367443442344666, -0.5805248022079468, 0.528968095779419, -0.1989305019378662, -0.050370559096336365, 1.2127388715744019, 1.4218155145645142, 1.395790696144104, 1.055174469947815, 0.6698682308197021, 0.24106000363826752, 1.5604139566421509, 3.1179018020629883, 3.4605464935302734, 1.3086051940917969, 0.8781377673149109, 1.0295149087905884, 0.09012075513601303, 0.6932299137115479, 0.5225092172622681, 0.9932043552398682, 0.4548197388648987, 0.05864733085036278, 2.38737154006958, 0.9247806072235107, 0.34414803981781006, 0.6246473789215088, 0.42670920491218567, 0.168732151389122, 0.053754258900880814, 0.9493657946586609, -0.38360196352005005, -0.732202410697937, 0.14758580923080444, 0.6051104068756104, 0.9232946634292603, 0.13980458676815033, 0.3051658570766449, -0.7344979047775269, -0.8900668621063232, -1.3221021890640259, -0.5035775303840637, 1.4208064079284668, 0.5290546417236328, -0.3478271961212158, 1.86189866065979, 4.408084869384766, 1.440454125404358, 2.52168345451355, 1.3675932884216309, 2.5375986099243164, 0.9146979451179504, 1.2156656980514526, 1.4084172248840332, 2.261629104614258, 3.1239607334136963, 1.4413634538650513, 0.6121513247489929, 2.219493865966797, 0.9521713852882385, 1.544762134552002, 1.1904094219207764, 1.3446217775344849, 1.5499415397644043, 1.2284002304077148, 1.1380829811096191, 1.1469122171401978, 0.09570536762475967, 0.2978670299053192, 0.2701861262321472, 0.9458319544792175, 0.09166756272315979, 0.6282024383544922, 0.78712397813797, 1.5633015632629395, -0.2592944800853729, 1.1304155588150024, 0.3707042336463928, 0.6425605416297913, 0.0022983881644904613, 0.8704652786254883, 0.26444754004478455, 0.9208696484565735, 0.0032466643024235964, 0.6803261041641235, 1.4584405422210693, 0.678684651851654, 0.06113111972808838, 0.566028356552124, 0.22947300970554352, 0.2392222285270691, 0.040982428938150406, 0.2520126700401306, 0.41603735089302063, -0.036166854202747345, 0.05413128808140755, 0.7926779389381409, 0.6538285613059998, 0.3500996232032776, -0.1737414300441742, -0.2748863995075226, -0.537535548210144, 0.3872361183166504, -0.20122425258159637, -0.1810685247182846, 1.2737761735916138, 1.4399892091751099, 1.493069052696228, 0.9437366127967834, 0.7208545207977295, 0.45295724272727966, 1.4465068578720093, 3.214751720428467, 3.3187026977539062, 1.2009320259094238, 0.9428243637084961, 0.9918748140335083, 0.07014276832342148, 0.5587629675865173, 0.5597621202468872, 1.059611201286316, 0.28132373094558716, 0.16102787852287292, 2.393214225769043, 0.9395459890365601, 0.17745913565158844, 0.4298109710216522, 0.6617841720581055, 0.06763876974582672, 0.18725647032260895, 1.0290868282318115, 16.190824508666992, 0.14594896137714386, 3.4627883434295654, 12.799717903137207, 10.684195518493652, 0.011130272410809994, -0.03397102653980255, -0.10816044360399246, 0.29309478402137756, 9.081469535827637, -24.892780303955078, 36.682525634765625, 18.784238815307617, -7.007519721984863, -45.00828552246094, -1.1602109670639038, -1.117960810661316, -0.9883555769920349, -5.681673526763916, -0.7563220262527466, -13.34096622467041, -4.8449811935424805, -25.132312774658203, -0.9788350462913513, -4.000855922698975, -0.5069876909255981, -34.51609420776367, -0.885381281375885, -55.87479782104492, -0.7409151792526245, -66.15792846679688, -0.03725424036383629, -12.921009063720703, -0.06828707456588745, -5.4699015617370605, -0.1061086356639862, -3.6921463012695312, 0.1655205339193344, -49.182125091552734, 0.07158195972442627, -0.047861140221357346, 0.025056902319192886, -2.427628755569458, -0.7640111446380615, -44.33208465576172, -0.25958630442619324, -0.24857257306575775, -0.8375716209411621, 2.713972568511963, -0.2896157205104828, -0.052662696689367294, -0.49748677015304565, 1.2169281244277954, -0.2682081460952759, -11.288450241088867, -0.5798513889312744, 0.8085481524467468, -0.3330405354499817, 0.3179360032081604, -0.07634507119655609, 0.5994629859924316, -5.807570457458496, -0.06363659352064133, 0.040838535875082016, 0.7583083510398865, -0.3190859854221344, -0.4253675043582916, 0.13786259293556213, 0.2775750458240509, 0.1861962527036667, 0.3385373055934906, -0.1951509416103363, -12.781550407409668, -5.904649257659912, 0.10519639402627945, -0.21757985651493073, -0.9494050741195679, -0.8350086212158203, -2.6825902462005615, -0.18710128962993622, -88.77208709716797, -31.349262237548828, -11.474648475646973, -0.14730286598205566, -0.04797506704926491, 0.06218511611223221, 0.5091103315353394, 0.2308323085308075, 2.4978582859039307, 11.415743827819824, 2.4144582748413086, 6.942951202392578, 0.379177063703537, -0.011793139390647411, -0.17475751042366028, -8.05445384979248, 13.726672172546387, 0.03526470810174942, 0.29011136293411255, -159.08544921875, -0.40671804547309875, -0.6286713480949402, 0.384751558303833, 0.5788285136222839, 0.7045100331306458, 0.1426837295293808, 0.20395319163799286, -0.37832745909690857, -0.6461001038551331, -1.1783652305603027, -0.9888992309570312, 1.276848554611206, 0.8529349565505981, -0.6925095915794373, 1.732786774635315, 0.23605792224407196, 1.4397642612457275, 2.4341626167297363, 1.3182228803634644, 2.5807056427001953, 1.0016379356384277, 1.2908918857574463, 1.5176434516906738, 2.2151107788085938, 3.0804433822631836, 1.5445953607559204, 0.6013043522834778, 2.2249069213867188, 0.9683724641799927, 1.6630834341049194, 1.0555741786956787, 1.3077234029769897, 1.520164966583252, 1.2600111961364746, 1.1378265619277954, 1.1504502296447754, -0.05448688939213753, 0.372103214263916, 0.1684374064207077, 0.7655290961265564, 0.05944743752479553, 0.5050622820854187, 0.320505827665329, 1.3154972791671753, -0.09305723756551743, 0.8982280492782593, 0.4867056608200073, 0.5647482872009277, 0.13418610394001007, 0.690271258354187, 0.32567334175109863, 0.9298478960990906, -0.1417071521282196, 0.8311952352523804, 0.3170643448829651, 0.9006834626197815, 0.06480348855257034, 0.5515538454055786, 0.3003140985965729, 0.28782549500465393, -0.09280697256326675, 0.4358987510204315, 0.16473950445652008, 0.043837565928697586, -0.21252182126045227, 0.712474524974823, 0.4932105243206024, -0.057035114616155624, -0.1705840826034546, -0.2665582299232483, -0.6421555876731873, 0.35017016530036926, -0.14387036859989166, -0.11060134321451187, 1.2530596256256104, 1.1331610679626465, 1.3611210584640503, 1.0740065574645996, 0.7411977648735046, 0.2834552824497223, 2.934769868850708, 3.048475503921509, 2.401529550552368, 0.9926343560218811, 0.9144255518913269, 0.8618057370185852, 0.006950654089450836, 0.782966136932373, 0.6391353607177734, 0.9835235476493835, 0.2968132197856903, 0.12545588612556458, 1.9531956911087036, 1.153342366218567, 0.21261000633239746, 0.5586487054824829, 0.5515046119689941, 0.182867169380188, 0.15227104723453522, 0.9117034077644348, 0.5825621485710144, 0.8241159915924072, -0.2447684109210968, -0.5811120271682739, -0.8582577705383301, -0.26519033312797546, -0.14317388832569122, 0.6782941818237305, 0.7970190644264221, 1.3394062519073486, 0.31428781151771545, -1.270024299621582, -0.5277531147003174, 0.4809548556804657, -1.859432578086853, -0.8835269212722778, -1.51180899143219, -2.4005470275878906, -0.9432553052902222, -2.47320818901062, -1.0926566123962402, -1.327350378036499, -1.450195074081421, -2.316866874694824, -3.2048487663269043, -1.574819564819336, -0.539912760257721, -2.19111704826355, -1.0004551410675049, -1.706177830696106, -1.026258945465088, -1.2357838153839111, -1.4902604818344116, -1.3973653316497803, -1.056719183921814, -1.2585408687591553, -0.03911249712109566, -0.475729376077652, -0.012611662968993187, -0.9795836210250854, -0.2500004470348358, -0.7511481046676636, -0.7014085650444031, -1.4828335046768188, 0.03260655701160431, -0.7722057700157166, -0.30374693870544434, -0.6167660355567932, -0.04362953081727028, -0.7577283382415771, -0.25374636054039, -0.7800593972206116, 0.3389913737773895, -0.7093072533607483, -0.46981412172317505, -0.8780418038368225, 0.012762768194079399, -0.3979136645793915, -0.3172326683998108, -0.29384326934814453, -0.04235990345478058, -0.4121563136577606, -0.3217425048351288, 0.09652094542980194, -0.14689096808433533, -0.799673855304718, -0.6893338561058044, -0.3845553398132324, 0.2253190577030182, 0.28787529468536377, 0.467214435338974, -0.4973415434360504, 0.09886517375707626, 0.19428466260433197, -1.2496248483657837, -1.3548314571380615, -1.402904987335205, -0.9054427146911621, -0.6342453956604004, -0.4016222059726715, -1.531589388847351, -3.1153032779693604, -2.5563337802886963, -1.2360167503356934, -0.8736165165901184, -0.9458446502685547, 0.057179395109415054, -0.6529570817947388, -0.5880138874053955, -1.0133585929870605, -0.3900461196899414, -0.18856698274612427, -2.2752933502197266, -0.9560835361480713, -0.3810197114944458, -0.4067794680595398, -0.4488714039325714, -0.08817335963249207, -0.19656842947006226, -1.0010647773742676, -0.5717464089393616, -0.5949568152427673, 0.088893823325634, 0.6765756607055664, 0.863964319229126, 0.23964524269104004, 0.2005004733800888, -0.7381905913352966, -0.7229442596435547, -1.15565025806427, -0.5008231997489929, 1.2769683599472046, 0.5431281328201294, -0.41909027099609375, 1.6773723363876343, 1.0654959678649902, 1.363873839378357, 2.577305555343628, 0.9604941606521606, 2.573745012283325, 0.9130794405937195, 1.2603247165679932, 1.3415553569793701, 2.334581136703491, 3.236938238143921, 1.6211953163146973, -0.24978631734848022, 2.0826923847198486, 1.2304937839508057, 1.4990036487579346, 1.0293259620666504, 1.2390410900115967, 1.5301235914230347, 1.2602015733718872, 1.1598795652389526, 1.06606924533844, 0.11481449753046036, 0.39755114912986755, 0.42581531405448914, 0.8909477591514587, 0.11762230843305588, 0.7883768677711487, 0.84607994556427, 1.6059443950653076, -0.17164760828018188, 1.0262399911880493, 0.37056684494018555, 0.6412549614906311, 0.19475476443767548, 0.8455633521080017, 0.30318698287010193, 0.9896240830421448, -0.2364022135734558, 0.6539768576622009, 0.7167876958847046, 0.811370313167572, -0.025442959740757942, 0.5032809972763062, 0.28555721044540405, 0.23520271480083466, 0.1785678118467331, 0.39861637353897095, 0.23411190509796143, -0.15846410393714905, 0.23420950770378113, 0.6505598425865173, 0.6729646325111389, 0.30918487906455994, -0.2147253453731537, -0.0805697813630104, -0.6349985003471375, 0.3706757128238678, -0.08689811080694199, -0.2093910574913025, 1.250820517539978, 1.2184782028198242, 1.3621662855148315, 0.9696751832962036, 0.6886918544769287, 0.20584699511528015, 1.4458370208740234, 2.9813807010650635, 3.18683123588562, 1.2199821472167969, 0.9232864379882812, 1.0173033475875854, -0.018200814723968506, 0.680754542350769, 0.5266239643096924, 1.0290035009384155, 0.41298139095306396, 0.26716676354408264, 2.2691152095794678, 0.961639404296875, 0.15959353744983673, 0.48409610986709595, 0.5433118939399719, 0.08852286636829376, -0.03947044909000397, 0.8682109713554382, -0.5318871140480042, -0.5030391812324524, 0.26828622817993164, 0.5441595315933228, 0.781224250793457, 0.34886404871940613, 0.20735856890678406, -0.7190834283828735, -0.7733364105224609, -1.212363839149475, -0.36193424463272095, 1.4043164253234863, 0.6287188529968262, -0.5259811878204346, 1.636110544204712, 4.26112699508667, 1.3977693319320679, 2.5335309505462646, 1.4603873491287231, 2.5290608406066895, 0.8937587141990662, 1.2686960697174072, 1.5291714668273926, 2.2742104530334473, 3.237992525100708, 1.4308949708938599, 0.48742997646331787, 2.193636655807495, 1.0421017408370972, 1.5803086757659912, 1.001723289489746, 1.3306912183761597, 1.5946170091629028, 1.398392915725708, 1.3004380464553833, 1.0494269132614136, 0.12198827415704727, 0.353340208530426, 0.4266543686389923, 0.8502677083015442, 0.2578189969062805, 0.6877743005752563, 0.6749987006187439, 1.589471459388733, -0.14116521179676056, 1.040137529373169, 0.4916624426841736, 0.4794861972332001, 0.16243241727352142, 0.842799186706543, 0.3313240110874176, 0.8214824795722961, -0.029637884348630905, 0.6293928027153015, 0.7284616231918335, 0.8371362090110779, -0.00013269793998915702, 0.5887269973754883, 0.40477144718170166, 0.3123055696487427, 0.09919605404138565, 0.47714272141456604, 0.162660151720047, -0.17179422080516815, 0.21068352460861206, 0.7757437825202942, 0.6592679619789124, 0.29444342851638794, -0.36484673619270325, -0.11290670931339264, -0.45024874806404114, 0.3623316287994385, -0.21816875040531158, -0.1526898890733719, 1.2754018306732178, 1.5355931520462036, 1.3780335187911987, 1.0633491277694702, 0.659041166305542, 0.19096770882606506, 1.5383731126785278, 2.9813828468322754, 3.264423131942749, 1.3181312084197998, 0.8970950841903687, 0.8458815813064575, 0.08818908780813217, 0.6782749891281128, 0.6739600896835327, 1.0144459009170532, 0.24742408096790314, 0.09595700353384018, 2.33469295501709, 0.9648230075836182, 0.2152952253818512, 0.5277570486068726, 0.6701862812042236, 0.11104635894298553, -0.008986016735434532, 0.8464317321777344, -0.6005939245223999, -0.6416574716567993, 0.12787888944149017, 0.519671618938446, 0.7248276472091675, 0.1684955507516861, 0.1987256109714508, -0.6830629110336304, -0.7839223742485046, -1.2371307611465454, -1.0717519521713257, 1.3692030906677246, 0.8768095374107361, -0.7876304984092712, 1.8158602714538574, 0.3931213319301605, 1.6375144720077515, 2.4715702533721924, 1.4682286977767944, 2.608262300491333, 0.9067097306251526, 1.3750423192977905, 1.4358627796173096, 2.289135217666626, 3.1341562271118164, 1.6185520887374878, 0.6295635104179382, 2.1696391105651855, 0.8269528150558472, 1.6992709636688232, 1.1447465419769287, 1.2837194204330444, 1.4437756538391113, 1.4014016389846802, 1.0449012517929077, 1.080278992652893, 0.12303435057401657, 0.28362587094306946, 0.20950162410736084, 0.8210135102272034, 0.15366126596927643, 0.5670651197433472, 0.5195554494857788, 1.2097681760787964, -0.19844530522823334, 0.8745250701904297, 0.27611637115478516, 0.43773818016052246, 0.2186424285173416, 0.8760428428649902, 0.44570720195770264, 0.8030654191970825, -0.11897523701190948, 0.6506876945495605, 0.3172664940357208, 0.7301618456840515, -0.029334556311368942, 0.5703171491622925, 0.3218229413032532, 0.299481064081192, -0.02812369167804718, 0.2993195354938507, 0.14269781112670898, 0.02241954393684864, -0.19790072739124298, 0.6071950793266296, 0.6461795568466187, 0.12490330636501312, -0.3740408718585968, -0.0602165050804615, -0.6527913212776184, 0.48814189434051514, -0.21445220708847046, -0.225005641579628, 1.2756084203720093, 1.232437252998352, 1.469746708869934, 0.9021191596984863, 0.6458925604820251, 0.4081171452999115, 2.306035280227661, 3.0826146602630615, 2.3463315963745117, 1.0770496129989624, 1.018068790435791, 0.910336971282959, 0.1130421981215477, 0.7826652526855469, 0.4694555997848511, 0.8650839924812317, 0.31786322593688965, 0.2550208270549774, 1.9873223304748535, 1.1453852653503418, 0.33051592111587524, 0.5544898509979248, 0.4452156126499176, 0.2124941647052765, 0.08292680233716965, 0.8491610288619995, -56.80121994018555, -14.151447296142578, -0.18774959444999695, -0.3542330265045166, -0.8086683750152588, -0.05761038511991501, -0.10484757274389267, 0.6895679235458374, 0.7692949175834656, 0.5070134401321411, 1.7576361894607544, 2.4032235145568848, -0.7318966388702393, 1.0726171731948853, 2.981738805770874, -1.114487886428833, -0.40596339106559753, 0.5606130361557007, -5.207275867462158, 12.476569175720215, 0.23585659265518188, 1.904693365097046, -0.5518673658370972, 4.947570323944092, -3.837280035018921, -0.06059196591377258, 2.871915578842163, -0.8866435289382935, -0.07605594396591187, -2.927834987640381, 0.03593759983778, -0.3128579556941986, -0.6111246943473816, -0.07666689902544022, 0.0628674179315567, 1.0550893545150757, 0.7064999938011169, 0.09661006927490234, 8.114603042602539, 0.11041894555091858, -0.21399341523647308, 0.3894084393978119, -0.18029938638210297, -1.3529058694839478, 0.0051324074156582355, -0.18760287761688232, -0.11429450660943985, -1.7869954109191895, -0.08458162844181061, -0.2530703544616699, -0.18161948025226593, -0.39874812960624695, 3.6301748752593994, -0.1379910558462143, -0.17066669464111328, -0.5774021744728088, 0.1965624839067459, -0.24337352812290192, -0.15194885432720184, -0.34497329592704773, -0.17847950756549835, -1.2566121816635132, -0.30973729491233826, 0.004842949565500021, -0.24191004037857056, -0.313288152217865, -0.432453453540802, -0.18742893636226654, -0.17586643993854523, -0.1488223522901535, -0.12833110988140106, -0.39797917008399963, -0.19953987002372742, -0.09475917369127274, -0.17185315489768982, -0.48886269330978394, -0.487642377614975, 0.04784593731164932, 1.3774009943008423, -0.09344834089279175, 0.7785547971725464, -0.2757335901260376, -0.8404405117034912, 0.03939834237098694, -0.12825831770896912, -0.13465513288974762, 0.44766923785209656, 0.16001445055007935, -22.276966094970703, -1.7702490091323853, -0.0713605135679245, -0.6156205534934998, -1.4816166162490845, 0.0003315433277748525, -0.25746849179267883, 14.080020904541016, 0.024155687540769577, -0.036030080169439316, 0.07861766219139099, -0.563843846321106, 0.8405486941337585, 0.7216206789016724, -0.10024264454841614, -0.6815454363822937, -0.8117128014564514, -0.12413720041513443, -0.28767168521881104, 0.7507040500640869, 0.79880291223526, 1.3988380432128906, 1.0554957389831543, -1.1341222524642944, -0.8427881598472595, 0.6588563919067383, -1.814319372177124, -0.27744153141975403, -1.5099965333938599, -2.63364577293396, -1.3798142671585083, -2.4620635509490967, -0.8090096712112427, -1.377532958984375, -1.6074717044830322, -2.1487228870391846, -3.217214822769165, -1.539404034614563, -0.5151381492614746, -2.0406301021575928, -1.0206210613250732, -1.5512062311172485, -1.066892147064209, -1.3595800399780273, -1.422608494758606, -1.3157989978790283, -1.0305311679840088, -1.1775572299957275, 0.025436030700802803, -0.3435658812522888, -0.2715975344181061, -0.9117682576179504, -0.14039325714111328, -0.5204090476036072, -0.40074023604393005, -1.1244744062423706, 1.3476958274841309, -0.7980905771255493, -0.34210821986198425, -0.4770492911338806, 0.028293397277593613, -0.8690755367279053, -0.42223358154296875, -0.836659848690033, 0.13816438615322113, -0.7555708885192871, -1.4806468486785889, -0.7790289521217346, 0.02098878100514412, -0.5725722312927246, -0.2562553286552429, -0.32207733392715454, 0.18862926959991455, -0.40144485235214233, 0.011012431234121323, 0.14454549551010132, 0.19271962344646454, -0.6912900805473328, -0.5944287776947021, 0.0032009859569370747, 0.21535104513168335, 0.08399953693151474, 0.4371108114719391, -0.38139209151268005, 0.2078593671321869, 0.08682353049516678, -1.0982259511947632, -1.118467092514038, -1.5462558269500732, -1.0345520973205566, -0.6848118901252747, -0.3011939823627472, -2.814122438430786, -3.083674192428589, -1.9439293146133423, -0.8705432415008545, -0.8261646628379822, -0.8885801434516907, -0.06915400922298431, -0.6567742228507996, -0.18422433733940125, -0.9046079516410828, -0.4383082091808319, -0.07741483300924301, -1.873676061630249, -1.9145755767822266, -0.23813050985336304, -0.811942458152771, -0.5244396328926086, -0.04697516933083534, -0.182030588388443, -0.8345677256584167, -0.25572437047958374, 0.31898754835128784, 0.1516154706478119, 0.3784807324409485, -1.4377514123916626, -0.017763782292604446, 0.006646250374615192, -0.5897576808929443, -0.7104454040527344, -1.2158955335617065, -3.0753180980682373, -0.4261987805366516, 12.003192901611328, -0.18148554861545563, 1.6016343832015991, 0.5072712898254395, -2.991880178451538, 0.36880654096603394, -0.04196963086724281, 0.4132213890552521, 3.644460678100586, 19.40183448791504, 0.4083648920059204, -0.04513901099562645, 0.9595772624015808, 0.18046723306179047, -0.018884524703025818, 0.14654026925563812, -0.7082056999206543, 0.0008586105541326106, 0.0435924306511879, -0.0766819640994072, -0.20758089423179626, 0.023481043055653572, -0.022992320358753204, -0.044576358050107956, 21.73570442199707, -0.21417291462421417, -0.31068986654281616, -0.19017793238162994, -0.15974323451519012, -0.17240677773952484, -0.08980873972177505, -0.02164374105632305, -0.5421410799026489, 0.014050119556486607, -0.057595156133174896, -0.22192420065402985, 19.47360610961914, -0.14409269392490387, -0.22697722911834717, -0.03573762625455856, -0.6156139373779297, -0.045350100845098495, -0.16688668727874756, -0.017508462071418762, -0.18324628472328186, -0.19444894790649414, -0.3148132264614105, -0.10279625654220581, -0.13189741969108582, -0.08806000649929047, 32.851585388183594, -0.6846795678138733, -0.26579776406288147, -0.020532725378870964, 0.10784540325403214, -0.6826676726341248, -1.1180943250656128, -0.9135575890541077, -1.2716460227966309, -0.051427051424980164, -1.2954837083816528, -0.10623038560152054, -2.2831122875213623, -0.035184647887945175, -4.364250183105469, -0.08836710453033447, -0.05583625286817551, -0.09623824805021286, -18.05628776550293, 0.495023250579834, 0.17405302822589874, -0.15393826365470886, 0.007149766199290752, -0.12751337885856628, -0.21903882920742035, -0.11690343171358109, -6.029508113861084, -6.286768913269043, -0.4862957000732422, -0.00841100700199604, -106.7051773071289, -33.096866607666016, -0.22958901524543762, 5.009400844573975, -4.870616912841797, -0.008741048164665699, -2.145540952682495, -0.1291254460811615, -0.3456064462661743, -0.7874621152877808, 0.11811321973800659, 0.4961678981781006, 0.8507356643676758, 0.31109189987182617, 0.12615905702114105, -0.6484752297401428, -0.8193530440330505, -1.363515019416809, -0.39939379692077637, 1.3482391834259033, 0.614769458770752, -0.3825177848339081, 1.6779334545135498, 4.372943878173828, 1.3199337720870972, 2.55778431892395, 1.3940620422363281, 2.6366376876831055, 1.0289734601974487, 1.3398358821868896, 1.367051124572754, 1.8663303852081299, 3.1488635540008545, 1.6122926473617554, -0.3451955318450928, 1.987937092781067, 1.045506477355957, 1.6692523956298828, 1.076711893081665, 1.2719875574111938, 1.6290814876556396, 1.3335528373718262, 1.2035526037216187, 1.1436285972595215, 0.009594276547431946, 0.4236528277397156, 0.34305500984191895, 0.9403334259986877, 0.186759352684021, 0.8152167201042175, 0.6991836428642273, 1.4957852363586426, -0.1164313554763794, 1.1160130500793457, 0.25823724269866943, 0.6747837662696838, 0.014120438136160374, 0.7943393588066101, 0.3858359158039093, 0.7986517548561096, 0.04141387715935707, 0.7701690196990967, 0.6347532868385315, 1.1564903259277344, 0.07364115118980408, 0.5817779898643494, 0.38106223940849304, 0.39930233359336853, 0.17137157917022705, 0.2800277769565582, 0.2551738917827606, -0.07492279261350632, 0.19717678427696228, 0.7071451544761658, 0.8601028323173523, 0.15870635211467743, -0.3728155791759491, -0.2440648376941681, -0.4857249855995178, 0.5315850973129272, -0.23176896572113037, -0.1742181032896042, 1.1022788286209106, 1.5621484518051147, 1.4421554803848267, 0.9081036448478699, 0.6271923184394836, 0.4233575463294983, 1.5830520391464233, 2.993881940841675, 3.41560435295105, 1.1273272037506104, 1.0601725578308105, 0.8935339450836182, 0.07937508821487427, 0.6667394638061523, 0.46727555990219116, 0.9720954298973083, 0.31306570768356323, 0.20880906283855438, 2.3436191082000732, 1.0587700605392456, 0.17657996714115143, 0.513343870639801, 0.44703051447868347, 0.024708904325962067, 0.08929786831140518, 0.8636502623558044, -0.5039831399917603, -0.8149739503860474, 0.15549060702323914, 0.5605978965759277, 0.7394363880157471, 0.034288641065359116, 0.3114113509654999, -0.8136886954307556, -0.78770512342453, -1.215367317199707, -0.3042708933353424, 1.3430238962173462, 0.8105869889259338, -0.3245096504688263, 1.7687708139419556, 4.349796295166016, 1.459321141242981, 2.405777931213379, 1.4983571767807007, 2.518437147140503, 0.9134923219680786, 1.24137544631958, 1.3457478284835815, 1.816027045249939, 3.235405445098877, 1.5223313570022583, -0.4010748267173767, 2.1362228393554688, 1.0145297050476074, 1.6047039031982422, 1.2129600048065186, 1.3380721807479858, 1.5210533142089844, 1.2514965534210205, 1.148212194442749, 1.1937311887741089, 0.02084837108850479, 0.482487291097641, 0.48379984498023987, 0.9798768758773804, 0.14606598019599915, 0.7855446338653564, 0.8021541237831116, 1.381439208984375, -0.08614232391119003, 1.0535002946853638, 0.4298691153526306, 0.5024979114532471, 0.055451128631830215, 0.8144237399101257, 0.42879316210746765, 0.9803608059883118, -0.09275074303150177, 0.7896514534950256, 0.7642918825149536, 0.759797990322113, 0.005569723434746265, 0.39364930987358093, 0.28167033195495605, 0.297913134098053, 0.1805001199245453, 0.3194378614425659, 0.4017198383808136, -0.15788398683071136, 0.1521838754415512, 0.8012791275978088, 0.8249431252479553, 0.3808400630950928, -0.21746566891670227, -0.1361147165298462, -0.4802781939506531, 0.39037975668907166, -0.1510380655527115, -0.11622194200754166, 1.1559572219848633, 1.2339847087860107, 1.4884576797485352, 1.131054401397705, 0.6433441042900085, 0.18698187172412872, 1.5702699422836304, 3.0558269023895264, 2.6246159076690674, 1.273658275604248, 0.8848209977149963, 1.03648042678833, -0.0012658569030463696, 0.680117130279541, 0.6840394735336304, 1.0479388236999512, 0.2274094671010971, 0.17887642979621887, 2.2029988765716553, 0.9377766847610474, 0.31960272789001465, 0.5836368799209595, 0.6761590242385864, 0.13493165373802185, 0.12582474946975708, 0.992216169834137, 0.47456759214401245, 0.6922589540481567, -0.1855705976486206, -0.6971334218978882, -0.887053370475769, -0.21104511618614197, -0.13083705306053162, 0.6962928771972656, 0.7555514574050903, 1.3254557847976685, 0.5020895600318909, -1.2432564496994019, -0.5599234104156494, 0.451595664024353, -1.6830817461013794, -0.9948074221611023, -1.536298394203186, -2.5452537536621094, -1.4227041006088257, -2.4566104412078857, -0.916395902633667, -1.3843921422958374, -1.54200279712677, -2.229848623275757, -3.1529195308685303, -1.3960180282592773, -0.5726909041404724, -2.195634365081787, -0.89063560962677, -1.669413685798645, -1.1913962364196777, -1.4361872673034668, -1.5772064924240112, -1.261489987373352, -1.1307697296142578, -1.1318963766098022, -0.0918487161397934, -0.2859872579574585, -0.0038845925591886044, -0.8310121893882751, -0.09143610298633575, -0.6529207229614258, -0.8132506608963013, -1.2922431230545044, 0.09331739693880081, -0.9592680931091309, -0.2886314392089844, -0.556973934173584, -0.13302180171012878, -0.8495572805404663, -0.41999366879463196, -0.8087546229362488, 0.198253333568573, -0.7250763773918152, -0.419642835855484, -0.7244623303413391, -0.06659039855003357, -0.3718365430831909, -0.4105495810508728, -0.215079665184021, -0.22190220654010773, -0.42824459075927734, -0.45153114199638367, 0.07241658866405487, -0.01894005388021469, -0.7611389756202698, -0.8470483422279358, -0.31710442900657654, 0.20214024186134338, 0.05845746025443077, 0.6913867592811584, -0.3538076877593994, 0.2046125829219818, 0.05244406685233116, -1.2302556037902832, -1.4253175258636475, -1.4894293546676636, -1.1133145093917847, -0.6371009349822998, -0.26700738072395325, -1.589145302772522, -3.0421440601348877, -2.5315396785736084, -1.1917030811309814, -1.0585963726043701, -0.8579204082489014, 0.012722031213343143, -0.6749125719070435, -0.48217421770095825, -0.908758282661438, -0.3413941264152527, -0.27042534947395325, -2.178652048110962, -1.0290472507476807, -0.2445281744003296, -0.42455798387527466, -0.47516241669654846, -0.08350427448749542, -0.1550547033548355, -0.808168351650238, -0.5934821367263794, -0.6217980980873108, 0.21059148013591766, 0.5637927651405334, 0.7217454314231873, 0.11845924705266953, 0.2433079332113266, -0.40325722098350525, -0.6194440722465515, -1.277657151222229, -0.9599111080169678, 1.0990023612976074, 0.9493449926376343, -0.7359316945075989, 1.8650768995285034, 0.3666505217552185, 1.5127782821655273, 2.500866413116455, 1.046462059020996, 2.5280137062072754, 1.0011956691741943, 1.298850417137146, 1.4209318161010742, 1.907609462738037, 3.1470844745635986, 1.4042335748672485, 0.5238806009292603, 2.051941156387329, 1.0599504709243774, 1.5536439418792725, 1.200449824333191, 1.3390061855316162, 1.4206416606903076, 1.3061033487319946, 1.1451112031936646, 1.085272192955017, -0.0269584059715271, 0.4277454614639282, 0.352082222700119, 0.8048105835914612, 0.2562040686607361, 0.63601154088974, 0.2687901556491852, 1.3364198207855225, -1.5643867254257202, 0.7271315455436707, 0.3902602195739746, 0.5086250305175781, 0.019958999007940292, 0.7116518616676331, 0.26307493448257446, 0.8241589665412903, -0.1213846281170845, 0.6629634499549866, 0.469207227230072, 0.7397229671478271, 0.002996389754116535, 0.378352552652359, 0.21426089107990265, 0.3714514970779419, -0.12755392491817474, 0.24016432464122772, -0.04230710119009018, -0.08580906689167023, -0.1108865737915039, 0.5956770777702332, 0.5284342169761658, 0.06305302679538727, -0.2407395839691162, -0.06492673605680466, -0.4916420578956604, 0.48577985167503357, -0.05260702967643738, -0.017427964136004448, 1.1616544723510742, 1.3033207654953003, 1.527848720550537, 0.8932463526725769, 0.6445272564888, 0.34491854906082153, 2.7684473991394043, 3.137208938598633, 1.8608629703521729, 0.8548393249511719, 1.038639783859253, 0.969724178314209, -0.04320814833045006, 0.6414285898208618, 0.23999328911304474, 0.7778677344322205, 0.21761074662208557, 0.2329217940568924, 1.8669438362121582, 0.9623836874961853, 0.2308725118637085, 0.565108597278595, 0.4916509985923767, 0.2452893853187561, 0.03085728920996189, 1.0297038555145264, 1.161635398864746, 9.901204109191895, -0.037529539316892624, -0.034997567534446716, -0.25338688492774963, -0.13454227149486542, -0.11158210039138794, -18.728437423706055, 9.621607780456543, 3.5917532444000244, 1.9448347091674805, -20.65024757385254, -42.4472770690918, -19.592294692993164, -20.647571563720703, -4.62833833694458, 28.306325912475586, -0.8437386751174927, -2.100412130355835, -1.5205261707305908, -0.5225315093994141, -0.4469055235385895, -0.7152748107910156, -0.9462557435035706, 63.9045295715332, -0.2729223370552063, -14.389724731445312, 84.22908020019531, 8.377567291259766, 30.610279083251953, -0.31653136014938354, -0.3664127290248871, 24.170867919921875, -0.1791929006576538, -0.28324368596076965, -0.3008226454257965, -0.2024661749601364, 17.34783172607422, -0.1773824244737625, 10.670148849487305, -15.724040031433105, 10.213678359985352, -0.523842453956604, 9.429829597473145, -0.12077674269676208, -0.27457189559936523, -5.163954734802246, 1.272387981414795, -0.011837265454232693, -0.31433790922164917, -18.261398315429688, -0.08460602909326553, -0.13487930595874786, -0.13316690921783447, -1.7036172151565552, -0.09511967748403549, -0.11062435805797577, -0.30078181624412537, -0.23387794196605682, -0.2043824940919876, -0.008378877304494381, -0.16227345168590546, -0.05657045170664787, -0.004089131485670805, 2.3013627529144287, -0.11511880159378052, -0.3900409936904907, -0.03357267752289772, 0.09713973104953766, -0.06123226508498192, 23.043460845947266, -0.15792202949523926, 0.5550811290740967, -0.5657082796096802, 4.1439738273620605, 16.765918731689453, 7.856770038604736, 3.7772812843322754, -0.3124656081199646, -0.24940313398838043, 26.295475006103516, 9.135519981384277, 24.17909812927246, 1.034959077835083, -0.32065704464912415, -0.25986477732658386, -0.11530362069606781, -0.11686141043901443, 2.478963613510132, -0.3795199990272522, -0.20295530557632446, -0.8074599504470825, -8.034762382507324, -0.20650243759155273, -0.02028665877878666, -0.1514805406332016, 4.266226768493652, 0.04247583448886871, 0.06836718320846558, -0.20406463742256165, -0.5735689997673035, -0.6491272449493408, 0.21906250715255737, 0.494365930557251, 0.8071540594100952, 0.0334816537797451, 0.22439631819725037, -0.6350592970848083, -0.8927509188652039, -1.1994280815124512, -0.3454638719558716, 1.360395073890686, 0.6474078893661499, -0.34175536036491394, 1.647518515586853, 4.405701160430908, 1.4605927467346191, 2.532263994216919, 1.3597887754440308, 2.638451099395752, 0.93550044298172, 1.1695266962051392, 1.385097861289978, 2.195150852203369, 3.080515146255493, 1.5983755588531494, -0.24432700872421265, 2.2464468479156494, 0.9010893106460571, 1.572930097579956, 1.0414245128631592, 1.3396254777908325, 1.42471444606781, 1.398648738861084, 1.0746119022369385, 1.1420326232910156, 0.1576615273952484, 0.3397315740585327, 0.366732656955719, 0.7686574459075928, 0.25425392389297485, 0.6464563012123108, 0.8529269099235535, 1.6066452264785767, -0.2350366711616516, 1.218779444694519, 0.41390281915664673, 0.6849692463874817, 0.1032264307141304, 0.9038705825805664, 0.40969911217689514, 0.8061321377754211, -0.007514185272157192, 0.8002212047576904, 0.636906087398529, 0.6225029826164246, 0.10163066536188126, 0.43249842524528503, 0.20222121477127075, 0.23062479496002197, 0.17807506024837494, 0.32355037331581116, 0.3264802396297455, -0.026255814358592033, 0.05942526087164879, 0.6613010764122009, 0.6608654856681824, 0.18090984225273132, -0.2652311623096466, -0.173283651471138, -0.6474335789680481, 0.46031659841537476, -0.08340457081794739, -0.22317831218242645, 1.1539905071258545, 1.3967328071594238, 1.5373455286026, 1.103622555732727, 0.6668803691864014, 0.29313352704048157, 1.6417579650878906, 3.069558620452881, 3.0869791507720947, 1.1489677429199219, 0.9195663332939148, 0.8410302996635437, -0.03998010605573654, 0.5659787654876709, 0.5179091691970825, 0.9202679991722107, 0.28998124599456787, 0.2542988955974579, 2.3246243000030518, 0.9346193075180054, 0.2826792895793915, 0.6018133163452148, 0.5234222412109375, 0.17786912620067596, 0.1881076842546463, 1.0357930660247803, 0.37237221002578735, 0.7068068981170654, -0.10552673041820526, -0.6631776094436646, -0.7714059352874756, -0.10107984393835068, -0.2909369170665741, 0.7923951148986816, 0.7781870365142822, 1.2708126306533813, 0.4253212511539459, -1.284758448600769, -0.6904871463775635, 0.47444450855255127, -1.8804067373275757, -4.379486560821533, -1.2785688638687134, -2.604724884033203, -1.4224328994750977, -2.605142593383789, -0.9149799942970276, -1.2751669883728027, -1.5686715841293335, -2.2349438667297363, -3.1050732135772705, -1.394572377204895, 0.426139235496521, -2.104841947555542, -1.0131640434265137, -1.5292565822601318, -1.092477560043335, -1.4689770936965942, -1.5540196895599365, -1.3346068859100342, -1.1286195516586304, -1.258900761604309, -0.17095187306404114, -0.4415469765663147, -0.31653445959091187, -0.8867587447166443, -0.049468234181404114, -0.7606491446495056, -0.8480420708656311, -1.43607759475708, 0.26081132888793945, -1.20256769657135, -0.46141284704208374, -0.48690858483314514, -0.14974823594093323, -0.7698106169700623, -0.42254629731178284, -0.8224038481712341, 0.10380443930625916, -0.7524206638336182, -0.7027066946029663, -0.8763280510902405, -0.09425270557403564, -0.5666542053222656, -0.3628547787666321, -0.3854634463787079, -0.27234748005867004, -0.27971360087394714, -0.4404471218585968, 0.033304363489151, -0.19578883051872253, -0.745542585849762, -0.760949432849884, -0.32081153988838196, 0.31439197063446045, 0.11365415155887604, 0.633655846118927, -0.45060428977012634, 0.15381814539432526, 0.17077188193798065, -1.2179279327392578, -1.493625521659851, -1.530032753944397, -0.9708558320999146, -0.6265876293182373, -0.3226151764392853, -1.619158148765564, -3.032395124435425, -3.4046685695648193, -1.3324408531188965, -1.078819751739502, -0.9526862502098083, 0.10458800941705704, -0.7081135511398315, -0.5134581327438354, -1.0260261297225952, -0.3427356481552124, -0.09988962858915329, -2.395115613937378, -1.0176409482955933, -0.3654569983482361, -0.5655829310417175, -0.4464222490787506, -0.11648882180452347, -0.04751931503415108, -0.9193633198738098, -0.4093737006187439, -0.6794418096542358, 0.538090705871582, -1.5771551132202148, 0.4940848648548126, -0.475830614566803, -0.10659348964691162, -0.8613696098327637, 0.815110445022583, 0.8824114203453064, -0.43883809447288513, -0.5048105120658875, -0.4345971345901489, 1.0691962242126465, -0.8596880435943604, 1.1182911396026611, -0.28860053420066833, 0.41895654797554016]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (1.54, 2.5)}}, 'et4_eta2': {'discriminator': {'threshold': 0.62999845743179317, 'nodes': [100, 7, 1], 'bias': [0.2617207169532776, -0.09929532557725906, -0.005016771145164967, 0.01386977918446064, 0.03250758349895477, -0.06407539546489716, 0.10685599595308304, -0.12187347561120987], 'weights': [-1.199082374572754, 0.04656407609581947, 0.20531979203224182, 0.7296028733253479, 0.4635359048843384, 0.3549058437347412, -0.03367256373167038, 0.7378533482551575, 0.006520850118249655, -1.7109954357147217, -1.3579293489456177, -0.9316742420196533, -0.19753077626228333, 0.17953670024871826, 0.09031382203102112, -0.27410244941711426, 1.21454918384552, 0.2556364834308624, 0.4339869022369385, 0.2299942672252655, 1.1637403964996338, 2.030143976211548, 0.08354060351848602, 0.34558212757110596, 0.8569033741950989, 0.26701757311820984, 0.5901845097541809, 0.6635958552360535, 3.5414912700653076, 2.1423134803771973, 0.2294524610042572, 0.4037497043609619, 0.25770220160484314, 0.35666924715042114, 0.2899927794933319, 0.6750504374504089, 3.4330482482910156, 1.0259796380996704, 1.0824795961380005, 0.6384493112564087, 0.9241836071014404, 1.5686055421829224, 0.7037254571914673, 0.2379872351884842, -0.1277540773153305, 0.08216521888971329, 1.2299778461456299, 0.09574083983898163, 0.1815401166677475, 0.27585047483444214, 0.3812668025493622, -0.28592103719711304, 0.9964554905891418, 0.5828621983528137, 0.3051263689994812, -0.6516976356506348, 0.6308650374412537, -0.6287418603897095, 0.06487537920475006, 0.3375721573829651, 0.24116498231887817, 0.399440735578537, 1.3256276845932007, 0.6574133634567261, 1.446028470993042, 0.7139179706573486, 0.7446342706680298, 0.5182504057884216, 0.6090033650398254, 0.625433623790741, 0.5985376834869385, 0.3289506435394287, -0.05630738288164139, 0.20690375566482544, 1.9794971942901611, 1.1038316488265991, 1.3075302839279175, 0.609601616859436, 0.868517279624939, 0.415502667427063, 0.3067322373390198, 0.03904613479971886, 2.0282180309295654, 1.053371787071228, 0.30868881940841675, -0.8434215784072876, 0.5384722948074341, 0.998020589351654, -0.7636846899986267, 0.4631771743297577, 0.31237831711769104, 0.17431049048900604, 3.3461546897888184, 2.1982741355895996, 1.238305687904358, 0.4995076656341553, 0.03218848630785942, 0.09530129283666611, 0.5305764079093933, 0.576552152633667, -0.6420695781707764, 0.2542959153652191, 1.3605433702468872, 2.0910770893096924, 1.3802176713943481, 0.9903801679611206, 0.2790902256965637, 1.715165615081787, -0.05241371691226959, -3.921043872833252, -3.2381484508514404, -1.8061994314193726, -0.18538765609264374, -0.05606934800744057, -0.09095992892980576, -0.09465332329273224, 3.1976921558380127, -0.02497786656022072, 0.16798436641693115, 0.915084719657898, 3.0084352493286133, 4.830656051635742, 0.5200414657592773, 0.9390490055084229, 2.4810855388641357, 0.9523731470108032, 7.853673458099365, 1.6567965745925903, 7.956750392913818, 4.892110347747803, 0.8726530075073242, 1.4740444421768188, 1.1834298372268677, 2.8549044132232666, 4.226935863494873, 1.7545195817947388, 7.859976291656494, 2.4172916412353516, 2.588454008102417, 1.7589004039764404, 2.1907854080200195, 3.561525821685791, 1.6452295780181885, 2.2264137268066406, 0.6648275852203369, 0.6756118535995483, 2.843770742416382, 0.8039820194244385, 0.7652207016944885, 2.053952932357788, 0.8849445581436157, -0.5286306142807007, 2.112271785736084, 1.7383499145507812, 0.9225568771362305, -1.380336046218872, 1.4952472448349, -0.8224055767059326, -1.1865663528442383, 0.8611737489700317, 0.5567664504051208, 1.416256308555603, 3.0695550441741943, 1.712885856628418, 3.2570877075195312, 1.5307596921920776, 2.3422300815582275, 1.6887884140014648, 1.5337268114089966, 1.4789378643035889, 1.6421314477920532, 0.9208935499191284, -0.5786811709403992, -0.0652947872877121, 4.386538028717041, 2.9333114624023438, 2.982999801635742, 1.5842301845550537, 2.4453229904174805, 1.2320727109909058, -0.10164570808410645, 0.740286648273468, 4.954085826873779, 2.6121160984039307, 1.0759104490280151, -1.2665412425994873, 1.6063791513442993, 2.5454864501953125, -0.3626367151737213, 1.0510146617889404, 1.6065025329589844, 0.9974485635757446, 8.004694938659668, 5.0456743240356445, 2.813222885131836, 1.3321949243545532, -0.005931098014116287, 0.10253987461328506, 1.3715828657150269, 1.5512897968292236, -0.5580244064331055, 0.39332470297813416, 1.4604781866073608, 2.015458106994629, 1.5754472017288208, 0.9694701433181763, 0.12348112463951111, 1.8239972591400146, -0.15916378796100616, -3.8626937866210938, -3.0769317150115967, -2.1775729656219482, -0.256427526473999, -0.2031354010105133, -0.1670435220003128, -0.06627321988344193, 3.07605242729187, -0.18094182014465332, -0.06480242311954498, 0.7439988255500793, 3.0167593955993652, 4.875162124633789, 0.41554611921310425, 0.8810564279556274, 2.3811585903167725, 0.8411372303962708, 2.316687822341919, 1.5723975896835327, 7.848791122436523, 4.988923072814941, 0.8879119753837585, 1.6937354803085327, 1.1807661056518555, 1.7647042274475098, 4.127403259277344, 1.7034803628921509, 7.954260349273682, 2.405754804611206, 2.6305832862854004, 1.7620971202850342, 1.9939932823181152, 3.5212669372558594, 1.4896392822265625, 2.2021868228912354, 0.7211077213287354, 0.45960116386413574, 2.8806607723236084, 0.9822272658348083, 0.7168512940406799, 1.997719407081604, 1.0181657075881958, -0.584338903427124, 2.08488130569458, 1.5234706401824951, 0.8245189189910889, -1.2640483379364014, 1.412737250328064, -1.014040231704712, 0.25493770837783813, 0.9143096208572388, 0.4462814927101135, 1.4634040594100952, 3.0987770557403564, 1.8433420658111572, 3.419429302215576, 1.7040537595748901, 2.0836362838745117, 1.7018086910247803, 1.4518789052963257, 1.6004843711853027, 1.4147433042526245, 0.885858416557312, -0.48173049092292786, -0.5499522686004639, 4.570881366729736, 2.842937469482422, 2.871220827102661, 1.5618584156036377, 2.2895889282226562, 1.315529465675354, 0.06335403025150299, 0.5574368238449097, 4.997497081756592, 2.7653884887695312, 1.0977863073349, -1.3368310928344727, 1.6323343515396118, 2.469188928604126, -0.475273996591568, 1.1088588237762451, 1.5990040302276611, 0.884307324886322, 7.866081714630127, 5.083061218261719, 2.8148746490478516, 1.3715864419937134, -0.03885543718934059, -0.04433303326368332, 0.4738650918006897, 1.6801223754882812, 0.5659589171409607, -0.3973660171031952, -1.340793490409851, -2.0771889686584473, -1.3621615171432495, -1.0556734800338745, -0.23205049335956573, -1.8323252201080322, 0.12092233449220657, 3.75590181350708, 3.249427080154419, 2.0822601318359375, 0.3148649334907532, 0.11203834414482117, -0.013941667042672634, 0.0773695781826973, -2.978292226791382, 0.021314475685358047, 0.05332275480031967, -0.6841344237327576, -2.9114952087402344, -4.9379048347473145, -0.3879004120826721, -1.0109463930130005, -2.377368211746216, -0.9028151631355286, -2.2357802391052246, -1.4990040063858032, -7.909063816070557, -4.934169292449951, -0.8280583620071411, -1.4909025430679321, -1.134150743484497, -2.802126169204712, -4.241472244262695, -1.698750376701355, -7.860925197601318, -2.3732221126556396, -2.6382784843444824, -1.702906608581543, -2.072350025177002, -3.611637592315674, -1.5298588275909424, -2.2180089950561523, -0.6474041938781738, -0.6767086982727051, -2.8410837650299072, -0.8066666126251221, -0.7584149241447449, -1.885524868965149, -1.0379120111465454, 0.39286839962005615, -2.290600299835205, -1.7707421779632568, -0.8907083868980408, 1.3172907829284668, -1.4665154218673706, 1.0246610641479492, -0.3834729790687561, -1.0242635011672974, -0.6360778212547302, -1.5279887914657593, -3.2610692977905273, -1.7313520908355713, -3.304475784301758, -1.7252439260482788, -2.2220873832702637, -1.7486913204193115, -1.4446333646774292, -1.491459608078003, -1.6576067209243774, -0.952872633934021, 0.5044817328453064, 0.522040605545044, -4.3985466957092285, -2.750579595565796, -2.8610687255859375, -1.6051177978515625, -2.276841640472412, -1.3428438901901245, 0.009678386151790619, -0.7363388538360596, -4.961111068725586, -2.642904043197632, -1.092788577079773, 1.3029303550720215, -1.7117785215377808, -2.522066831588745, 0.45609137415885925, -1.0616670846939087, -1.7577388286590576, -0.8381150960922241, -7.887571811676025, -5.148916721343994, -2.911863327026367, -1.2740260362625122, -0.05228741466999054, 0.0640641450881958, -0.678358256816864, -1.5088486671447754, -0.7585100531578064, 0.24690280854701996, 1.491066336631775, 2.1176671981811523, 1.3803449869155884, 1.0477854013442993, 0.2841241955757141, 1.8174431324005127, -0.1158878430724144, -3.7308034896850586, -3.196366548538208, -2.0819554328918457, -0.26281511783599854, -0.19266608357429504, 0.01754525676369667, -0.10219784080982208, 3.0718727111816406, -0.06902283430099487, -0.133313849568367, 0.5706177353858948, 2.9574437141418457, 4.9897236824035645, 0.5128845572471619, 0.9910563230514526, 2.330735445022583, 0.8670439124107361, 2.3793842792510986, 1.4715439081192017, 7.923746585845947, 4.995925426483154, 0.9347348809242249, 1.568109393119812, 1.0414421558380127, 1.8422110080718994, 4.104082107543945, 1.62822687625885, 7.85090970993042, 2.2839040756225586, 2.5488712787628174, 1.7019267082214355, 2.0041286945343018, 3.5792922973632812, 1.5251822471618652, 2.205839157104492, 0.7895069122314453, 0.5379122495651245, 2.8484840393066406, 0.7872741222381592, 0.7096336483955383, 1.8969358205795288, 0.9090040922164917, -0.3916996717453003, 2.098754644393921, 1.770819902420044, 0.8679854273796082, -1.3006939888000488, 1.4268206357955933, -0.9077816009521484, 0.37661105394363403, 1.0032528638839722, 0.5596379637718201, 1.3727277517318726, 3.062189817428589, 1.8172791004180908, 3.4061639308929443, 1.6440497636795044, 2.24149227142334, 1.8443653583526611, 1.5291966199874878, 1.6765329837799072, 1.4972254037857056, 0.97321617603302, -0.6068288683891296, -0.4320228397846222, 4.402719020843506, 2.7863337993621826, 2.9500136375427246, 1.6206917762756348, 2.2972049713134766, 1.387008786201477, 0.021307941526174545, 0.6317957043647766, 5.002443313598633, 2.7371201515197754, 0.9843219518661499, -1.2883226871490479, 1.5675159692764282, 2.628980875015259, -0.579679548740387, 1.1656181812286377, 1.588566541671753, 0.8931626677513123, 7.832260608673096, 5.035940647125244, 2.797762393951416, 1.3244043588638306, 0.11319255083799362, 0.09631530940532684, 0.5693351626396179, 1.650315523147583, -0.5736979842185974, 0.29907727241516113, 1.3671034574508667, 1.9833605289459229, 1.502862811088562, 1.3528274297714233, 0.3030700087547302, 1.795560598373413, -0.03257882595062256, -3.780787467956543, -3.216874361038208, -1.9621294736862183, -0.13271425664424896, -0.15094463527202606, -0.030625861138105392, -0.16971103847026825, 3.0409996509552, -0.12825803458690643, 0.04007377102971077, 0.7174224257469177, 2.968981981277466, 4.984785079956055, 0.32645779848098755, 0.8364684581756592, 2.485739231109619, 0.9804881811141968, 8.059494972229004, 1.6594182252883911, 7.890863418579102, 4.903045654296875, 0.9115142822265625, 2.224780559539795, 1.2443386316299438, 2.905517816543579, 4.1217041015625, 1.7049399614334106, 7.890573501586914, 2.33084774017334, 2.1968533992767334, 1.7856111526489258, 2.0114638805389404, 3.613615036010742, 1.5108184814453125, 2.332899332046509, 0.8047070503234863, 0.6067267656326294, 2.870006799697876, 0.7819770574569702, 0.8261892199516296, 1.9574702978134155, 0.8984113931655884, -0.5123070478439331, 2.1647262573242188, 1.563424825668335, 0.84149169921875, -1.3284196853637695, 1.5815709829330444, -0.9307830333709717, -1.3651620149612427, 0.8764187097549438, 0.6924583315849304, 1.5096555948257446, 3.087284564971924, 1.904294490814209, 3.3959085941314697, 1.6763912439346313, 2.1565194129943848, 1.8633981943130493, 1.5981062650680542, 1.646390438079834, 2.2126824855804443, 0.8007594347000122, -0.5922732949256897, -0.34366941452026367, 4.606023788452148, 2.826465129852295, 2.975831985473633, 1.596818208694458, 2.3216636180877686, 1.2806814908981323, 0.04759327322244644, 0.6352857947349548, 4.785883903503418, 2.5806756019592285, 1.406389832496643, -1.2826743125915527, 1.6320470571517944, 2.5798261165618896, -0.49233919382095337, 1.131220817565918, 1.6612789630889893, 0.7703039646148682, 7.94516658782959, 5.1233720779418945, 3.010620594024658, 1.1783536672592163, -0.01573571376502514, -0.024500656872987747, 0.6910185217857361, 1.6006724834442139, 0.73480224609375, -0.32068580389022827, -1.3771878480911255, -1.9521775245666504, -1.4876173734664917, -1.12008798122406, -0.25979989767074585, -1.6781861782073975, 0.06118091195821762, 3.953031539916992, 3.1361849308013916, 1.9844274520874023, 0.29850277304649353, 0.06268055737018585, 0.04694410413503647, 0.1091935783624649, -3.0240843296051025, 0.19513481855392456, -0.07628891617059708, -0.8516464829444885, -2.9313080310821533, -4.892584323883057, -0.3320695757865906, -0.9883604049682617, -2.3850913047790527, -0.7895957827568054, -7.873676300048828, -1.4846075773239136, -7.826855659484863, -4.971644401550293, -1.0073684453964233, -2.2506613731384277, -1.0835527181625366, -4.091296195983887, -4.484903812408447, -1.779901146888733, -7.877384662628174, -2.282275438308716, -2.141773223876953, -1.7564873695373535, -2.041640281677246, -3.6518912315368652, -1.7103898525238037, -2.209954261779785, -0.7307230234146118, -0.5389871597290039, -3.0585718154907227, -0.9420704245567322, -0.7042399048805237, -1.9312578439712524, -0.941736102104187, 0.4209376573562622, -2.2973058223724365, -1.625028371810913, -0.8337602615356445, 1.309154987335205, -1.4649492502212524, 0.873340368270874, 1.2697153091430664, -0.9467819929122925, -0.567506730556488, -1.449963927268982, -3.1961958408355713, -1.8695497512817383, -3.442155361175537, -1.5416744947433472, -2.278475046157837, -1.645463228225708, -1.427484154701233, -1.6315269470214844, -2.216616630554199, -0.9113065004348755, 0.5815272927284241, 0.045872725546360016, -4.606292724609375, -2.7505600452423096, -2.847938060760498, -1.7729849815368652, -2.4185187816619873, -1.281830906867981, 0.05344507470726967, -0.5244730114936829, -4.86573600769043, -2.5995500087738037, -1.3698476552963257, 1.1978867053985596, -1.682853102684021, -2.67765474319458, 0.36277589201927185, -1.0264809131622314, -1.5784780979156494, -0.7622487545013428, -8.03172779083252, -5.162149429321289, -2.980487823486328, -1.2984944581985474, 0.12434207648038864, 0.039750874042510986, -1.3124161958694458, -1.572436809539795, -0.18876421451568604, -1.0405422449111938, -1.1355165243148804, 1.2341020107269287, -1.3890950679779053, -0.7059615850448608, 0.9352350831031799]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (1.37, 1.54)}}, 'et2_eta1': {'discriminator': {'threshold': 0.27499879598617555, 'nodes': [100, 5, 1], 'bias': [-0.029061544686555862, 0.07115764915943146, 0.019344959408044815, -0.1757797747850418, 0.06782937049865723, -0.12644730508327484], 'weights': [1.756556749343872, 1.2913234233856201, -0.6442728638648987, -1.5849488973617554, -0.9681591987609863, -0.34703120589256287, -0.480928897857666, 0.4635566473007202, 2.7999629974365234, 3.682180166244507, -0.25811320543289185, -7.650780200958252, -7.506412982940674, -2.8826897144317627, -4.782769203186035, -4.413056373596191, -5.161284923553467, -5.507318019866943, -6.594288349151611, -8.124002456665039, -5.251914024353027, -5.55857515335083, -4.189398765563965, -3.764343500137329, -3.9656152725219727, -3.849748373031616, -3.895353317260742, -3.9420130252838135, -2.9963934421539307, -3.193568468093872, -2.3932883739471436, -2.0835120677948, -3.698894739151001, -3.1520891189575195, -1.6031136512756348, -2.793837308883667, -2.235158920288086, -2.0529158115386963, -1.532468318939209, -1.538753867149353, -1.6580761671066284, -1.62722909450531, -2.9714083671569824, -2.1453359127044678, -1.2659714221954346, -1.2260502576828003, -1.1973389387130737, -1.5025995969772339, -0.7388455867767334, -1.0183221101760864, -1.0035122632980347, -0.6884371042251587, -0.45175278186798096, -0.980915367603302, -1.9811737537384033, -1.226658821105957, -0.8294365406036377, 1.6171855926513672, -0.8794742226600647, 0.7183095216751099, -0.0653151199221611, 0.7566898465156555, -1.123794436454773, 0.6581045985221863, -0.892948567867279, -2.1357944011688232, -0.9593702554702759, -4.708323001861572, 2.789361000061035, 1.1390219926834106, -0.673845648765564, -0.5312865376472473, 0.44715917110443115, 0.2671221196651459, -0.8546791076660156, -1.6015502214431763, -1.6695938110351562, -1.5275843143463135, -0.7200620770454407, -0.3451833724975586, -6.460891246795654, -5.874619483947754, -4.774132251739502, -1.8811436891555786, -2.728989362716675, -2.566389322280884, -2.4971728324890137, -2.8685085773468018, -2.284651279449463, -1.2398645877838135, -0.21698573231697083, 0.20892733335494995, -3.9181132316589355, -2.788163900375366, -1.217857003211975, -0.10672779381275177, -2.2597343921661377, -2.228713274002075, -1.4868111610412598, -0.750899612903595, -1.8251063823699951, -1.1889960765838623, 0.6020057201385498, 1.9034740924835205, 0.8605738878250122, 0.3944154679775238, 0.4633791446685791, -0.41065654158592224, -2.585116147994995, -3.7739741802215576, 0.3409169614315033, 7.6753387451171875, 7.5409321784973145, 2.9287683963775635, 4.767678260803223, 4.38762092590332, 5.017165184020996, 5.328006267547607, 6.601678371429443, 7.975613594055176, 5.219958782196045, 5.472799301147461, 4.325254440307617, 3.6673357486724854, 3.8112282752990723, 3.7330210208892822, 3.943687915802002, 3.9255552291870117, 3.2157070636749268, 3.1839513778686523, 2.017850637435913, 1.9788899421691895, 3.794508218765259, 3.23036527633667, 1.584195613861084, 2.7783520221710205, 2.1057605743408203, 2.019235610961914, 1.5729364156723022, 1.368862271308899, 1.529820203781128, 1.495448350906372, 3.081106662750244, 2.3066558837890625, 1.1767699718475342, 1.0655978918075562, 1.0781625509262085, 1.524297833442688, 0.6541399359703064, 1.1615946292877197, 0.8798704743385315, 0.7337639331817627, 0.2541859447956085, 0.9900811314582825, 1.7675137519836426, 1.129771113395691, 0.9769338965415955, -1.7794710397720337, 0.7691759467124939, -0.6065599322319031, 0.1482195258140564, -0.7464447617530823, 0.8744992613792419, -0.7343985438346863, 0.726407527923584, 2.1249442100524902, 1.1226450204849243, 4.6674275398254395, -2.837620258331299, -1.1903719902038574, 0.7181248068809509, 0.3578006327152252, -0.6332944631576538, -0.36820188164711, 0.8394779562950134, 1.5812684297561646, 1.663122296333313, 1.39568030834198, 0.7244759202003479, 0.2570498585700989, 6.5370402336120605, 6.010458469390869, 4.821362018585205, 1.9636433124542236, 2.878424644470215, 2.4029808044433594, 2.4697906970977783, 2.9089889526367188, 2.214284896850586, 1.0990670919418335, 0.11416373401880264, -0.19945867359638214, 3.790609359741211, 2.692485809326172, 1.4060908555984497, 0.06774158775806427, 2.1553001403808594, 2.3251683712005615, 1.6620001792907715, 0.8532625436782837, -1.7099360227584839, -1.2301627397537231, 0.5021715760231018, 1.8247313499450684, 0.945939302444458, 0.4771892726421356, 0.4903935492038727, -0.09884621948003769, -2.664012908935547, -5.259884357452393, 0.17000038921833038, 7.530425548553467, 7.669373035430908, 3.3012807369232178, 5.463374614715576, 4.286874771118164, 4.752519130706787, 5.408957481384277, 6.580020427703857, 8.038166999816895, 5.39423942565918, 5.578622817993164, 4.286208629608154, 3.6949238777160645, 3.929547071456909, 3.9175729751586914, 3.845604181289673, 3.8423171043395996, 3.210578680038452, 3.119899272918701, 2.041748285293579, 2.093860387802124, 3.69392991065979, 3.1492950916290283, 1.6160717010498047, 2.758650541305542, 10.607393264770508, 2.0824766159057617, 1.5606777667999268, 1.5439600944519043, 1.5530520677566528, 1.5601545572280884, 2.937656879425049, 5.104233264923096, 1.126531958580017, 1.0010255575180054, 1.0651741027832031, 1.4039077758789062, 0.6661118865013123, 1.0402370691299438, 0.8780915141105652, 0.6724119186401367, 0.3289961516857147, 0.9449458718299866, 1.8488469123840332, 1.0976601839065552, 0.8687697649002075, -1.6527490615844727, 0.9001840949058533, -0.715388298034668, 0.20300573110580444, -0.8392341732978821, 0.8850993514060974, -0.5326457619667053, 0.8001212477684021, 2.162041425704956, 1.0569554567337036, 4.742851734161377, -2.983938694000244, -1.0209124088287354, 0.7210585474967957, 0.48225831985473633, -0.6464027166366577, -0.26115816831588745, 0.8636200428009033, 1.447980523109436, 1.7011079788208008, 1.4112581014633179, 0.5829867124557495, 0.3114790916442871, 6.44392728805542, 5.825753688812256, 4.810171604156494, 2.026542901992798, 2.933964729309082, 2.6101925373077393, 2.485071897506714, 2.860532760620117, 2.2968432903289795, 0.997700035572052, 0.3955303728580475, -0.30924278497695923, 3.8440232276916504, 2.788963794708252, 1.2485867738723755, 0.19045573472976685, 2.2942357063293457, 2.351768732070923, 1.6125611066818237, 0.8414639234542847, 20.88359260559082, 31.831382751464844, 9.05165958404541, 9.187932014465332, 6.873650550842285, -0.43468737602233887, -0.3632810413837433, -1.234576940536499, 2.125072479248047, 3.703941583633423, -49.585018157958984, -16.155927658081055, -7.2475433349609375, -3.656810760498047, 14.766789436340332, -4.583640098571777, 4.278796672821045, -5.192634582519531, -6.532622337341309, -6.883738994598389, -5.28041410446167, -5.3762593269348145, -3.8572585582733154, -3.653829336166382, -3.800105094909668, -3.688180685043335, -3.904364824295044, -3.8323862552642822, -2.3485937118530273, -2.9538862705230713, -0.3947434723377228, 30.834009170532227, -1.900402307510376, -3.1014208793640137, -1.5573399066925049, -1.6298186779022217, -1.747907042503357, 12.356527328491211, 2.288511276245117, -1.461673378944397, -1.594153881072998, -1.4787530899047852, -1.508923053741455, -1.3912208080291748, 0.6374366283416748, 27.280359268188477, -1.0602654218673706, -1.3706649541854858, -0.6846879124641418, -0.8656125664710999, -0.938352644443512, -0.8656972050666809, -0.33948320150375366, -0.644707441329956, -0.814270555973053, -0.9944366812705994, 0.20980395376682281, 2.78497314453125, -0.773296058177948, 0.6998165845870972, -0.0296720452606678, 0.8005335927009583, -0.7668218612670898, 0.9622485041618347, 35.79130172729492, -2.155447244644165, -1.1117959022521973, 7.3101372718811035, 3.9213907718658447, 1.115527868270874, -0.5450289845466614, -25.06943702697754, 0.6501583456993103, 0.35701680183410645, -0.4462127089500427, -1.407095193862915, -1.5555520057678223, -1.4034217596054077, -0.45231354236602783, 7.305209636688232, -6.618852138519287, -6.079617500305176, -4.787984371185303, -2.0228593349456787, -2.7799034118652344, -2.4050915241241455, -2.4526658058166504, -2.8808984756469727, -2.223472833633423, -1.108133316040039, 0.03166186064481735, 0.39704400300979614, -4.002893447875977, -2.654981851577759, 1.6041043996810913, -0.05317008122801781, -2.1770665645599365, -2.170841693878174, -1.4249660968780518, -1.2949405908584595, -1.652388095855713, -1.2862921953201294, 0.5910248160362244, 1.614255666732788, 0.8507240414619446, 0.3029228746891022, 0.48638105392456055, -0.3356124460697174, -2.662548303604126, -3.5910162925720215, 0.15870735049247742, 7.67800760269165, 7.494472503662109, 3.038341999053955, 4.732555866241455, 7.630685329437256, 5.172760486602783, 5.504209995269775, 6.750641345977783, 13.654948234558105, 5.356211185455322, 5.479427814483643, 4.28655481338501, 3.6980645656585693, 3.7917423248291016, 3.72448992729187, 3.823179006576538, 3.719677448272705, 3.019810914993286, 3.159137010574341, 2.079592704772949, 1.9767004251480103, 3.693387269973755, 3.260141372680664, 1.5015668869018555, 2.646851062774658, 2.065035343170166, 2.190626382827759, 1.538841962814331, 1.4817231893539429, 1.653130054473877, 1.5101487636566162, 2.965825080871582, 2.1524746417999268, 1.0672770738601685, 1.146170973777771, 1.0201960802078247, 1.3391920328140259, 0.6798902750015259, 1.2278106212615967, 0.9752679467201233, 0.6647459268569946, 0.3480157256126404, 0.8157556653022766, 1.9601343870162964, 1.1831120252609253, 0.7730870842933655, -1.6866580247879028, 0.8476627469062805, -0.7752824425697327, 0.1955171823501587, -0.837225615978241, 0.934605598449707, -0.557204008102417, 0.6863991618156433, 2.0814309120178223, 1.1473475694656372, 4.990849494934082, -2.940760374069214, -1.1787337064743042, 0.7082749009132385, 0.39898577332496643, -0.6279712915420532, -0.2622414827346802, 0.7054809927940369, 1.4561007022857666, 1.6185647249221802, 1.4347294569015503, 0.6452640891075134, 0.2592335343360901, 6.344031810760498, 6.005645751953125, 4.733521938323975, 1.9107235670089722, 2.928924560546875, 2.528780460357666, 2.4911437034606934, 2.9880502223968506, 2.201901912689209, 1.1779874563217163, 0.03767179325222969, -0.18527637422084808, 4.009767532348633, 2.662926197052002, 1.3664542436599731, 0.01587219350039959, 2.3132402896881104, 2.3312273025512695, 1.48741614818573, 0.8870764970779419, 3.3081960678100586, -0.9535677433013916, -1.0102258920669556, 0.5050024390220642, -0.5222199559211731]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (0.8, 1.37)}}, 'et2_eta2': {'discriminator': {'threshold': 0.61999846696853633, 'nodes': [100, 5, 1], 'bias': [-0.10109030455350876, 0.025601012632250786, 0.009790373966097832, 0.030248437076807022, 0.14768828451633453, 0.0820046067237854], 'weights': [0.013845269568264484, 0.2743213474750519, 0.310118168592453, 0.17151398956775665, 0.17529729008674622, 0.1429874747991562, -0.2319413721561432, 0.12828949093818665, 0.3726005554199219, -0.5962492823600769, -0.5033279061317444, -0.30347728729248047, -0.052831731736660004, 0.12314455211162567, -0.06908852607011795, -0.1663386970758438, 0.5550441741943359, 0.11560817062854767, 0.011102594435214996, 0.3527297079563141, 0.5607606768608093, 0.21273720264434814, 0.23302459716796875, 0.2298903465270996, 0.550605833530426, 0.11658553779125214, 0.33134984970092773, 1.8676954507827759, 1.6868354082107544, 0.3319355249404907, 0.11926001310348511, 0.1792215257883072, 0.2957342863082886, 0.3581884503364563, 0.285575807094574, 0.20025599002838135, 0.46586036682128906, 0.269322007894516, -0.08669886738061905, 0.16297020018100739, 0.010665277019143105, 0.1682368665933609, -0.9233469367027283, 0.22292549908161163, -1.558304786682129, 0.08138477057218552, 0.2755179703235626, 0.34901514649391174, 0.027236755937337875, 0.24263934791088104, 0.2086063027381897, 0.2664881944656372, 0.14927932620048523, 0.08504477888345718, 0.08050014078617096, 0.35674628615379333, 0.040955062955617905, -2.062716245651245, 0.18611185252666473, 0.06885792315006256, 0.08689526468515396, 0.2101241648197174, -0.25217247009277344, 0.06563106179237366, -0.4633270502090454, 0.06968774646520615, -0.4337001442909241, -0.4462567865848541, 0.09202249348163605, 0.22709032893180847, -0.03383948653936386, -0.004440879449248314, -0.017752880230545998, 0.1602475345134735, 0.6226475834846497, 0.22604982554912567, 0.5755512714385986, 0.3946768045425415, 0.3556194007396698, 0.21822257339954376, 0.5022941827774048, 2.110691785812378, 0.727285623550415, 0.4008437693119049, 0.2247782200574875, 0.38945329189300537, 0.34790703654289246, 0.21607756614685059, -0.04521612077951431, 0.0832543820142746, 0.19141966104507446, -0.1400870680809021, 1.0426220893859863, 0.39003899693489075, 0.15603157877922058, 0.3798508644104004, -0.07521170377731323, 0.03613670915365219, 0.20907475054264069, 0.039255063980817795, -0.2530997097492218, 0.17865312099456787, 1.079930305480957, 1.0963369607925415, 0.8849352598190308, 0.5647655129432678, -0.6269519329071045, 0.2035767138004303, 0.10712769627571106, -3.554274559020996, -1.9820129871368408, -1.7706360816955566, -0.6144486665725708, -0.14882032573223114, -0.2552137076854706, -0.22436465322971344, 2.337153434753418, -0.0882270336151123, -0.0938316211104393, 0.8095298409461975, 2.6678357124328613, 1.2588188648223877, 1.1514779329299927, 1.05138099193573, 2.257552146911621, 1.0554909706115723, 1.1473232507705688, 2.4757561683654785, 7.700045585632324, 0.9344580769538879, 1.091758370399475, 0.8402213454246521, 0.9260064363479614, 1.1000162363052368, 1.146885871887207, 1.2140612602233887, 2.278388738632202, 0.8352994918823242, -0.12984758615493774, 1.0570532083511353, -0.3579023778438568, 0.89804607629776, -4.026790618896484, 1.0377442836761475, -5.790028095245361, 0.7602058053016663, 1.1032581329345703, 1.192682147026062, 0.6202642917633057, 0.8277536630630493, 0.948631763458252, 1.1038786172866821, 1.067513346672058, -0.3113504946231842, 0.6047057509422302, 0.9997115135192871, 0.38723868131637573, -9.51147747039795, 0.869415283203125, 0.5203471779823303, 0.9342073202133179, 0.7725358605384827, -1.535783052444458, 0.7961961627006531, -2.4063820838928223, 0.49834880232810974, -2.1108152866363525, -1.5864633321762085, 0.6005389094352722, 0.901448130607605, -0.04919896274805069, 0.43780717253685, -0.19765424728393555, -0.10341626405715942, 2.704650402069092, 1.2416335344314575, 2.505913257598877, 2.0846962928771973, 1.8345003128051758, 0.7891427874565125, 0.41226136684417725, 2.2611896991729736, 3.529381513595581, 1.847952961921692, 1.3003193140029907, 1.6336201429367065, 0.8838067650794983, 0.7201108932495117, -0.7386602163314819, 0.9171581864356995, 0.24124182760715485, -0.20846377313137054, 4.589450836181641, 1.6712210178375244, 1.2195923328399658, 1.931431531906128, 0.036044977605342865, -0.10623301565647125, 0.951185405254364, 0.2761964201927185, -0.17828337848186493, 0.27954038977622986, 1.181740641593933, 1.0753962993621826, 0.8633856773376465, 0.7889276146888733, -0.6758575439453125, 0.25576305389404297, 0.16141879558563232, -3.599872350692749, -2.1027839183807373, -1.8067808151245117, -0.6349226236343384, -0.1279321163892746, -0.2109157145023346, -0.23781795799732208, 2.5200068950653076, -0.21017250418663025, -0.19917631149291992, 0.9052157998085022, 2.63562273979187, 1.2347347736358643, 1.0677075386047363, 1.00037682056427, 2.143268585205078, 1.024927020072937, 1.2102587223052979, 2.469799518585205, 7.675027847290039, 1.0475271940231323, 0.9451121091842651, 0.889057457447052, 0.8876240253448486, 1.0542176961898804, 1.1757442951202393, 1.1550921201705933, 2.204414129257202, 1.067590355873108, -0.13759320974349976, 1.0383327007293701, -0.17024622857570648, 1.0218671560287476, -4.082618713378906, 0.9525879621505737, -5.8976569175720215, 0.7496383786201477, 1.0036855936050415, 1.0155681371688843, 0.7400895357131958, 0.6237994432449341, 0.8681668043136597, 0.9359938502311707, 1.0918132066726685, -0.4765489399433136, 0.638154923915863, 1.1620664596557617, 0.44381457567214966, -9.667152404785156, 0.773475170135498, 0.5509428381919861, 0.8925642967224121, 0.7828179597854614, -1.4553883075714111, 0.7152078747749329, -2.441465377807617, 0.35526368021965027, -1.9984344244003296, -1.6945586204528809, 0.6887819170951843, 0.7537453174591064, -0.17697755992412567, 0.4613681733608246, -0.22249934077262878, -0.034685008227825165, 2.8953933715820312, 1.1101220846176147, 2.565039873123169, 1.9235283136367798, 1.7782132625579834, 0.7157565951347351, 0.2994776964187622, 2.2202746868133545, 3.5404484272003174, 2.0118072032928467, 1.2497440576553345, 1.679099202156067, 0.9576777815818787, 0.7251487970352173, -0.8498184680938721, 0.8960520625114441, 0.29201602935791016, -0.10892680287361145, 4.5771331787109375, 1.5358741283416748, 1.2391037940979004, 1.8849940299987793, 0.009951070882380009, 0.024696487933397293, 1.0489907264709473, 0.3393084406852722, 0.06756250560283661, -0.22210612893104553, -0.9965993762016296, -1.0186727046966553, -1.0063633918762207, -0.8177002668380737, 0.6240396499633789, -0.2130294144153595, -0.03061019256711006, 3.383131504058838, 2.08024263381958, 1.6923630237579346, 0.7350565195083618, 0.046046722680330276, 0.13638022541999817, 0.28787070512771606, -2.4150118827819824, 0.14912953972816467, 0.18064701557159424, -0.9254627823829651, -2.741456985473633, -1.1958385705947876, -1.0552903413772583, -1.1609145402908325, -2.1722030639648438, -0.9735843539237976, -1.0769546031951904, -2.5768070220947266, -7.478160381317139, -1.0177704095840454, -0.9195078611373901, -1.0508978366851807, -0.805747389793396, -1.0914592742919922, -1.0328738689422607, -1.210878849029541, -2.2048799991607666, -0.9712240695953369, 0.11922603845596313, -0.9028347730636597, 0.2978588044643402, -0.8147884011268616, 4.098543643951416, -0.9728285074234009, 7.198566436767578, -0.8029349446296692, -1.2218605279922485, -1.0386810302734375, -0.6064420938491821, -0.6125165224075317, -0.9062126278877258, -0.9134947657585144, -1.0363198518753052, -0.5605500340461731, -0.7708793878555298, -2.256897211074829, -0.41810065507888794, 9.662418365478516, -0.8539235591888428, -0.5763483643531799, -0.8622281551361084, -0.8318180441856384, 1.516129732131958, -0.8509820103645325, 2.3600082397460938, -0.3996390998363495, 2.0548605918884277, -0.00507489126175642, -0.6421050429344177, -0.9636732339859009, 0.23071114718914032, -0.5350654125213623, 0.21433566510677338, 0.1096574068069458, -2.7413439750671387, -1.2357655763626099, -2.5380499362945557, -1.9929677248001099, -1.6789827346801758, -0.8031062483787537, -0.3523203432559967, -2.4070770740509033, -3.599984884262085, -2.00384259223938, -1.2195020914077759, -1.6233731508255005, -0.9231544137001038, -0.9171799421310425, 0.6528230905532837, -0.9366628527641296, -0.2614656686782837, 0.19025464355945587, -4.672588348388672, -1.6925694942474365, -1.045562982559204, -1.8139197826385498, 0.03696505352854729, -0.022716591134667397, -0.8065388798713684, -0.24040116369724274, 0.2556486129760742, -0.09404973685741425, -1.103546380996704, -0.9865561127662659, -0.962024986743927, -0.7802593111991882, 0.48725801706314087, -0.2560781240463257, -0.17328469455242157, 3.373044490814209, 2.164020538330078, 1.7409937381744385, 0.5686818957328796, 0.031084321439266205, 0.21913090348243713, 0.21243412792682648, -2.410529136657715, 0.02821100875735283, 0.08264661580324173, -0.8203510642051697, -2.4261274337768555, -1.362908959388733, -1.060241460800171, -0.9698448777198792, -2.104672431945801, -1.1469992399215698, -1.1001077890396118, -9.16241455078125, -7.64695405960083, -1.1476924419403076, -0.9792933464050293, -1.0301406383514404, -0.8090778589248657, -1.256726861000061, -1.2071492671966553, -2.486253499984741, -2.3341715335845947, -1.0551313161849976, 0.11718505620956421, -0.9335927963256836, 0.2215939611196518, -0.929307222366333, 4.1149516105651855, -0.9382969737052917, 5.833007335662842, -0.7024279236793518, -1.021557331085205, -1.2172623872756958, -0.6352887749671936, -0.7514218091964722, -0.7384740114212036, -1.3904412984848022, -1.5016494989395142, -0.7806954383850098, -0.6780198216438293, -2.252669095993042, -0.428727924823761, 9.49091625213623, -0.8288125991821289, -0.5145612359046936, -0.9224437475204468, -0.8650126457214355, 1.5972092151641846, -0.913063108921051, 2.4032840728759766, -0.26568564772605896, 2.033787250518799, 0.15011750161647797, -0.8332669138908386, -0.745579719543457, 0.11393758654594421, -0.5612844228744507, 0.023119593039155006, 0.010756488889455795, -2.734496593475342, -1.1276297569274902, -2.534862518310547, -2.0270254611968994, -1.7508928775787354, -0.8203508257865906, -0.28407493233680725, -9.806964874267578, -3.4756968021392822, -1.9988998174667358, -1.2020944356918335, -1.6474331617355347, -1.5474064350128174, -0.908934473991394, 0.6984694004058838, -0.655846357345581, -0.26376044750213623, 0.16190822422504425, -4.671891212463379, -1.7697848081588745, -1.12514328956604, -1.771411657333374, 0.08082259446382523, 0.11783760786056519, -0.8500464558601379, -0.14649765193462372, -1.7272425889968872, -2.73661470413208, -3.4732577800750732, 0.7215352058410645, 0.8621499538421631]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (1.37, 1.54)}}, 'et2_eta3': {'discriminator': {'threshold': 0.32499874830245973, 'nodes': [100, 5, 1], 'bias': [0.021079380065202713, 0.08442211896181107, -0.11139082163572311, 0.0007079020724631846, 0.05026240274310112, 0.2636169195175171], 'weights': [115.01241302490234, 42.94895553588867, 2.567657470703125, -23.618711471557617, 0.3513403832912445, -30.06334686279297, 0.13925796747207642, 0.7864643335342407, -2.3290374279022217, -9.502877235412598, -3.580317974090576, 5.760210037231445, 2.3665096759796143, -3.470517635345459, -83.71723175048828, 4.339878082275391, 70.6534423828125, 5.893828392028809, -8.474519729614258, -9.403303146362305, 1.5621743202209473, 15.476668357849121, -6.421986103057861, 1.765583872795105, 6.5437726974487305, -26.356807708740234, -17.89145278930664, 1.2509477138519287, 0.8129051923751831, 3.8760077953338623, 2.3494021892547607, -2.557936191558838, 2.3607680797576904, -46.303829193115234, -10.613133430480957, -6.5056352615356445, 1.526335597038269, 14.906636238098145, 2.1999030113220215, -19.766427993774414, 0.06349214911460876, -13.480081558227539, -0.5147789716720581, -0.3164357542991638, 1.928426742553711, 1.4178005456924438, -8.319304466247559, 28.070369720458984, -2.14863920211792, -0.6671326160430908, -10.336699485778809, 1.0044090747833252, -29.91691017150879, 4.0703654289245605, 1.9270503520965576, -4.03021764755249, 0.44835802912712097, 4.354485511779785, -0.05387434735894203, -13.275885581970215, 0.3991834819316864, -3.31421160697937, -0.3342691957950592, -14.609319686889648, -28.50311279296875, -1.1891582012176514, 2.004866361618042, -0.1418459713459015, -4.437169551849365, 3.9644668102264404, 0.6536940336227417, 10.534915924072266, -0.5242905616760254, -1.0283880233764648, 1.8980313539505005, 2.3233587741851807, 2.7156434059143066, 0.3631680905818939, 0.9115080833435059, -4.258874416351318, -12.490303039550781, 5.131297588348389, 1.4211421012878418, -12.279603004455566, 1.80827796459198, 1.8810527324676514, 1.6881822347640991, -35.38578796386719, 50.878963470458984, 17.235525131225586, 0.9896836876869202, -1.0818644762039185, -4.542476654052734, -1.4971346855163574, 0.15198594331741333, -15.579697608947754, 1.082066535949707, -0.6022031903266907, 2.742074728012085, 432.5343017578125, -2.4046730995178223, -4.054540634155273, -0.3345430791378021, 1.8782836198806763, 0.6635843515396118, 0.46270644664764404, 0.3762456774711609, 0.588930070400238, -1.5792242288589478, -2.701042652130127, -0.9422552585601807, 1.6233853101730347, 1.5889554023742676, 0.08426722139120102, 2.915616273880005, 0.8040958642959595, 1.3760857582092285, 5.797585964202881, 2.9871768951416016, 3.2662434577941895, 3.810821294784546, 4.717774391174316, 4.847388744354248, 3.813713312149048, 11.084071159362793, 4.598029136657715, 2.2005183696746826, 1.0692198276519775, 3.222649335861206, 3.8591089248657227, 2.513326406478882, 3.7206838130950928, 2.4376578330993652, 2.5217013359069824, 5.22318172454834, 2.0839593410491943, 1.6313296556472778, 4.407665729522705, 2.2395167350769043, 2.465404987335205, 0.05863027274608612, 1.863450288772583, 2.30320143699646, 2.8061468601226807, 2.1014904975891113, 1.550355315208435, 1.268784761428833, 2.3019509315490723, -0.9904949069023132, 0.4788903295993805, 1.1533197164535522, 0.9741131663322449, 0.8714801073074341, 1.129149317741394, 1.8406143188476562, 2.3730833530426025, 0.4926026463508606, 2.4584741592407227, -0.08243851363658905, 0.8996639847755432, 0.40754395723342896, 4.372114658355713, -0.31631138920783997, -1.7400392293930054, -0.46883895993232727, 2.0979011058807373, 1.2511507272720337, -0.12380146980285645, -4.6359171867370605, 3.596827507019043, 0.7161647081375122, 3.3739213943481445, -0.4523775279521942, -0.48092547059059143, 2.6023378372192383, 2.700756549835205, 2.780585765838623, 2.3950860500335693, 1.2173625230789185, 1.8506463766098022, 2.427272081375122, 8.001241683959961, 8.119108200073242, 2.7606539726257324, 2.653822422027588, 2.1011712551116943, 2.2490336894989014, 3.638641595840454, 0.6341323852539062, 2.421041965484619, 0.9795575737953186, -0.7216323614120483, 6.437246799468994, 2.5924415588378906, 0.22533871233463287, 1.1461886167526245, 0.8496565222740173, 0.43248608708381653, -0.14927130937576294, 19.89673614501953, 2.9339468479156494, 4.613544940948486, 0.7371185421943665, -1.9341503381729126, -0.6393091678619385, -0.46071740984916687, -0.6781154274940491, -0.4572194218635559, 1.7274147272109985, 2.797091007232666, 1.0358251333236694, -0.7862182855606079, -0.4693666398525238, -0.14982397854328156, -2.7958474159240723, -3.6837379932403564, -1.7527856826782227, -5.968070983886719, -3.1116509437561035, -2.890064239501953, -3.192734479904175, -4.8754963874816895, -2.842022180557251, -3.9419987201690674, -11.073169708251953, -4.346763610839844, -2.2878010272979736, -1.0610346794128418, -3.168459177017212, -3.8329131603240967, -2.6271157264709473, -3.7385663986206055, -2.410245656967163, -2.5832595825195312, -2.7983710765838623, -2.2324941158294678, -1.4780268669128418, -3.8479208946228027, -2.030487537384033, -2.2927138805389404, 0.027142073959112167, -1.930434226989746, -2.109790563583374, -2.787881851196289, -2.0737273693084717, -1.4716532230377197, -1.432565450668335, -2.195216655731201, 0.9082101583480835, -0.49968573451042175, -0.7531368732452393, -1.078606367111206, -0.8780576586723328, -1.12929368019104, -1.8113393783569336, -2.1697838306427, -0.3509630262851715, -2.5010759830474854, 0.06509595364332199, -0.9514897465705872, -0.0512656606733799, -2.8561782836914062, 0.878503680229187, -1.2026686668395996, 0.2730969488620758, -1.5559449195861816, -1.150030493736267, 0.09091801941394806, 4.577388763427734, -3.5361721515655518, -0.7303844094276428, -3.5749614238739014, 0.4578297436237335, 0.8594622611999512, -2.7798662185668945, -2.6554794311523438, -2.8049275875091553, -2.506946325302124, -1.2736141681671143, -1.7042546272277832, -2.8421518802642822, -7.4616265296936035, -8.108945846557617, -4.377047538757324, -2.5591001510620117, -2.0399527549743652, -4.373971939086914, -3.358013153076172, -1.0179824829101562, -2.585057020187378, -0.8176607489585876, 0.9079455137252808, -6.585074424743652, -2.807870864868164, -0.25218847393989563, -1.2549949884414673, -0.8725645542144775, -0.09838278591632843, 0.2362930178642273, -19.98362159729004, 2.0387790203094482, 1.3027656078338623, -0.4540368616580963, -1.1967713832855225, -1.3499963283538818, -4.099092960357666, -0.4082486629486084, -0.3322586119174957, 7.5542402267456055, 5.710226535797119, -0.3379306197166443, -23.053298950195312, -16.225215911865234, 1.1719319820404053, -17.06928825378418, -3.708646774291992, 10.64037036895752, -8.712221145629883, -13.982789039611816, -2.7481861114501953, 0.7753178477287292, -7.936609745025635, -2.169773817062378, -3.247138738632202, 6.233680725097656, -4.7232584953308105, 2.779235363006592, -2.681654691696167, -0.2045527845621109, -4.382552623748779, -3.555079698562622, -3.875593662261963, -0.6958762407302856, -0.63019198179245, -3.723541021347046, 0.058886412531137466, -0.8534103631973267, -2.110583543777466, -1.3677217960357666, 0.054051633924245834, -0.6802531480789185, -1.131946325302124, -0.8535158634185791, -1.0312925577163696, -0.8417698740959167, -0.44020581245422363, 0.3287504315376282, -0.917592465877533, 0.3144913613796234, -0.8756914138793945, -0.036071404814720154, 0.8575083017349243, -8.771231651306152, 1.2499338388442993, -1.2436883449554443, -0.08529619872570038, -0.5046313405036926, -2.8130717277526855, -0.5089612603187561, -0.3762369155883789, -6.77292537689209, -1.197763204574585, -0.5411012172698975, 5.407064437866211, -0.07192108780145645, 7.616754055023193, -1.7108583450317383, 3.5139853954315186, -0.2127103954553604, -2.572028636932373, -0.7069661021232605, -1.262388825416565, 0.9898355007171631, -0.051796745508909225, -0.7122933864593506, -0.6600987315177917, -1.5175871849060059, -1.1813327074050903, -0.3426356613636017, -0.489092618227005, 8.300046920776367, -2.775688409805298, -7.6169819831848145, -2.37893009185791, -1.7154933214187622, -1.0463685989379883, -0.6126124262809753, 0.008684714324772358, 1.5078939199447632, 2.6901357173919678, 0.5272760987281799, -1.0708180665969849, -1.6926586627960205, -1.2914046049118042, -1.0477041006088257, -0.6110436916351318, -0.8042972683906555, -0.7249646186828613, -0.11176440864801407, -8.65184497833252, -2.6839330196380615, -4.035173416137695, -0.39642587304115295, 1.9340206384658813, 0.6639010310173035, 0.51161789894104, 0.5562962293624878, 0.6001103520393372, -1.4932231903076172, -2.636807918548584, -0.9902734756469727, 0.9984682202339172, 1.111194133758545, 0.06704273819923401, 2.7396740913391113, 3.649498701095581, 2.0994036197662354, 5.991048336029053, 3.0657453536987305, 5.515302658081055, 3.9288947582244873, 4.730417251586914, 2.8918492794036865, 3.8142693042755127, 11.114066123962402, 4.269949913024902, 2.2307748794555664, 1.2116316556930542, 3.168015480041504, 3.9591948986053467, 2.4655468463897705, 3.594942092895508, 2.343388557434082, 2.4231455326080322, 2.65401291847229, 2.0189731121063232, 1.6308107376098633, 3.8255233764648438, 2.215118408203125, 2.3084115982055664, 0.01821434497833252, 1.903847336769104, 2.2039103507995605, 2.607603073120117, 2.1239845752716064, 1.512854814529419, 1.2872682809829712, 2.2080740928649902, -0.8491103053092957, 0.5878936648368835, 1.0318490266799927, 1.0073944330215454, 0.7745478749275208, 0.9544230699539185, 1.8896965980529785, 2.319242000579834, 0.35556527972221375, 2.550459861755371, -0.00563912745565176, 0.9463590979576111, -0.035583265125751495, 4.412873268127441, -0.7868633270263672, 1.2892767190933228, -0.2909969687461853, 1.4916921854019165, 1.269150972366333, -0.19655336439609528, -4.657676696777344, 3.5757579803466797, 0.7211792469024658, 3.546260356903076, -0.45072194933891296, -0.583769679069519, 2.811086893081665, 2.7057290077209473, 2.863959550857544, 2.386772632598877, 1.3432966470718384, 1.678554892539978, 3.0095274448394775, 7.341079235076904, 8.186492919921875, 4.186151504516602, 2.5037055015563965, 1.9556443691253662, 2.21278715133667, 2.9992709159851074, 0.987898588180542, 2.287041664123535, 0.9858039021492004, -0.5060150623321533, 6.522360324859619, 2.7444276809692383, 0.18857921659946442, 1.170567512512207, 1.0746809244155884, 0.4019630551338196, -0.18592390418052673, 19.86507797241211, -0.7996860146522522, -0.8971362113952637, 1.7831422090530396, 1.376376986503601, -0.9318203926086426]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (1.54, 2.5)}}, 'et2_eta0': {'discriminator': {'threshold': 0.31999875307083131, 'nodes': [100, 5, 1], 'bias': [-0.1145973950624466, -0.05412110313773155, 0.09014075994491577, -0.060647644102573395, 0.20350374281406403, 0.1337592452764511], 'weights': [3.4661269187927246, 1.3500856161117554, -0.0556333065032959, -0.3569779098033905, 0.4135678708553314, 0.41795459389686584, -0.4174874722957611, 0.3244650661945343, 1.9885859489440918, 2.8075780868530273, -0.7958009243011475, -4.583902359008789, -8.67313289642334, -6.214581489562988, -2.3095853328704834, -5.751229286193848, -2.198564052581787, -3.3803329467773438, -5.199295997619629, -2.4351818561553955, -2.485520362854004, -2.410604476928711, -2.345674753189087, -2.537550926208496, -2.2204580307006836, -1.3173775672912598, -1.9971883296966553, -1.4453233480453491, -1.6724505424499512, -1.6131279468536377, -1.9890766143798828, -1.6009278297424316, -1.413903832435608, -2.079495906829834, -1.7254515886306763, -0.7677139043807983, -1.0373281240463257, -1.272466778755188, -1.5066214799880981, -0.9812381267547607, -1.5210427045822144, -1.0360053777694702, -0.9566309452056885, -1.0135706663131714, -0.2355639785528183, -0.5898135304450989, -0.8778921365737915, -1.1788119077682495, -0.5249338150024414, -0.7230725288391113, 0.11529037356376648, 0.5990443229675293, -1.0125130414962769, -0.5040639638900757, -0.6518067121505737, 0.05305566266179085, -0.0034301066771149635, 0.42206090688705444, 0.3916533291339874, 0.1432589441537857, 0.7103737592697144, 1.5257158279418945, -1.1888790130615234, -0.5304505228996277, -2.3267130851745605, -0.7257466912269592, 1.3764760494232178, 0.09693709015846252, -0.43147093057632446, 0.22741621732711792, -0.5677496790885925, -0.5272998809814453, 0.412883460521698, 0.32479605078697205, -0.7293165922164917, -1.2639217376708984, -1.348122239112854, -0.9404879212379456, -0.5513057708740234, -0.30192387104034424, -1.7723290920257568, -3.5103180408477783, -2.039353132247925, -2.3044636249542236, -1.9126121997833252, -1.709487795829773, -0.6883493065834045, -1.1739675998687744, -3.518812656402588, -2.4658355712890625, -0.973460853099823, 0.004903082270175219, -3.041006326675415, -2.1986403465270996, -0.6585326194763184, 0.3128136694431305, -4.191408157348633, -1.888517141342163, -0.07096751034259796, -0.1799200028181076, -274.7655944824219, -43.93977355957031, -0.31424620747566223, 0.037367723882198334, -0.21977196633815765, -0.8316360116004944, -0.3169817328453064, -0.11244185268878937, -0.5436539649963379, -5.075516223907471, 24.164505004882812, 2.6848723888397217, 6.6518402099609375, -22.516265869140625, 3.8308470249176025, 16.530607223510742, 7.538712024688721, 1.0792908668518066, 2.5052595138549805, 0.4939861595630646, 0.7397604584693909, 0.607239305973053, 0.547098696231842, 0.5501576662063599, 0.5273366570472717, 0.12655936181545258, 0.4669652283191681, 0.379781574010849, 0.36313122510910034, 0.2824549078941345, 0.302779883146286, 0.2844259738922119, 0.3032187819480896, 0.3134819567203522, 0.1935473084449768, 1.2020982503890991, 0.16954252123832703, 0.35271763801574707, 0.4091174006462097, 0.26845628023147583, 103.68645477294922, 0.13802462816238403, 0.1590566188097, 0.12879283726215363, 0.010509362444281578, 0.21270455420017242, -0.7591646909713745, 0.24821963906288147, 0.03088539093732834, 0.16785435378551483, 0.11421521753072739, -0.046707287430763245, 0.28282439708709717, 0.14659562706947327, 0.08657138049602509, -0.02520943433046341, 0.03341761231422424, 0.010446188971400261, -0.16878962516784668, 0.3932514786720276, -0.16624024510383606, -0.529011070728302, 0.277802973985672, 0.14760076999664307, 0.1814027577638626, 0.09646748751401901, -0.9664314389228821, -0.06649115681648254, 0.07938634604215622, -0.14664292335510254, 0.1502922624349594, 0.01714238151907921, 5.909456253051758, -0.1143762618303299, -0.3064577877521515, 0.280812531709671, 0.3925819993019104, -0.12955120205879211, -12.52425479888916, -0.05088113620877266, 0.3544582724571228, 0.759502112865448, 0.4988522529602051, 16.051626205444336, 0.4128522276878357, 0.1501341462135315, 0.15268515050411224, 0.20424585044384003, 0.6215866208076477, -7.800693035125732, 0.20118387043476105, -0.021234877407550812, 0.17071661353111267, -13.458681106567383, 0.05582299828529358, -0.08541436493396759, 0.7859625816345215, 0.36186090111732483, 24.232921600341797, -0.01858949102461338, -3.139693021774292, -1.4449257850646973, 0.11654689908027649, 0.3728778660297394, -0.48765575885772705, -0.3361949026584625, 0.3706994950771332, -0.2993294894695282, -1.8400994539260864, -2.1229188442230225, 1.2088897228240967, 4.7233076095581055, 8.248957633972168, 6.395541667938232, 2.3897228240966797, 5.956242084503174, 2.235562562942505, 3.5572855472564697, 5.117026329040527, 2.434941291809082, 2.460944175720215, 2.4680731296539307, 2.4019899368286133, 2.536468505859375, 2.045292377471924, 1.257469892501831, 2.0955810546875, 1.493794560432434, 1.6864268779754639, 1.692544937133789, 1.902928113937378, 1.5552563667297363, 1.3968826532363892, 2.0522022247314453, 1.6758896112442017, 0.913215160369873, 1.0938458442687988, 1.1959072351455688, 1.4406706094741821, 1.1837518215179443, 1.645910382270813, 1.134926438331604, 1.0559449195861816, 1.0369287729263306, 0.2728612422943115, 0.5262996554374695, 0.8212931752204895, 1.0100024938583374, 0.39508965611457825, 1.0989691019058228, -0.04175104945898056, -0.5138407349586487, 1.1715914011001587, 0.39132463932037354, 0.49334391951560974, -0.06707893311977386, -0.16715681552886963, -0.4800739288330078, -0.6670650243759155, -0.03576413169503212, -0.6910268664360046, -1.5774166584014893, 1.2271993160247803, 0.5348380208015442, 2.2497799396514893, 0.7342997193336487, -1.46317720413208, -0.11940494179725647, -0.30391666293144226, -0.13747809827327728, 0.507476270198822, 0.5882951617240906, -0.4666023850440979, -0.29006993770599365, 0.8116322159767151, 1.2454462051391602, 1.5528160333633423, 0.9679802060127258, 0.3660881817340851, 0.143290713429451, 1.8387651443481445, 3.4006881713867188, 2.2084741592407227, 2.3503472805023193, 1.9328300952911377, 1.7222366333007812, 0.4774474799633026, 1.2661560773849487, 3.4714863300323486, 2.2895569801330566, 0.9087651968002319, -0.034932106733322144, 3.0556228160858154, 2.1732492446899414, 0.630840539932251, -0.37718766927719116, 4.177546977996826, 2.0167076587677, -0.017935506999492645, 0.0986054316163063, 3.5574827194213867, 1.451647162437439, -0.09144826978445053, -0.4547705352306366, 0.4507312476634979, 0.4944400489330292, -0.48623916506767273, 0.13314621150493622, 2.045506238937378, 2.8213329315185547, -0.8786575198173523, -4.641798496246338, -8.662209510803223, -6.207137107849121, -2.2785449028015137, -4.745168209075928, -2.365581512451172, -3.4740469455718994, -4.993616580963135, -2.585416316986084, -2.597362518310547, -2.4302406311035156, -2.2772655487060547, -2.45805025100708, -2.2206428050994873, -1.4150340557098389, -1.988546371459961, -1.457390546798706, -1.636422872543335, -1.5249335765838623, -1.9789929389953613, -1.71364164352417, -1.4642473459243774, -2.1055896282196045, -1.695865511894226, -0.7813180685043335, -0.9865161180496216, -1.3120564222335815, -1.4714500904083252, -1.1135910749435425, -1.5473064184188843, -1.0832594633102417, -0.9067853093147278, -1.028486967086792, -0.2757495641708374, -0.5085345506668091, -0.8818341493606567, -1.145955204963684, -0.5369932055473328, -1.0617187023162842, -0.002517560264095664, 0.47469520568847656, -1.0709162950515747, -0.5530292391777039, -0.6962258815765381, 0.23456771671772003, 0.09004489332437515, 0.6263918280601501, 0.6288085579872131, 0.5215635895729065, 0.7628006339073181, 2.194525718688965, -1.1729481220245361, -0.5279311537742615, -2.172847032546997, -0.9203200936317444, 1.365815281867981, 0.06153104826807976, 0.24390235543251038, 0.2514963150024414, -0.4954139292240143, -0.5472025871276855, 0.39014238119125366, 0.1993001252412796, -0.7645597457885742, -1.3272745609283447, -1.3851884603500366, -0.9792442321777344, -0.3416995108127594, -0.11094941198825836, -1.8498470783233643, -3.418088912963867, -2.212824583053589, -2.4399538040161133, -1.869774580001831, -1.6872807741165161, -0.6417148113250732, -1.2777502536773682, -3.5323994159698486, -2.4896035194396973, -0.9477433562278748, 0.04333853721618652, -2.885671854019165, -2.1565632820129395, -0.8576779961585999, 0.38191887736320496, -4.103809356689453, -2.113654375076294, -0.03770170360803604, -0.32647275924682617, -3.2173664569854736, -1.3979148864746094, 0.04642748832702637, 0.32729101181030273, -0.5889932513237, -0.37988999485969543, -2.112027168273926, -0.4085172116756439, -2.2341020107269287, -2.4571335315704346, 6.137634754180908, 4.525824069976807, 2.0595593452453613, 4.521827220916748, -3.0937137603759766, 2.504520893096924, 2.25490665435791, 3.4088268280029297, 5.432875633239746, 2.5163848400115967, 2.4960949420928955, 2.2455997467041016, 2.3769195079803467, 2.6098148822784424, 2.0510783195495605, 1.2801543474197388, 1.973474144935608, 1.4448826313018799, 1.6874314546585083, 1.5239527225494385, 1.9966497421264648, 1.4814739227294922, 1.517063021659851, 2.078674554824829, 0.7656508088111877, 0.7906789183616638, 1.073715329170227, 1.2385356426239014, 1.4749987125396729, 1.1023108959197998, 1.5462993383407593, 0.9874445796012878, 1.0187957286834717, 0.8696563839912415, 0.23125912249088287, 0.5673548579216003, -0.143781840801239, 0.9861699938774109, 0.524522066116333, 1.1770586967468262, 0.017966890707612038, -0.5852797031402588, 1.1182926893234253, 0.4288347661495209, 0.4860314130783081, -0.11746633052825928, -0.10952814668416977, -0.6002830266952515, -0.45730552077293396, 1.383709192276001, -0.47283563017845154, 0.18728488683700562, 1.2120819091796875, 0.3662359118461609, 2.2678027153015137, 0.838821291923523, 0.2928161323070526, 0.5012331008911133, 0.5098177790641785, 0.37218108773231506, 0.4275001883506775, 0.6379490494728088, -0.6494240760803223, -0.40261393785476685, 0.6969048380851746, 1.4216718673706055, 1.478459358215332, 0.8530159592628479, 0.5206731557846069, 0.20757175981998444, 1.8980046510696411, 3.372199535369873, 2.1750621795654297, 2.359828233718872, 1.94000244140625, 1.7141116857528687, 0.6785669922828674, 1.328121304512024, 3.345731258392334, 2.391211986541748, 0.7904902100563049, 0.03435143828392029, 2.9099299907684326, 2.0068655014038086, 0.773309588432312, -0.26310107111930847, 4.142958641052246, 2.006596088409424, 0.09990581125020981, 0.211178719997406, 1.0721156597137451, -0.2609236538410187, -1.2464908361434937, 1.224605917930603, -2.9271979331970215]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (0, 0.8)}}, 'et1_eta2': {'discriminator': {'threshold': 0.49999858140945436, 'nodes': [100, 5, 1], 'bias': [0.1660536676645279, -0.09260424226522446, 0.18541112542152405, -0.01521122083067894, -0.035576365888118744, -0.4945518970489502], 'weights': [-0.9389358758926392, -0.12105660140514374, 0.3670014441013336, 0.8390507698059082, 0.2314704954624176, -1.0423684120178223, 0.03034968487918377, 0.04645406827330589, 0.8171259164810181, -3.6258726119995117, -6.1305108070373535, -2.587165594100952, 3.774099111557007, 3.143880844116211, -0.80121248960495, -1.014901876449585, 3.756338596343994, -0.8993691205978394, -0.929709792137146, 0.46394240856170654, 1.9805229902267456, 0.720779299736023, 0.0041855452582240105, 0.08182483166456223, 2.1305928230285645, 1.3367650508880615, 9.117352485656738, 1.0708565711975098, 2.701639175415039, 0.5453954339027405, 0.5901762247085571, 0.27951815724372864, 0.23340432345867157, 0.3213069438934326, 1.1228090524673462, 1.733852744102478, 2.6954891681671143, 1.004016637802124, 0.8855718374252319, 0.34413546323776245, 1.2824195623397827, -3.899681329727173, 0.8291013836860657, 1.5699998140335083, -2.5046660900115967, 0.12688623368740082, 0.15166909992694855, 0.6564676761627197, 0.8464936017990112, 0.8760786056518555, -2.290839672088623, -0.3234841823577881, -2.8910558223724365, 0.6317764520645142, 1.0405882596969604, 0.8988353610038757, 0.6049715280532837, 0.9102033376693726, -4.668795108795166, 0.5174882411956787, -0.02492581121623516, 0.885158896446228, 0.9668274521827698, -15.823362350463867, 0.6638754606246948, -0.7332473397254944, 0.008322533220052719, 0.7136099338531494, 0.816786527633667, 0.7634891867637634, 2.1394340991973877, 1.9863669872283936, -0.49270015954971313, -0.5512511730194092, 3.020101547241211, 1.3349847793579102, 1.6237982511520386, 1.6902445554733276, 0.6394003033638, 0.5237955451011658, -0.6771195530891418, 0.716903030872345, 3.136241912841797, 1.8372712135314941, 1.843441128730774, 1.534429669380188, 1.5864427089691162, 0.7326285243034363, -0.9221916794776917, 0.04844559356570244, 0.3145847022533417, -0.5440637469291687, 4.12753963470459, 0.44132885336875916, 0.48569878935813904, 2.061765670776367, -0.06607150286436081, 0.01221557892858982, -0.0037229200825095177, 1.8724874258041382, 0.9452347159385681, 0.2318301647901535, -0.29512715339660645, -1.0175572633743286, -0.2936770021915436, 0.8586761951446533, -0.7136247158050537, -0.1394774168729782, -2.479201555252075, 3.633429527282715, 6.148832321166992, 1.1909912824630737, -3.679518222808838, -3.108302116394043, 0.9548355937004089, 0.9398448467254639, -3.7135815620422363, 0.7958019971847534, 0.8493679165840149, -0.5630879998207092, -1.8297094106674194, -0.6841930150985718, 0.11052222549915314, -0.044198133051395416, -2.0813539028167725, -1.491302251815796, -9.028913497924805, -1.1347301006317139, -2.5743601322174072, -0.5954425930976868, -0.45665180683135986, -0.4001908600330353, -0.17055273056030273, -0.35277920961380005, -1.1677411794662476, -1.7353333234786987, -2.8152577877044678, -0.8717381358146667, -0.7229496240615845, -0.3141927123069763, -1.140475869178772, 4.074158668518066, -0.6966882944107056, -1.5700340270996094, 2.4781692028045654, -0.06478343904018402, -0.22886759042739868, -0.6380794048309326, -0.8984648585319519, -0.7970829010009766, 2.442439079284668, 0.14679725468158722, 2.7700870037078857, -0.602025032043457, -0.9070513248443604, -0.7340141534805298, -0.7318882942199707, -0.9676535129547119, 4.53318452835083, -0.5149952173233032, -0.037572383880615234, -0.8892942667007446, -0.8307599425315857, 15.82580852508545, -0.697955846786499, 0.8265050053596497, -0.07606390863656998, -0.6309058666229248, -0.8986612558364868, -0.8548528552055359, -2.0288636684417725, -1.8575608730316162, 0.5736150741577148, 0.5576900243759155, -3.1278727054595947, -1.281878113746643, -1.5657764673233032, -1.877355933189392, -0.6072109341621399, -0.5198767781257629, 0.8055593371391296, -0.7239843606948853, -3.033485174179077, -1.830606460571289, -1.827890396118164, -1.5346916913986206, -1.4141550064086914, -0.841860830783844, 0.9094813466072083, -0.24852539598941803, -0.18477287888526917, 0.4709726572036743, -4.095010280609131, -0.41199788451194763, -0.558438777923584, -2.061180591583252, -0.04788471758365631, -0.083959199488163, 0.08485851436853409, -1.7609026432037354, -0.9927989840507507, -0.22755783796310425, 0.46136975288391113, 0.9827638864517212, 0.17937327921390533, -0.98271644115448, 0.10947437584400177, 0.07717394828796387, 0.9598147869110107, -3.6012673377990723, -6.334378242492676, -2.6594512462615967, -0.028662439435720444, 2.94340443611145, -0.8999265432357788, -0.8038007616996765, 3.7211480140686035, -0.8452624678611755, -0.9760757088661194, 0.3748461604118347, 1.9088479280471802, 0.7320083379745483, -0.02602810598909855, -0.0919680967926979, 2.0431947708129883, 1.3340981006622314, 1.9357608556747437, 1.0278220176696777, 2.4949445724487305, 0.4569856822490692, 0.6744378209114075, 0.26485639810562134, 0.2843888998031616, 0.4894283413887024, 1.005969762802124, 1.744221806526184, 2.677565336227417, 0.9777714610099792, 0.6807442903518677, 0.22208715975284576, 1.2692440748214722, -4.062464714050293, 0.647163987159729, 1.5809606313705444, -2.6220176219940186, 0.09213666617870331, 0.12779907882213593, 0.7498270273208618, 0.8543643951416016, 0.8173231482505798, -2.2751007080078125, -0.14138440787792206, -2.9500601291656494, 0.6055625677108765, 0.8029912710189819, 0.763913631439209, 0.5875661373138428, 0.8201058506965637, -4.600836753845215, 0.5392951369285583, 0.04246700182557106, 0.791408360004425, 0.7280694246292114, -15.716469764709473, 0.7267699241638184, -0.8429386019706726, 0.1141120195388794, 0.7700673937797546, 0.9267532825469971, 0.9103420376777649, 2.0862314701080322, 1.8372583389282227, -0.49715137481689453, -0.48570993542671204, 3.127847194671631, 1.205225944519043, 1.5884701013565063, 1.785603404045105, 0.6516576409339905, 0.5662755966186523, -0.6290300488471985, 0.6927171349525452, 3.056330442428589, 1.8378329277038574, 1.8045244216918945, 1.4628254175186157, 1.440600872039795, 0.9222137928009033, -0.8379809856414795, 0.2164636254310608, 0.28007563948631287, -0.4039464294910431, 3.9559061527252197, 0.41408202052116394, 0.48681291937828064, 2.198930025100708, 0.0427837073802948, -0.1267825812101364, -0.05599617213010788, 1.8454029560089111, 0.10072196274995804, 0.10001213848590851, 0.4225679934024811, 0.0899830088019371, -0.1253460943698883, -0.03832727670669556, -0.17258554697036743, 0.006134936586022377, 0.32795268297195435, -0.7147434949874878, -0.620525598526001, -0.23115095496177673, 0.10592801123857498, 0.3367525339126587, 0.06643199920654297, -0.05069795250892639, 0.32077908515930176, 0.05674194544553757, -0.07806650549173355, 0.08556340634822845, 1.0341018438339233, 0.21585318446159363, 0.10634714365005493, 0.15396660566329956, -0.016072625294327736, 0.058031000196933746, 0.2250940501689911, 0.3886975049972534, 0.20159882307052612, 0.5644832253456116, 0.4009593725204468, 0.38825786113739014, 0.37293195724487305, 0.46160775423049927, 0.0035634059458971024, 0.19673305749893188, 0.26240038871765137, -0.0046761841513216496, 0.04724537581205368, -0.016887251287698746, 0.16653037071228027, -0.5198298096656799, -0.21016016602516174, 0.20032982528209686, -0.2695275843143463, 0.3078876733779907, 0.30879247188568115, -0.05383213236927986, 0.020571794360876083, 0.04397197067737579, -0.24369126558303833, -0.008213493041694164, -0.309078574180603, -0.050603266805410385, 0.058075759559869766, 0.13050958514213562, 0.012967342510819435, -0.08035038411617279, -0.5366634130477905, -0.09735381603240967, -0.1770934760570526, -0.00046371834469027817, 0.08886172622442245, -1.475724697113037, -0.05327661335468292, -0.2230299413204193, -0.004776026587933302, -0.11217094212770462, 0.03254155069589615, -0.018858490511775017, 0.15643702447414398, 0.11969630420207977, 0.02387889102101326, 0.0028783457819372416, 0.11574484407901764, 0.4532398283481598, -0.003159577725455165, 0.15786686539649963, -0.02515074796974659, 0.013235733844339848, -0.025334911420941353, 0.04080158472061157, 0.2121448814868927, 0.22319470345973969, 0.08190509676933289, -0.028443608433008194, 0.19693505764007568, -0.11646437644958496, -0.08839280903339386, 0.039865754544734955, 0.2905471920967102, -0.013601908460259438, 0.3913911283016205, 0.09763815253973007, -0.12082190066576004, 0.02926851622760296, -0.08773969113826752, 0.07752358913421631, -0.13861992955207825, 0.16569967567920685, 1.018976092338562, 0.17579935491085052, -0.768304169178009, -1.623246431350708, -0.41187748312950134, 0.9542348384857178, -0.7742154598236084, -0.15698102116584778, -2.501763343811035, 3.817136287689209, 6.318728923797607, 1.2960803508758545, -2.1982290744781494, -2.928455114364624, 0.9834352135658264, 0.9135052561759949, -3.731199026107788, 1.0144058465957642, 0.983396589756012, -0.5150192379951477, -1.9586814641952515, -0.7450520396232605, -0.11673448234796524, -0.08666057884693146, -2.2077689170837402, -1.4799094200134277, -9.086014747619629, -0.9597002863883972, -2.656831979751587, -1.5887489318847656, -0.6430127024650574, -0.16870272159576416, -0.24260948598384857, -0.9525085091590881, -2.3742737770080566, -1.511581301689148, -2.654101610183716, -0.9373082518577576, -0.7570028305053711, -0.4148290753364563, -1.2122752666473389, 3.969895362854004, -0.6916170716285706, -1.5590852499008179, 2.558318853378296, -0.032666489481925964, -0.24639882147312164, -0.8173388838768005, -0.887973964214325, -0.9202091097831726, 2.3127846717834473, 0.26853957772254944, 2.8263278007507324, -0.7187230587005615, -0.8652063608169556, -0.8027243614196777, -0.5969690680503845, -0.9454819560050964, 4.637962818145752, -0.4610093832015991, -0.03146678954362869, -0.7306612133979797, -0.7855085134506226, 15.76138687133789, -0.7113703489303589, 0.8667826056480408, -0.1569540649652481, -0.7233748435974121, -0.925499439239502, -1.0189083814620972, -1.9827128648757935, -1.9997518062591553, 0.35889387130737305, 0.6073473691940308, -3.0189013481140137, -1.1832222938537598, -1.7242122888565063, -1.632594347000122, -0.6928914189338684, -0.47047221660614014, 0.34094446897506714, -3.1602671146392822, -3.059695243835449, -1.8070142269134521, -1.679485559463501, -1.4816218614578247, -1.457718849182129, -0.7987672686576843, 0.986251711845398, -0.1888679713010788, -0.3279169499874115, 0.5554001331329346, -4.116928577423096, -0.5113602876663208, -0.5399754047393799, -2.094965934753418, -0.1085875853896141, 0.09383213520050049, -0.04293570667505264, -1.846899151802063, -1.6996872425079346, 0.9876492619514465, -1.3035354614257812, -0.6136343479156494, 1.4506049156188965]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (1.37, 1.54)}}} - signatures["ElectronHighEnergyLooseConf"]={'et3_eta2': {'discriminator': {'threshold': -0.18500081300735474, 'nodes': [100, 5, 1], 'bias': [0.22496367990970612, 0.25423291325569153, -0.05725016072392464, 0.181239515542984, -0.24186886847019196, 0.3626905381679535], 'weights': [-0.9931346774101257, -0.01817704737186432, 1.603345274925232, 2.27188777923584, 1.5405961275100708, 1.6163924932479858, 0.8246887922286987, 0.5504136681556702, 0.06960619986057281, -5.246971607208252, -3.9190731048583984, -3.2434945106506348, -1.000954508781433, -0.3501393496990204, -0.2251189798116684, -0.6503921151161194, 5.110980033874512, 0.0947774201631546, 1.863757848739624, 1.2465909719467163, 6.427053451538086, 1.2249650955200195, -2.6062870025634766, 0.4220779240131378, -6.492243766784668, 5.788940906524658, 3.7186813354492188, 2.976773738861084, 11.082649230957031, 5.110097885131836, 0.3884647488594055, 0.5201953053474426, 0.5327610969543457, -2.650282621383667, 4.559503078460693, 4.513420581817627, 5.402627468109131, 13.056455612182617, -5.28449821472168, -2.4395270347595215, 3.176534414291382, 4.322094917297363, 4.349691867828369, 1.364220380783081, 1.8171908855438232, 5.179615020751953, 4.483983993530273, -5.08467960357666, 0.9289032220840454, 9.989507675170898, -11.552595138549805, 5.4164509773254395, 8.87568473815918, 2.331158399581909, 1.1835646629333496, 15.407537460327148, 1.7306100130081177, 1.4408981800079346, -4.631602764129639, -6.673683166503906, -7.13716983795166, 1.2764804363250732, -0.05238982290029526, 1.273556113243103, -6.24355936050415, 2.8994133472442627, -12.11474895477295, 1.6977628469467163, 4.599469184875488, 4.801764011383057, 42.280296325683594, -15.758618354797363, -0.5512469410896301, -0.4191519618034363, 3.0216667652130127, 1.0487087965011597, 4.302881717681885, 4.2061591148376465, 2.764920473098755, 2.869471788406372, -0.158920019865036, 0.2263748198747635, 1.2715317010879517, 3.878507137298584, 2.707009792327881, -0.1432947963476181, 2.222496271133423, 4.375704765319824, -0.7392042279243469, 0.5509490370750427, 1.4576245546340942, 0.48080286383628845, 3.5064849853515625, 4.732835292816162, -2.6513285636901855, 0.6614122986793518, -0.07711731642484665, -0.10382016003131866, -1.4842954874038696, 14.11323070526123, -0.819365918636322, -0.11185577511787415, 1.4462207555770874, 2.273878812789917, 1.5189666748046875, 1.553519606590271, 0.816792368888855, 0.6013060212135315, 0.06894798576831818, -5.2789201736450195, -3.9496655464172363, -3.3238162994384766, -1.108394980430603, -0.3307814598083496, -0.0825585424900055, -0.5530317425727844, 4.420546531677246, 0.1301359087228775, 1.8137028217315674, 1.3027275800704956, 6.463320732116699, 1.1488800048828125, -2.749488353729248, 0.3422110378742218, -6.329661846160889, 5.8210248947143555, 3.548218250274658, 3.137077808380127, 11.140628814697266, 5.098723411560059, 0.48586753010749817, 2.300755023956299, 0.6675386428833008, -2.7125847339630127, 4.555992126464844, 4.43115758895874, 5.517282962799072, 13.047628402709961, -5.076038360595703, -2.3229494094848633, 3.37558913230896, 4.260136127471924, 4.388528347015381, 1.4584147930145264, 1.3935585021972656, 5.358431816101074, 4.435708045959473, -5.0095977783203125, 0.9032479524612427, 9.893756866455078, -11.661206245422363, 5.424482822418213, 8.943679809570312, 2.3191757202148438, 1.1143097877502441, 15.398283004760742, 1.7532914876937866, 1.4410107135772705, -4.720383644104004, -6.595602035522461, -7.145852088928223, 1.2825226783752441, 0.020189011469483376, 1.1598213911056519, -6.297238826751709, 2.9659016132354736, -12.070916175842285, 1.7613192796707153, 4.654551029205322, 4.814225673675537, 42.22060012817383, -15.744312286376953, -0.5319676399230957, -0.3671867549419403, 2.89033579826355, 1.1901012659072876, 4.218427658081055, 4.251856327056885, 2.7415645122528076, 2.7619426250457764, -0.19702652096748352, 0.3342374563217163, 1.174614667892456, 3.668564796447754, 2.8054699897766113, -0.06963631510734558, 2.243130922317505, 4.494266510009766, -0.6628531813621521, 0.4802199900150299, 1.4144364595413208, 0.5458922982215881, 3.4443817138671875, 4.759645938873291, -2.7025539875030518, 0.7854596376419067, 0.0187618900090456, -0.11379291117191315, -1.5365225076675415, 14.266770362854004, 0.46328744292259216, 0.3947559893131256, 0.36305755376815796, -0.04611923545598984, -0.10887285321950912, 0.06751923263072968, -0.04021124169230461, 0.12789545953273773, 0.059422027319669724, 0.42600908875465393, 0.30839094519615173, 0.3086649179458618, 0.5524296760559082, 0.1343601644039154, 0.27397215366363525, 0.29742759466171265, -0.30750522017478943, 0.17883753776550293, -0.6239702105522156, -2.471686601638794, -0.5069426894187927, -2.1701853275299072, 5.2444376945495605, -1.4523099660873413, 0.7326187491416931, -12.473556518554688, -7.699365139007568, 0.27639761567115784, -0.898872435092926, -0.4886949062347412, 0.9635306000709534, -0.08056899905204773, -0.1960873305797577, 1.9147430658340454, -0.24132871627807617, -0.39335373044013977, -0.3724568486213684, -0.8072543144226074, 3.106010675430298, 2.067241907119751, -0.14096124470233917, -0.299396812915802, -0.3965566158294678, -0.12824569642543793, -0.1244005635380745, -0.4982789158821106, -0.2107764184474945, 0.5728129148483276, 0.08725889027118683, -0.7414993643760681, 1.1669864654541016, -0.4326733648777008, -0.806244969367981, -0.20734551548957825, -0.11661368608474731, -6.179890155792236, -0.033673886209726334, -0.05434248596429825, 0.6087918281555176, 0.6669779419898987, 0.714033305644989, -0.05715496093034744, 0.04490915685892105, -0.07697772234678268, 0.01333220861852169, -0.2759895622730255, 1.336474061012268, -0.07291409373283386, -0.4237052798271179, -0.3236718475818634, -3.794415235519409, 1.7916991710662842, 0.24863730370998383, 0.3658004105091095, -3.1611881256103516, -2.0312304496765137, -0.21318680047988892, -0.2111954391002655, -0.19907595217227936, -0.07694064825773239, 0.18091297149658203, -0.3823789954185486, -0.43759241700172424, -0.3232068717479706, -0.2646971046924591, 0.06439076364040375, -0.15192753076553345, -0.22245445847511292, 0.5009520649909973, -1.923946499824524, -0.11646644026041031, 0.0981743335723877, -0.24813973903656006, -0.3879634439945221, 0.4310603737831116, 0.5028122663497925, -0.02763182483613491, -0.07557548582553864, 0.1635049432516098, -1.2735366821289062, -0.7950127124786377, -0.08708997070789337, 1.5768083333969116, 2.335355758666992, 1.3976126909255981, 1.5716580152511597, 0.9118295311927795, 0.5737374424934387, 0.05917077139019966, -5.204732894897461, -3.846733570098877, -3.1808714866638184, -0.9655765295028687, -0.09816698729991913, -0.24888695776462555, -0.27712324261665344, 5.076735496520996, 0.29157620668411255, 1.88616943359375, 1.2569302320480347, 6.25429630279541, 1.0428550243377686, -2.6543445587158203, 0.4390083849430084, -6.289444446563721, 5.705146312713623, 3.693236827850342, 2.962388515472412, 11.072286605834961, 5.079848289489746, 1.6516005992889404, 2.2581167221069336, 0.6720775961875916, -2.666745901107788, 4.573479652404785, 4.510982513427734, 5.579908847808838, 12.91909408569336, -5.264841079711914, -2.271451711654663, 3.3198907375335693, 4.41532039642334, 4.3419108390808105, 1.3044755458831787, 1.6199474334716797, 5.386545181274414, 4.403131484985352, -5.077688217163086, 1.0941535234451294, 9.932294845581055, -11.534035682678223, 5.407714366912842, 8.874841690063477, 2.3946802616119385, 1.1929874420166016, 15.371015548706055, 1.6173173189163208, 1.423647403717041, -4.681282043457031, -6.558859825134277, -7.183442115783691, 1.2368748188018799, 0.012941846624016762, 1.1281214952468872, -6.298399448394775, 2.9774928092956543, -12.263850212097168, 1.581725001335144, 4.778667449951172, 4.673547744750977, 42.09385681152344, -15.674543380737305, -0.4315670132637024, -0.37489619851112366, 3.047224760055542, 1.0537246465682983, 4.315587997436523, 4.167531967163086, 2.778156280517578, 2.808948516845703, -0.03417599946260452, 1.1044646501541138, 5.242288589477539, 3.7639293670654297, 2.708077907562256, 1.556064248085022, 2.070166826248169, 4.262251377105713, -0.8150630593299866, 0.5874195098876953, 1.460222840309143, 0.5971516966819763, 3.5045785903930664, 4.799536228179932, -2.68164324760437, 0.6034370064735413, 0.06889212131500244, -0.044757187366485596, -1.6570795774459839, 14.199957847595215, 0.824752151966095, 0.17998909950256348, -1.395802617073059, -2.3812897205352783, -1.3393431901931763, -1.6171101331710815, -0.8048666715621948, -0.5729721188545227, -0.09688341617584229, 5.192379474639893, 3.9456334114074707, 3.1389269828796387, 0.9345805644989014, 0.3942444920539856, 0.18496719002723694, 0.4945777356624603, -5.0109968185424805, -0.14160796999931335, -1.8641877174377441, -1.2552272081375122, -6.402767181396484, -1.1240326166152954, 2.68575382232666, -0.42572709918022156, 6.44467306137085, -5.8094282150268555, -3.6414718627929688, -3.175381660461426, -11.110631942749023, -5.0160369873046875, -1.6501483917236328, -2.2639331817626953, -0.5181571245193481, 2.6067066192626953, -4.6280198097229, -4.338582992553711, -5.4429030418396, -12.86388111114502, 5.195508003234863, 2.3679556846618652, -3.279820680618286, -4.388542175292969, -4.284562110900879, -1.2926123142242432, -1.8372116088867188, -5.395905494689941, -4.572208404541016, 4.923374176025391, -0.9507557153701782, -9.836893081665039, 11.623922348022461, -5.409999370574951, -8.86340618133545, -2.421633243560791, -1.1847803592681885, -15.446847915649414, -1.6003040075302124, -1.6061725616455078, 4.634953022003174, 6.534738540649414, 7.307224273681641, -1.2789621353149414, -0.04566904157400131, -1.0929158926010132, 6.193482875823975, -3.0619707107543945, 12.228958129882812, -1.54684579372406, -4.810722351074219, -4.780562400817871, -42.20497131347656, 15.685347557067871, 0.5100194811820984, 0.5636279582977295, -3.0273468494415283, -1.1059386730194092, -4.133427619934082, -4.296045780181885, -2.742187023162842, -2.72588849067688, -0.01962086744606495, -0.37358298897743225, -5.164302825927734, -3.803501605987549, -2.7034244537353516, 0.0468272864818573, -2.1827831268310547, -4.483081817626953, 0.7187308073043823, -0.5038670897483826, -1.4626773595809937, -0.5724906325340271, -3.465902805328369, -4.831928730010986, 2.4990127086639404, -0.6668882966041565, 0.05673468858003616, 0.06973163038492203, 1.625718116760254, -14.103596687316895, -2.1895155906677246, -1.2306833267211914, 2.9472439289093018, -2.2828173637390137, 3.7954890727996826]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (40, 50), 'etaBin': (1.37, 1.54)}}, 'et0_eta0': {'discriminator': {'threshold': -0.13000080958008767, 'nodes': [100, 5, 1], 'bias': [0.0027719091158360243, -0.030745789408683777, -0.019994130358099937, -0.03405983746051788, 0.05469532310962677, 0.053494904190301895], 'weights': [3.0104122161865234, 0.33716049790382385, -0.6918603777885437, -0.36650729179382324, -0.6899896264076233, 0.4430517256259918, -0.6841123104095459, -0.033467914909124374, 1.730831265449524, 3.1084628105163574, -0.47636309266090393, -3.5764594078063965, -6.254197120666504, -10.624968528747559, -11.068583488464355, -25.362735748291016, -6.449751377105713, -7.022157669067383, -4.590561866760254, -7.303133010864258, -1.6697059869766235, -5.107601642608643, -1.6860201358795166, -4.665144920349121, -2.327211856842041, -3.789498805999756, -1.8446691036224365, -2.1149957180023193, -2.4795403480529785, -2.0756676197052, -4.072450160980225, -1.607600450515747, -4.25227165222168, -2.8429853916168213, -1.540915846824646, -1.1948466300964355, -1.3314839601516724, -1.2600440979003906, -1.1157169342041016, -0.8921983242034912, -1.147460699081421, -1.304847240447998, -1.436676263809204, -0.18538561463356018, 0.6405125856399536, -2.860827922821045, 0.2269716113805771, -1.1676502227783203, -0.4828597903251648, -0.26171448826789856, 0.2950541079044342, -0.34384864568710327, -1.4255995750427246, -1.0086662769317627, -0.8365383148193359, -0.37980136275291443, -0.23097233474254608, -0.026851283386349678, 0.7985484004020691, -0.7422285079956055, 0.30208659172058105, 1.9833194017410278, -0.24380549788475037, -0.44539281725883484, 0.7395967245101929, -0.3832899034023285, 0.25805309414863586, -0.5461606383323669, 0.0523955300450325, 0.38556036353111267, 1.3945204019546509, 1.4798781871795654, 0.39619994163513184, 0.07445497810840607, -0.9953435659408569, -1.9788360595703125, -1.6968204975128174, -1.3965789079666138, -1.0862582921981812, -0.8369073271751404, -10.748941421508789, -5.583034515380859, -2.855900764465332, -1.3770126104354858, -2.4373059272766113, -1.3597148656845093, -0.886629581451416, -0.12372172623872757, -2.620683431625366, -2.572859764099121, -1.0929572582244873, 0.21334059536457062, -2.155773878097534, -2.496173620223999, -1.5309242010116577, 0.6554529070854187, -1.4070754051208496, -0.5922932624816895, -0.5046824812889099, 0.3669447600841522, -0.7217203974723816, -0.9673169255256653, 0.06229373812675476, 0.3094996511936188, 0.5783401131629944, -0.38237664103507996, 0.5983491539955139, -0.1485704481601715, -2.008176565170288, -3.4177675247192383, 2.0519659519195557, 3.4366772174835205, 6.185133457183838, 8.25444221496582, 6.4256720542907715, 6.5173163414001465, -0.7637931108474731, 1.562807321548462, 4.360255718231201, 4.418243408203125, 1.7192559242248535, 1.6434358358383179, 1.6664299964904785, 2.4063775539398193, 2.2053911685943604, 2.2568867206573486, 1.711796522140503, 2.139913558959961, 2.4252068996429443, 1.8033676147460938, 1.7279512882232666, 1.5197616815567017, 1.582788109779358, 1.6811914443969727, 1.3529754877090454, 0.7527691125869751, 0.41302475333213806, 1.3256173133850098, 0.9507708549499512, 0.9108638763427734, 1.1912190914154053, 1.1901438236236572, 1.8660979270935059, 0.3677856922149658, -0.5320388674736023, 2.153707504272461, -0.19673658907413483, 1.1783156394958496, 0.42888006567955017, 0.29169729351997375, -0.42466095089912415, 0.09009473025798798, 1.3948500156402588, 0.6720010638237, 0.8526855111122131, 0.087816022336483, 0.3434672951698303, 0.16433802247047424, -0.7643856406211853, 0.7186273336410522, -0.3571009635925293, -1.8309638500213623, 0.42539486289024353, 0.4876108765602112, -0.7158036231994629, 0.49800407886505127, -0.18922294676303864, 0.4988306164741516, -0.060269732028245926, -0.47746676206588745, -1.3874552249908447, -1.4369741678237915, -0.35041794180870056, -0.17787058651447296, 0.8279309868812561, 0.965869128704071, 1.451266884803772, 0.774532675743103, 0.8948243856430054, 0.6089109182357788, 4.532330513000488, 2.4813692569732666, 2.112624168395996, 1.2613558769226074, 1.305626392364502, 1.2173666954040527, 1.055824637413025, 0.1458195447921753, -8.777544975280762, -3.3303956985473633, 0.22165046632289886, -0.24194011092185974, -10.794304847717285, 0.24839042127132416, 0.43038418889045715, -0.5748007297515869, 1.2133091688156128, -0.7433232069015503, 0.8734686374664307, -0.3130723834037781, 3.2121834754943848, 0.10607273131608963, -0.6179821491241455, -0.36072948575019836, -0.6476112604141235, 0.3023219406604767, -0.5528578758239746, 0.037560656666755676, 1.9878206253051758, 3.3295130729675293, 0.19036130607128143, -3.5238215923309326, -6.40492582321167, -10.083856582641602, -9.790680885314941, -11.897777557373047, -11.309596061706543, -8.16537857055664, -4.585658550262451, -7.368370056152344, -1.7431230545043945, -5.166879653930664, -1.66887629032135, -4.584742546081543, -3.336078405380249, -6.059154510498047, -1.6525816917419434, -2.14245343208313, -4.092792510986328, -2.0044467449188232, -4.221402645111084, -1.4996662139892578, -2.972101926803589, -1.9158331155776978, -2.4203226566314697, -2.9057581424713135, -4.483760833740234, -1.281398057937622, -1.131919503211975, -0.9067531228065491, -1.0236477851867676, -1.257441520690918, -1.937111258506775, -0.21556560695171356, 0.709513247013092, -3.0301427841186523, 0.2656053602695465, -1.0813615322113037, -0.3780216574668884, -0.20815321803092957, 0.42901286482810974, -0.2392861545085907, -2.605818271636963, -0.86431485414505, -0.7243807315826416, -0.3742513358592987, -0.22884339094161987, 0.025325078517198563, 0.7732704281806946, -0.3985472321510315, 0.16029061377048492, 1.8401808738708496, -0.300541490316391, -0.47950634360313416, 0.7446222901344299, -0.3247467279434204, 0.3969283401966095, -0.5363669395446777, 0.09838587790727615, 0.25009846687316895, 1.387192726135254, 1.3507468700408936, 0.28283819556236267, 0.11735668033361435, -0.833392858505249, -2.0014379024505615, -2.919123888015747, -1.4755831956863403, -0.949961245059967, -0.7413705587387085, -9.580817222595215, -10.612905502319336, -5.750339508056641, -1.381137490272522, -1.880005121231079, -1.2526817321777344, -0.9165176749229431, -0.3214545249938965, -7.4235334396362305, -8.185215950012207, -1.1611775159835815, 0.22365787625312805, -6.677170753479004, -4.687042713165283, -1.104333519935608, 0.5235454440116882, -1.2530628442764282, -0.7386404871940613, -0.6773895621299744, 0.30902689695358276, 2.9395408630371094, 0.13832561671733856, -0.564487874507904, -0.5071085095405579, -1.5592316389083862, 0.4185751676559448, -0.5541017651557922, 0.0804615318775177, 1.7380670309066772, 3.1298227310180664, 0.15635636448860168, -3.591261386871338, -6.4358015060424805, -10.735091209411621, -10.198407173156738, -24.517120361328125, -6.3657402992248535, -7.8438005447387695, -4.5508928298950195, -7.143901824951172, -1.7702034711837769, -5.148921012878418, -1.8216018676757812, -4.528764247894287, -2.376386880874634, -3.7688820362091064, -1.7383065223693848, -2.1279988288879395, -2.532334804534912, -1.8712098598480225, -4.010451316833496, -1.617948293685913, -3.825892210006714, -2.908707857131958, -1.6663868427276611, -1.2733074426651, -1.4150670766830444, -1.278174638748169, -1.073642611503601, -0.9754862189292908, -1.1604262590408325, -1.11674964427948, -1.2858500480651855, -0.13160493969917297, 0.7079187631607056, -2.8933658599853516, 0.24327464401721954, -1.0096101760864258, -0.4499947428703308, -0.2123025357723236, 0.3633473813533783, -0.162286639213562, -1.4112114906311035, -1.0693395137786865, -0.7675403356552124, -0.31957727670669556, -0.27664440870285034, -0.09396519511938095, 0.8523868322372437, -0.8349786996841431, 0.18403346836566925, 1.8440912961959839, -0.35350823402404785, -0.5359216928482056, 0.7835922837257385, -0.40162190794944763, 0.33800390362739563, -0.5791444182395935, 0.022545333951711655, 0.2586481273174286, 1.5271910429000854, 1.3897197246551514, 0.4511193633079529, 0.1104169711470604, -0.9838781356811523, -2.157365322113037, -1.7037426233291626, -1.375399112701416, -1.0486834049224854, -0.8016714453697205, -11.121331214904785, -5.470461845397949, -2.888141632080078, -1.4748350381851196, -2.392019271850586, -1.3163450956344604, -1.048919439315796, -0.1316092312335968, -2.6575260162353516, -2.368626832962036, -1.1869951486587524, 0.06508775055408478, -2.4916975498199463, -2.450981378555298, -1.5207723379135132, 0.5177884101867676, -1.3736330270767212, -0.7511304020881653, -0.7303417921066284, 0.36395689845085144, 21.058435440063477, 9.12915325164795, -0.25019577145576477, -0.32718023657798767, -0.13435697555541992, 0.24798369407653809, 0.007742086425423622, 0.1744593232870102, 2.1947598457336426, 4.382591724395752, 0.19817961752414703, -14.266183853149414, -14.236342430114746, -5.732553482055664, 30.525476455688477, 55.66305160522461, 2.7460784912109375, -0.9372447729110718, -4.193747520446777, -4.583090782165527, -0.041570164263248444, 0.499439001083374, -0.8257566094398499, -2.054959774017334, -2.248997688293457, -2.1881630420684814, -1.6864163875579834, -2.203171730041504, -2.4180378913879395, -1.9553823471069336, -2.194016933441162, -1.5868390798568726, -1.4754722118377686, -1.5462244749069214, -1.191624402999878, -0.910804808139801, -0.4427856206893921, -1.4043998718261719, -1.1056311130523682, -0.5787000060081482, -1.0505337715148926, -12.395109176635742, -1.106887936592102, -0.3359536826610565, 0.5638695359230042, -1.04970383644104, 0.3423970341682434, -1.0439348220825195, -0.5383099913597107, -0.3183959424495697, 0.3600114583969116, -0.18680769205093384, -1.060125708580017, -0.6349836587905884, 16.35931396484375, -0.11585278809070587, -0.15916891396045685, -0.05726008489727974, 0.8844321370124817, -18.155141830444336, 0.32439282536506653, 1.7903741598129272, -3.329820156097412, -0.45139265060424805, 0.7490172386169434, -2.474151134490967, 0.31415724754333496, -18.46172523498535, 0.06788526475429535, 0.4433909058570862, 1.5188599824905396, 1.3348900079727173, 0.40647777915000916, 0.034642528742551804, -1.5371259450912476, -0.19851063191890717, -1.2684131860733032, -2.540963649749756, -1.0701502561569214, -0.7753573060035706, -3.845635414123535, 14.788578987121582, -2.112802267074585, -0.9182282090187073, -1.2395609617233276, -1.3820443153381348, -1.048235535621643, -0.32137513160705566, -1.4147359132766724, 8.470860481262207, 0.4240935742855072, 0.19208970665931702, 4.7737226486206055, 6.954910755157471, -0.4719589650630951, 0.7183969020843506, -1.3202235698699951, -0.5370994210243225, -0.7489437460899353, -0.49337053298950195, 0.19182538986206055, -0.49395933747291565, 1.4365226030349731, 0.5646209120750427, 0.9925091862678528]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (0, 20), 'etaBin': (0, 0.8)}}, 'et0_eta1': {'discriminator': {'threshold': 0.004999199509620661, 'nodes': [100, 5, 1], 'bias': [-0.2419523298740387, -0.1788606494665146, -0.11421695351600647, 0.14182445406913757, -0.07570439577102661, 0.22020137310028076], 'weights': [2.2169363498687744, 2.7532498836517334, -0.8267584443092346, -0.7797825336456299, -1.020559310913086, -0.0499534048140049, -0.3282013237476349, 0.5312463045120239, 2.659205913543701, 5.342463970184326, 2.144444227218628, -0.0833103135228157, -11.308581352233887, -4.076024055480957, -8.603513717651367, -16.366212844848633, -5.259064674377441, -6.481001377105713, -12.627670288085938, -4.692115306854248, -5.565089225769043, -6.783063888549805, -4.543320178985596, -3.0383706092834473, -3.642913818359375, -1.2224321365356445, -7.077785968780518, -4.494020462036133, -3.2396719455718994, -3.3516175746917725, -3.506727457046509, -3.2087135314941406, -2.667553186416626, -2.7103047370910645, -5.8007402420043945, -2.4100589752197266, -1.2014609575271606, -2.7959556579589844, -0.5541382431983948, -4.078998565673828, -1.0442224740982056, -1.3879176378250122, 1.2014338970184326, -0.7012238502502441, 1.3713657855987549, -0.5381091237068176, -0.17806638777256012, 0.9453555345535278, 1.366939663887024, -5.294135570526123, -0.7591349482536316, 0.7920718789100647, -0.462947279214859, -4.339409828186035, -1.1262003183364868, -0.4685709774494171, -1.0528900623321533, 0.8854106068611145, -1.187703013420105, -2.815504789352417, -1.047894835472107, -0.7617879509925842, 0.624564528465271, 0.06664310395717621, 0.3762340843677521, -2.4422380924224854, 0.1785350739955902, 0.6013210415840149, 0.3860478103160858, 0.05054749175906181, -0.9731127619743347, -1.2421848773956299, 0.3652139902114868, 0.11926782876253128, -0.8625178337097168, -1.8412816524505615, -2.3486902713775635, -1.7384939193725586, -1.1514246463775635, -0.6194364428520203, -9.820606231689453, -5.94714879989624, -3.4351768493652344, -3.0902912616729736, -1.8717381954193115, -1.3676413297653198, -1.7327674627304077, -1.9622999429702759, -3.6860873699188232, -0.7463592886924744, 0.5572549700737, 0.30155766010284424, -7.388822555541992, -8.848809242248535, -0.23705165088176727, -0.1447933465242386, 0.3552716374397278, -1.1003679037094116, -1.5010054111480713, -0.07164696604013443, 2.179924726486206, 1.0082378387451172, -0.8127292990684509, -0.8268682360649109, -0.9137819409370422, -0.47814273834228516, -0.3614632785320282, 0.6130778789520264, 1.9895679950714111, 5.251211166381836, 2.003241539001465, -0.2468765676021576, -10.565252304077148, -3.4158098697662354, -8.538171768188477, -15.665409088134766, -5.202942371368408, -5.901217937469482, -12.562687873840332, -4.299706935882568, -5.48009729385376, -6.96751070022583, -4.617422103881836, -2.97694993019104, -4.4424920082092285, -1.3203697204589844, -5.45392370223999, -4.5033111572265625, -3.3547441959381104, -3.436358690261841, -3.6645357608795166, -3.1198506355285645, -2.705101728439331, -3.9648759365081787, -3.0624101161956787, -2.3369081020355225, -1.2047312259674072, -3.1745526790618896, -0.6369917392730713, -4.062929153442383, -1.128879189491272, -1.369496464729309, 1.2078688144683838, -0.7363274693489075, 1.3929245471954346, -0.38409000635147095, -0.3405444324016571, 0.8460223078727722, 1.3779445886611938, -3.2692196369171143, -0.8582490682601929, 0.6502522826194763, -0.5448287725448608, -4.385491371154785, -0.968392014503479, -0.5234550833702087, -1.2225149869918823, 0.5946704149246216, -0.9748676419258118, -2.8626723289489746, -1.0791670083999634, -0.7076032161712646, 0.6646453738212585, -0.0034364121966063976, 0.5190089344978333, -2.3634095191955566, -0.05494547635316849, 1.6995137929916382, 0.4713716506958008, -0.029251473024487495, -0.8175522685050964, -1.240248441696167, 0.5401641726493835, 0.12718243896961212, -0.6915145516395569, -1.895331859588623, -2.196659564971924, -1.630667805671692, -1.1080918312072754, -0.7638545632362366, -9.896124839782715, -7.4101433753967285, -3.4054222106933594, -3.2316782474517822, -1.9031871557235718, -1.4178217649459839, -1.6775732040405273, -1.9368301630020142, -2.026869297027588, -0.690743625164032, -0.5442407131195068, 0.2723405957221985, -7.502132415771484, -8.830202102661133, -0.33507582545280457, -0.12850044667720795, 1.2458628416061401, -1.1952428817749023, -1.3449838161468506, -0.12557072937488556, 2.255282163619995, 0.92508864402771, -0.32057368755340576, -0.5549095869064331, -0.3435039222240448, -0.49410825967788696, 0.0898943766951561, 0.59955894947052, 1.9818447828292847, 5.4488525390625, 2.1250998973846436, -0.22664912045001984, -1.5746294260025024, -9.53662395477295, -8.113788604736328, -6.87240743637085, -4.332401752471924, -4.196752071380615, -4.3074445724487305, -3.384168863296509, -4.739842891693115, -4.160134315490723, -5.109932899475098, -2.2272047996520996, -3.0943310260772705, -1.2474457025527954, -5.051222324371338, -4.322053909301758, -3.3698785305023193, -3.335650682449341, -3.8726353645324707, -3.08906626701355, -2.587754487991333, -3.4864842891693115, -2.2807652950286865, -2.187812089920044, -1.2461556196212769, 0.5336964726448059, -0.29373618960380554, -0.92899489402771, -1.1141397953033447, -1.3155173063278198, 1.7685489654541016, -0.4097933769226074, 1.3541674613952637, -0.2364848405122757, -0.17864270508289337, 1.048292636871338, 1.338594913482666, -1.844401240348816, -0.8443801403045654, 0.5884573459625244, -0.6398547887802124, -6.024773597717285, -1.0054324865341187, -0.5032756924629211, -1.0822479724884033, 0.6396970152854919, -0.9285800457000732, -2.7478291988372803, -0.9908654093742371, -0.5518115758895874, 0.7110306620597839, 0.13611719012260437, 0.428081750869751, -2.775491952896118, 0.17641127109527588, 1.5609934329986572, 0.42926275730133057, 0.06777767091989517, -1.0060672760009766, -1.0280340909957886, 0.20303383469581604, 0.14916649460792542, -0.6993547081947327, -0.7571804523468018, -1.5524744987487793, -1.0487337112426758, -0.6372774243354797, -0.3927784264087677, -3.1435720920562744, 11.845252990722656, -3.3446078300476074, -2.4433434009552, -1.8015235662460327, -1.3650074005126953, -1.8337547779083252, -1.977478265762329, 1.5484129190444946, -0.5749542713165283, -0.5401884317398071, -0.15113025903701782, 32.1970100402832, 25.611331939697266, -0.23964577913284302, -0.03404242545366287, 1.310422420501709, 0.1727093756198883, -1.4330334663391113, -0.263566792011261, -2.1751060485839844, -1.035946249961853, 0.673592746257782, 0.7085232138633728, 0.5158143639564514, 0.19016025960445404, 0.02306843362748623, -0.5579238533973694, -2.0862724781036377, -5.3436126708984375, -2.1633241176605225, 0.10163290053606033, 8.65424919128418, 15.908517837524414, 8.520809173583984, 7.398211479187012, 5.328628063201904, 5.485339164733887, 9.160340309143066, 3.8076565265655518, 5.458552360534668, 6.797657489776611, 3.4759681224823, 3.0724897384643555, 3.1501755714416504, 1.3562136888504028, 4.897558689117432, 4.407222270965576, 3.3011069297790527, 3.3482141494750977, 3.5584263801574707, 3.0816965103149414, 2.618988037109375, 3.529326915740967, 2.929184913635254, 2.425967216491699, 1.2664817571640015, -0.22728584706783295, 0.28546062111854553, 0.9497538805007935, 1.1099337339401245, 1.2939321994781494, -1.828993320465088, 0.43414321541786194, -1.2278379201889038, 0.29704153537750244, 0.29775917530059814, -0.9372382164001465, -1.3688970804214478, 3.1984920501708984, 0.8992602229118347, -0.6575921177864075, 0.46973884105682373, 4.236397743225098, 1.0550086498260498, 0.6718395948410034, 1.0928590297698975, -0.5286487340927124, 0.9334386587142944, 2.9640419483184814, 1.0886595249176025, 0.7026524543762207, -0.5850628018379211, -0.1319434493780136, -0.5144090056419373, 1.7701421976089478, -0.17973458766937256, -1.62489914894104, -0.2760557234287262, -0.062471143901348114, 0.8572553396224976, 1.1737757921218872, -0.22838062047958374, -0.2608878016471863, 0.8621696829795837, 0.7644885182380676, 1.9728444814682007, 1.1150742769241333, 0.8555498123168945, 0.5383461117744446, 4.460012912750244, 5.82310152053833, 3.237823009490967, 2.5480830669403076, 1.797529935836792, 1.4706848859786987, 1.8601220846176147, 1.959677815437317, 1.2026774883270264, 0.6463479399681091, 0.42303016781806946, -0.3455183506011963, -1.5780541896820068, 1.6332106590270996, 0.10772932320833206, -0.07981161028146744, -1.1880288124084473, -6.858782768249512, 1.454778790473938, 0.17228664457798004, -1.0589264631271362, -1.2777150869369507, -0.8202926516532898, -1.2153453826904297, -7.900195598602295, -0.3028285503387451, -0.23521244525909424, -0.5138748288154602, -0.9081577062606812, -4.760847091674805, -0.7580344080924988, -0.5153947472572327, 3.17096209526062, 31.483720779418945, 3.723647356033325, 2.9741768836975098, 1.8442035913467407, 1.7252893447875977, 1.3106104135513306, 1.2294288873672485, -3.3668296337127686, 2.2755684852600098, 0.8985055685043335, -1.0879207849502563, 0.2836175858974457, 0.2901609539985657, 0.23782014846801758, 1.200321912765503, 0.4658257067203522, -0.3615632951259613, -4.021435260772705, 0.726189136505127, 0.5964933037757874, 0.8738551139831543, 0.6852433085441589, 0.5820195078849792, -4.477887153625488, -1.5113470554351807, -1.0317434072494507, 0.06051911786198616, -3.362048864364624, -7.459989070892334, -1.3490523099899292, -0.2520720362663269, -2.8832485675811768, -1.016361117362976, -0.2892061173915863, -1.101325273513794, -4.395275115966797, 0.6755730509757996, 0.24080154299736023, -0.5123816132545471, -0.07995622605085373, 0.22133974730968475, 0.33544281125068665, 0.26873674988746643, 0.3825101852416992, -0.35860052704811096, 0.04941486567258835, 0.46868517994880676, 0.04499971494078636, 0.4071914553642273, -0.39102670550346375, -0.1014576330780983, -0.10466546565294266, 5.0549116134643555, -0.17937366664409637, -0.9165195226669312, -0.30500149726867676, -0.30383312702178955, 0.3180762231349945, 0.4968600571155548, -0.8282189965248108, -0.272370308637619, 0.20714102685451508, 0.3640463948249817, -32.001800537109375, -0.8529021143913269, -8.93774127960205, -4.88483190536499, 0.11148025840520859, 0.2184128314256668, -7.403574466705322, -0.2069324404001236, -1.176985502243042, -0.8256001472473145, 0.45193272829055786, 0.3454861640930176, -2.566599130630493, 0.7642796635627747, -1.0901622772216797, -0.16659995913505554, -5.848890781402588, -6.345538139343262, 1.5991814136505127, -0.17160169780254364, 0.9480943083763123, -5.87355899810791, 0.05881625786423683, 0.13153761625289917, 0.820921778678894, 1.0528318881988525, 0.5193421840667725, -0.42662134766578674, -0.3459281921386719]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (0, 20), 'etaBin': (0.8, 1.37)}}, 'et1_eta1': {'discriminator': {'threshold': -0.3550007104873657, 'nodes': [100, 6, 1], 'bias': [-0.009262134321033955, 0.11403325945138931, -0.05697072297334671, 0.02670249342918396, -0.0004424861108418554, -0.09567686170339584, -0.06761693209409714], 'weights': [-1.68311607837677, -1.4569848775863647, 0.5335415005683899, 0.8660264611244202, 0.7174923419952393, 0.730705976486206, 0.09598191827535629, 0.7200860977172852, -2.1343369483947754, -4.757304668426514, -1.4119659662246704, 2.976902723312378, 2.519176721572876, 1.5647720098495483, 0.10974285751581192, 0.10809197276830673, 4.8538737297058105, 5.077908515930176, 5.329061031341553, 5.2591681480407715, 4.971745014190674, 4.666284561157227, 4.310705184936523, 4.793591499328613, 4.540436267852783, 3.747809410095215, 2.1948869228363037, 3.136486291885376, 2.200423240661621, 3.60239315032959, 2.740330457687378, 2.204880952835083, 2.1703991889953613, 2.2458949089050293, 2.954357624053955, 1.4308279752731323, 1.314427137374878, 1.5256716012954712, 1.705006718635559, 1.4887328147888184, 1.6929272413253784, 1.626034140586853, 2.609642744064331, 0.47312799096107483, 0.5724508166313171, 0.8067747950553894, 3.231626272201538, 0.8580575585365295, 4.727327823638916, 0.9930837154388428, 1.065865397453308, 0.7019524574279785, 0.8121689558029175, -0.8102405071258545, 0.781336784362793, 0.588182806968689, 0.6844849586486816, 0.6846994757652283, 0.8524537086486816, 0.23930908739566803, 0.5554389953613281, 0.6583843231201172, -0.5964277982711792, 0.8768768906593323, -0.05953080207109451, -1.6624952554702759, 0.580730140209198, -1.6758124828338623, -0.643416702747345, 0.3210599720478058, 0.20139828324317932, 0.5071247220039368, -0.5896103978157043, -0.19933345913887024, 0.7465687394142151, 1.0144462585449219, 1.5076524019241333, 1.3741308450698853, 0.7607359290122986, 0.2931405305862427, 10.498966217041016, 5.260972499847412, 3.5426642894744873, 2.233567714691162, 2.319105863571167, 2.194509267807007, 1.6586837768554688, 2.3370673656463623, 1.5669591426849365, 0.8519150018692017, 0.6782934665679932, -0.22657379508018494, 2.875805139541626, 1.7324320077896118, 0.2371082603931427, -0.10835153609514236, 2.2406046390533447, 1.7271203994750977, 0.5645100474357605, 0.6243765950202942, 26.117496490478516, 47.860939025878906, -0.0185922272503376, -0.08952942490577698, -0.07323047518730164, -0.076230987906456, -0.0784786194562912, -0.21038077771663666, 0.31702524423599243, 0.8066724538803101, -3.1502938270568848, -120.3679428100586, -9.880788803100586, -4.596731185913086, 29.22450828552246, 0.017462890595197678, -1.1553833484649658, -1.1195496320724487, -1.2243932485580444, -0.9548608064651489, -1.0794403553009033, -0.9172614812850952, -0.9452863931655884, -0.9285127520561218, -1.0340548753738403, -0.8179218769073486, -0.3497898578643799, -0.6662282347679138, -0.5086925625801086, -0.46222612261772156, -0.5275274515151978, -0.42630690336227417, -0.3595050573348999, -0.3644062876701355, -0.47783172130584717, -0.24926239252090454, -0.24036729335784912, -0.2418835312128067, -0.2943932116031647, -0.2044386863708496, -0.39601412415504456, -0.19684003293514252, -0.174738809466362, -0.22927667200565338, -0.10544516146183014, -0.26784849166870117, -0.35845011472702026, -0.09223094582557678, -0.22095224261283875, -0.22769610583782196, -0.10604245960712433, -0.12347967177629471, -0.2589598596096039, 0.18820318579673767, -0.27018824219703674, 41.964115142822266, -0.28381603956222534, -0.06393256038427353, -0.1931096762418747, -0.09659484773874283, -0.10530337691307068, -0.11529818922281265, 0.17910997569561005, -0.17627088725566864, -0.015767188742756844, 1.252566933631897, -0.20815938711166382, 0.2603822350502014, 0.13631519675254822, -0.13949330151081085, -0.1467839479446411, -0.014168902300298214, 0.1513163447380066, 0.6338702440261841, -0.23853857815265656, -0.27293604612350464, -0.38623708486557007, -0.2877321243286133, -0.22093838453292847, 0.03441372886300087, -2.4927520751953125, -0.8883300423622131, -0.7975724339485168, -0.6235693693161011, -0.4278264045715332, -0.37991246581077576, -0.3968816101551056, -0.2537919878959656, -0.4183489978313446, -0.1392844021320343, -0.16861552000045776, 0.11789364367723465, -0.6407777667045593, -0.4173126816749573, -0.1015007272362709, 0.1118307113647461, -0.34941568970680237, -0.3567374050617218, -0.20485980808734894, -0.08960124105215073, 1.6926958560943604, 1.1739120483398438, -0.3778495490550995, -0.748168408870697, -0.60002601146698, -0.688393235206604, -0.10886187851428986, 0.7823707461357117, 1.954888939857483, 4.082591533660889, 1.3562995195388794, -3.1061081886291504, -14.4478759765625, -1.1340501308441162, -7.89017391204834, -1.355668067932129, -5.379847526550293, -5.210483074188232, -5.527088165283203, -6.067376613616943, -5.566293716430664, -4.522905349731445, -4.378673553466797, -4.849443435668945, -4.719850063323975, -3.6691508293151855, -2.1491057872772217, -3.109639883041382, -2.2511565685272217, -4.536490440368652, -2.9407622814178467, -2.4051313400268555, -2.1256041526794434, -2.2372162342071533, -2.789137125015259, -1.5142287015914917, -1.2492684125900269, -1.6211843490600586, -1.7839574813842773, -1.4934532642364502, -1.7011547088623047, -1.5181875228881836, -1.4232414960861206, -0.5656542181968689, -0.4539507329463959, -0.7779789566993713, -1.1279048919677734, -1.0179001092910767, -1.0559519529342651, -0.9773439168930054, -1.0534878969192505, -0.73095703125, -0.8986287117004395, 0.770297646522522, -0.8808987140655518, -0.6339964270591736, -0.8934319019317627, -0.7237647175788879, -0.8160689473152161, -0.25114724040031433, -0.4401104748249054, -0.8078599572181702, -0.1128823459148407, -0.7314887046813965, -0.052875861525535583, 1.539644479751587, -0.5039902925491333, 1.6002612113952637, 0.4862348139286041, -0.3433493971824646, -0.4274101257324219, 1.9341918230056763, 0.3974999785423279, 0.28377246856689453, -0.7782816290855408, -1.0435620546340942, -1.4090238809585571, -1.42666494846344, -0.7047394514083862, -0.5438223481178284, -11.117718696594238, -4.498582363128662, -3.575146198272705, -2.35101580619812, -2.2881040573120117, -1.5803592205047607, -1.5527069568634033, -1.7492262125015259, -1.7389928102493286, -0.9570375084877014, -0.1886393427848816, 0.15874634683132172, -3.0056302547454834, -2.182521104812622, -0.5244185924530029, 0.21831248700618744, -2.208988904953003, -1.576480746269226, -0.5401718616485596, -0.5023214817047119, 0.3207312822341919, 1.2268915176391602, -0.11252876371145248, -0.22917109727859497, -0.0613178052008152, -0.03746052458882332, 0.08305753022432327, 0.2504933476448059, 0.47544988989830017, 1.0961859226226807, 0.2796965539455414, -3.2554128170013428, -1.2093565464019775, -1.4485738277435303, -0.9744834899902344, 0.019727423787117004, -0.9282875657081604, -0.994166910648346, -1.0240962505340576, -1.201321005821228, -0.9554650783538818, -1.0570991039276123, -0.8853266835212708, -0.8295027017593384, -0.8679211735725403, -0.6739240884780884, -0.43453657627105713, -0.5977059602737427, -0.4133867621421814, -0.5869407057762146, -0.4897671639919281, -0.5638994574546814, -0.3849004805088043, -0.5227524638175964, -0.6460722088813782, -0.28870177268981934, -0.3622654378414154, -0.3931449055671692, -0.2667752504348755, -0.24373890459537506, -0.4419442415237427, -0.27533140778541565, -0.6664111614227295, -0.13489198684692383, -0.17816193401813507, -0.22605203092098236, -0.32236671447753906, -0.07040201872587204, -0.12137936800718307, -0.31337106227874756, -0.07943723350763321, -0.13811169564723969, -0.27617186307907104, 0.16876719892024994, -0.19158783555030823, -0.012025796808302402, -0.18275116384029388, -0.07416193932294846, -0.1231045052409172, -0.14463919401168823, -0.21086907386779785, -0.14971907436847687, 0.04209398478269577, -0.07392524927854538, 0.03368920460343361, 0.31920942664146423, -0.14851324260234833, 0.41493648290634155, 0.17232975363731384, -0.10359667986631393, -0.034418314695358276, 0.4594833254814148, 0.1365262120962143, -0.05514472350478172, -0.21112124621868134, -0.14040443301200867, -0.34301382303237915, -0.33753329515457153, -0.075286366045475, -0.16005758941173553, -2.067650079727173, -0.62843918800354, -0.5556692481040955, -0.4679825007915497, -0.48359760642051697, -0.4274426996707916, -0.37278300523757935, -0.4013608992099762, -0.24077413976192474, -0.29583656787872314, 0.027360446751117706, -0.05881731957197189, -0.586703360080719, -0.19924455881118774, 0.0040486338548362255, -0.04747982323169708, -0.4401179850101471, -0.389442503452301, -0.2114265114068985, -0.16198934614658356, -1.690132737159729, -1.3687201738357544, 0.4556020200252533, 0.8527954816818237, 0.5999191999435425, 0.6221451163291931, 0.10438346862792969, 0.687874436378479, -2.0101394653320312, -4.8871259689331055, -1.5930103063583374, 3.1762843132019043, 1.0754178762435913, 1.441694736480713, -1.0820975303649902, 0.05032562091946602, 4.939760208129883, 4.9943318367004395, 5.317627906799316, 5.311254978179932, 4.989718437194824, 4.524256706237793, 4.336480140686035, 4.7966389656066895, 4.745635509490967, 3.6857500076293945, 2.247640371322632, 3.0365402698516846, 2.369861364364624, 3.847121477127075, 2.9389500617980957, 2.3582558631896973, 2.085233211517334, 2.124588966369629, 2.852431297302246, 1.4701558351516724, 1.326816439628601, 1.6742054224014282, 1.7030094861984253, 1.5289603471755981, 1.7025913000106812, 1.4520392417907715, 2.6067025661468506, 0.4762183725833893, 0.5174486041069031, 0.884993314743042, 3.8454627990722656, 0.8798968195915222, 4.731002330780029, 0.9449880123138428, 0.897678017616272, 0.7145578265190125, 0.864109218120575, -0.7105767726898193, 0.8060390949249268, 0.6032533049583435, 0.7130441069602966, 0.7531229853630066, 0.8018993735313416, 0.19523273408412933, 0.5336224436759949, 0.7721254825592041, 0.26588529348373413, 0.778928279876709, -0.058028846979141235, -1.6551185846328735, 0.5130794048309326, -1.6709634065628052, -0.7295700907707214, 0.2604445517063141, 0.38593539595603943, 0.43960869312286377, -0.5822135806083679, -0.13916073739528656, 0.691264808177948, 1.2089803218841553, 1.4040387868881226, 1.5151915550231934, 0.7375446557998657, 0.43524718284606934, 10.349853515625, 5.309102535247803, 3.455317974090576, 2.3784525394439697, 2.2248263359069824, 2.373924970626831, 1.5765775442123413, 2.960482120513916, 1.5727297067642212, 0.9360575079917908, 0.586595356464386, -0.23358409106731415, 2.832442283630371, 1.750033974647522, 0.12322598695755005, 0.09100231528282166, 2.2746238708496094, 1.5544936656951904, 0.5266433954238892, 0.581261932849884, 1.6814533472061157, 1.172446846961975, -0.2586249113082886, -0.8439111709594727, -0.7179451584815979, -0.6600342988967896, -0.2213069051504135, 0.9859451651573181, 1.7618019580841064, 4.235414028167725, 1.3822236061096191, -3.1086835861206055, -14.562711715698242, -1.059888243675232, -16.777902603149414, -4.529929161071777, -5.258783340454102, -5.110031604766846, -5.5335259437561035, -5.930649280548096, -5.649166584014893, -4.602900505065918, -4.279512882232666, -4.896762847900391, -4.582980632781982, -3.5727100372314453, -2.3015153408050537, -3.0661983489990234, -2.2142016887664795, -2.8304226398468018, -2.9345176219940186, -2.371076822280884, -2.1943888664245605, -2.119457960128784, -2.8591575622558594, -1.4466975927352905, -1.35748291015625, -1.5501443147659302, -1.767087697982788, -1.5341343879699707, -1.7305326461791992, -1.4832645654678345, -1.4578478336334229, -0.45584186911582947, -0.48572540283203125, -0.9220519065856934, -1.0070197582244873, -0.9191168546676636, -0.8233225345611572, -0.8701371550559998, -1.072057843208313, -0.814674973487854, -0.862621545791626, 0.702472984790802, -0.7575227618217468, -0.7151869535446167, -0.7163618206977844, -0.7611345648765564, -0.845486581325531, -0.29114389419555664, -0.623615562915802, -0.8391228914260864, -0.12719140946865082, -0.729718804359436, -0.2207925021648407, 1.4636245965957642, -0.7394801378250122, 1.5782012939453125, 0.49014732241630554, -0.2573527991771698, -0.481814444065094, 1.9003393650054932, 0.5471203327178955, 0.18622633814811707, -0.6945018768310547, -1.2002664804458618, -1.3966060876846313, -1.4773098230361938, -0.7708931565284729, -0.5748347640037537, -10.810044288635254, -3.4294321537017822, -3.435889959335327, -2.132974147796631, -2.300492525100708, -1.5717380046844482, -1.7953721284866333, -1.7138242721557617, -1.759426236152649, -0.9750609993934631, -0.06394440680742264, 0.20894065499305725, -3.0633206367492676, -2.071727752685547, -0.7266013026237488, 0.24678899347782135, -2.1746394634246826, -1.7095069885253906, -0.5420822501182556, -0.472383052110672, -0.5386008024215698, 0.3790470063686371, 0.9293994307518005, 0.49629369378089905, -0.606113851070404, 3.118548631668091]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (0.8, 1.37)}}, 'et1_eta0': {'discriminator': {'threshold': -0.4650006055831909, 'nodes': [100, 5, 1], 'bias': [0.08850277215242386, 0.29802069067955017, 0.21457459032535553, -0.10977515578269958, -0.2650356590747833, -0.06368418782949448], 'weights': [-2.5806844234466553, -1.0012047290802002, -0.2730771601200104, 0.04640960693359375, -0.23492079973220825, -0.25099289417266846, -0.18854427337646484, -0.6312430500984192, -1.5728650093078613, -2.0988950729370117, 1.0723426342010498, 5.214395046234131, 7.634226322174072, 3.932420492172241, 3.1731977462768555, 2.7362208366394043, 2.520021915435791, 1.7802473306655884, 1.7117398977279663, 2.775007963180542, 1.8490713834762573, 4.080935001373291, 1.5807067155838013, 1.3705689907073975, 1.4523284435272217, 1.282424807548523, 1.9052059650421143, 1.3268152475357056, 1.2147687673568726, 1.1448230743408203, 1.0762319564819336, 1.149719476699829, 0.9828029274940491, 0.7869490385055542, 1.0506229400634766, 0.7081304788589478, 0.7478598356246948, 0.8586633205413818, 0.8232532739639282, 1.6884773969650269, 0.5400390028953552, 0.44420546293258667, 0.6171509623527527, 0.6396961212158203, 0.40406715869903564, 0.4276370704174042, 0.4723331928253174, 0.10639713704586029, 0.4063652455806732, -0.04959668591618538, 0.2616499960422516, -0.03402677923440933, 0.059273116290569305, 0.3306509256362915, 0.5020179152488708, 0.6612769365310669, -0.03246231749653816, -0.3431079685688019, 0.112039715051651, 0.20476339757442474, -0.2729301452636719, -0.652006208896637, 0.3640297055244446, 0.6954027414321899, 0.1482647806406021, 0.5909504890441895, -0.28839030861854553, 0.31749823689460754, -0.47111091017723083, 0.2065715789794922, -0.7505382895469666, 0.2084415853023529, -0.42441025376319885, -0.2964019775390625, 0.2804376482963562, 0.582612931728363, 1.00559663772583, 0.5798299312591553, 0.4391465187072754, 0.03747107461094856, 5.822595596313477, 1.6330883502960205, 1.7257215976715088, 1.1487311124801636, 0.8518974184989929, 0.7851455211639404, 0.9534518718719482, 1.4868475198745728, 1.8831793069839478, 1.4306070804595947, 0.39715254306793213, 0.24408017098903656, 1.7380021810531616, 1.0294674634933472, -0.11819819360971451, -0.24534854292869568, 2.358104705810547, 1.0681188106536865, 0.2522551417350769, -8.108581823762506e-05, -0.2052263468503952, 20.07004737854004, -0.05454494431614876, -0.18717095255851746, -0.022892674431204796, 6.42439079284668, 0.021967625245451927, -0.2698066532611847, 0.9815628528594971, 2.539395570755005, -0.041126005351543427, -188.51095581054688, 1.2481532096862793, 4.584614276885986, 31.096965789794922, 7.407281875610352, 6.4813032150268555, 0.44959187507629395, 6.5897698402404785, 3.112337350845337, 0.552180290222168, 0.7381755709648132, 0.34178149700164795, 0.10214046388864517, 0.28746888041496277, 0.11707084625959396, 0.2851114869117737, 0.29011955857276917, 0.2782539427280426, 0.1969985067844391, 0.2606906592845917, 0.1943608522415161, 0.2012009471654892, 0.12583144009113312, 0.1824081391096115, 0.13188831508159637, 0.13675498962402344, 0.13455922901630402, 0.1803206503391266, 0.03803775832056999, -0.0544644296169281, -0.08126848191022873, 0.17514316737651825, 0.15767283737659454, -0.02302093245089054, 0.0002129851491190493, 9.541810035705566, -0.11653793603181839, -0.02170524187386036, -0.0030093672685325146, 0.11309917271137238, -0.15355350077152252, -0.11288440972566605, -2.4306955337524414, -73.22344970703125, -0.020048722624778748, -0.17453287541866302, -0.7349122762680054, -0.1362602561712265, -0.11913035064935684, -0.24777555465698242, -0.09940226376056671, 0.08428455889225006, -0.187347412109375, 0.01218602154403925, 0.08000417053699493, -0.04203977808356285, 0.013009489513933659, -0.1961224377155304, 0.05147147923707962, -0.17532473802566528, -0.11450307816267014, 0.1367666870355606, 0.10501325130462646, 1.171893835067749, 4.778346538543701, 0.24694855511188507, 0.031231198459863663, 0.059682074934244156, -0.07460985332727432, 0.560391902923584, 8.475451469421387, 16.56343650817871, 0.22844885289669037, 0.005401573609560728, 0.09367279708385468, 0.021713171154260635, 0.1966490000486374, -1.247552514076233, 0.024344611912965775, -0.0208007600158453, -0.26645153760910034, 0.12142878770828247, 0.10227616131305695, -0.09873196482658386, -0.07469190657138824, 0.4973446726799011, 2.5086257457733154, -0.07525625079870224, -0.16092340648174286, -2.383897066116333, -1.3760507106781006, -0.3348962664604187, 1.179531455039978, -0.15976905822753906, -0.24633640050888062, -0.027256470173597336, -0.5228423476219177, -1.5888421535491943, -2.6769280433654785, 0.8242276310920715, 2.4047093391418457, 1.4194800853729248, 3.582404375076294, 3.1895318031311035, 2.3722589015960693, 2.534457206726074, 1.7707122564315796, 1.8028674125671387, 2.6878201961517334, 1.6965737342834473, 2.156740427017212, 1.542108178138733, 1.4480589628219604, 1.8843015432357788, 1.1578338146209717, 1.8208820819854736, 1.3979628086090088, 1.1670628786087036, 1.1282018423080444, 1.2297827005386353, 1.0489581823349, 1.0769861936569214, 0.6272847056388855, 0.8593021035194397, 0.6260786056518555, 0.5971726775169373, 0.8229843974113464, 0.8540348410606384, 1.5200797319412231, 0.6819210648536682, 0.5246379971504211, 0.6939978003501892, 0.5826196670532227, 0.2613293528556824, 0.5254384279251099, 0.5967040657997131, -0.01746673323214054, 0.5041105151176453, -0.12722176313400269, 0.30193957686424255, 0.1491677314043045, -0.1304699331521988, 0.3279569149017334, 0.5113049745559692, 0.6325740814208984, -0.14406374096870422, 0.02065088227391243, 0.15422871708869934, 0.2860473394393921, -0.3209764361381531, -0.7076837420463562, 0.3395984470844269, 0.7022368907928467, 0.1842680275440216, 0.6265614032745361, -0.3680141568183899, 0.45416259765625, -0.46680304408073425, 0.40902554988861084, -0.49815353751182556, 0.09244372695684433, -0.39312347769737244, -0.48561719059944153, 0.43097352981567383, 0.7226723432540894, 0.897112250328064, 0.6425195336341858, 0.45138198137283325, 0.00849300716072321, 5.954187870025635, 1.6895170211791992, 1.6343204975128174, 1.0949205160140991, 0.9260191321372986, 0.6236910820007324, 0.8671881556510925, 1.417702078819275, 1.9717001914978027, 1.473469614982605, 0.4402773082256317, 0.24526472389698029, 2.007535457611084, 1.0167276859283447, 0.41198447346687317, -0.30539608001708984, 2.3852570056915283, 0.996436595916748, 0.3332338035106659, -0.17675654590129852, 2.5845961570739746, 1.212166428565979, 0.20074820518493652, 0.030683953315019608, 0.2545512318611145, 0.17029887437820435, 0.16634932160377502, 0.4982535243034363, 1.6890970468521118, 1.9754447937011719, -1.2980303764343262, -5.312727451324463, -7.698091983795166, -3.7385916709899902, -3.286646604537964, -2.704873561859131, -2.4968903064727783, -1.7537165880203247, -1.8216450214385986, -2.681057929992676, -1.8271340131759644, -1.9379202127456665, -1.5291752815246582, -1.463510274887085, -1.3950189352035522, -1.0537468194961548, -1.7698345184326172, -1.4257134199142456, -1.1033873558044434, -1.2061586380004883, -1.0880452394485474, -1.0287353992462158, -1.074491024017334, -0.8654044270515442, -1.09386146068573, -0.7744948267936707, -0.6656947135925293, -0.6827832460403442, -0.7813001871109009, -1.495880365371704, -0.7289212346076965, -0.38663405179977417, -0.7631081938743591, -0.651140570640564, -0.39397621154785156, -0.4455743730068207, -0.4467396140098572, -0.04283224418759346, -0.40346524119377136, 0.20658908784389496, -0.34545084834098816, 0.04809919744729996, 0.0783865675330162, -0.3686244487762451, -0.5752061605453491, -0.7076175212860107, 0.121605284512043, 0.1639905422925949, -0.26296666264533997, -0.23427186906337738, 0.2737751007080078, 0.7305718064308167, -0.5138651132583618, -0.5449318289756775, -0.15384043753147125, -0.7897053956985474, 0.3668023347854614, -0.4822190999984741, 0.4539201259613037, -0.32751092314720154, 0.5043238401412964, -0.419588178396225, 0.6023481488227844, 0.17831134796142578, -0.24144744873046875, -0.6358891129493713, -0.9003252387046814, -0.5418298244476318, -0.43454253673553467, -0.1705821305513382, -5.86890983581543, -1.708831787109375, -1.6034786701202393, -1.0516904592514038, -0.7220751643180847, -0.7304001450538635, -0.9084433317184448, -1.4979172945022583, -2.0133533477783203, -1.2951805591583252, -0.19642029702663422, -0.1319875419139862, -1.6450563669204712, -0.9842507243156433, 0.104102723300457, 0.21811139583587646, -2.505967378616333, -0.9627663493156433, -0.20291189849376678, -0.17066088318824768, 2.523078203201294, 1.2397465705871582, 0.3222271502017975, 0.12637624144554138, 0.19881415367126465, 0.1611686795949936, 0.015605319291353226, 0.5323315262794495, 1.6160365343093872, 2.0284018516540527, -1.044151782989502, -3.7301273345947266, -1.5994799137115479, -3.6477060317993164, -3.2697880268096924, -2.807410955429077, -2.474952459335327, -1.6306145191192627, -1.6776785850524902, -2.6056666374206543, -1.7122881412506104, -1.9532740116119385, -1.5319031476974487, -1.4019474983215332, -1.90078866481781, -1.3484795093536377, -1.8125066757202148, -1.1925442218780518, -1.1334221363067627, -1.092852234840393, -1.013049840927124, -1.129899501800537, -0.9238896369934082, -0.6770639419555664, -1.1074323654174805, -0.6877516508102417, -0.7302060127258301, -0.8390008807182312, -0.9042571187019348, -1.6276228427886963, -0.5894379615783691, -0.46856778860092163, -0.6491129994392395, -0.5125652551651001, -0.2724980115890503, -0.30689680576324463, -0.41970714926719666, -0.1430593878030777, -0.39922475814819336, 0.13472452759742737, -0.3783359229564667, -0.057618461549282074, -0.016896555200219154, -0.4073556363582611, -0.6274473071098328, -0.5425912141799927, 0.13909856975078583, 0.12539851665496826, -0.11267583072185516, -0.25544434785842896, 0.2485422044992447, 0.7121180891990662, -0.3919336199760437, -0.7181009650230408, -0.22763942182064056, -0.6732332706451416, 0.37915194034576416, -0.3767874538898468, 0.6579141616821289, -0.1865592747926712, 0.7217347621917725, -0.06282942742109299, 0.4178060293197632, 0.5003261566162109, -0.3291083574295044, -0.7071840167045593, -0.9176375269889832, -0.7618668675422668, -0.5984167456626892, -0.17798370122909546, -5.918032169342041, -1.6591318845748901, -1.4021949768066406, -0.9522659778594971, -0.9617892503738403, -0.5658779144287109, -0.8876404762268066, -1.4604300260543823, -2.021662712097168, -1.3704696893692017, -0.4504642188549042, 0.9031230807304382, -2.0044949054718018, -1.0812060832977295, -0.45180824398994446, 0.2888007164001465, -3.373633623123169, -1.0152852535247803, -0.27049174904823303, 0.2571607232093811, -1.17954421043396, -0.2844941020011902, -1.0495645999908447, 2.2307827472686768, 2.5593717098236084]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (0, 0.8)}}, 'et3_eta1': {'discriminator': {'threshold': -0.035000821948051458, 'nodes': [100, 5, 1], 'bias': [0.15730011463165283, 0.07815705239772797, -0.006643477361649275, 0.1405337154865265, -0.15454824268817902, -0.23352541029453278], 'weights': [-2.2592337131500244, -2.111402988433838, 1.0897276401519775, 1.14312744140625, 0.6493831276893616, -0.3516945540904999, -0.24517647922039032, -0.2307973951101303, -2.991236686706543, -3.7764527797698975, 2.889862060546875, 7.753478527069092, 1.6842848062515259, 3.7955284118652344, 9.603760719299316, 8.095412254333496, 3.444871425628662, 7.7395172119140625, 7.613654136657715, 6.645348072052002, 7.937831401824951, 2.643230676651001, 6.488022327423096, 3.073213815689087, 3.4893076419830322, 2.4130094051361084, 4.246172904968262, 2.2602477073669434, 1.967344045639038, 2.2002124786376953, 2.0582127571105957, 3.8808634281158447, 4.826034069061279, 8.88129997253418, 2.8044652938842773, 0.9710285663604736, 2.2622244358062744, 1.680975317955017, 3.2145273685455322, 1.786454200744629, 3.0584285259246826, 2.1071407794952393, 2.1291117668151855, 3.5432729721069336, 1.052205204963684, 0.030557846650481224, -2.2776753902435303, 1.5152586698532104, 1.7110742330551147, 1.7531414031982422, 0.7845969200134277, 0.8433842062950134, 4.040330410003662, -0.9446387887001038, -3.7090647220611572, 1.0371294021606445, 0.9976323246955872, 0.6247972846031189, 1.0383681058883667, 0.8938833475112915, 0.07614778727293015, -1.8009514808654785, 0.8994818329811096, -2.3960764408111572, 1.3220913410186768, 1.2301081418991089, 5.750441551208496, -0.347689151763916, -2.032581090927124, -0.004036625847220421, 0.9990876317024231, 0.10651766508817673, -0.6248242855072021, -0.6703989505767822, 1.238221526145935, 2.0437328815460205, 2.0885448455810547, 1.6882622241973877, 1.6431466341018677, 0.6129466891288757, 5.512369632720947, 6.847434043884277, 4.415524005889893, 4.060720443725586, 2.1885111331939697, 0.9768252372741699, 3.6383414268493652, 3.9159090518951416, 2.347606658935547, 1.1752392053604126, 0.09728527814149857, 0.03384150564670563, 4.355111122131348, 3.7721214294433594, 1.4732459783554077, 0.4030681848526001, 4.801760196685791, 2.2721035480499268, 2.0172536373138428, -0.409799188375473, -1.0578287839889526, -1.8762972354888916, 1.079729437828064, 1.1918156147003174, 0.6503933072090149, -0.19451335072517395, 0.18041542172431946, -0.2852369546890259, -3.0265536308288574, -3.862375497817993, 2.8850512504577637, 1.560224175453186, 1.7875977754592896, 3.647792339324951, 9.470881462097168, 8.199115753173828, 3.448289394378662, 7.844549179077148, 7.59998083114624, 6.665423393249512, 7.847585201263428, 2.698899745941162, 6.49744176864624, 3.2684009075164795, 3.482053518295288, 2.5860989093780518, 4.403741359710693, 2.1741089820861816, 2.1662118434906006, 2.245495557785034, 2.0364773273468018, 3.708613872528076, 5.011116027832031, 8.842255592346191, 2.6692419052124023, 0.9078444242477417, 2.1339166164398193, 1.6668797731399536, 6.28959321975708, 1.615511178970337, 2.183648109436035, 2.009016990661621, 3.1257035732269287, 6.710860729217529, 1.0459524393081665, 0.13967451453208923, -2.264399290084839, 1.5051060914993286, 1.6856147050857544, 1.744413137435913, -0.32601088285446167, 0.7349650859832764, 4.0952982902526855, -0.9256616830825806, 0.39020541310310364, 1.0775421857833862, 0.9500966668128967, 0.6222617030143738, 0.9999426603317261, 0.9623971581459045, -0.12071329355239868, -1.868445873260498, 0.568004310131073, -2.445319890975952, 1.2082405090332031, 1.3135732412338257, 5.609175205230713, -0.038440752774477005, -1.6587306261062622, -0.16029344499111176, 1.0652010440826416, 0.06854327023029327, -0.6420084238052368, -0.6593389511108398, 1.3284329175949097, 2.0131008625030518, 1.9690968990325928, 1.794880986213684, 1.609578251838684, 0.7076612710952759, 5.371720314025879, 6.823807716369629, 4.39454460144043, 3.982004165649414, 2.176537275314331, 1.0426629781723022, 3.6658716201782227, 3.863720655441284, 2.4182329177856445, 1.3307749032974243, 0.19643723964691162, -0.6463615894317627, 4.203552722930908, 3.610746383666992, 1.5748257637023926, 0.3813633322715759, 4.716528415679932, 2.3044610023498535, 1.9815802574157715, -0.4256702661514282, 0.948711097240448, 1.4046434164047241, -1.1294604539871216, -1.6056320667266846, -0.5236995816230774, 0.16869063675403595, -0.1355123668909073, -0.7893909811973572, 2.8440308570861816, 3.742664098739624, -2.7891299724578857, -1.5766050815582275, -1.9559719562530518, -3.642308235168457, -9.54025650024414, -8.080312728881836, -3.419504165649414, -7.699987411499023, -7.557397365570068, -6.559866905212402, -7.960373878479004, -2.503316879272461, -6.43572473526001, -3.2168118953704834, -3.5800607204437256, -2.5390164852142334, -4.433113098144531, -2.179738998413086, -2.1718313694000244, -2.30818247795105, -2.2183165550231934, -3.8191580772399902, -4.827245235443115, -8.837349891662598, -2.619448661804199, -0.939981997013092, -2.150607109069824, -1.808663249015808, -6.18973970413208, -1.819018006324768, -2.2086610794067383, -2.0497169494628906, -3.1091132164001465, -6.667771816253662, -1.0853623151779175, 0.044015172868967056, 2.189815044403076, -1.5199230909347534, -1.5938282012939453, -1.5399328470230103, 0.180278941988945, -0.7517843246459961, -3.931715488433838, 0.837063193321228, -0.3596337139606476, -1.0161563158035278, -0.9874147772789001, -0.6168691515922546, -1.1806604862213135, -0.9918128252029419, 0.06760714203119278, 1.7423646450042725, -0.7214913368225098, 2.388862371444702, -1.3336081504821777, -1.1807910203933716, -5.644992828369141, 0.13285598158836365, 1.6455429792404175, -0.012143492698669434, -1.1784769296646118, -0.10255590826272964, 0.6653430461883545, 0.5668428540229797, -1.3355993032455444, -2.030824899673462, -2.114377737045288, -1.8687688112258911, -1.6404701471328735, 0.11417483538389206, -5.477608680725098, -6.7639570236206055, -4.232583045959473, -4.16078519821167, -2.2094781398773193, -1.0866056680679321, -3.524570941925049, -3.929792642593384, -2.4525907039642334, -1.1559392213821411, -0.06478343158960342, 0.5546999573707581, -4.3912739753723145, -3.628386974334717, -1.5357224941253662, -0.4579792022705078, -4.605578422546387, -2.296983242034912, -1.9679656028747559, 0.28695544600486755, -2.3765549659729004, -1.826352834701538, 1.2187130451202393, 1.3092496395111084, 0.5915548205375671, -0.3426985442638397, -0.2751856744289398, -0.314382404088974, -2.811002016067505, -3.895705461502075, 2.9136977195739746, 7.730470180511475, 1.8735255002975464, 3.8248209953308105, 9.666841506958008, 8.284022331237793, 3.4880027770996094, 7.699344158172607, 7.492215156555176, 6.57686185836792, 7.852872848510742, 2.585815191268921, 6.493010997772217, 3.0883805751800537, 3.6977086067199707, 2.517072916030884, 4.410699844360352, 2.3049583435058594, 2.1643483638763428, 2.3864967823028564, 2.1740663051605225, 3.7206766605377197, 4.969498157501221, 8.886266708374023, 2.8033461570739746, 0.8167921900749207, 2.2691328525543213, 1.656901478767395, 3.2165815830230713, 1.7338237762451172, 2.9080471992492676, 2.1400740146636963, 2.060528039932251, 3.3422608375549316, 1.1214913129806519, 0.03210899978876114, -2.050215482711792, 1.3877946138381958, 1.665394902229309, 1.619297742843628, 0.8203185200691223, 0.9526190161705017, 3.569678783416748, -0.9109848141670227, -3.824537754058838, 1.0541692972183228, 0.895470917224884, 0.6667991280555725, 1.1071701049804688, 0.7507856488227844, 0.06456183642148972, -1.856168270111084, 0.5235879421234131, -2.2571492195129395, 1.2647886276245117, 1.1707028150558472, 5.652133941650391, -0.39103126525878906, -2.123114824295044, -0.01829957216978073, 1.14298677444458, 0.10547726601362228, -0.5980741381645203, -0.5880293250083923, 1.276043176651001, 1.8998985290527344, 2.1654112339019775, 1.7136738300323486, 1.611719012260437, 0.013624376617372036, 5.396884441375732, 6.844674110412598, 4.3231282234191895, 3.993725299835205, 1.9795293807983398, 1.0088306665420532, 4.624177932739258, 3.8446385860443115, 2.42866849899292, 1.2011736631393433, 0.12086088210344315, -0.683218240737915, 4.318774223327637, 3.723301410675049, 1.4488369226455688, 0.32057785987854004, 5.1095194816589355, 2.4652087688446045, 1.8802709579467773, -0.37574025988578796, -21.59067153930664, -63.43375015258789, -0.2735781669616699, 0.2153743952512741, -0.8092572689056396, -0.47440817952156067, -20.279008865356445, -0.24874059855937958, -0.36921605467796326, -0.5934879779815674, 47.644649505615234, 53.703582763671875, 11.008259773254395, 3.457265853881836, 0.8416662812232971, 2.116163730621338, 0.8367151021957397, 0.6726363897323608, -0.997137188911438, 1.2167855501174927, 1.4902551174163818, 0.38358455896377563, 1.4080822467803955, 0.6277941465377808, 0.9135026335716248, 0.6050988435745239, 0.40357279777526855, 0.6170344948768616, 0.2969239354133606, 0.5191042423248291, 0.6139196753501892, 0.7409111261367798, 0.9573351144790649, 1.8468486070632935, -248.90916442871094, -54.436676025390625, 0.43212229013442993, 0.09688788652420044, 0.38933852314949036, 0.16416221857070923, 0.6027839183807373, 0.2772578299045563, 0.3182348906993866, 0.21298809349536896, 0.2695401906967163, 0.1460779309272766, -0.7934804558753967, 0.28100353479385376, 0.13278765976428986, 0.31015878915786743, -0.035232365131378174, 0.0193338505923748, 66.85016632080078, 0.10123156756162643, 0.07632054388523102, 0.19312737882137299, 0.13152167201042175, -0.0026324214413762093, 0.24675513803958893, 0.1866142451763153, 0.00965319573879242, -0.40578967332839966, 0.019524067640304565, -0.5681098699569702, 0.17334890365600586, 0.18794532120227814, 0.256261944770813, -0.17903569340705872, -1.0559300184249878, -0.07804456353187561, 0.12097977101802826, -84.89774322509766, 0.009624776430428028, 0.11099477112293243, 0.14837472140789032, 0.40018707513809204, 0.2729507386684418, 0.39055711030960083, 0.2435155212879181, 0.007527800276875496, 1.1460940837860107, 1.4636454582214355, 0.7786661982536316, 0.8342838883399963, 0.44177284836769104, 0.23402126133441925, 28.704330444335938, 0.6955901980400085, 0.26131296157836914, 0.14333754777908325, -0.12008234858512878, -0.3277459740638733, 0.941196620464325, 0.7440329790115356, 0.245652437210083, 0.029291512444615364, 0.7237016558647156, 0.5614503622055054, 0.4866182804107666, -0.20025552809238434, -1.9216974973678589, -2.128844738006592, 0.4173222780227661, -1.8761860132217407, -0.4172418415546417]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (40, 50), 'etaBin': (0.8, 1.37)}}, 'et0_eta3': {'discriminator': {'threshold': -0.055000817775726324, 'nodes': [100, 9, 1], 'bias': [-0.1407214254140854, 0.06674350053071976, -0.18006108701229095, 0.05616862326860428, -0.18473659455776215, 0.16730372607707977, -0.09875761717557907, -0.018065694719552994, 0.14515070617198944, -0.12949378788471222], 'weights': [-0.8132635354995728, -0.7208519577980042, 0.11873473972082138, 0.33942773938179016, 1.0432066917419434, 0.36767181754112244, 0.27934151887893677, 0.0815957710146904, -1.380362629890442, -1.6840870380401611, -1.7429289817810059, -0.28187838196754456, 1.5563263893127441, 0.4624183475971222, 5.093498229980469, 4.076866626739502, 1.8049594163894653, 5.036686897277832, 0.5959597826004028, 5.1945366859436035, 1.6616880893707275, -1.4257605075836182, 3.233429431915283, 3.1460630893707275, 2.002929925918579, 2.0998306274414062, 1.980833888053894, 2.803379774093628, 0.3217647075653076, 0.7369864583015442, 0.722167432308197, 1.7329550981521606, 1.6127166748046875, 1.7412950992584229, -0.2182760089635849, 1.858873963356018, 0.45404917001724243, -0.461873859167099, 0.30324089527130127, 1.5901087522506714, 0.8437208533287048, -1.1453101634979248, 1.052100419998169, 1.3319687843322754, 1.0879489183425903, 0.9551039338111877, 1.2579126358032227, 0.12899626791477203, 0.1943940967321396, 0.9106179475784302, -0.08881685882806778, 1.0421924591064453, -0.10981596261262894, -0.4122312366962433, -0.10562685132026672, 0.026212286204099655, 1.1173734664916992, 0.8650310039520264, -0.08201833814382553, 0.07405491918325424, -0.27372512221336365, 2.4792611598968506, -0.7124928832054138, 0.0992538183927536, 0.24293576180934906, 0.6265254616737366, -1.1141934394836426, -0.9671548008918762, -0.26049870252609253, 0.9531799554824829, -2.1120102405548096, -1.0566222667694092, -0.29698124527931213, -0.22588281333446503, 0.5247219800949097, 1.7258588075637817, 2.1028051376342773, 1.4754496812820435, 0.4460217356681824, 0.9740409851074219, 5.81657075881958, 5.043082237243652, 2.6552717685699463, 1.1897108554840088, 1.492576003074646, 1.3613582849502563, 0.21798363327980042, 1.1362003087997437, 0.5873610377311707, 1.1977033615112305, 0.2068304717540741, 0.007278257980942726, 2.1149260997772217, 0.9510822296142578, 0.11564116925001144, 0.3190535008907318, 0.30512645840644836, 0.40963464975357056, 0.20987500250339508, -0.10704275220632553, 0.7592369318008423, 0.7010093927383423, -0.07309114933013916, -0.321598619222641, -1.2008109092712402, -0.20066553354263306, -0.3915606141090393, -0.09344636648893356, 1.399393916130066, 1.789229154586792, 1.7646849155426025, 0.46421006321907043, -1.5790103673934937, -0.39892324805259705, -5.003358364105225, -3.9036083221435547, -1.822140097618103, -4.984104633331299, -0.934328556060791, -5.151466369628906, -1.584260106086731, 1.5737708806991577, -3.1216108798980713, -3.0638585090637207, -1.789509892463684, -1.9562020301818848, -1.874325156211853, -2.966566324234009, -0.4420681893825531, -0.929384171962738, -0.7703667879104614, -1.8981620073318481, -1.5977709293365479, -1.752970576286316, 0.12634186446666718, -1.7356882095336914, -0.2895793318748474, 0.2668388783931732, -0.43842393159866333, -1.6531239748001099, -0.7248035073280334, 1.0227733850479126, -0.9419450759887695, -1.1990209817886353, 0.7308794856071472, -0.9434993863105774, -1.1982247829437256, 0.05041747912764549, -0.12107542902231216, -0.8440163731575012, 0.09307906776666641, -1.1794803142547607, 0.0777030885219574, 0.2817169725894928, 0.060458697378635406, -0.016693897545337677, -1.1133806705474854, -1.0501405000686646, 0.17486368119716644, 0.1022058054804802, 0.14273224771022797, -2.4254705905914307, 0.6866123080253601, 0.05049509555101395, -0.19168545305728912, 1.3615690469741821, 1.1406676769256592, 0.9363752007484436, 0.4406859278678894, -0.8153678774833679, 1.9708521366119385, 1.1368048191070557, 0.3213760554790497, 0.25849276781082153, -0.5581075549125671, -1.7605060338974, -2.0657196044921875, -1.4582678079605103, -0.5693160891532898, -0.8994877934455872, -5.7229461669921875, -4.89405632019043, -2.6821625232696533, -1.3737807273864746, -1.4649416208267212, -1.4477856159210205, -0.14602454006671906, -1.113690733909607, -0.6070882678031921, -1.0237780809402466, -0.2823850214481354, 0.08853570371866226, -2.1337239742279053, -1.0616344213485718, -0.13125473260879517, -0.2957075536251068, -0.2960958778858185, -0.37493205070495605, -0.20818856358528137, 0.04974399134516716, -0.6139215230941772, -0.675837516784668, 0.01800144463777542, 0.16583053767681122, 1.2029106616973877, 0.3534911572933197, 0.3536852300167084, 0.11401058733463287, -1.3429614305496216, -1.7399932146072388, -1.7351245880126953, -0.2631223797798157, 1.6811394691467285, 0.3199397027492523, 4.912400245666504, 4.087119102478027, 1.8122690916061401, 4.585328578948975, 0.5006241798400879, 5.293233871459961, 1.540311574935913, -1.5636931657791138, 2.9893717765808105, 3.1181747913360596, 1.9691492319107056, 1.8847261667251587, 1.9459575414657593, 2.723675012588501, 0.2768232524394989, 0.709211528301239, 0.7326670289039612, 1.730704426765442, 1.6340304613113403, 1.9072352647781372, -0.14522923529148102, 1.7837166786193848, 0.3496350049972534, -0.3285650312900543, 0.2599640488624573, 1.522546410560608, -0.4116015136241913, -1.0928959846496582, 1.0027908086776733, 1.1905454397201538, 0.9984291791915894, 0.9808773994445801, 1.19428551197052, 0.04732788726687431, 1.0897341966629028, 1.0191333293914795, -0.07227389514446259, 1.151305913925171, 0.03757204860448837, -0.35156339406967163, -0.02380802109837532, 0.14536979794502258, 1.219740629196167, 0.9114254117012024, -0.00130744487978518, -0.03901457041501999, -0.25455406308174133, 2.571018934249878, -0.8134226202964783, 0.14029164612293243, 0.24446211755275726, 0.6065241098403931, -1.1495189666748047, -1.0705891847610474, -0.4038388133049011, 0.8757845163345337, -2.127149820327759, -1.122079610824585, -0.32063862681388855, -0.18409450352191925, 0.5740222930908203, 1.6113555431365967, 1.9088267087936401, 1.6182595491409302, 0.5058969259262085, 0.9988620281219482, 5.763286590576172, 5.048830986022949, 2.5395450592041016, 1.2832765579223633, 1.3747955560684204, 1.3269175291061401, 0.17452827095985413, 1.1202446222305298, 0.5959217548370361, 0.9587409496307373, 0.09219545871019363, 0.03949817642569542, 1.9787968397140503, 0.991693377494812, 0.1883508414030075, 0.16261804103851318, 0.3252050578594208, 0.19150783121585846, 0.25308945775032043, 0.026354173198342323, 0.6227089166641235, 0.7692942023277283, -0.08964084833860397, -0.4267958104610443, -1.0906569957733154, -0.3703511655330658, -0.4365720748901367, -0.06057586148381233, 1.538360834121704, 1.7810781002044678, 1.7440450191497803, 0.4286406338214874, -1.7042056322097778, -0.3263782560825348, -5.154655933380127, -4.059049606323242, -2.0356369018554688, -5.170736312866211, -0.835893988609314, -5.329240798950195, -1.6158276796340942, 1.4615364074707031, -3.17944598197937, -3.052053689956665, -1.8381186723709106, -1.8850442171096802, -2.0912375450134277, -2.9795339107513428, -0.3490269184112549, -1.4141292572021484, -0.8147439956665039, -1.6981388330459595, -1.6216113567352295, -1.8562984466552734, 0.22728736698627472, -1.8928875923156738, -0.31895917654037476, 0.31665071845054626, 3.4235925674438477, -1.557573914527893, -0.8990640044212341, 1.1268880367279053, -1.1254336833953857, 0.4046348035335541, 0.6647327542304993, -1.0347871780395508, -1.1936805248260498, 0.01357869990170002, -0.13351063430309296, -0.9845501780509949, 0.1219787523150444, -1.229602575302124, 0.06844998896121979, 0.24674876034259796, 0.016024844720959663, -0.06808590888977051, -1.0710718631744385, -1.0635803937911987, 0.11627098172903061, 0.2314356565475464, 0.2823445498943329, -2.534559965133667, 0.7723482251167297, -0.07724808156490326, -0.1604723483324051, 1.304740071296692, 1.0992412567138672, 0.9320917725563049, 0.4397430121898651, -0.9811238646507263, 2.0688986778259277, 0.9843761324882507, 0.25361254811286926, 0.17018835246562958, -0.6069934368133545, -1.6504689455032349, -2.005711793899536, -1.4964929819107056, -0.48185303807258606, -1.0954331159591675, -5.6581926345825195, -5.042731285095215, -2.6847081184387207, -1.3244023323059082, -1.1975760459899902, -1.4887137413024902, 5.016898155212402, -1.3004270792007446, -0.6558590531349182, -1.0847349166870117, -0.3006038963794708, -0.06806442141532898, -2.0518479347229004, -0.9880046844482422, -0.1700318306684494, -0.4345398545265198, -0.5227755904197693, -0.21367666125297546, -0.1561916023492813, 0.06564300507307053, -0.6659454107284546, -0.622691810131073, -0.051412079483270645, 0.34174641966819763, 1.2015018463134766, 0.38680869340896606, 0.2616593539714813, 0.07423434406518936, -1.4861937761306763, -1.7715117931365967, -1.8740382194519043, -0.3130093812942505, 1.6568242311477661, 0.4021936357021332, 4.996301651000977, 4.259697437286377, 1.8955779075622559, 5.142794132232666, 0.9814954400062561, 5.332903861999512, 1.614749550819397, 2.6933858394622803, 3.115966320037842, 3.0592973232269287, 1.8946386575698853, 2.085125207901001, 1.9024978876113892, 2.8605880737304688, 0.4251677393913269, 1.232535481452942, 0.8212841749191284, 1.7352460622787476, 1.6488492488861084, 1.918835997581482, -0.029908062890172005, 1.8048712015151978, 0.4021608233451843, -0.29827722907066345, 0.4903169870376587, 1.4395898580551147, -0.27691856026649475, -1.0816011428833008, 1.1188898086547852, 1.1751198768615723, 1.0842138528823853, 1.114804744720459, 1.354832649230957, -0.03124201111495495, 1.0991301536560059, 1.063336968421936, -0.13179071247577667, 1.0225187540054321, 0.0463390126824379, -0.32412439584732056, -0.1525048166513443, 0.09484929591417313, 1.1942088603973389, 0.9197342991828918, 0.02821928635239601, 0.005864947102963924, -0.2811189293861389, 2.440190076828003, -0.7855979800224304, 0.12086456269025803, 0.13282744586467743, 0.49346262216567993, -1.1400457620620728, -0.880723774433136, -0.4784016013145447, 0.8666333556175232, -1.891428828239441, -1.1882468461990356, -0.32701680064201355, -0.2394263744354248, 2.557929277420044, 1.699292540550232, 2.016538143157959, 1.4745913743972778, 0.5076565742492676, 0.8669944405555725, 5.636932373046875, 5.054530143737793, 2.527874708175659, -0.07977724820375443, 1.3436614274978638, 1.3673244714736938, 0.2537522614002228, 1.3125509023666382, 0.6408349275588989, 1.0952733755111694, 0.06655373424291611, 0.046229083091020584, 1.980616807937622, 0.9861326813697815, 0.18340858817100525, 0.03663339093327522, 0.4393174648284912, 0.20378132164478302, 0.11638950556516647, 0.07391009479761124, 0.7904120683670044, 0.7548847198486328, 0.10546236485242844, -0.22652727365493774, -1.203131914138794, -0.2964054048061371, -0.4464738965034485, -0.09530619531869888, 1.3557573556900024, 1.6277737617492676, 1.6624302864074707, 0.44902920722961426, -1.7018150091171265, -0.35193052887916565, -5.1142120361328125, -3.9311115741729736, -1.9852997064590454, -4.830398082733154, -0.565402626991272, -5.132021903991699, -1.760054349899292, 1.3865091800689697, -3.0243148803710938, -3.162200450897217, -1.817534327507019, -2.113487720489502, -2.0752768516540527, -2.7552340030670166, -0.4173230826854706, -0.7053608298301697, -0.8918169736862183, -1.6928094625473022, -1.5515276193618774, -1.943318247795105, 0.12203282862901688, -1.7010403871536255, -0.32823503017425537, 0.4477287828922272, -0.41569429636001587, -1.487956166267395, 0.41814324259757996, 1.1215918064117432, -1.0393763780593872, -1.2042914628982544, -1.0021240711212158, -0.9621548652648926, -1.305995225906372, 0.03306679055094719, -0.13276417553424835, -0.941654622554779, 0.0567602813243866, -1.0809261798858643, 0.11984408646821976, 0.33333510160446167, 0.04753946512937546, -0.09345943480730057, -1.2096068859100342, -1.016615390777588, 0.021261446177959442, -0.08944723010063171, 0.15282049775123596, -2.4530937671661377, 0.7224584221839905, 0.09759773313999176, -0.1622200757265091, -0.4635638892650604, 1.212966799736023, 0.9171085953712463, 0.40835946798324585, -0.9684682488441467, 2.007861852645874, 1.1340219974517822, 0.2570323050022125, 0.2853410243988037, -0.5762231349945068, -1.67903470993042, -2.045976400375366, -1.4782031774520874, -0.49357855319976807, -0.84811931848526, -5.8028717041015625, -5.0524396896362305, -2.577767848968506, -1.1650478839874268, -1.3962191343307495, -1.341011643409729, -0.2615102231502533, -1.1311367750167847, -0.7195371389389038, -1.025370478630066, -0.23194703459739685, -0.003792643081396818, -2.1930365562438965, -0.9652890563011169, -0.1718796193599701, -0.31551459431648254, -0.41296103596687317, -0.3687058091163635, -0.2573288083076477, -0.10950438678264618, -0.7553176879882812, -0.5950412750244141, 0.061784058809280396, 0.38738369941711426, 1.0232112407684326, 0.2314578890800476, 0.27080437541007996, 0.12366103380918503, -1.4114328622817993, -1.5494160652160645, -1.7205865383148193, -0.3128710091114044, 1.6419261693954468, 0.4649029076099396, 4.947268486022949, 3.9843125343322754, 1.8459254503250122, 4.989476203918457, 0.538245439529419, 5.318441867828369, 1.6196821928024292, -1.613242506980896, 3.2171969413757324, 3.0326616764068604, 1.862798810005188, 2.0538835525512695, 1.9819453954696655, 2.9155337810516357, 0.49679017066955566, 0.8369187712669373, 0.7425017952919006, 1.7178410291671753, 1.5938711166381836, 1.9528785943984985, -0.001915204105898738, 1.8124868869781494, 0.2811996340751648, -0.5021361708641052, 0.3064672350883484, 1.6342695951461792, 0.9581728577613831, -1.1121954917907715, 1.072817087173462, 1.256352424621582, 0.8042021989822388, 1.0776768922805786, 1.1127344369888306, -0.05006515979766846, 0.26220694184303284, 0.9411124587059021, 0.07581096887588501, 1.0650126934051514, -0.01854572258889675, -0.2562927305698395, -0.2045576572418213, -0.015395746566355228, 1.2349133491516113, 1.0152405500411987, -0.019656650722026825, -0.16491565108299255, -0.2716693580150604, 2.5543885231018066, -0.6906757950782776, 0.07496882975101471, 0.2814233899116516, 0.6166151165962219, -1.1773701906204224, -0.8534405827522278, -0.31821948289871216, 0.8856787085533142, -1.9354966878890991, -1.0199341773986816, -0.33891865611076355, -0.3040750026702881, 0.49333348870277405, 1.7195175886154175, 1.9153486490249634, 1.5315181016921997, 0.5302369594573975, 0.8619439601898193, 5.654287815093994, 5.022297382354736, 2.558448314666748, 1.365851879119873, 1.3796416521072388, 1.41362726688385, 0.34433579444885254, 1.1483513116836548, 0.5417488813400269, 1.1383308172225952, 0.25591689348220825, -0.04382206127047539, 2.1382229328155518, 1.0295239686965942, 0.047772251069545746, 0.38837939500808716, 0.38120678067207336, 0.27101653814315796, 0.19322992861270905, -0.08113179355859756, -1.2226717472076416, -2.2615997791290283, 0.11468613892793655, -0.041502244770526886, -0.058404117822647095, -0.0006618080078624189, 0.06844418495893478, -0.04163588583469391, -2.885434865951538, -2.2815637588500977, -5.823894500732422, 6.315771102905273, 13.926741600036621, 0.3584934175014496, 7.180079936981201, 2.036898612976074, 1.0683224201202393, 1.9928253889083862, 0.4074763059616089, 2.3068251609802246, 0.008570806123316288, -3.5014407634735107, 0.1181761771440506, 0.10338350385427475, -0.08359355479478836, 0.0745428279042244, 0.07168718427419662, 0.19474110007286072, -0.18653930723667145, -0.008703239262104034, -0.16436587274074554, 0.008475163951516151, 0.05818643793463707, 0.1148080825805664, -0.0146404430270195, 0.14130903780460358, -0.07004042714834213, -0.07259126007556915, -0.07193485647439957, 0.1561882048845291, -0.1037708967924118, -0.08505424857139587, -0.11788424104452133, -0.02076549455523491, -0.05390157550573349, 0.01568114385008812, 0.007832315750420094, -0.1522279530763626, -0.03455847501754761, -0.11080139875411987, -0.049526382237672806, 0.10247504711151123, -0.1257350593805313, 0.03314872458577156, -0.17825110256671906, -0.033581092953681946, 0.051709990948438644, -0.0015021897852420807, -0.13709756731987, -0.04016176983714104, -0.1597995162010193, 0.19407711923122406, -0.29533061385154724, -0.02836567349731922, -0.09202534705400467, 0.05194428190588951, -0.17909935116767883, -0.0787263959646225, -0.08789540827274323, -0.09972371906042099, -0.3702903389930725, -0.22444038093090057, -0.393245130777359, -0.24160142242908478, 0.4288545548915863, 0.9095355868339539, -1.3994536399841309, 0.1041254997253418, -0.14515364170074463, -0.13872568309307098, 0.32822009921073914, 0.40128985047340393, 0.23110079765319824, 0.013566783629357815, 0.09797225892543793, 0.14670036733150482, -0.1992563158273697, 0.023033827543258667, -0.07138340920209885, -0.11761593073606491, -0.12291847169399261, 0.24084576964378357, 0.05392049252986908, -0.9788991212844849, -0.05892879143357277, 0.0387190505862236, -0.128006711602211, -0.13337089121341705, -0.020160453394055367, 0.17158415913581848, 0.7907049059867859, 0.6440308094024658, -0.12235572189092636, -0.144143745303154, -1.0617835521697998, -0.3811827301979065, -0.38613244891166687, -0.06276097148656845, 1.4026087522506714, 1.6855754852294922, 1.683066964149475, 0.2817555367946625, -1.695611596107483, -0.48389801383018494, -5.1422624588012695, -3.9930789470672607, -1.9463180303573608, -4.6762003898620605, -0.6216059923171997, -5.318002700805664, -1.5334546566009521, 1.5967717170715332, -3.089381694793701, -3.2239346504211426, -1.8783546686172485, -1.9791476726531982, -1.989551067352295, -2.758859634399414, -0.3009742796421051, -0.8281821608543396, -0.880773663520813, -1.8349069356918335, -1.526471734046936, -1.9013646841049194, 0.06110519543290138, -1.793364405632019, -0.3698478937149048, 0.47032514214515686, -0.4766908288002014, -1.481472134590149, 0.36378514766693115, 1.0824525356292725, -0.9414381980895996, -1.1176804304122925, -0.9144996404647827, -0.8910530209541321, -1.2857142686843872, -0.09906584769487381, -1.0923926830291748, -0.9732527136802673, -0.002614302560687065, -1.148712396621704, 0.03982345014810562, 0.46762239933013916, 0.17897582054138184, 0.023795591667294502, -1.1997110843658447, -1.058182954788208, 0.1343129724264145, 0.038008205592632294, 0.24716021120548248, -2.3277885913848877, 0.7066056132316589, -0.04173530265688896, -0.2536925673484802, -0.5391313433647156, 0.9800989031791687, 1.0427545309066772, 0.35465317964553833, -1.0036044120788574, 2.1387813091278076, 1.16023588180542, 0.44071075320243835, 0.10145777463912964, -0.48560264706611633, -1.6656851768493652, -2.005952835083008, -1.6018835306167603, -0.35362327098846436, -0.8403108716011047, -5.6993818283081055, -4.973056793212891, -2.6367321014404297, 0.19910159707069397, -1.4412904977798462, -1.5272680521011353, -0.12015276402235031, -1.165101408958435, -0.6846979856491089, -1.0296903848648071, -0.13966700434684753, 0.12266261875629425, -2.064850091934204, -0.8876504302024841, -0.18596825003623962, 0.0004316970007494092, -0.4121033251285553, -0.3569337725639343, -0.11948295682668686, 0.0958978682756424, -0.24796636402606964, 0.3102058470249176, -0.31246238946914673, 0.7109705209732056, -1.364931344985962, 0.4993029832839966, -0.27371105551719666, -0.2719373106956482, 0.9909254312515259]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (0, 20), 'etaBin': (1.54, 2.5)}}, 'et3_eta3': {'discriminator': {'threshold': 0.069999167323112482, 'nodes': [100, 10, 1], 'bias': [-0.11204543709754944, -0.0005571477231569588, -0.015970643609762192, -0.09284664690494537, -0.04320921003818512, -0.42669299244880676, 0.03731859102845192, 0.08955458551645279, 0.006626900285482407, -0.11064879596233368, -0.17044442892074585], 'weights': [-0.3349671959877014, -2.1922991275787354, 0.6381950974464417, 1.8786818981170654, -0.09619683027267456, 0.9831786155700684, -0.10270281136035919, -0.36504659056663513, -1.1769630908966064, -1.2381079196929932, -0.36275455355644226, 0.7514060735702515, 0.5506219863891602, -0.09184645116329193, 2.3116815090179443, 1.989417552947998, 1.057970643043518, 3.2463321685791016, 2.4086410999298096, 0.3519798815250397, 1.2988545894622803, 0.8126804232597351, 1.498828411102295, 2.0563762187957764, 2.1049644947052, 3.1309635639190674, 2.0919837951660156, 0.7062703371047974, 0.08555298298597336, 1.629734992980957, -0.3702670633792877, 1.9434852600097656, 0.21980874240398407, 1.7597917318344116, 1.0452804565429688, 0.9453401565551758, 1.2282007932662964, 1.4760781526565552, 0.8298380970954895, 1.5435173511505127, -0.1920449435710907, 1.6701442003250122, 1.0551064014434814, -0.09667908400297165, 0.7571905851364136, 0.8571940660476685, 0.9294390678405762, 0.03769263997673988, -0.8469163775444031, 1.508821964263916, 0.47700855135917664, -0.25957950949668884, 0.47566965222358704, 0.49819257855415344, 1.2151286602020264, 0.490138441324234, -0.12011615931987762, 1.0474594831466675, 0.09285878390073776, 0.7700443267822266, -1.4918872117996216, 0.6713210940361023, 1.1657558679580688, -0.6743438839912415, -0.0705714076757431, 0.9142141938209534, 0.26151204109191895, -0.18699178099632263, -1.1757621765136719, -1.0924283266067505, 0.1508558839559555, 1.410093069076538, -0.5074962973594666, -0.18407458066940308, 0.7891706228256226, 1.6649242639541626, 1.7187005281448364, 1.5447419881820679, 1.1684495210647583, 0.7184458374977112, 0.845126748085022, 2.77567720413208, 4.662013530731201, 1.4182112216949463, 1.439104437828064, 1.5463923215866089, 0.3641999661922455, 0.902549147605896, 0.052764780819416046, 0.8090866208076477, 0.3928539454936981, -0.27104443311691284, 2.8212780952453613, 1.0455013513565063, 0.30424994230270386, 0.5833691954612732, -0.2732866704463959, 0.09257468581199646, -0.23206567764282227, -0.18406745791435242, 0.9383934736251831, 1.5834602117538452, -0.5277302861213684, -1.879165768623352, 0.14342409372329712, -1.0293627977371216, -0.12693572044372559, 0.4241839647293091, 1.1655879020690918, 1.1686946153640747, 0.5826362371444702, -0.6428468227386475, -0.5362977385520935, 0.09630941599607468, -2.2365779876708984, -2.0999398231506348, -1.0480588674545288, -3.2166411876678467, -2.4551191329956055, -0.20400846004486084, -1.4480869770050049, -0.8371495604515076, -1.06124746799469, -2.1287355422973633, -1.9415154457092285, -3.3048739433288574, -2.0947980880737305, -0.7278380393981934, 0.06465206295251846, -1.656935453414917, 0.2720947265625, -1.935396432876587, -0.17796848714351654, -1.7872473001480103, -1.163591742515564, -1.1122797727584839, -1.0570887327194214, -1.579468846321106, -0.6930827498435974, -1.710487723350525, 0.32126957178115845, -1.7568295001983643, -1.0130951404571533, -0.12102624028921127, -0.5092678666114807, -0.75847327709198, -0.6236388087272644, 0.15296846628189087, 0.7252858877182007, -1.6209874153137207, -0.3830263018608093, 0.5887121558189392, -0.5939456224441528, -0.5343878269195557, -1.0809246301651, -0.46315184235572815, 0.15594540536403656, -1.148966670036316, -0.10574719309806824, -0.6333145499229431, 1.6077347993850708, -0.7640979290008545, -0.7465420365333557, 0.5874470472335815, 0.19488239288330078, -0.8877139687538147, -0.013103763572871685, 0.23783902823925018, 1.0805784463882446, 1.4592550992965698, -0.16654767096042633, -0.6239666938781738, 0.511305034160614, 0.1920689344406128, -0.8151097297668457, -1.4758692979812622, -1.5936031341552734, -1.6363632678985596, -0.6946160197257996, -0.7333278059959412, -1.1497833728790283, -2.795340061187744, -4.684925079345703, -1.5059123039245605, -1.4766325950622559, -1.4417542219161987, -0.1884889304637909, -0.8865324854850769, -0.3097880780696869, -0.8902643322944641, -0.21785514056682587, 0.21168121695518494, -2.6762378215789795, -1.0289398431777954, -0.2538539469242096, -0.6335757374763489, 0.5555450916290283, -0.06977073848247528, 0.21438732743263245, 0.23139555752277374, 0.9777159690856934, 1.612128496170044, -0.5588719248771667, -0.8065817952156067, 0.4220631420612335, -1.0356889963150024, -0.03361280634999275, 0.4455021023750305, 0.9932084679603577, 1.2335463762283325, 0.6208199858665466, -0.564558744430542, -0.4566357731819153, 0.058975569903850555, -2.2251389026641846, -2.0190224647521973, -1.1098880767822266, -3.184762716293335, -2.6348910331726074, -0.384797066450119, -1.3955844640731812, -0.9479634165763855, -0.9920554161071777, -1.999262809753418, -3.5285394191741943, -3.27225399017334, -2.1000726222991943, -0.6026673316955566, 0.028924034908413887, -1.5391629934310913, 0.2134353071451187, -1.943014144897461, -0.04259577393531799, -1.8658264875411987, -1.031092882156372, -1.06613290309906, -1.1307796239852905, -1.591119408607483, -0.6144086718559265, -1.7190794944763184, 0.3857021927833557, -1.6511859893798828, -1.012676477432251, -0.09098929911851883, -0.45217078924179077, -0.7354037761688232, -0.50146484375, 0.1594591736793518, 0.7690284848213196, -1.440970540046692, -0.5685290694236755, 0.6981239914894104, -0.5359545350074768, -0.5994396805763245, -1.0814701318740845, -0.5588353276252747, 0.07252316176891327, -1.1659940481185913, -0.06611713767051697, -0.7412510514259338, 1.471016526222229, -0.5456522107124329, -0.850879430770874, 0.574748158454895, 0.09730437397956848, -0.8707695603370667, 0.0315660685300827, 0.30401718616485596, 1.097086787223816, 1.3451193571090698, -0.12018384039402008, -0.7805120944976807, 0.5140247941017151, 0.25006887316703796, -0.9304066300392151, -1.5619750022888184, -1.5237483978271484, -1.6407049894332886, -0.8769919276237488, -0.8572136759757996, -0.9628891348838806, -2.9257588386535645, -4.712568759918213, -1.3472496271133423, -1.4971189498901367, -1.4587372541427612, -0.2655378580093384, -0.7529715895652771, -0.35500410199165344, -0.9140278697013855, -0.18101373314857483, 0.26722192764282227, -2.7438910007476807, -1.1075698137283325, -0.1997983455657959, -0.5613659024238586, 0.504993736743927, -0.2085171639919281, 0.11533959954977036, 0.43482542037963867, 0.9250600337982178, 1.032142996788025, -0.5811259150505066, -0.8066530227661133, 0.29665932059288025, -0.992992103099823, 0.031951356679201126, 0.38190239667892456, 1.092992901802063, 1.1638330221176147, 0.24968662858009338, -3.3411080837249756, -0.6950407028198242, -0.041062142699956894, -2.2832560539245605, -2.1367578506469727, -1.0457638502120972, -3.114353656768799, -2.548537015914917, -2.223914623260498, -1.2886624336242676, -1.0534002780914307, -1.2133017778396606, -2.229454755783081, -3.579439163208008, -3.2545042037963867, -2.124349594116211, -0.5482796430587769, -0.1045973151922226, -1.6006287336349487, 0.2554238438606262, -1.8359912633895874, -0.053628429770469666, -1.8421820402145386, -1.172943353652954, -0.986102819442749, -1.064279556274414, -1.4185982942581177, -0.7591738700866699, -1.8016924858093262, 0.24099306762218475, -1.6632071733474731, -1.1342915296554565, -0.07686378061771393, -0.3154155910015106, -0.914932131767273, -0.6840060949325562, 0.11218519508838654, -0.23195785284042358, -1.4576090574264526, -0.6024360060691833, 1.6593729257583618, -0.4088800549507141, -0.44224175810813904, -3.02765154838562, -0.48232632875442505, 0.24770323932170868, -1.1361078023910522, -0.1834220141172409, -0.655113160610199, 1.4393014907836914, -0.6208243370056152, -0.9065263867378235, 0.7809772491455078, 0.045653194189071655, -0.8194165229797363, 0.1566622406244278, 0.31902164220809937, 1.0721532106399536, 1.3253062963485718, 0.09547056257724762, -0.8403527736663818, 0.3677157163619995, 0.5547420978546143, -0.8370879292488098, -1.5485479831695557, -1.643640160560608, -1.4016422033309937, -0.81944340467453, -0.821969211101532, -0.9941686391830444, -2.9019815921783447, -4.655714511871338, -1.2466386556625366, -1.5649137496948242, -1.5965360403060913, -0.33771687746047974, -0.8944688439369202, -0.21392667293548584, -0.8546475768089294, -0.2764699459075928, 0.12774713337421417, -2.7598276138305664, -0.9695761203765869, -0.13289405405521393, -0.6288184523582458, 0.445507675409317, -0.016699491068720818, 0.06278710812330246, 0.3505435585975647, -0.9003103971481323, -1.2974884510040283, 0.5560373663902283, 1.8097264766693115, -0.009194432757794857, 0.9247484803199768, 0.12704825401306152, -0.3870401680469513, -1.0359165668487549, -1.261805772781372, -0.597606360912323, 0.6559993028640747, 0.7225520610809326, -0.1047891154885292, 2.137369394302368, 1.961359977722168, 1.060703158378601, 3.1251256465911865, 2.420262336730957, 0.39078840613365173, 1.2243841886520386, 0.8601310849189758, 1.0000430345535278, 2.211505651473999, 3.562204122543335, 3.207707405090332, 2.0939199924468994, 0.7570949792861938, 0.2105238288640976, 1.7228022813796997, -0.4355507791042328, 1.7233307361602783, 0.18976189196109772, 1.8840469121932983, 1.1140397787094116, 1.0263358354568481, 1.0435765981674194, 1.5243266820907593, 0.6385778784751892, 1.8323403596878052, -0.47576141357421875, 1.6927173137664795, 0.9161306023597717, 0.11301440745592117, 0.44237184524536133, 0.7942527532577515, 0.47103163599967957, 0.024731812998652458, -0.7808135747909546, 1.4392311573028564, 0.5155419111251831, -0.6379481554031372, 0.4408721923828125, 0.611409604549408, 1.110713243484497, 0.4919058382511139, -0.18207226693630219, 1.1835707426071167, 0.15805809199810028, 0.5833492875099182, -1.512954592704773, 0.6586411595344543, 0.7164667844772339, -0.7128362655639648, -0.20924866199493408, 0.8137912750244141, 0.033716365694999695, -0.26000142097473145, -1.2153412103652954, -1.4988399744033813, 0.03428491950035095, 0.5666656494140625, -0.374586284160614, -0.18932901322841644, 0.9817655086517334, 1.5315333604812622, 1.637812852859497, 1.4184434413909912, 0.6960226893424988, 0.7163098454475403, 0.9820674061775208, 2.9349727630615234, 4.626328945159912, 1.4170825481414795, 1.4613254070281982, 1.6449171304702759, 0.3603718876838684, 0.8508049249649048, 0.3156041204929352, 0.8826151490211487, 0.36411744356155396, -0.3430602252483368, 2.794981002807617, 1.1508969068527222, 0.2290416955947876, 0.5060122609138489, -0.5132824182510376, 0.05987079069018364, -0.13215909898281097, -0.31820088624954224, 608.93505859375, 267.85546875, -6.378628730773926, 0.33263882994651794, -125.64762115478516, -39.93284606933594, -0.04853648319840431, 59.696353912353516, -0.2918473184108734, -0.33305034041404724, 0.3500538766384125, -19.91232681274414, 0.2854350209236145, -13.71103286743164, 1.9322808980941772, 1.3798667192459106, 1.3910174369812012, -23.507102966308594, -21.908449172973633, 0.10858732461929321, -137.61627197265625, -15.962505340576172, -206.61102294921875, -92.18582916259766, 1.5461252927780151, 0.4754636287689209, 0.37441882491111755, -0.005579917225986719, -67.76272583007812, 0.1548139601945877, -7.715848922729492, 0.3745519518852234, -0.018931357190012932, 0.3777935802936554, 0.25089144706726074, -138.63917541503906, -3.0718772411346436, 0.22783444821834564, 31.658987045288086, 0.37444379925727844, -0.26991599798202515, 0.26833248138427734, 0.01229032315313816, 44.543663024902344, -132.90029907226562, 90.19137573242188, -0.06142802536487579, -0.06738584488630295, -0.0855005756020546, 0.29129257798194885, -183.17877197265625, 84.56061553955078, -0.044022656977176666, 0.1171611100435257, 0.2519994080066681, -0.0471591092646122, -0.1458677351474762, 0.17735454440116882, -0.047444503754377365, 30.804187774658203, -0.3544883131980896, -36.42132568359375, -0.11568495631217957, -0.2802271842956543, 0.008129852823913097, -0.036577217280864716, 0.07157901674509048, -0.21903002262115479, -0.3106585443019867, -0.46044740080833435, 0.04806327819824219, 0.09376034140586853, -0.07303282618522644, -0.897283136844635, 0.5713763236999512, 0.1456032544374466, 0.3136045038700104, 0.3043023347854614, -0.013695154339075089, -0.03506314009428024, -64.56201171875, 16.288570404052734, -7.777749061584473, -20.72641372680664, 0.24397990107536316, 0.299025297164917, -22.395353317260742, 69.9798355102539, 145.16908264160156, 14.923798561096191, 1.1042617559432983, 0.030481893569231033, 0.5635495781898499, 0.09019069373607635, -0.13287849724292755, 691.88671875, -0.20705914497375488, -0.05275285243988037, -0.45272040367126465, 14709.2373046875, -0.8642759323120117, -1.5680649280548096, 0.4369680881500244, 0.8344177007675171, -0.22995835542678833, 0.9861013889312744, -0.08804081380367279, -0.363717257976532, -0.9978976845741272, -1.3513156175613403, -0.5989676713943481, 3.4440152645111084, 0.5986332893371582, 0.10821884870529175, 2.1151418685913086, 2.0682451725006104, 1.205670952796936, 3.087080955505371, 2.612340211868286, 2.0782809257507324, 1.281671404838562, 0.9900065660476685, 1.2912274599075317, 2.1591336727142334, 5.9241461753845215, 3.1011483669281006, 2.2857420444488525, 0.5820815563201904, -0.09678821265697479, 1.7206323146820068, -0.22484436631202698, 1.740064263343811, 0.019562192261219025, 1.7318657636642456, 1.1044847965240479, 0.9318149089813232, 1.195791244506836, 1.5427871942520142, 0.8101403117179871, 1.7795466184616089, -0.3044998347759247, 1.5635349750518799, 0.6233676075935364, 0.056803666055202484, 0.5316118001937866, 0.7678189277648926, 0.5163013339042664, 0.015180910006165504, -0.8095941543579102, 1.4333232641220093, 0.5839280486106873, -5.210971355438232, 0.5699249505996704, 0.49862805008888245, 3.078136682510376, 0.5322481393814087, -0.09594621509313583, 1.0992584228515625, 0.2679940462112427, 0.6500742435455322, -1.6026256084442139, 0.7362425923347473, 0.8052639961242676, -0.7317297458648682, -0.2984599769115448, 0.8984277844429016, -0.07464109361171722, -0.4400843381881714, -1.1176667213439941, -1.441033959388733, -0.22985532879829407, 0.5925242900848389, -0.43359464406967163, -0.11433926969766617, 0.9569036364555359, 1.457709550857544, 1.7515873908996582, 1.433363914489746, 0.6989014744758606, 0.8003503680229187, 1.001442790031433, 2.7631659507751465, 4.498702049255371, 1.1662336587905884, 1.482236385345459, 1.496585488319397, 0.3069888949394226, 0.7148589491844177, 0.32581207156181335, 0.5760663151741028, 0.32331857085227966, -0.18148556351661682, 2.3094043731689453, 1.1810826063156128, 0.3771262466907501, 0.22924940288066864, -0.4037111699581146, 0.09422307461500168, -0.24897414445877075, -0.35402294993400574, 0.8310986757278442, 1.1903191804885864, -0.5627408623695374, -1.6879571676254272, 0.01551483292132616, -0.9278779029846191, 0.09774628281593323, 0.42447859048843384, 1.156247854232788, 1.2236217260360718, 0.6438049674034119, -0.6681567430496216, -0.6663642525672913, 0.07469262927770615, -2.231431245803833, -1.9983638525009155, -1.122272253036499, -3.1514785289764404, -2.5910122394561768, -0.4037865102291107, -1.4306867122650146, -0.839373767375946, -1.0860460996627808, -2.2160749435424805, -1.8749535083770752, -3.1245431900024414, -2.0521647930145264, -0.6706720590591431, 0.22595834732055664, -1.6893175840377808, 0.24633535742759705, -1.890685796737671, -0.022140325978398323, -1.8386683464050293, -1.1632786989212036, -1.0937086343765259, -1.2426129579544067, -1.5900801420211792, -0.6648640036582947, -1.5876110792160034, 0.3754720389842987, -1.676450490951538, -1.0069875717163086, 0.08419283479452133, -0.4598500728607178, -0.7378610372543335, -0.5521301627159119, 0.1375296711921692, 0.8072067499160767, -1.4497714042663574, -0.6075873374938965, 0.6973845362663269, -0.43430352210998535, -0.5481491088867188, -1.0502358675003052, -0.47255739569664, 0.08718898892402649, -1.0849957466125488, -0.2935899794101715, -0.7763735055923462, 1.4037054777145386, -0.7420870065689087, -0.8355369567871094, 0.7748615741729736, 0.174818754196167, -0.7407917976379395, -0.04272041469812393, 0.26785755157470703, 1.2262333631515503, 1.467199683189392, -0.10513440519571304, -0.659709095954895, 0.3640255331993103, 0.023974575102329254, -0.8812496066093445, -1.5644217729568481, -1.7504239082336426, -1.640337586402893, -0.8079192042350769, -0.7988794445991516, -0.9731906056404114, -2.8976058959960938, -4.65114688873291, -1.4053499698638916, -1.3570537567138672, -1.6129049062728882, -0.332871675491333, -0.8450609445571899, -0.4263191819190979, -0.9869986772537231, -0.31008872389793396, 0.12673716247081757, -2.741502285003662, -0.9746290445327759, -0.142032653093338, -0.4832998812198639, 0.5212404727935791, -0.223173588514328, 0.15907761454582214, 0.33340707421302795, -0.9724976420402527, -1.2781873941421509, 0.37440311908721924, 0.7573132514953613, -0.32833990454673767, 0.971528172492981, -0.08501695096492767, -0.3965226113796234, -0.9734662175178528, -1.2060142755508423, -0.5361012816429138, 3.395104169845581, 0.5373645424842834, 0.1377948373556137, 2.158454656600952, 1.9997434616088867, 1.0596023797988892, 3.205472230911255, 2.4920666217803955, 2.141176223754883, 1.4665292501449585, 0.9304757714271545, 1.32386314868927, 2.2253828048706055, 5.831193447113037, 3.267540216445923, 2.1621320247650146, 0.6199184656143188, -0.17313796281814575, 1.5323913097381592, -0.39907726645469666, 1.804374098777771, 0.024435047060251236, 1.7440522909164429, 1.0922458171844482, 1.0869505405426025, 1.1939269304275513, 1.534067988395691, 0.683820903301239, 1.8016107082366943, -0.416195809841156, 1.7490507364273071, 0.9389775395393372, -0.0066984849981963634, 0.4977242052555084, 0.7842644453048706, 0.633277416229248, -0.1646454632282257, -0.9088186621665955, 1.4295293092727661, 0.46750128269195557, -5.374321460723877, 0.5071008801460266, 0.4143255054950714, 3.2297451496124268, 0.6261566877365112, -0.013353029265999794, 1.126759648323059, 0.15075580775737762, 0.6558187007904053, -1.5166150331497192, 0.6937483549118042, 0.8758693337440491, -0.6381175518035889, -0.07058162242174149, 0.7078053951263428, -0.07453806698322296, -0.21457242965698242, -1.0680290460586548, -1.3182734251022339, -0.2403300255537033, 0.7794545888900757, -0.2753189206123352, -0.15181441605091095, 0.8313480019569397, 1.574169635772705, 1.7310713529586792, 1.424288272857666, 0.7929701805114746, 0.9295756220817566, 0.9890704154968262, 2.989780902862549, 4.713570594787598, 1.3400217294692993, 1.3755748271942139, 1.6142131090164185, 0.3256987929344177, 0.6902822852134705, 0.22198761999607086, 0.47703543305397034, 0.3049871623516083, -0.19674327969551086, 2.4170212745666504, 0.9843716025352478, 0.2065003216266632, 0.6318442225456238, -0.5420563220977783, 0.17267575860023499, -0.2044893205165863, -0.19374431669712067, 0.8663700819015503, 1.299919843673706, -0.5593047142028809, -0.7321540117263794, 0.2824028432369232, -0.8836308717727661, 0.0855402797460556, 0.3843826651573181, 1.0332286357879639, 1.3348251581192017, 0.34375205636024475, -3.4945168495178223, -0.5923031568527222, -0.051170870661735535, -2.2332658767700195, -2.0607597827911377, -1.237189531326294, -3.1831607818603516, -2.5058953762054443, -2.218125343322754, -1.2196165323257446, -1.02603018283844, -1.3601137399673462, -2.230297565460205, -3.645559787750244, -3.1362709999084473, -2.1793227195739746, -0.7006319761276245, -0.027840934693813324, -1.6596485376358032, 0.4331428110599518, -1.8314865827560425, -0.14340093731880188, -1.9081026315689087, -1.1075129508972168, -1.0763660669326782, -1.0072771310806274, -1.5621119737625122, -0.5846183896064758, -1.817975640296936, 0.1856682002544403, -1.6571216583251953, -1.04145348072052, 0.0024020662531256676, -0.30587002635002136, -0.7585331201553345, -0.7410571575164795, -0.08389157056808472, -0.15793202817440033, -1.4584550857543945, -0.5301848649978638, 1.5399112701416016, -0.3687847852706909, -0.4999660551548004, -3.134387731552124, -0.5219212174415588, 0.04568237438797951, -1.0352834463119507, -0.1128348708152771, -0.7939441204071045, 1.4675416946411133, -0.6350466012954712, -0.7783241868019104, 0.7330111265182495, 0.22803419828414917, -0.8883169293403625, 0.004662253428250551, 0.2958712577819824, 1.12227201461792, 1.3343003988265991, 0.3185693621635437, -0.763487696647644, 0.3963637948036194, 0.6081469058990479, -0.8932719230651855, -1.5239202976226807, -1.6963834762573242, -1.501311182975769, -0.7283564209938049, -0.7871091961860657, -1.1082472801208496, -3.001173734664917, -4.753879070281982, -1.334190011024475, -1.459304690361023, -1.5389031171798706, -0.20233076810836792, -0.7283373475074768, -0.3180025517940521, -0.9112094044685364, -0.21841645240783691, 0.31444185972213745, -2.8441812992095947, -1.063040852546692, -0.25670257210731506, -0.5172252058982849, 0.5456728935241699, -0.029964270070195198, 0.1376665085554123, 0.23829707503318787, -0.5014091730117798, 2.2362592220306396, 1.3533912897109985, 1.1992579698562622, -0.824650764465332, -0.4929713010787964, -1.4007679224014282, 0.8023108243942261, -1.609825611114502, 1.901110053062439]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (40, 50), 'etaBin': (1.54, 2.5)}}, 'et0_eta2': {'discriminator': {'threshold': 0.1299991101026535, 'nodes': [100, 7, 1], 'bias': [-0.06348874419927597, 0.03623969852924347, -0.1288398653268814, -0.12441787868738174, 0.1003570482134819, -0.005418633110821247, 0.029942257329821587, -0.20454871654510498], 'weights': [-0.6994321942329407, 0.10208365321159363, 1.681780219078064, 0.8598272204399109, -0.3105170428752899, -0.8199452757835388, -0.24872657656669617, 0.24371692538261414, 1.2890616655349731, -3.030609607696533, -3.005108118057251, -2.7385737895965576, -0.9483087658882141, -0.10872109979391098, -1.2035022974014282, -1.1545008420944214, 5.109705924987793, -0.9131451845169067, -1.0364693403244019, 0.05470660328865051, 2.2213242053985596, 0.0609315000474453, -0.06487470865249634, 0.5144542455673218, 3.66133189201355, 0.13849909603595734, -2.2307546138763428, 1.0401767492294312, 1.1351555585861206, 1.4495421648025513, 1.2791365385055542, 0.6287277340888977, -0.733975350856781, 2.002916097640991, 1.6680200099945068, 0.002605465240776539, 2.368330240249634, 0.5400947332382202, 0.9055526256561279, -0.3188956081867218, -3.7293615341186523, 1.982121467590332, -0.7138312458992004, 1.2670035362243652, 1.3463627099990845, 1.3707585334777832, 0.4937777519226074, 0.9307859539985657, 1.6330000162124634, 0.42295849323272705, 1.4393194913864136, -3.489879608154297, -21.689550399780273, 0.7888513207435608, 0.6065999865531921, 1.1640162467956543, 1.1659111976623535, 1.1224546432495117, 0.8181604743003845, 0.34476009011268616, 0.7292398810386658, 0.307730108499527, 0.5083118081092834, -0.1468956023454666, 0.49803051352500916, 1.027100682258606, -0.023049376904964447, 0.3076647222042084, 0.44340968132019043, 0.46747466921806335, 1.4015519618988037, 1.0442742109298706, 0.017169183120131493, -0.5910464525222778, 1.9767276048660278, 0.9590660333633423, 1.0071029663085938, 0.6182443499565125, 0.6004731059074402, 0.40733572840690613, -4.144710540771484, -0.07095064222812653, -0.13940078020095825, 0.3004467487335205, 0.7743308544158936, -4.6586480140686035, 0.9079718589782715, 0.9051303267478943, -0.9884213209152222, 0.25647568702697754, 0.001450522686354816, -0.15312232077121735, 1.7478258609771729, -0.8393897414207458, 0.7932825088500977, -0.06429167836904526, -0.04977763071656227, -0.06843768805265427, 0.1047542616724968, -0.8194230198860168, -0.6115278601646423, 0.09765119850635529, 1.3214211463928223, 0.866887092590332, -0.4110688269138336, -0.8353613018989563, -0.3266078233718872, 0.15197445452213287, 1.2481001615524292, -3.0475668907165527, -2.9632232189178467, -2.6965742111206055, -0.8962796330451965, -0.10409792512655258, -1.1161562204360962, -1.1503418684005737, 5.042563438415527, -0.8737424612045288, -1.0692106485366821, 0.029309913516044617, 2.6510682106018066, -0.08167729526758194, -0.027943413704633713, 0.5984232425689697, 3.4828624725341797, 0.08236321806907654, -2.2207534313201904, 0.9744399189949036, 1.238242268562317, 1.58805251121521, 1.4116514921188354, 0.4440762400627136, -0.5017024278640747, 2.1402831077575684, 1.7400015592575073, 0.01887228712439537, 2.24285888671875, 0.5093076229095459, 0.841781497001648, -0.4968641400337219, 0.28141161799430847, 1.957116723060608, 0.6013190746307373, 1.2706714868545532, 1.385116457939148, 1.5819119215011597, 0.6709210872650146, 0.8653045296669006, 3.265524387359619, 0.363518089056015, 1.365139126777649, -0.7787774801254272, -2.7768466472625732, 0.743328869342804, 0.6601492762565613, 1.366594910621643, 1.0569247007369995, 1.1993486881256104, 0.8746750354766846, 0.35751205682754517, 0.6915795803070068, 0.1977250874042511, 0.43816831707954407, -0.3167257308959961, 0.5370357632637024, 0.9942529797554016, 0.13064152002334595, 0.16605283319950104, 0.3902914822101593, 0.5092731714248657, 1.3726606369018555, 0.9422245621681213, -0.13885952532291412, -0.49613067507743835, 2.1251988410949707, 0.9648995995521545, 1.0657436847686768, 0.8174012303352356, 0.7892894148826599, 0.5329540371894836, -1.6574095487594604, 0.06622839719057083, 0.3421139717102051, 0.42999839782714844, 0.843985378742218, -0.9439149498939514, 0.9481310844421387, 0.840822160243988, -0.9870644211769104, 0.2610977292060852, 0.1828286200761795, 0.0447382889688015, 1.8897302150726318, -0.7401317954063416, 0.8096083402633667, -0.13080072402954102, 0.028338264673948288, 0.053457845002412796, 0.25215551257133484, -0.7827207446098328, 0.2212507575750351, -0.14484000205993652, -0.384246289730072, -0.25710728764533997, 0.46749913692474365, 0.5572332143783569, 0.45652493834495544, 0.6051268577575684, -1.6051222085952759, 1.128701090812683, 2.6701321601867676, 1.1636186838150024, 0.2001228779554367, 0.22440995275974274, 0.2826562225818634, 0.27844810485839844, -1.3489367961883545, 0.5463594794273376, 0.33576756715774536, -0.0998910591006279, -0.5289080739021301, -0.19072000682353973, -0.2870570719242096, -1.556277871131897, -1.54615318775177, -0.8130171298980713, 4.524102687835693, -0.1396736055612564, -0.49219879508018494, -0.5249353647232056, -0.37386825680732727, 0.035871148109436035, 1.4547717571258545, -0.6416154503822327, -0.6378124356269836, -0.15821164846420288, -0.657520592212677, -0.14465390145778656, -0.14651301503181458, 0.3411875367164612, 1.6198832988739014, -0.657878577709198, -0.15671813488006592, -0.43762272596359253, -0.48266008496284485, -0.5495358109474182, -0.11727019399404526, -0.20478028059005737, -1.4401438236236572, -0.09428220242261887, -0.5240834355354309, 1.7509093284606934, 1.4686453342437744, -0.26726600527763367, -0.22691361606121063, -0.36868810653686523, -0.24493809044361115, -0.36019057035446167, -0.171264186501503, 0.18464073538780212, -0.18023346364498138, 0.07953140139579773, -0.10153011977672577, 0.15828613936901093, -0.03566069155931473, -0.09460435062646866, 0.11431301385164261, 0.05293290689587593, 0.07226324826478958, -0.12114517390727997, -0.3714432120323181, -0.30009016394615173, -0.1217225044965744, -0.0045923818834125996, -3.457169532775879, -0.24030056595802307, -0.11426949501037598, -0.2163078337907791, -0.21587233245372772, -0.16124066710472107, 0.5443711280822754, -0.14228269457817078, 0.12431485950946808, 0.06580327451229095, -0.3655425012111664, 2.051795482635498, -0.3123963475227356, -0.11518420279026031, 0.437244713306427, -1.0017818212509155, 0.012854296714067459, 1.1998306512832642, -0.388393372297287, 0.5600149631500244, -0.20035132765769958, -0.13071319460868835, -0.0399421788752079, -0.12273726612329483, -0.16315199434757233, 0.22284507751464844, -0.6074252724647522, -0.033254474401474, 1.7734354734420776, 0.9066227674484253, -0.43184366822242737, -0.7900717854499817, -0.1781877875328064, 0.11263395845890045, 1.331699013710022, -2.854299306869507, -2.904628038406372, -2.784907341003418, -0.8464739918708801, -0.19670042395591736, -1.2164088487625122, -1.1727181673049927, 5.151409149169922, -0.842821478843689, -1.0274747610092163, -0.1730169951915741, 2.069715738296509, 0.043851688504219055, 0.070670947432518, 0.6500223875045776, 3.5279433727264404, 0.307046115398407, -2.330390214920044, 0.9481484293937683, 1.2282432317733765, 1.4820579290390015, 1.4465502500534058, 0.8016788363456726, -0.5898081660270691, 2.0149948596954346, 1.6407771110534668, 0.013302115723490715, 2.398138999938965, 0.3364012539386749, 0.7973099946975708, -0.4934387803077698, -3.5097553730010986, 1.9622154235839844, -0.6902076601982117, 1.3413820266723633, 1.250186800956726, 1.396918535232544, 0.5621547698974609, 0.8888913989067078, 1.4824937582015991, 0.48818662762641907, 1.4166909456253052, -3.536811351776123, -24.92084503173828, 0.654778778553009, 0.44824737310409546, 1.33790922164917, 0.9533734321594238, 1.1114494800567627, 0.6530362963676453, 0.47235310077667236, 0.7386127710342407, 0.29787588119506836, 0.547225296497345, -0.24037419259548187, 0.512398898601532, 1.0412685871124268, -0.09365858882665634, 0.10470365732908249, 0.26602765917778015, 0.5356124639511108, 1.271186351776123, 0.8395084738731384, 0.07754461467266083, -0.4474998116493225, 2.0934016704559326, 0.91155606508255, 0.4728260040283203, 0.5563065409660339, 0.7580582499504089, 0.42653581500053406, -4.153563976287842, -0.18298356235027313, -0.17927567660808563, 0.3640288710594177, 0.7750224471092224, -4.609886169433594, 0.8984575271606445, 0.6813861727714539, -0.9628022909164429, 0.32882440090179443, 0.15228895843029022, -0.10598684102296829, 1.8224663734436035, -0.8819865584373474, 0.7348246574401855, -0.2222723513841629, -0.06606271862983704, 0.04948493093252182, -0.00904881302267313, -0.7661005854606628, 0.5607529282569885, -0.05159216746687889, -1.792655110359192, -0.9723911285400391, 0.2107294648885727, 0.8136662840843201, 0.16430503129959106, -0.2579205632209778, -1.2882338762283325, 2.911761999130249, 2.8237626552581787, 2.8000264167785645, 0.9412887096405029, 0.22695930302143097, 1.2663750648498535, 1.353284239768982, -5.121635913848877, 1.0401403903961182, 1.0674011707305908, 0.18953466415405273, -2.149789810180664, 0.10647141188383102, 0.03580387309193611, -0.5147081017494202, -3.628361701965332, -0.12231002002954483, 2.3675930500030518, -1.1145216226577759, -1.1123000383377075, -1.5907338857650757, -1.481510043144226, -0.7424841523170471, 0.6412054896354675, -2.0590980052948, -1.6372747421264648, 0.0619027242064476, -2.4287240505218506, -0.3367054760456085, -0.8573153018951416, 0.5163951516151428, 3.556837797164917, -1.858163833618164, 0.7149078249931335, -1.1894092559814453, -1.3607982397079468, -1.5640636682510376, -0.49976587295532227, -0.9596536755561829, -1.6972423791885376, -0.39594757556915283, -1.4810117483139038, 3.486910820007324, 2.8940298557281494, -0.857546865940094, -0.6077556014060974, -1.1933507919311523, -0.9613820910453796, -1.2438371181488037, -0.6647740006446838, -0.3744419515132904, -0.7347481846809387, -0.09965112060308456, -0.6350415945053101, 0.3057122528553009, -0.6031996607780457, -0.8806594610214233, -0.01072041504085064, -0.21616210043430328, -0.35064586997032166, -0.45507487654685974, -1.3696155548095703, -0.8669682145118713, -0.13787759840488434, 0.6219918727874756, -1.978965163230896, -0.8375784754753113, -0.4755556583404541, -0.6244028210639954, -0.7649192214012146, -0.6339374780654907, 4.167630672454834, 0.12187815457582474, 0.1668955683708191, -0.34224599599838257, -0.7939738631248474, 4.682919979095459, -0.9770385026931763, -0.7183697819709778, 0.8933781385421753, -0.1742231696844101, -0.10143762826919556, 0.05050342157483101, -1.7145602703094482, 0.8550977110862732, -0.73504638671875, -0.0055467355996370316, -0.04514014720916748, 0.09083645790815353, -0.08515525609254837, 1.0986518859863281, -0.5119187235832214, 0.05760094150900841, 1.3171058893203735, 0.8399652242660522, -0.33957669138908386, -0.8359718918800354, -0.18823641538619995, 0.05371649190783501, 1.2638932466506958, -2.888981580734253, -3.0126914978027344, -2.6422805786132812, -0.9336118102073669, -0.1310640275478363, -1.1350458860397339, -1.2499178647994995, 5.139877796173096, -0.9532581567764282, -1.0571777820587158, -0.015751279890537262, 2.4440970420837402, 0.09489630907773972, 0.0012970769312232733, 0.687771201133728, 3.577953338623047, 0.1779686063528061, -2.3735105991363525, 0.9543430209159851, 1.3185936212539673, 1.6423382759094238, 1.2892314195632935, 0.3614344298839569, -0.4948037266731262, 2.021239995956421, 1.642642617225647, -0.1457976996898651, 2.3662660121917725, 0.55765700340271, 0.821914553642273, -0.35032719373703003, 0.18251673877239227, 1.893751621246338, 0.559088945388794, 1.1893036365509033, 1.2400177717208862, 1.5134555101394653, 0.5754262208938599, 0.8589807152748108, 3.110215663909912, 0.47953107953071594, 1.5568150281906128, -0.8979969024658203, -2.721264362335205, 0.7211843132972717, 0.6376146674156189, 1.2742069959640503, 1.129908561706543, 1.2671172618865967, 0.741439163684845, 0.4965633749961853, 0.8062971830368042, 0.23679718375205994, 0.5215432643890381, -0.20244623720645905, 0.44972795248031616, 0.98760586977005, 0.08758813142776489, 0.20948883891105652, 0.42465686798095703, 0.6894136667251587, 1.3195726871490479, 0.9331247210502625, -0.02805432118475437, -0.598785400390625, 2.0426430702209473, 0.9867404103279114, 1.137693166732788, 0.8048722147941589, 0.8114951252937317, 0.664736270904541, -1.5552059412002563, 0.02622155286371708, 0.13953495025634766, 0.344723641872406, 0.7831734418869019, -0.9259676337242126, 1.013528823852539, 0.8709443211555481, -0.9086853265762329, 0.23759059607982635, 0.12343567609786987, -0.005225889850407839, 1.6622343063354492, -0.7085463404655457, 0.6308629512786865, -0.2025437355041504, 0.04593987762928009, 0.07471984624862671, 0.2311854511499405, -1.021540641784668, 0.007167748175561428, 0.25892382860183716, -0.06918046623468399, -0.00621141167357564, -0.22361071407794952, -0.26106134057044983, -0.5436748266220093, -0.8577413558959961, 1.4302963018417358, -0.19007162749767303, -0.05895201861858368, -0.041624072939157486, 0.019658850505948067, 0.05061909556388855, -0.10030277073383331, -0.02440410479903221, 0.15019437670707703, 0.08859577029943466, -0.0507817417383194, 0.18049032986164093, 0.03021840751171112, 0.1474703848361969, 0.2350054830312729, 0.37257248163223267, 0.28667935729026794, 0.3376149535179138, -0.9727715253829956, 0.04192372411489487, 0.0713353231549263, 0.015926873311400414, 0.03416824713349342, -0.15991435945034027, -0.33007901906967163, 0.16517677903175354, 0.08699169754981995, -0.02082204446196556, -0.041814230382442474, -0.13877896964550018, 0.05543418228626251, -0.6091954708099365, -0.4247947931289673, 0.14133520424365997, -0.1552610695362091, -0.08489401638507843, -0.02667396143078804, -0.05163195729255676, -0.051392100751399994, 0.016054268926382065, -0.06420417129993439, -0.029363417997956276, 0.004692618735134602, -1.9968196153640747, -1.6428422927856445, -0.11348580569028854, -0.16131089627742767, 0.02872431091964245, -0.11745506525039673, -0.07678171247243881, -0.06865803897380829, -0.2331675887107849, -0.019946591928601265, -0.1373768299818039, -0.1981438249349594, -0.3051968812942505, 0.08097540587186813, 0.01644028164446354, -0.08025483042001724, -0.15796218812465668, 0.036216042935848236, -0.058446139097213745, 0.1305682212114334, -0.014940540306270123, 0.2333737164735794, -0.03680476173758507, 1.1119219064712524, 0.009979184716939926, -0.12234748899936676, -0.12312275916337967, -0.08529893308877945, -0.06911766529083252, 0.057953253388404846, -0.13154922425746918, -0.21691179275512695, -0.07254161685705185, 0.06872223317623138, -1.9916510581970215, -0.11578366160392761, -0.14464883506298065, -0.02283313311636448, 0.2677203416824341, 0.009310171008110046, -0.45566526055336, 0.0005858965450897813, -0.005648707039654255, -0.15681412816047668, -0.11898121982812881, 0.06339046359062195, 0.03415011987090111, 0.7315319776535034, 0.07375860959291458, -0.6383800506591797, -0.8773346543312073, 0.5294492244720459, -0.5438499450683594, 0.7297844290733337, -0.8299105763435364, -0.022825097665190697]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (0, 20), 'etaBin': (1.37, 1.54)}}, 'et4_eta1': {'discriminator': {'threshold': -0.025000816583633428, 'nodes': [100, 5, 1], 'bias': [0.1368117481470108, -0.20471306145191193, 0.25162437558174133, 0.037453796714544296, -0.14133796095848083, 0.38234931230545044], 'weights': [-2.130035638809204, -0.5393927693367004, -0.9759161472320557, 0.027014100924134254, 0.8318871855735779, 1.0238282680511475, 1.141689658164978, -1.869693398475647, -3.665236711502075, -4.683228492736816, 4.261914253234863, 3.514181137084961, 0.20307433605194092, 6.266193389892578, 5.99254846572876, 3.932964324951172, 17.59791374206543, 8.373623847961426, 7.607294082641602, 7.776383399963379, 8.354427337646484, 8.5038423538208, 13.071599960327148, 4.98869514465332, 4.986407279968262, 5.2472004890441895, 5.8095245361328125, 6.400001525878906, 6.61406946182251, 5.610245704650879, 4.371086597442627, -4.412916660308838, 4.295096397399902, 4.34031867980957, 4.5890350341796875, 0.7572334408760071, -2.9243900775909424, 3.5074942111968994, 4.746408462524414, 3.6123123168945312, -0.29847827553749084, 2.4830968379974365, 12.243091583251953, -2.671121835708618, -0.42474305629730225, 5.3024067878723145, 0.47904419898986816, -4.686585426330566, 1.057651162147522, 0.5037263631820679, -0.6339253187179565, -11.455190658569336, 2.888310194015503, 1.111154556274414, -2.011073350906372, 1.065307378768921, 8.978684425354004, 0.9059798121452332, 1.3704766035079956, 1.4005928039550781, 1.3405280113220215, 0.7859353423118591, 1.1938691139221191, 1.7589560747146606, 1.3541094064712524, 1.1626307964324951, 1.4609614610671997, 1.5543619394302368, -0.5058679580688477, 2.250509023666382, 1.5658988952636719, 11.599382400512695, -0.7680370211601257, -0.3099972605705261, 0.9102615118026733, 3.842761754989624, 3.410079002380371, 2.9276795387268066, 1.877437949180603, 0.7450165152549744, 1.20259428024292, 6.227108478546143, 9.775453567504883, 5.654054164886475, 4.373102188110352, 0.5716181993484497, 4.210047245025635, 3.1950364112854004, 2.887277841567993, 2.189822196960449, 0.08076183497905731, -0.47561392188072205, 12.133353233337402, 5.22784948348999, 2.3519136905670166, 1.3858380317687988, 3.441948413848877, 4.795068264007568, 0.26946109533309937, -0.3931163251399994, 2.0531983375549316, 3.5182902812957764, 0.36154523491859436, -0.08953151106834412, -1.5676263570785522, -1.1089410781860352, 2.055800676345825, 2.016171455383301, 4.887370586395264, 3.535243272781372, -4.930495738983154, -3.289088249206543, -0.2499181628227234, -6.260674476623535, -5.867226600646973, -3.8889119625091553, -17.596994400024414, -8.426430702209473, -7.641038417816162, -7.651299953460693, -8.437056541442871, -8.409344673156738, -13.048593521118164, -5.03273868560791, -5.010976791381836, -5.2970733642578125, -5.759562969207764, -6.3693695068359375, -6.5537238121032715, -5.702812194824219, -4.265665531158447, 4.3925065994262695, -4.482141494750977, -4.437830924987793, -4.678004741668701, -0.8397036194801331, -0.15652664005756378, -2.7364277839660645, -4.686943531036377, -3.6105051040649414, -1.52102530002594, -2.3185880184173584, -4.614280700683594, 2.9151771068573, 0.3193269968032837, -10.638097763061523, -0.4483521282672882, 4.5968098640441895, -1.1343300342559814, -0.4985029101371765, 0.6699225902557373, 1.0003150701522827, -3.6652991771698, -1.0335488319396973, 2.113910675048828, -1.4512553215026855, -11.102887153625488, -1.3996875286102295, -1.2658365964889526, -1.3318449258804321, -1.3592191934585571, -0.8332695364952087, -1.141115665435791, -1.80889093875885, -1.494734287261963, -1.1840511560440063, -1.5774871110916138, -1.6156516075134277, 0.5827875137329102, -2.3029839992523193, -1.3679801225662231, -3.759927749633789, 0.623717725276947, 0.4817883372306824, -1.0705909729003906, -3.8159971237182617, -3.559784173965454, -2.800854206085205, -0.25998586416244507, -0.7139890193939209, -1.323843002319336, -6.250438690185547, -9.895606994628906, -5.672438621520996, -4.342494964599609, -0.6370532512664795, -4.407532691955566, -4.767236709594727, -2.9602842330932617, -2.278280735015869, -0.22159385681152344, 0.8717446327209473, -12.011740684509277, -4.494610786437988, -1.9178028106689453, -1.4090640544891357, -3.5514323711395264, -4.603492736816406, 0.15254566073417664, 0.3649347722530365, -1.9347444772720337, -3.4411838054656982, 0.2424999475479126, 0.07644066214561462, 1.4897571802139282, 1.12418794631958, -1.9590630531311035, -1.9693427085876465, -4.938224792480469, -3.6590375900268555, 5.115259647369385, 3.2115535736083984, 0.262077271938324, 6.171327590942383, 5.821171760559082, 3.8345682621002197, 17.569730758666992, 8.430460929870605, 7.773387432098389, 7.7894606590271, 8.560273170471191, 8.36445140838623, 13.05023193359375, 5.072444438934326, 5.021036148071289, 5.2770256996154785, 5.686396598815918, 6.312747478485107, 6.452341556549072, 5.600564002990723, 4.344597339630127, -4.380504131317139, 4.462042808532715, 4.510515213012695, 4.68198299407959, 0.7366636991500854, -0.013637147843837738, 2.842212438583374, 4.888831615447998, 3.647587537765503, 1.5496257543563843, 2.4471447467803955, 4.578889846801758, -2.6680076122283936, -0.2750495672225952, 10.561718940734863, 0.38308224081993103, -4.58486270904541, 1.0569143295288086, 0.5706480145454407, -0.7779104113578796, -0.9494509696960449, 3.697617530822754, 1.2045910358428955, -2.0284082889556885, 1.4885661602020264, 11.23969841003418, 1.4069561958312988, 1.2414549589157104, 1.3621617555618286, 1.269284963607788, 0.8928844332695007, 1.1885015964508057, 1.6937881708145142, 1.369047999382019, 1.2404853105545044, 1.617439866065979, 1.5777935981750488, -0.4256432056427002, 2.2867300510406494, 1.3621190786361694, 3.635892152786255, -0.7695103287696838, -0.5179620385169983, 0.9356290102005005, 3.7094156742095947, 3.4421634674072266, 2.8587162494659424, 0.4235161542892456, 0.7770473957061768, 1.1957545280456543, 6.047815799713135, 9.751434326171875, 5.571600914001465, 4.5497145652771, 0.5733157396316528, 4.3490729331970215, 4.852941513061523, 2.9088807106018066, 2.2005069255828857, 0.07970323413610458, -0.7549872398376465, 11.988516807556152, 5.222102642059326, 2.2982215881347656, 1.518141508102417, 3.5133588314056396, 4.635383605957031, -0.3394232392311096, -0.5039586424827576, -2.1126832962036133, -3.126528263092041, -0.8905130624771118, 0.2526894509792328, 0.9697019457817078, 1.1697176694869995, 0.9658239483833313, -1.6358197927474976, -3.542360544204712, -3.643115758895874, 5.021982669830322, 0.8475335240364075, 0.6862958073616028, 6.191305637359619, 5.982331275939941, 3.841648578643799, 17.666725158691406, 8.448466300964355, 7.690269470214844, 7.750001430511475, 8.512673377990723, 8.32656192779541, 13.097729682922363, 4.891061305999756, 5.028873920440674, 5.315243244171143, 5.779512882232666, 6.42729377746582, 6.548605442047119, 5.492628574371338, 4.432719707489014, -3.757545232772827, 4.407778739929199, 4.376555919647217, 4.776916027069092, 0.7515699863433838, 0.15473267436027527, 3.503401041030884, 4.851888656616211, 3.6555261611938477, -0.3399224877357483, 3.285504102706909, 12.171703338623047, -2.310349464416504, -0.3852766156196594, 5.297940731048584, 0.398785799741745, -4.591699600219727, 1.1337236166000366, 0.49689191579818726, -0.8178296089172363, -6.896082878112793, 3.6698272228240967, 1.2443881034851074, -2.1804614067077637, 1.0107548236846924, 11.061007499694824, 1.122423529624939, 1.3488410711288452, 1.536514401435852, 1.3528521060943604, 0.8315747380256653, 1.281538486480713, 2.088397264480591, 1.4307785034179688, 1.1716574430465698, 1.4112392663955688, 1.5508853197097778, -0.4952566623687744, 1.877034306526184, 1.5999292135238647, 11.57441234588623, -0.6229255199432373, -0.3313760757446289, 0.9546158313751221, 3.752150297164917, 3.630032777786255, 3.185051679611206, 1.8875349760055542, 0.784959614276886, 1.4096580743789673, 6.043801307678223, 9.78857421875, 5.76153564453125, 4.328771591186523, 0.7151880264282227, 4.269259452819824, 3.0902724266052246, 2.9918134212493896, 2.436870574951172, 0.11758103966712952, -0.5334725975990295, 11.954203605651855, 5.096224784851074, 2.249992847442627, 1.5389662981033325, 3.575451374053955, 4.6377434730529785, 0.1630374938249588, -0.5051027536392212, 1.984914779663086, 0.5627711415290833, 1.0732998847961426, -0.19242368638515472, -0.8294803500175476, -1.1556565761566162, -1.1030082702636719, 1.8765265941619873, 3.5459787845611572, 4.77174711227417, -4.350045680999756, -3.55570650100708, -0.3403075635433197, -6.087789535522461, -5.966447353363037, -3.835606098175049, -17.626285552978516, -8.548233985900879, -7.739028453826904, -7.64619779586792, -8.525344848632812, -8.562987327575684, -12.968362808227539, -4.999866485595703, -5.012319087982178, -5.32070255279541, -5.9654669761657715, -6.27116584777832, -6.429178714752197, -5.6488447189331055, -4.270801067352295, 4.193481922149658, -4.312960624694824, -4.401850700378418, -4.714672565460205, -0.770115315914154, 2.73360276222229, -3.3352391719818115, -4.755034923553467, -3.6631531715393066, 0.30004802346229553, -3.2827205657958984, -12.332881927490234, 2.7946627140045166, 0.49721306562423706, -5.106895923614502, -0.5173488259315491, 4.480642318725586, -1.0393213033676147, -0.40753108263015747, 0.8173714876174927, 6.724306106567383, -2.8538410663604736, -1.0836765766143799, 2.1090803146362305, -1.0541775226593018, -9.022180557250977, -0.9658997654914856, -1.4897149801254272, -1.518357753753662, -1.437066912651062, -0.807464063167572, -1.2718617916107178, -1.614151120185852, -1.4347045421600342, -1.1070570945739746, -1.5882421731948853, -1.5664325952529907, 0.47449272871017456, -1.813798189163208, -1.3695961236953735, -11.625906944274902, 0.7945756316184998, 0.44462013244628906, -1.0783065557479858, -3.732006311416626, -3.626474380493164, -3.1738016605377197, -1.9752010107040405, -0.9405118823051453, -1.3127484321594238, -6.13884973526001, -9.861763000488281, -5.727163314819336, -4.516567230224609, -0.5624948740005493, -4.275181293487549, -3.1227517127990723, -2.936113119125366, -2.114412546157837, -0.1288205236196518, 0.5894713401794434, -12.076895713806152, -5.096946716308594, -2.3524556159973145, -1.4124445915222168, -3.512423038482666, -4.665160179138184, -0.30556291341781616, 0.5504725575447083, -0.835625946521759, 1.624426245689392, -1.4829803705215454, -0.9288313388824463, 1.4517772197723389]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (50, 500000), 'etaBin': (0.8, 1.37)}}, 'et4_eta3': {'discriminator': {'threshold': -0.055000817775726324, 'nodes': [100, 5, 1], 'bias': [0.10169322043657303, 0.11152373254299164, -0.10183665156364441, 0.14507950842380524, -0.012784632854163647, 0.3051639199256897], 'weights': [-1.0979061126708984, -0.08282068371772766, 0.34341326355934143, 0.19185738265514374, 0.1345616728067398, 0.27040520310401917, -0.24012655019760132, 0.30704063177108765, -1.3665729761123657, -1.2696759700775146, -0.18033018708229065, 0.8451737761497498, 0.3972945213317871, -0.0687713772058487, 0.5313021540641785, 2.0114214420318604, 0.44385334849357605, 1.6325621604919434, 1.1157288551330566, -2.3137314319610596, 0.7903743982315063, -0.2982981503009796, 0.5546078085899353, 1.270151972770691, 0.4905008375644684, 0.8352788686752319, -1.3395742177963257, 1.2522163391113281, 0.9795517921447754, -0.6428253650665283, -2.8577184677124023, 0.9079991579055786, 0.3171425461769104, 0.9993422031402588, 0.29240882396698, 0.8716768026351929, 0.12775194644927979, -0.3423280119895935, 0.1825614720582962, 0.8119484186172485, 0.0912979245185852, 0.28227120637893677, -1.8392573595046997, 0.40407654643058777, -0.04376028850674629, 2.1911468505859375, 0.20093314349651337, 0.33370083570480347, -0.8898378610610962, 0.19318871200084686, 0.26690852642059326, -0.17185620963573456, 0.040499769151210785, -5.500153064727783, -0.2076902836561203, -1.6063992977142334, -0.3194468915462494, -0.2711489796638489, -0.07819535583257675, 3.113276720046997, -0.04002723842859268, 0.17636047303676605, -0.5736351609230042, 0.27420365810394287, -0.22301238775253296, 0.1618892252445221, -0.1577230542898178, 1.013501763343811, 0.24833723902702332, 5.052083969116211, 0.060960665345191956, 1.642093300819397, -0.037449825555086136, -0.09065145999193192, 0.6004922986030579, 0.43923068046569824, 0.4695076048374176, 0.2831805944442749, -0.014764359220862389, -0.0768909826874733, 0.011413696222007275, 0.7759168744087219, 1.434158444404602, 0.8301385641098022, 0.7751454710960388, 0.2719067633152008, 2.961560010910034, 0.14687494933605194, -0.30398914217948914, -0.004368031397461891, -0.09897327423095703, -0.25245094299316406, 0.5440033078193665, 0.23826628923416138, -0.08488204330205917, 0.14345282316207886, -0.6308616995811462, 0.03856739029288292, -0.03184456750750542, 1.070357322692871, -2.617691993713379, -6.656711578369141, 2.4757888317108154, 3.5707614421844482, 2.057889223098755, 2.052273750305176, -2.0231831073760986, 1.939840316772461, -2.6131949424743652, -2.5421559810638428, -1.763682246208191, 3.3119683265686035, 0.7178563475608826, -0.39789652824401855, 6.116654872894287, 7.613209247589111, 3.4975619316101074, 6.759545803070068, 5.012187957763672, 15.513250350952148, 7.251643180847168, 4.53508996963501, 4.012040138244629, 6.30180549621582, 5.689427375793457, 5.829439163208008, 4.7401862144470215, 15.034461975097656, 5.4140238761901855, 2.107877016067505, 3.0105841159820557, 11.514065742492676, 3.2595458030700684, 11.68129825592041, 4.664960861206055, 5.22706413269043, 2.9597506523132324, -2.5245423316955566, 2.2901451587677, 9.183551788330078, -0.1297299861907959, 4.82317590713501, -1.211287498474121, 4.24929141998291, 0.6421849131584167, 8.138345718383789, 2.7121224403381348, 3.538393497467041, 0.5898178815841675, 3.014824867248535, 1.588001012802124, -2.2866568565368652, 0.019272340461611748, -9.419038772583008, -2.5010175704956055, -0.9488634467124939, -3.4928126335144043, 1.7943700551986694, -0.7283805012702942, 9.655435562133789, -0.7184367775917053, 3.136930227279663, -4.745823860168457, 3.207775354385376, -2.136139154434204, 3.2504653930664062, 0.6701611876487732, 15.872361183166504, 3.3193769454956055, 14.49349594116211, 2.468200206756592, 6.438237190246582, -1.4938722848892212, -0.639966607093811, 3.4333484172821045, 3.911973237991333, 3.677407741546631, 4.427213668823242, 2.643077850341797, 2.7849297523498535, -0.29479601979255676, 5.059480667114258, 17.023698806762695, 8.839578628540039, 4.89912748336792, 2.5039241313934326, 5.475114822387695, 3.013314723968506, 1.07643723487854, 3.775461196899414, 0.908786952495575, 1.0980957746505737, 11.619643211364746, 5.260384559631348, 0.5877745151519775, 2.6299173831939697, 1.4273529052734375, -0.4948287308216095, -2.033464193344116, 4.372760772705078, 2.500901460647583, 2.579420566558838, -2.5093531608581543, -4.606098651885986, -1.9711756706237793, -2.100320816040039, 1.8749351501464844, -2.1329658031463623, 2.437307596206665, 3.864166736602783, 1.5940780639648438, -3.1355409622192383, -0.5700050592422485, 1.048753023147583, -6.067641258239746, -7.68746280670166, -3.407564163208008, -6.8469038009643555, -5.190151691436768, -17.401081085205078, -7.434668064117432, -1.2659673690795898, -3.8133394718170166, -6.165755271911621, -5.254295349121094, -5.790334224700928, -4.496147632598877, -14.951017379760742, -5.329471111297607, 8.61903190612793, -0.5275079011917114, -5.586751461029053, -3.1718804836273193, -11.697233200073242, -4.556994915008545, -5.189043045043945, -2.7670092582702637, 2.689246654510498, -2.2010533809661865, -9.412078857421875, 0.24068301916122437, -4.658514022827148, 1.2108837366104126, -4.396398544311523, -0.5231589674949646, -5.344787120819092, -2.737154483795166, -3.3716776371002197, -0.6236485242843628, -2.9491689205169678, -1.3587371110916138, 2.3853695392608643, -0.003714960068464279, 9.313597679138184, 2.7558295726776123, 0.8726276159286499, 3.4560890197753906, -1.8512276411056519, 0.7082236409187317, -9.644646644592285, 0.864723265171051, -3.151304006576538, 6.809230327606201, -3.2238106727600098, 2.1201791763305664, -2.0560364723205566, -0.6338484287261963, -15.681925773620605, -3.4844303131103516, -14.612195014953613, -2.2891721725463867, -5.3732709884643555, 0.9272360801696777, 1.181979775428772, -3.3734681606292725, -3.72320556640625, -5.280770301818848, -4.350282192230225, -2.5575671195983887, -2.6050665378570557, -3.3768303394317627, -5.016435146331787, -16.990394592285156, -8.685245513916016, -4.9775824546813965, -2.4999797344207764, -5.642441749572754, -3.161771535873413, -1.024899959564209, -3.884551763534546, -1.6399691104888916, -0.9303645491600037, -11.548840522766113, -5.411692142486572, -0.4956657588481903, -2.5952160358428955, -1.4735021591186523, 0.3778286278247833, -0.7521504759788513, -4.337569236755371, 53.01465606689453, -1.298416256904602, 2.617765426635742, -13.046305656433105, 2.234074354171753, 2.1408660411834717, -9.46604061126709, 4.151231288909912, -2.499563217163086, -1.7210322618484497, -1.5978878736495972, 16.444271087646484, 1.0147067308425903, -2.8413987159729004, 6.655270099639893, 7.840666770935059, 3.780627489089966, -3.729732036590576, 12.36520767211914, -13.033893585205078, 7.415826320648193, 4.445235252380371, 3.8943684101104736, 6.3190836906433105, 22.114755630493164, 5.633950710296631, 3.6316051483154297, 14.974407196044922, 5.369043827056885, -8.791732788085938, -3.454469680786133, 11.705693244934082, 3.1771106719970703, 11.775496482849121, 4.508627414703369, -3.727743148803711, 2.8148369789123535, -4.559893608093262, 2.143740653991699, 9.26596736907959, -0.28415486216545105, 4.849753379821777, -1.292141318321228, 4.342484951019287, 0.6156432628631592, 5.531485557556152, 6.774319648742676, 3.4155354499816895, 0.7188467383384705, 2.8427388668060303, 17.954885482788086, -2.2932324409484863, -0.043466221541166306, -9.422235488891602, -2.822448492050171, -1.0253350734710693, -2.4667675495147705, 1.881261944770813, -0.8402062058448792, 9.672449111938477, -0.7901399731636047, 3.0479142665863037, -6.738386631011963, 3.107330322265625, -2.1448211669921875, 3.0629026889801025, 4.503348350524902, 15.817924499511719, 3.3827271461486816, 14.545833587646484, 2.492377996444702, 6.333768844604492, -1.4178109169006348, -1.0377272367477417, 3.3737051486968994, 3.614872932434082, 5.2997331619262695, 4.440213680267334, 2.5455493927001953, 2.761075973510742, -18.800033569335938, 5.065690040588379, 16.898515701293945, 8.77258586883545, 4.92848539352417, 2.418088436126709, 4.820222854614258, 3.1034581661224365, 51.12868118286133, 12.34978199005127, 2.116889476776123, 1.4288195371627808, 0.5983867049217224, 2.7856030464172363, 0.6184176206588745, 2.569619655609131, 9.459463119506836, -0.26877838373184204, 0.7392995953559875, -0.38821324706077576, 0.8399670124053955, 0.2777262330055237, -0.1357821673154831, -0.5220499634742737, -0.2703060209751129, -0.055373821407556534, 0.09603899717330933, -0.3123301565647125, 1.2544300556182861, 1.8659120798110962, 0.2846262454986572, -3.422534942626953, -3.0241026878356934, 1.2115352153778076, -1.6675751209259033, -1.9614168405532837, -0.36647292971611023, -1.3794169425964355, -1.116569995880127, 2.3009607791900635, -1.512026309967041, 0.3406734764575958, -0.5428059697151184, -1.2391767501831055, -0.3969387412071228, -0.9235440492630005, -0.05546741932630539, -1.3031277656555176, -0.7303032279014587, 0.6844742298126221, -0.16292323172092438, -1.0784679651260376, -0.3151314854621887, -0.9295787215232849, -0.393349826335907, -0.750480055809021, -0.13518023490905762, 2.5464935302734375, -0.07153121381998062, -0.6512382626533508, 0.04086637124419212, -0.3879895806312561, 1.8481264114379883, -0.09230849891901016, -0.07517105340957642, -0.6584089994430542, -0.17452041804790497, -0.2032109647989273, 1.032909631729126, -0.19110313057899475, -0.16645808517932892, 2.239582061767578, 0.21135148406028748, 5.550180912017822, 0.26484423875808716, 1.6695494651794434, 0.25145551562309265, 0.425235390663147, 0.29761841893196106, -3.217189073562622, 0.1453329175710678, -0.09675054252147675, 0.5040395259857178, -0.05637646093964577, 0.3299723267555237, -0.10154800862073898, 0.2093258947134018, -0.9515230059623718, -0.2501482665538788, -4.930473804473877, 0.03070908412337303, -1.5502731800079346, 0.466640442609787, 0.2452339231967926, -0.5247545838356018, -0.6222149133682251, -0.44065651297569275, -0.4496033191680908, 0.1696391999721527, -0.026013880968093872, 0.03566448763012886, -0.8327396512031555, -1.4984370470046997, -1.096489429473877, -0.5744541883468628, -0.08651740849018097, -2.928529739379883, -0.3007300794124603, 0.2601717412471771, 0.3471606373786926, -0.08165929466485977, -0.22601909935474396, -0.5088711977005005, 0.0077554043382406235, 0.9099997282028198, -0.3312782347202301, 0.4978024661540985, 0.08636274933815002, 0.024140648543834686, -1.0005066394805908, -3.6228630542755127, -1.2034006118774414, 1.6776691675186157, -1.1059746742248535, 1.0401599407196045]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (50, 500000), 'etaBin': (1.54, 2.5)}}, 'et3_eta0': {'discriminator': {'threshold': -0.10000081211328507, 'nodes': [100, 5, 1], 'bias': [0.08717413246631622, 0.07987606525421143, -0.0891275629401207, -0.023250024765729904, -0.026635879650712013, -0.4253220856189728], 'weights': [2.2681500911712646, 2.079900026321411, -0.33947908878326416, -0.026545777916908264, 0.7609163522720337, 1.0033166408538818, 0.2756510376930237, 1.0896888971328735, 2.5666394233703613, 2.388798475265503, -6.693527698516846, -2.7544918060302734, -6.087902545928955, -2.6686267852783203, -2.6295480728149414, -5.184552192687988, -3.6752121448516846, -3.4875972270965576, -3.3280348777770996, -3.430103302001953, -4.832165718078613, -3.773735523223877, -3.5406227111816406, -3.4261839389801025, -3.5784945487976074, -2.9147233963012695, -1.4379254579544067, -3.1726906299591064, -3.258202314376831, -2.6153550148010254, 0.2055467963218689, -1.7876670360565186, -2.224311113357544, -4.015501976013184, -3.022507667541504, -1.730854868888855, -1.6220908164978027, -1.8350517749786377, -1.3011441230773926, -2.2793126106262207, -4.432361125946045, -4.25582218170166, 1.2008366584777832, 0.4277830421924591, -0.5211353302001953, -2.3532819747924805, -2.2193915843963623, -3.309920072555542, -1.2911876440048218, -1.1818913221359253, -1.9365110397338867, 2.0710086822509766, -0.007945757359266281, 3.1537222862243652, -1.3415555953979492, -2.087634325027466, -0.07220783829689026, 1.7260982990264893, -1.6626362800598145, -3.8554580211639404, 0.21316450834274292, 1.3741559982299805, 0.9717640280723572, -0.46294111013412476, -0.34346452355384827, 1.3640385866165161, -0.5500186085700989, 1.6180779933929443, -0.47913509607315063, -1.358103632926941, -0.520005464553833, 0.561260461807251, 0.7398634552955627, 0.05589801073074341, -0.7283907532691956, -1.7042986154556274, -2.5798048973083496, -1.7380833625793457, -1.6584665775299072, -1.357088565826416, -1.6095407009124756, -4.945938587188721, -3.900132894515991, -3.4401230812072754, -1.5807958841323853, -2.535367012023926, -1.7578206062316895, -3.638277530670166, -4.470762729644775, -3.697664499282837, -0.9952393770217896, -0.2312505543231964, -3.7200167179107666, -3.252729654312134, -1.4943480491638184, -0.27065297961235046, -8.132335662841797, -2.3080925941467285, 0.5592635273933411, -0.3546481430530548, 2.4463951587677, 1.9880770444869995, -0.48482123017311096, -0.005826584994792938, 0.5851339101791382, 1.062596082687378, 0.1375136524438858, 1.1505777835845947, 2.5349080562591553, 2.236337423324585, -6.843856334686279, -2.6496658325195312, -6.799166679382324, -3.206312894821167, -2.804013967514038, -5.225292682647705, -3.5711240768432617, -3.3738090991973877, -3.3550992012023926, -3.5153350830078125, -4.706862449645996, -3.9292984008789062, -3.583012580871582, -3.522552251815796, -3.7470498085021973, -3.0970559120178223, -1.4312368631362915, -3.015939712524414, -3.3172662258148193, -2.583068609237671, 0.06776868551969528, -1.666075587272644, -2.015195608139038, -4.0161895751953125, -2.882598638534546, -1.9164810180664062, -1.7996349334716797, -1.8370146751403809, -1.355314016342163, -2.253908634185791, -4.5830512046813965, -4.456624507904053, 1.3362325429916382, 0.3204353153705597, -0.6760029196739197, -2.395637035369873, -2.1313436031341553, -3.119370222091675, -1.2161948680877686, -1.1246105432510376, -2.097766876220703, 2.0353033542633057, -0.10252197831869125, 3.2166507244110107, -1.2374905347824097, -2.114626884460449, -0.18791182339191437, 1.8331598043441772, -1.7690062522888184, -3.794090747833252, 0.11636921018362045, 1.3661470413208008, 0.9198753237724304, -0.5876086354255676, -0.3558407127857208, 1.2159229516983032, -0.6241759061813354, 1.6643364429473877, -0.6137420535087585, -4.0116753578186035, -0.5777978897094727, 0.500361979007721, 0.6505674719810486, 0.25670525431632996, -0.6605172157287598, -1.7072674036026, -2.649838924407959, -1.8182814121246338, -1.706974983215332, -1.356821060180664, -1.396317720413208, -4.8891377449035645, -3.930746555328369, -3.557610034942627, -1.697187066078186, -2.4656057357788086, -1.905996561050415, -3.634237289428711, -4.530080795288086, -3.7160747051239014, -1.1659671068191528, -0.15122747421264648, -3.7501344680786133, -3.239210844039917, -1.5352976322174072, -0.3094708025455475, -19.72968864440918, -2.426893711090088, 0.5629449486732483, -0.4031555652618408, -0.7764798998832703, -2.101797103881836, 0.41359439492225647, -0.012198015116155148, -0.5716569423675537, -1.024855375289917, -0.28448039293289185, -1.0423412322998047, -2.6221699714660645, -2.3653488159179688, 6.712673664093018, 2.6106224060058594, 6.476511001586914, 3.1795055866241455, 2.703843593597412, 5.151386260986328, 3.7313404083251953, 3.53232741355896, 3.490340232849121, 3.4104089736938477, 4.636786460876465, 3.784532070159912, 3.5146002769470215, 3.519984483718872, 3.5550174713134766, 3.0672061443328857, 1.5808106660842896, 3.0069823265075684, 3.1332614421844482, 2.4964497089385986, -0.04416756331920624, 1.7103191614151, 2.053579807281494, 4.203500270843506, 2.8984155654907227, 1.729622721672058, 1.7907354831695557, 1.7044827938079834, 1.2708089351654053, 2.1621689796447754, 4.555490970611572, 4.474891662597656, -1.2315996885299683, -0.3709278404712677, 0.6682347655296326, 2.3946242332458496, 2.2408931255340576, 3.2824597358703613, 1.379584789276123, 1.1354440450668335, 1.8918840885162354, -1.9478740692138672, 0.20254938304424286, -3.226553440093994, 1.3282544612884521, 2.028494119644165, 0.15404437482357025, -1.826766014099121, 1.6681016683578491, 3.810171604156494, -0.20248286426067352, -1.4376040697097778, -0.8654280304908752, 0.5292313098907471, 0.4658297002315521, -1.1470085382461548, 0.6128965616226196, -1.5579992532730103, -1.6742795705795288, 1.3928155899047852, 0.600355863571167, -0.6056905388832092, -0.7163179516792297, -0.1430409550666809, 0.7646363973617554, 1.8728001117706299, 2.5364155769348145, 1.7979557514190674, 1.8019986152648926, 1.1714766025543213, 1.392497181892395, 5.0426530838012695, 4.067913055419922, 3.6481518745422363, 1.6065806150436401, 2.4595863819122314, 1.9045389890670776, 3.7440080642700195, 4.524541854858398, 3.6195452213287354, 1.0578652620315552, -0.7546117901802063, 3.5762698650360107, 3.1909730434417725, 1.625138521194458, 0.25145629048347473, 8.057820320129395, 2.2714688777923584, -0.7487093210220337, 0.36658287048339844, 10.601336479187012, 2.3486015796661377, -0.48883068561553955, -0.030921315774321556, -0.6588714718818665, 1.1090047359466553, 0.12095142155885696, 1.0767301321029663, 2.5803449153900146, 2.845432758331299, -3.005988359451294, -2.6966347694396973, 8.092320442199707, -3.0568323135375977, -2.6848690509796143, -5.100444793701172, -3.687608480453491, -3.4052910804748535, -3.475186347961426, -3.4591307640075684, -4.923104286193848, -3.85518479347229, -3.4973647594451904, -3.557156562805176, -3.527707815170288, -2.663508653640747, -2.3545241355895996, -3.1414101123809814, -3.122628688812256, -2.5375185012817383, 0.12827737629413605, -1.88190495967865, -2.216580390930176, -1.7920469045639038, -2.823535203933716, -1.9149564504623413, -1.7011759281158447, -1.141815423965454, -1.257978081703186, -2.1186866760253906, -4.578508377075195, -4.2725701332092285, 1.0573289394378662, 0.38121190667152405, -0.510231614112854, -2.2349376678466797, -2.2155354022979736, -3.224957227706909, -1.3313136100769043, -1.0849641561508179, -2.966862916946411, 2.060497760772705, -0.23289397358894348, 3.251350164413452, -1.285964012145996, -2.021150827407837, -0.9624714851379395, 1.8656820058822632, -1.8160383701324463, -3.713286876678467, 0.18810054659843445, 1.388276219367981, 0.9094597101211548, -0.4733060896396637, -0.2816438674926758, 1.2042436599731445, -0.5040654540061951, 1.5934778451919556, -0.6388738751411438, -1.2615058422088623, 2.413672924041748, 0.48390454053878784, 0.24212536215782166, 0.3519132733345032, -0.8600905537605286, -1.3416095972061157, -2.6193883419036865, -1.8580267429351807, -1.6438733339309692, -1.2080692052841187, -0.6655287146568298, -4.8726887702941895, -4.046780586242676, -3.433450698852539, -1.4894355535507202, -2.386496067047119, -1.6990876197814941, -3.575183868408203, -4.424587726593018, -3.795478343963623, -1.1499186754226685, -0.21804332733154297, -2.526177406311035, -3.213907241821289, -1.7318994998931885, -0.2925381064414978, -8.27686595916748, -2.2592711448669434, 0.7715545892715454, -0.43027418851852417, -2.4589970111846924, -1.8989923000335693, 0.4602471888065338, 0.09353755414485931, 0.9011911749839783, -1.030157446861267, -0.15154880285263062, -1.1605008840560913, -2.576120615005493, -2.337810516357422, 6.66701078414917, 2.656461238861084, 6.698328018188477, 3.012401580810547, 2.807321310043335, 5.149005889892578, 3.5259971618652344, 3.4519119262695312, 3.3437204360961914, 3.3645424842834473, 4.880809783935547, 3.817607879638672, 3.406575918197632, 3.4616856575012207, 3.633307456970215, 3.0002620220184326, 2.2805230617523193, 3.0060055255889893, 3.2404773235321045, 2.653902292251587, -0.1338905543088913, 1.8328795433044434, 2.160149574279785, 4.426030158996582, 2.8809216022491455, 1.8393868207931519, 1.7423720359802246, 1.3731577396392822, 1.3589370250701904, 2.1390697956085205, 4.465871334075928, 4.267027378082275, -1.1880772113800049, -0.28225114941596985, 0.5433818697929382, 2.29086971282959, 2.073479652404785, 3.2025809288024902, 1.4455918073654175, 1.071745753288269, 2.0469069480895996, -1.9572094678878784, 0.19417183101177216, -3.1877684593200684, 1.2383781671524048, 2.0761518478393555, 0.1013798788189888, -1.725682020187378, 1.737042784690857, 3.889230728149414, -0.19426727294921875, -1.20805823802948, -0.9141234755516052, 0.39761027693748474, 0.42420968413352966, -1.1954774856567383, 0.6132887601852417, -1.6696009635925293, 0.6184801459312439, 1.217643141746521, -2.457885265350342, -0.3829217851161957, -0.6075864434242249, -0.23630546033382416, 0.8261470198631287, 1.8789469003677368, 2.5897252559661865, 1.9423701763153076, 1.70601224899292, 1.2675572633743286, 0.7246795296669006, 4.820921421051025, 3.9054529666900635, 3.4479055404663086, 1.5085712671279907, 2.4575765132904053, 1.7742023468017578, 3.7832281589508057, 4.373318195343018, 3.8084664344787598, 1.153889536857605, 0.17277860641479492, 3.7421257495880127, 3.216512441635132, 1.6230533123016357, 0.3557702898979187, 8.284748077392578, 2.247519016265869, -0.5243308544158936, 0.4056456685066223, 0.8545168042182922, 1.120518445968628, -1.1356474161148071, 1.794189214706421, -1.4717013835906982]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (40, 50), 'etaBin': (0, 0.8)}}, 'et4_eta0': {'discriminator': {'threshold': -0.06000081673264504, 'nodes': [100, 5, 1], 'bias': [-0.45464807748794556, 0.20552325248718262, 0.10041922330856323, -0.05248928815126419, -0.22410131990909576, -0.0736473947763443], 'weights': [0.8654434084892273, 0.7238449454307556, -0.016100937500596046, -0.25440120697021484, 0.07482898235321045, -0.030807798728346825, 0.11228960007429123, -0.009093526750802994, 0.4012471139431, 0.37599948048591614, -2.7480766773223877, -1.003393530845642, -0.663458526134491, -0.5567011833190918, -0.5626842975616455, -0.4391510784626007, -0.5311102271080017, -0.5860939025878906, -0.5039300322532654, -0.6715015769004822, -0.5225920081138611, -0.5690078735351562, -0.3136046826839447, -0.7533348202705383, -0.6315939426422119, -0.5109248161315918, -0.5853291153907776, -0.43357110023498535, -0.5417161583900452, -0.4573008716106415, -0.18659482896327972, -0.2626052498817444, -0.6091729998588562, -0.6240653395652771, -0.2358284741640091, 0.5703610777854919, -0.16411447525024414, -0.42654454708099365, -0.33193549513816833, -0.29979634284973145, -0.17617523670196533, -0.6149170398712158, -0.3203448951244354, -0.09810018539428711, -0.05930136516690254, -0.2373141646385193, -0.2271171659231186, -0.23208528757095337, 0.27704036235809326, 0.09344451129436493, 0.3813376724720001, -0.41856837272644043, -0.040545638650655746, -0.0506567507982254, 0.026553193107247353, -0.1488424390554428, -0.04041403904557228, 0.008025726303458214, 0.1478395164012909, 0.03709493204951286, 0.04564598575234413, 0.058449145406484604, 1.0249732732772827, -0.8301489353179932, 0.49061694741249084, 0.20719993114471436, 0.0224740169942379, -0.19264444708824158, 0.2008010745048523, 0.11050363630056381, -0.06956909596920013, 0.4201537072658539, 0.10056952387094498, 0.11979181319475174, -0.2621730864048004, -0.3530222773551941, -0.23982149362564087, -0.17515558004379272, -0.09984767436981201, 0.15087352693080902, -0.2621642053127289, -0.2963142693042755, -0.7800387740135193, -0.7981981039047241, -0.38331881165504456, -0.3252427577972412, -0.18831244111061096, -0.3211379647254944, -0.5502303838729858, -0.600724458694458, 0.08456476032733917, -0.029803911224007607, -0.6279226541519165, -0.4302491247653961, -0.1905108094215393, -0.16664323210716248, -1.4184746742248535, -1.0339531898498535, -0.05212470889091492, -0.02694692090153694, -2.89664626121521, -1.522126317024231, 0.4018760025501251, 0.6632153987884521, -0.7798606753349304, 0.6821388602256775, -0.2742626667022705, -0.05876707285642624, -1.9260213375091553, -1.6399043798446655, 2.5064587593078613, 0.1500595360994339, 2.973342180252075, 2.5104820728302, 2.231959581375122, 2.0803494453430176, 3.0945847034454346, 2.4651262760162354, 2.807868003845215, 2.7549498081207275, 2.822803020477295, 2.881761074066162, 1.6963393688201904, 4.415185928344727, 3.204582452774048, 2.9989960193634033, 2.9865028858184814, 1.8464858531951904, 4.592492580413818, 1.6828067302703857, 1.4450982809066772, 1.4380775690078735, 3.6352689266204834, 3.0613625049591064, 1.4443411827087402, -2.1787731647491455, 1.3897387981414795, 2.3056859970092773, 1.5532810688018799, 1.1870392560958862, 1.2428401708602905, 3.1866557598114014, 1.4062598943710327, 0.13774792850017548, 0.8020579814910889, 0.9122603535652161, 1.2649930715560913, 1.3068610429763794, -1.2336946725845337, -0.6574968695640564, -1.6042311191558838, 1.7356789112091064, 0.6620549559593201, 0.17718784511089325, 0.18065781891345978, 0.8247844576835632, -0.08921278268098831, -0.31668365001678467, -0.3119603395462036, -0.2912907898426056, -0.18129703402519226, -0.07816110551357269, -4.42380952835083, 3.818580389022827, -1.9053175449371338, -0.6864086985588074, -0.26168131828308105, 2.5147035121917725, -1.56748628616333, -0.19003517925739288, -0.12223684787750244, -2.712665319442749, -0.6076650023460388, -0.3756449818611145, 0.7902325987815857, 1.3035956621170044, 1.6836720705032349, 1.3523029088974, 1.0712761878967285, -0.7981645464897156, 0.8433824181556702, 1.766300916671753, 3.968885660171509, 3.0044257640838623, 1.3793870210647583, 1.3354099988937378, 1.0920867919921875, 1.3455820083618164, 3.0423827171325684, 3.003952980041504, 0.8978968858718872, -0.3142809569835663, 2.860992431640625, 2.330233335494995, 1.066333532333374, 0.35020801424980164, 6.688539028167725, 4.506115913391113, -0.6031891703605652, 0.32940608263015747, -2.9038455486297607, -1.623227596282959, 0.5406121611595154, 0.8475165367126465, -0.48916947841644287, 0.7471515536308289, -0.2566618323326111, -2.115492343902588, -1.9048508405685425, -1.7299522161483765, 2.3003745079040527, 0.21627192199230194, 2.8531148433685303, 2.5590667724609375, 2.2148633003234863, 1.8159559965133667, 2.8399252891540527, 2.235598564147949, 2.893561601638794, 2.850270986557007, 2.8349950313568115, 2.6701767444610596, 1.6580226421356201, 3.468771457672119, 3.096242904663086, 2.9424970149993896, 2.9990367889404297, 1.8209178447723389, 2.226557970046997, 1.7474256753921509, 1.3832262754440308, 1.466168999671936, 3.591931104660034, 3.1371963024139404, 1.4783045053482056, -2.104995012283325, 1.2974631786346436, 2.364189386367798, 1.4710657596588135, 1.1042094230651855, 1.215171217918396, 3.3849034309387207, 1.385764718055725, -0.014021494425833225, 0.8076024055480957, 0.8762842416763306, 1.2194186449050903, 1.1757382154464722, -1.4135451316833496, -0.6134902834892273, -1.391289472579956, 1.9358757734298706, 0.7488318085670471, 0.10341046005487442, 0.19832651317119598, 0.7993220090866089, 0.06751842796802521, -0.19233927130699158, -0.3591148853302002, -0.38272109627723694, -0.1326684057712555, 0.06153513118624687, -4.2384257316589355, 3.8730711936950684, -1.9382104873657227, -0.7312253713607788, -0.13728484511375427, 2.6223466396331787, -1.5314161777496338, -0.1439787894487381, -0.10129785537719727, -2.708142042160034, -0.5973096489906311, -0.37132561206817627, 0.8917113542556763, 1.3223198652267456, 1.6434791088104248, 1.3919332027435303, 0.9560523629188538, 0.9828652739524841, 0.9428966045379639, 1.6152968406677246, 3.990575075149536, 3.2077877521514893, 1.403012990951538, 1.3792610168457031, 1.253310203552246, 1.2463598251342773, 3.11582088470459, 3.1141462326049805, 0.9595915675163269, -0.1430038958787918, 2.862159013748169, 2.324970245361328, 1.2882179021835327, 0.3202151358127594, 6.660834789276123, 4.603679180145264, -0.5275687575340271, 0.33389902114868164, 2.8177311420440674, 1.432892084121704, -0.4087291657924652, -0.8980953693389893, 0.4600740969181061, -0.5846183896064758, 0.36127161979675293, 2.270127534866333, 2.0754613876342773, 1.7735780477523804, -2.5191783905029297, -1.8718628883361816, -2.9903199672698975, -2.7312474250793457, -2.3452813625335693, -1.7607662677764893, -2.844550132751465, -2.3965907096862793, -2.694422483444214, -2.7240097522735596, -2.9285266399383545, -2.760113477706909, -1.6335761547088623, -4.451236724853516, -3.1620421409606934, -2.8661000728607178, -3.08090877532959, -1.797761082649231, -4.763051509857178, -1.718124508857727, -1.3160881996154785, -1.4486864805221558, -3.5041887760162354, -3.174787759780884, -1.2657315731048584, 2.159719705581665, -1.4213159084320068, -4.020944118499756, -1.5134907960891724, -1.4005309343338013, -1.3205370903015137, -3.3943374156951904, -1.382098913192749, 0.020209314301609993, -0.8206770420074463, -0.9970183372497559, -1.1619480848312378, -1.361959457397461, 1.1774243116378784, 0.6213225722312927, 1.5801045894622803, -1.8135794401168823, -1.1466608047485352, -0.13892577588558197, -0.1261061728000641, -0.7023807764053345, -0.02267831563949585, 0.1866150200366974, 0.23058351874351501, 0.278452068567276, 0.10738613456487656, 0.13800562918186188, 4.400415897369385, -4.241020202636719, 1.8513851165771484, 0.8601193428039551, 0.2994016408920288, -2.584233522415161, 1.4830491542816162, 0.2706097662448883, 0.18619072437286377, 2.8031914234161377, 0.465737521648407, 0.46590203046798706, -0.7943810820579529, -1.3838398456573486, -1.6804900169372559, -1.2413676977157593, -0.9539666771888733, -0.7971248030662537, -1.0329701900482178, -1.673173189163208, -3.9746499061584473, -3.135118246078491, -1.2476274967193604, -1.4965581893920898, -1.3324739933013916, -1.2949087619781494, -2.990060806274414, -3.0730648040771484, -0.8636347055435181, 0.2923405170440674, -2.8703114986419678, -2.4225494861602783, -1.284198522567749, -0.41126593947410583, -7.129720211029053, -4.4336090087890625, 0.47070786356925964, -0.24420206248760223, 6.621960163116455, 1.5531953573226929, 0.16881611943244934, -0.6563533544540405, 0.9717976450920105, -0.5415729880332947, 0.2813624441623688, -0.02211250551044941, 1.990850806236267, 2.443688154220581, -13.056986808776855, -0.06846289336681366, -2.83554744720459, 1.4128798246383667, -0.5264930129051208, -2.086946964263916, -2.901472806930542, -2.4524571895599365, -2.742899179458618, -2.68485426902771, -2.724334239959717, -2.784693479537964, -1.6959819793701172, -3.558197498321533, -3.157496929168701, -2.844770908355713, -2.9571187496185303, -1.8365565538406372, -2.058974027633667, -1.8734827041625977, -1.4801733493804932, -1.5197715759277344, -3.4089183807373047, -2.659240245819092, -1.3161871433258057, 2.1144587993621826, -1.197648286819458, -2.4264097213745117, -1.4878005981445312, -1.225193738937378, -1.2998156547546387, -3.0821964740753174, -1.3705337047576904, -0.06024394556879997, -0.7749933004379272, -0.8323165774345398, -1.1959781646728516, -1.152975082397461, 1.0688725709915161, 0.5407252311706543, 1.5729928016662598, -1.9761295318603516, -0.6922330260276794, -0.014015045948326588, -0.11072008311748505, -0.8325469493865967, 0.1459876000881195, 0.15852101147174835, 0.3167571425437927, 0.271232545375824, 0.08685741573572159, -0.10567887127399445, 4.366079807281494, -3.8133983612060547, 1.9354991912841797, 0.6590432524681091, 0.15178334712982178, -1.2577868700027466, 1.4220062494277954, 0.14820916950702667, 0.3068661391735077, 2.7795424461364746, 0.4177979826927185, 0.5308338403701782, -0.9165863394737244, -1.464543104171753, -1.6435383558273315, -1.4106981754302979, -1.084282398223877, -0.8663834929466248, -0.9938668012619019, -1.2448112964630127, -3.9049248695373535, -2.9579334259033203, -1.2604814767837524, -1.457514762878418, -1.3085763454437256, -1.4251024723052979, -2.9756081104278564, -2.960500478744507, 0.08075465261936188, 0.19593694806098938, -2.8579344749450684, -2.3241536617279053, -1.1857752799987793, -0.32204028964042664, -6.7069783210754395, -4.4802985191345215, 0.8465225100517273, -0.2384466826915741, 0.19520102441310883, -2.7891340255737305, -2.1869490146636963, 2.4636752605438232, 2.442392587661743]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (50, 500000), 'etaBin': (0, 0.8)}}, 'et1_eta3': {'discriminator': {'threshold': -0.12000081166625023, 'nodes': [100, 13, 1], 'bias': [0.01576770842075348, -0.17712590098381042, 0.1333610564470291, 0.055166684091091156, 0.04430213198065758, -0.011580921709537506, -0.14800608158111572, -0.005270873662084341, -0.12565214931964874, -0.0865122452378273, 0.05252000689506531, 0.22120104730129242, -0.00014748472312930971, -0.18239182233810425], 'weights': [-1.6242141723632812, -1.4964895248413086, 0.37748241424560547, 0.7470607757568359, 0.9542444944381714, 0.5318184494972229, 0.4347248375415802, 0.5383001565933228, -1.9435062408447266, -2.7042596340179443, -2.2418925762176514, 1.7174015045166016, 0.21549135446548462, 0.08604630082845688, 3.5546133518218994, 0.8935694098472595, 1.419352412223816, 4.707134246826172, 2.0739784240722656, 4.4052605628967285, 1.1195226907730103, 2.078622579574585, 1.5331175327301025, 3.9400546550750732, 3.667813539505005, 2.234042167663574, 1.2733572721481323, 2.0328524112701416, 1.737978219985962, 1.8174703121185303, 1.415321946144104, 2.052001953125, 1.0036811828613281, 1.778766393661499, 0.8040391802787781, 1.5641635656356812, 0.9708910584449768, 0.6309452652931213, 1.3382713794708252, 1.494091510772705, 1.2222161293029785, 1.5860905647277832, 1.2585562467575073, 1.5427742004394531, -0.10605103522539139, 1.9475257396697998, 0.7545058727264404, 1.1645710468292236, -0.03386295959353447, 1.4772766828536987, 0.9225281476974487, 1.2584081888198853, -0.0013007435481995344, 0.05273319408297539, 1.3612408638000488, 0.9288939833641052, -0.29872816801071167, 0.6677990555763245, 0.5154576897621155, 0.38816744089126587, 0.5626683831214905, 0.514236330986023, 0.3904486894607544, -0.38007882237434387, -0.43703773617744446, 1.1052629947662354, 1.3141889572143555, 0.4210074841976166, -1.1155036687850952, -0.9305633306503296, -1.4501405954360962, 2.397630214691162, -0.7033202052116394, -0.06572511792182922, 1.303359031677246, 1.6486235857009888, 1.6052062511444092, 1.555179238319397, 1.042755365371704, 0.60936439037323, 3.031231641769409, 4.049725532531738, 3.155161142349243, 1.3237437009811401, 1.295178771018982, 0.9450104236602783, 0.8464922904968262, 0.9597887396812439, 0.591497540473938, 1.1264482736587524, 0.3443072438240051, 0.23298604786396027, 2.815629482269287, 1.1309726238250732, 0.2059529423713684, 0.6912635564804077, 0.36232665181159973, -0.09207841008901596, -0.08863653987646103, 1.7311025857925415, 552.792236328125, 2.7643704414367676, 0.03178073465824127, 2.4510867595672607, 0.47880813479423523, 0.19967111945152283, -22.79944610595703, 0.06149303913116455, 4.637579441070557, 9.932884216308594, -0.8642027974128723, -72.0328140258789, 5.356922149658203, -10.814126968383789, -21.906282424926758, 4.461131572723389, 2.3555476665496826, -382.99676513671875, -0.7506295442581177, -118.81001281738281, -0.23603971302509308, -359.9303283691406, -238.3626251220703, -123.53948211669922, 5.906637668609619, -2.9081966876983643, -270.46624755859375, -108.27574920654297, -32.92097091674805, 0.35070714354515076, 0.06556747108697891, 0.3463708758354187, 12.028189659118652, 0.35598239302635193, 0.199430450797081, -0.16904978454113007, -7.062976360321045, 0.12747342884540558, -120.97481536865234, 0.3730243742465973, 0.13945479691028595, 0.40641385316848755, -9.401337623596191, 0.36529579758644104, 0.015359221957623959, 19.928722381591797, -0.45481184124946594, 0.12378585338592529, -0.03318038582801819, 0.37035036087036133, 0.12706786394119263, 0.31845661997795105, 0.08344756066799164, 0.05344955250620842, 0.38324278593063354, 52.608642578125, -0.10237911343574524, 0.23618148267269135, 0.17435726523399353, 0.1518622636795044, 0.029518933966755867, 0.23272207379341125, 0.17592455446720123, 0.04647079482674599, -0.09742999821901321, 0.2759542763233185, 0.25486478209495544, 1.8833415508270264, -0.2674887776374817, -0.10872107744216919, -0.2236718088388443, 0.39290904998779297, -2.1441736221313477, -0.5715833306312561, 1.0811980962753296, 1.7409107685089111, 0.4397510588169098, -0.7035594582557678, -0.04647792875766754, 0.014676590450108051, -0.33066582679748535, 0.9460379481315613, 0.7540554404258728, 0.31899482011795044, 0.2915303111076355, 0.3317646086215973, 0.2781268060207367, 0.32645830512046814, 81.83029174804688, 12.409649848937988, 0.15977266430854797, 0.1402168869972229, 0.5275840759277344, 0.21177367866039276, 0.13422362506389618, -19.29012680053711, 0.19948558509349823, -0.02666034735739231, -0.12297744303941727, 0.2627582550048828, 1.3451869487762451, 1.5398826599121094, -0.5667336583137512, -0.6756628155708313, -0.7777997851371765, -0.3610230088233948, -0.5281922817230225, -0.5053830742835999, 1.9370986223220825, 2.40655779838562, 0.9808388948440552, -0.4040254056453705, -1.6646993160247803, -0.12418182939291, -3.91359281539917, -4.555013179779053, -3.540066957473755, -4.154556751251221, -1.983077883720398, -4.430322170257568, -1.5266995429992676, -2.4847044944763184, -1.4583783149719238, -3.7185375690460205, -4.202314853668213, -2.1284139156341553, -1.2668983936309814, -2.0230956077575684, -1.3704944849014282, -1.635471224784851, -1.5790205001831055, -1.994910478591919, -0.9721395969390869, -1.833087682723999, -0.9069038033485413, -1.6374646425247192, -0.8688830137252808, -0.5770263671875, -1.3354765176773071, -1.6173791885375977, -0.5580151677131653, -1.4621177911758423, -1.1774671077728271, -1.5859581232070923, 0.17720523476600647, -1.9122381210327148, -0.8429813385009766, -1.0451874732971191, 0.08511986583471298, -1.474605679512024, -1.789915919303894, -1.2390694618225098, -0.1389285922050476, -0.12887753546237946, -1.3730297088623047, -1.5071101188659668, 0.3250204920768738, -0.8615003824234009, -0.8253448009490967, -0.7397359609603882, -0.5332510471343994, -0.7578414082527161, -0.37777265906333923, 0.4106280207633972, 0.7251321077346802, -1.2262300252914429, -1.1063522100448608, -0.5078602433204651, 1.0481419563293457, 0.3587208092212677, 1.454047441482544, -2.561699151992798, 0.14295408129692078, 0.13616083562374115, -1.2397269010543823, -1.5601950883865356, -1.6087393760681152, -1.5504231452941895, -1.082851529121399, -0.47664424777030945, -3.024127721786499, -3.9904229640960693, -3.0953497886657715, -1.2052276134490967, -1.3117115497589111, -0.5782686471939087, -0.7740269899368286, -0.9467630982398987, -0.602620005607605, -1.1237213611602783, -0.14873045682907104, -0.47934702038764954, -2.6208910942077637, -1.1959482431411743, -0.38733866810798645, -0.6369909644126892, -0.2984714210033417, -0.13217131793498993, -0.004260192159563303, -1.7349183559417725, -1.5636281967163086, -1.524303913116455, 0.46807625889778137, 0.6881670951843262, 0.8886976838111877, 0.4724058508872986, 0.4774948060512543, 0.45738154649734497, -2.127117395401001, -2.264835834503174, -2.1885218620300293, 1.5548815727233887, 1.603270411491394, 0.04921438917517662, 3.9386258125305176, 1.033981204032898, 1.5921486616134644, 4.605279445648193, 2.034390449523926, 4.340433597564697, 1.5405898094177246, 2.096177577972412, 1.5370259284973145, 3.863614797592163, 3.6669256687164307, 2.246741533279419, 1.2843917608261108, 1.9595898389816284, 1.784196138381958, 1.945350170135498, 1.416082739830017, 2.064642906188965, 1.0506212711334229, 1.6227446794509888, 1.0033318996429443, 1.505257248878479, 1.0028568506240845, 0.6274805068969727, 1.4439401626586914, 1.587863802909851, 1.1598221063613892, 1.498486876487732, 1.184914469718933, 1.7404240369796753, -0.23110359907150269, 1.8027336597442627, 0.8465827107429504, 1.158596158027649, -0.12499502301216125, 1.5345361232757568, 0.8469158411026001, 1.2177677154541016, 0.06865401566028595, 0.22658230364322662, 1.4897241592407227, 0.9931418895721436, -0.3577333986759186, 0.5338138937950134, 0.5112457871437073, 0.37899768352508545, 0.5517551302909851, 0.5024477243423462, 0.3987458348274231, -0.3087290823459625, -0.3539457619190216, 1.0673022270202637, 1.321824312210083, 0.48313379287719727, -1.1617642641067505, -0.8124355673789978, -1.4520151615142822, 2.2560794353485107, -0.6670147180557251, -0.1809217780828476, 1.1968793869018555, 1.5539358854293823, 1.595673680305481, 1.5401126146316528, 1.187708854675293, 0.5038745999336243, 3.0686442852020264, 4.123976707458496, 3.0041894912719727, 1.1848679780960083, 1.297721266746521, 0.9273462295532227, 0.7773542404174805, 0.9081366062164307, 0.43511122465133667, 1.048279047012329, 0.28002145886421204, 0.06567780673503876, 2.603466272354126, 1.3191734552383423, 0.36029869318008423, 0.6783035397529602, 0.507758378982544, 0.07470805197954178, 0.036275628954172134, 1.5847333669662476, -1.7440775632858276, -1.505877137184143, 0.2649371325969696, 0.6923153400421143, 0.8982371687889099, 0.5299132466316223, 0.5649812817573547, 0.3271094560623169, -1.9742448329925537, -2.6683623790740967, -2.206207752227783, 1.5939074754714966, 0.21798333525657654, -0.053698278963565826, 3.5577590465545654, 0.933222234249115, 1.2130160331726074, 4.714488983154297, 1.9339014291763306, 4.461015224456787, 1.089707374572754, 2.1416754722595215, 1.4641839265823364, 3.821254253387451, 3.6482670307159424, 2.0975613594055176, 1.2187036275863647, 2.120209217071533, 1.7676467895507812, 1.7264128923416138, 1.4358125925064087, 1.9669864177703857, 0.8585684299468994, 1.7845708131790161, 0.9164472222328186, 1.6152206659317017, 0.9748068451881409, 0.6214003562927246, 1.430312156677246, 1.4658796787261963, 0.9964339137077332, 1.461653709411621, 1.1086094379425049, 1.5716569423675537, -0.11820424348115921, 1.7992467880249023, 0.8248462677001953, 1.231836199760437, 0.07739429175853729, 1.6597223281860352, 0.7933809757232666, 1.3380423784255981, -0.007976951077580452, 0.10687519609928131, 1.5742518901824951, 0.9120137095451355, -0.3792531490325928, 0.5739946961402893, 0.5841264128684998, 0.3421119451522827, 0.5871232151985168, 0.6052318811416626, 0.511553943157196, -0.5025423169136047, -0.340216726064682, 1.0866056680679321, 1.2445876598358154, 0.5235912799835205, -1.1418553590774536, -0.37823212146759033, -1.3342962265014648, 2.3976669311523438, -0.5554074645042419, -0.1412772685289383, 0.9277483224868774, 1.5325767993927002, 1.633580207824707, 1.404060959815979, 0.9922519326210022, 0.4968109726905823, 3.064375162124634, 4.122241020202637, 3.1240410804748535, 1.351357340812683, 1.169669270515442, 1.125045895576477, 0.8560924530029297, 1.0059247016906738, 0.4257277250289917, 1.3129643201828003, 0.37121298909187317, -0.007078672293573618, 2.6136226654052734, 1.252180814743042, 0.1924278736114502, 0.45479774475097656, 0.4666701853275299, -0.13599362969398499, 0.052490632981061935, 1.5569227933883667, 0.11207173764705658, 1.5673251152038574, 0.21948276460170746, -0.1706579476594925, 0.20658865571022034, 0.4444074034690857, -0.06275875866413116, -0.09602004289627075, 0.4329732656478882, 0.3868177533149719, 0.5335736870765686, -1.615212082862854, -1.6560707092285156, -0.3140912353992462, -3.6353068351745605, -0.7322068214416504, -0.28341037034988403, -1.0050400495529175, -0.3419286608695984, -0.9155945777893066, -0.8803226947784424, -0.7133737802505493, -0.16435860097408295, -0.676879346370697, -0.8959323763847351, -0.2383534014225006, -0.2511528432369232, -0.3358331620693207, -0.14717106521129608, -0.296308696269989, -0.9763094782829285, -0.31645631790161133, -0.059382546693086624, -0.1863415539264679, -0.2748272716999054, -0.34713470935821533, -0.0542185939848423, -0.1688673198223114, -0.8496227264404297, -0.25317972898483276, -0.08508124947547913, -0.26484042406082153, -0.06464679539203644, -0.3290494382381439, 0.092121921479702, -0.34205880761146545, -0.0895528569817543, -0.12434211373329163, 0.03791821002960205, -0.38038498163223267, -0.5401926636695862, -0.25441575050354004, 0.09118084609508514, 0.1188853308558464, -0.166121244430542, -0.14382879436016083, 0.19497434794902802, -0.17046307027339935, 0.05484700947999954, -0.01568160206079483, -0.03641972318291664, -0.09813490509986877, -0.13234658539295197, 0.12830500304698944, 0.1137353703379631, -0.08941684663295746, -0.165379598736763, 0.05546451732516289, 0.4119976758956909, 0.24452979862689972, 0.3213237524032593, -0.3851219117641449, -0.028218602761626244, 0.11134273558855057, -0.03273233771324158, -0.2635450065135956, -0.27601709961891174, -0.2385721355676651, -0.25492680072784424, 0.04179928079247475, 0.6108481884002686, -0.646676778793335, -0.6546499729156494, -0.26968488097190857, -0.1279374063014984, -0.03908933326601982, -0.09513313323259354, -0.1315973550081253, 0.35041600465774536, 0.07261974364519119, 0.13131588697433472, 0.0683763399720192, -0.28039631247520447, -0.06540018320083618, 0.0860893726348877, 0.01173508632928133, 0.05043424665927887, 0.0319412499666214, 0.44078320264816284, -0.22699443995952606, 0.569207489490509, 10.118484497070312, 0.5869184732437134, -0.23266395926475525, -0.22150415182113647, 0.11243846267461777, -0.08446071296930313, 0.03232450410723686, -0.14664967358112335, 1.566145658493042, 0.8566641807556152, -4.340214729309082, -1.0850410461425781, -0.9245840311050415, -8.765680313110352, -2.57635760307312, -0.8307259678840637, -1.5788475275039673, -0.10425139963626862, -1.879743218421936, -1.6567991971969604, -1.7835394144058228, -0.658108115196228, -1.1952704191207886, -17.831636428833008, -0.9914507865905762, -39.30318832397461, -0.6488813161849976, -17.420658111572266, -0.7398617267608643, -8.333794593811035, -0.7403357625007629, -0.41006144881248474, -0.6084940433502197, -0.3199058473110199, -0.705725371837616, -0.09825854748487473, -0.2415328025817871, -0.16026397049427032, -0.5344529747962952, -0.30099567770957947, -0.5692082047462463, -0.3368820250034332, -0.700025737285614, 0.38944900035858154, -0.6970731019973755, -0.22601492702960968, -0.29214417934417725, 0.19525261223316193, -0.4706447124481201, -2.170785427093506, -0.4108344316482544, 0.15164020657539368, 0.08020782470703125, -1.3762803077697754, -0.3609658181667328, 0.31938210129737854, -0.16691942512989044, -0.2319401353597641, -0.10534583777189255, 0.0004285731993149966, -0.17633305490016937, 0.015866998583078384, 0.30904003977775574, 0.5252588391304016, -0.3907189667224884, -0.41111278533935547, -0.06981083005666733, 0.7134514451026917, 0.25976642966270447, 0.7031596302986145, -0.325287401676178, -0.282072514295578, -0.08061013370752335, -0.2923697233200073, -0.6317827701568604, -0.716009259223938, -0.6643671989440918, -0.4638528823852539, -0.0693204402923584, -1.4576201438903809, -1.7735381126403809, -1.2580504417419434, -0.3902900516986847, -0.3694489896297455, -0.4418288469314575, -0.17822803556919098, -0.3224373161792755, -0.07440484315156937, 0.07097062468528748, 0.03084496408700943, 0.1774269938468933, -1.1567301750183105, -0.3372563421726227, 0.06563237309455872, -0.026887614279985428, 0.022859806194901466, 0.04626991227269173, 0.13664039969444275, -0.6153284311294556, 0.19879627227783203, 0.49912333488464355, 0.15074574947357178, -0.1389814019203186, 0.2656807601451874, 0.3537868559360504, -0.07524000108242035, -0.02653874270617962, 0.04904153198003769, -0.014147642999887466, 0.036865849047899246, -0.2073207050561905, -4.319263935089111, -0.09087192267179489, 0.4187915623188019, -0.6202352046966553, -0.0365801639854908, 0.03477364033460617, 0.07524202018976212, -0.15304630994796753, -1.084322214126587, -0.5789081454277039, -0.017221834510564804, -0.11415266245603561, -0.3979513645172119, -0.0009047755738720298, -0.08691267669200897, 0.07778538018465042, 0.08316941559314728, 0.013613002374768257, -0.39775756001472473, -0.10488886386156082, -0.07013958692550659, 0.006998687516897917, -0.29658201336860657, 0.051460158079862595, -0.09595461189746857, 0.04474246874451637, -0.8101599812507629, 0.002780354116111994, 0.02211136929690838, -0.01593831367790699, -0.02383730746805668, -0.12470965087413788, 0.03665545955300331, -0.15279939770698547, 0.04156281426548958, -0.10346100479364395, 0.12897290289402008, 0.006309210788458586, -0.6199628710746765, -0.11041916161775589, 0.11414217203855515, -0.031745944172143936, -0.06135125830769539, 0.03421567752957344, 0.11457649618387222, 0.10210516303777695, 0.04936494678258896, 0.04891703277826309, 0.03114130161702633, -0.06390345096588135, 0.11051042377948761, -0.055351242423057556, 0.1513061672449112, -0.07033836096525192, 0.07845842838287354, 0.13343358039855957, 0.18489046394824982, -0.05284982547163963, 0.12340499460697174, -0.005748967174440622, -0.02615467831492424, 0.03903046250343323, 0.027949120849370956, -0.14660902321338654, -0.13830402493476868, -0.06515458971261978, -0.09806390851736069, 0.12094021588563919, 1.3407784700393677, -0.06484344601631165, -0.20136243104934692, 0.06163958087563515, 0.10626552253961563, 0.038034453988075256, -0.011921621859073639, 0.05996355414390564, 0.31614866852760315, 0.14564809203147888, 0.017926644533872604, -0.030957091599702835, 0.020635919645428658, -0.08232193440198898, -0.07647424191236496, -0.15627843141555786, 0.013405008241534233, -0.11506153643131256, -0.06344332545995712, -0.06442835927009583, -1.6948215961456299, -1.374026894569397, 0.45735812187194824, 0.7441738247871399, 0.926918625831604, 0.5328865647315979, 0.6245124936103821, 0.6043076515197754, -1.9460148811340332, -3.728248119354248, -0.8666092753410339, 0.32013753056526184, 1.814964771270752, 0.08204898983240128, 3.5145561695098877, 4.606217861175537, 1.6926093101501465, 4.154201030731201, 2.084848642349243, 4.394313812255859, 2.1543452739715576, 2.3002374172210693, 1.5719012022018433, 3.7970693111419678, 3.478036403656006, 2.2518043518066406, 1.1834920644760132, 1.9087597131729126, 1.5292699337005615, 1.713663935661316, 0.7750661969184875, 2.0037338733673096, 0.9753880500793457, 1.8458985090255737, 0.7545556426048279, 1.5309269428253174, 1.0138039588928223, 0.779555082321167, 1.324082612991333, 1.5432661771774292, 1.2808539867401123, 1.302045226097107, 1.2884753942489624, 1.5711995363235474, -0.05899054557085037, 1.9335743188858032, 0.8873742818832397, 1.0036513805389404, 0.06123936548829079, 1.6129034757614136, 1.7194935083389282, 1.3282191753387451, 0.10062761604785919, 0.179970845580101, 2.2549612522125244, 1.5311799049377441, -0.4092741310596466, 0.9473189115524292, 0.9941576719284058, 0.5455511808395386, 0.43860843777656555, 0.469561368227005, 0.47462910413742065, -0.509946882724762, -0.41698065400123596, 1.1551569700241089, 1.159548282623291, 0.4582456648349762, -1.1753933429718018, -0.8450286984443665, -1.585595726966858, 2.9577999114990234, -0.6436326503753662, -0.17514505982398987, 1.5109885931015015, 1.5636075735092163, 1.7329803705215454, 1.5543644428253174, 1.0518341064453125, 0.4883584976196289, 2.5242295265197754, 4.147961139678955, 2.9376206398010254, 1.3096472024917603, 1.2615928649902344, 0.5879326462745667, 0.8940541744232178, 1.0711349248886108, 0.46630460023880005, 1.2440662384033203, 0.340199738740921, 0.11749430000782013, 2.7758820056915283, 1.200555443763733, 0.2967906594276428, 0.6783573627471924, 0.48993897438049316, 0.10238969326019287, -0.011745195835828781, 1.5402342081069946, -1.4734909534454346, -1.3780670166015625, 0.4619764983654022, 0.7953463792800903, 1.0563148260116577, 0.370169997215271, 0.5685901045799255, 0.4622335433959961, -2.030644178390503, -2.401200771331787, -0.957638144493103, 1.569664716720581, 1.6778439283370972, 0.1335846483707428, 3.960793972015381, 4.675021648406982, 3.5973570346832275, 4.142901420593262, 2.0527288913726807, 4.457016468048096, 1.5721279382705688, 2.3970298767089844, 1.5058456659317017, 3.721092939376831, 4.240220546722412, 2.1291346549987793, 1.2269959449768066, 2.0664103031158447, 1.756988763809204, 1.6647372245788574, 1.3654842376708984, 2.0576062202453613, 0.9074469208717346, 1.802932858467102, 0.8626964688301086, 1.5198301076889038, 1.0907427072525024, 0.5751223564147949, 1.4303526878356934, 1.53548002243042, 0.9767692685127258, 1.3242193460464478, 1.1571396589279175, 1.6120322942733765, -0.13162536919116974, 1.6732239723205566, 0.7331457138061523, 1.1402865648269653, -0.08006050437688828, 1.6901044845581055, 0.6937851905822754, 1.3397859334945679, 0.011032379232347012, 0.05293005332350731, 1.2205897569656372, 1.3738906383514404, -0.3984019458293915, 0.9045627117156982, 0.7442097663879395, 0.30125802755355835, 0.3498018682003021, 0.420055627822876, 0.5645756125450134, -0.4032018482685089, -0.2462673783302307, 1.0896871089935303, 1.2518011331558228, 0.4280555546283722, -1.1818678379058838, -0.9058977365493774, -1.6089688539505005, 2.4408814907073975, -0.616915225982666, -0.06590677797794342, 1.4060014486312866, 1.7127970457077026, 1.6957112550735474, 1.6063036918640137, 1.0776170492172241, 0.658760130405426, 3.0399088859558105, 4.112060070037842, 3.030510425567627, 1.3490625619888306, 1.362789273262024, 0.6233588457107544, 0.793054461479187, 0.9226189851760864, 0.41492846608161926, 1.0315072536468506, 0.22529368102550507, 0.09893400222063065, 2.512591600418091, 1.1801563501358032, 0.3042181730270386, 0.4467712342739105, 0.40187403559684753, -0.06129360944032669, -0.02255595661699772, 1.7093428373336792, -1.6432732343673706, -1.585505485534668, 0.4455070197582245, 0.6441716551780701, 1.0770249366760254, 0.5162317752838135, 0.6279934048652649, 0.4914849102497101, -2.109876871109009, -2.7053401470184326, -2.3338234424591064, 1.7057536840438843, 0.20316848158836365, -0.01807522587478161, 3.4759607315063477, 1.0748878717422485, 1.274013638496399, 4.655988693237305, 2.0632402896881104, 4.5135416984558105, 0.9690438508987427, 2.043833017349243, 1.6856648921966553, 3.8168728351593018, 3.757876396179199, 2.3390259742736816, 1.3626359701156616, 2.087589740753174, 1.7162327766418457, 1.9472029209136963, 1.437515139579773, 2.0037448406219482, 1.0522329807281494, 1.859933614730835, 0.9110863208770752, 1.652016520500183, 1.028664469718933, 0.6730564832687378, 1.3714547157287598, 1.6440644264221191, 1.0050503015518188, 1.535170316696167, 1.1386771202087402, 1.571481466293335, -0.26906633377075195, 2.007200241088867, 0.97314453125, 1.1479214429855347, -0.033159784972667694, 1.6762545108795166, 0.7559630870819092, 1.3668254613876343, 0.17066365480422974, 0.030890384688973427, 2.1763641834259033, 0.9327290058135986, -0.4737824499607086, 0.7423145771026611, 0.5662016868591309, 0.4495573043823242, 0.5087298154830933, 0.5781282186508179, 0.395752489566803, -0.39331531524658203, -0.29981517791748047, 1.2254409790039062, 1.13060462474823, 0.35779711604118347, -1.211405873298645, -0.8227726817131042, -1.6215662956237793, 2.342751979827881, -0.6547279953956604, -0.09885267913341522, 1.28086519241333, 1.5423967838287354, 1.6239371299743652, 1.49622642993927, 1.1781095266342163, 0.6366270780563354, 2.9106123447418213, 4.010722637176514, 3.0326154232025146, 1.1186727285385132, 1.242163062095642, 1.0580123662948608, 0.9041142463684082, 0.9899135231971741, 0.5209850072860718, 0.9766155481338501, 0.17762179672718048, 0.09583786129951477, 2.616609811782837, 1.2277886867523193, 0.3185042440891266, 0.49217161536216736, 0.3211157023906708, 0.09509262442588806, -0.09274669736623764, 1.6018213033676147, -552.864501953125, -89.66056823730469, -0.11743012815713882, -2.334815502166748, -0.2966395616531372, -0.03662319853901863, 42.54216003417969, -0.13022921979427338, 0.2541114091873169, -2.4763221740722656, 0.7610852122306824, 54.44601821899414, -5.226278781890869, 10.895147323608398, 254.3391571044922, -4.229949474334717, 4.767922878265381, 22.331096649169922, 0.5956622362136841, 116.17454528808594, 0.10975602269172668, 0.4308340847492218, -0.09527736902236938, 81.89161682128906, -4.8345947265625, -0.4923328161239624, 256.7643737792969, 107.61156463623047, 32.51325607299805, -0.2517307698726654, -0.10120502859354019, -0.31792065501213074, -6.690577507019043, -0.21603195369243622, -0.05702843517065048, -0.12909549474716187, 1.0213677883148193, -0.002027353970333934, 116.52684020996094, -0.36094701290130615, -0.12765632569789886, -0.3591914772987366, 5.100647926330566, -0.4217729866504669, 0.15308904647827148, -78.20451354980469, 0.951957106590271, -0.3251190185546875, 0.08644768595695496, -0.33919963240623474, -0.05406152084469795, -0.2206450253725052, -0.10779125243425369, -0.07888578623533249, -0.36401933431625366, -0.3730511963367462, 0.03132060170173645, -0.15898336470127106, -0.1694311797618866, -0.06712400913238525, -0.10189072042703629, -0.0068391598761081696, -0.06516451388597488, 0.1782175898551941, 0.21338370442390442, -0.2712914049625397, -0.29605811834335327, -17.021631240844727, 0.14963530004024506, -0.022046484053134918, 0.4077531695365906, -0.2888941764831543, 1.3947776556015015, 0.5609872937202454, -10.491022109985352, -0.40771394968032837, -9.830562591552734, 0.5514671802520752, -0.06376117467880249, -0.1530449390411377, -0.6828411817550659, -0.7085099220275879, -0.5495133996009827, -0.18635305762290955, -0.3539504408836365, -0.35058078169822693, -0.258853554725647, -0.21096371114253998, -103.15705871582031, -17.2119083404541, -0.171717569231987, -0.14994323253631592, -0.5220857262611389, -0.14971013367176056, -0.16776955127716064, 24.485219955444336, -0.12893813848495483, -0.05572142452001572, -0.09593889117240906, -0.28193774819374084, -0.3820389211177826, 0.020328717306256294, -0.18613170087337494, -0.089986152946949, -0.21945148706436157, -0.49083277583122253, -0.015738744288682938, -0.0071320682764053345, 0.029002400115132332, -0.019386347383260727, -0.26510390639305115, 1.1224726438522339, 6.664980888366699, 0.6481620073318481, -2.431462049484253, 0.677589476108551, -0.06548326462507248, -0.13572005927562714, -0.08753036707639694, 0.12488378584384918, 0.18689033389091492, 0.43816304206848145, -0.0063032894395291805, 0.03186273202300072, 0.39663681387901306, 0.08504485338926315, 0.07693356275558472, 0.09288141876459122, -0.076265349984169, -0.037395354360342026, 0.19528652727603912, -0.06863228231668472, 0.14609447121620178, -0.08660196512937546, 0.23252668976783752, -0.03541788086295128, -0.057179808616638184, 0.08873672038316727, 0.8471117615699768, 0.11827612668275833, 0.03169577196240425, -0.10762202739715576, -0.009779691696166992, -0.06842096894979477, 0.0792987123131752, -0.0782332643866539, 0.0766831785440445, 0.10943435877561569, -0.06310806423425674, -0.10216032713651657, 0.713716983795166, 0.09118673205375671, -0.031047694385051727, -0.11960230022668839, 0.3543779253959656, 0.12408443540334702, -0.11377641558647156, -0.09686360508203506, 0.07073569297790527, -0.06876904517412186, -0.008683153428137302, -0.10921872407197952, -0.013554458506405354, -0.06658368557691574, -0.09150417149066925, 0.08272112160921097, 0.06052215397357941, 0.012413851916790009, 0.03385744243860245, 0.017742592841386795, -0.03555351868271828, 0.0060442909598350525, 0.2159235030412674, -0.2910517752170563, 0.040971118956804276, 0.051287490874528885, -0.07658003270626068, -0.00937520619481802, 0.032818544656038284, -0.0017873405013233423, -1.3051505088806152, 0.011788404546678066, 0.016169341281056404, -0.1182766780257225, 0.002938428893685341, 0.06404751539230347, -0.13711322844028473, 0.03153100982308388, -0.1480286419391632, -0.18700993061065674, 0.07585188746452332, -0.18576261401176453, -0.030102837830781937, -0.03429120406508446, 0.06768222898244858, -0.06672611832618713, -0.06789281964302063, -0.032425131648778915, 0.09039555490016937, -0.0841752365231514, -0.5628393292427063, -0.2998746335506439, 0.7201017141342163, -0.6106091141700745, -1.2528587579727173, 2.5749545097351074, 0.2486107051372528, 0.003795512719079852, -0.6725246906280518, -0.6740331649780273, -0.7349206805229187, 0.3413822054862976, -3.0800232887268066]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (20, 30), 'etaBin': (1.54, 2.5)}}, 'et4_eta2': {'discriminator': {'threshold': -0.14500080645084382, 'nodes': [100, 5, 1], 'bias': [0.07917795330286026, -0.11831410974264145, 0.02653731033205986, 0.037854090332984924, 0.0019815023988485336, -0.3486272096633911], 'weights': [0.19843904674053192, -0.058875974267721176, -0.04326336458325386, -0.11321347951889038, -0.22157005965709686, -0.10730722546577454, 0.3745001554489136, -0.2558435797691345, 0.1424679458141327, 1.0263217687606812, 0.6999816298484802, 0.30600643157958984, 0.07806351780891418, 0.08327186852693558, -0.1777438074350357, 0.10038430243730545, -0.5248778462409973, -0.038612525910139084, -0.39872047305107117, -0.28444749116897583, -0.9980010986328125, -1.5127053260803223, 0.1979541778564453, -0.32997938990592957, -0.3489316999912262, -0.15367491543293, -2.2198708057403564, -0.26825016736984253, -2.7749743461608887, -0.8617600202560425, -0.09909697622060776, -0.17918868362903595, -0.18626078963279724, -0.14524361491203308, -0.15213170647621155, -0.29111459851264954, -1.9678081274032593, -0.2911415696144104, -0.33365485072135925, -0.15995465219020844, -0.17492829263210297, -1.3340978622436523, -0.605542778968811, -0.25727397203445435, -0.29796531796455383, -0.2302875965833664, -1.5060298442840576, -0.16948801279067993, 0.9827492237091064, -0.11198002845048904, -0.14857470989227295, -0.1308097541332245, -0.5809677243232727, -0.2103646844625473, 0.06424117088317871, 3.1437878608703613, -0.25365424156188965, 0.011770646087825298, 0.7938454747200012, -0.24619118869304657, 0.03621393069624901, -0.2733103036880493, -0.3014981746673584, -0.14885523915290833, -0.5823711156845093, -0.43225881457328796, -0.6819719672203064, -0.22043395042419434, -0.239812433719635, -0.24446256458759308, -0.19261875748634338, -0.09331440925598145, -0.0354016087949276, 0.1703440248966217, -0.4293913245201111, -0.3520030379295349, -0.6189568042755127, -0.2027088701725006, -0.16495664417743683, -0.09841347485780716, 0.11157503724098206, -0.143389493227005, -1.2832545042037964, -0.2871471047401428, 0.2769422233104706, 0.8271965384483337, -0.18569205701351166, -0.12356787174940109, 0.006625983398407698, -0.12885113060474396, -0.1413503736257553, -0.06292189657688141, -1.196790099143982, -0.5923837423324585, -0.37488433718681335, -0.08503884077072144, 0.061679136008024216, -0.005496353842318058, -0.4499998390674591, -0.3197402060031891, 0.6277943253517151, -0.10406453162431717, -0.3655036389827728, -1.0510603189468384, -1.1635586023330688, -0.7228602170944214, 2.0800740718841553, -0.9477074146270752, 0.24350564181804657, 1.4949134588241577, 3.0407767295837402, 1.0606045722961426, 0.6999744176864624, 0.07677821069955826, 0.13364534080028534, 0.20846040546894073, -2.300600051879883, 0.02978888340294361, -0.645549476146698, -0.9755619168281555, -4.458914279937744, -7.862541675567627, 0.6324165463447571, -1.301794409751892, -1.0996429920196533, -1.024741530418396, -11.186277389526367, -1.0049670934677124, -12.887227058410645, -3.7494685649871826, -0.8687475919723511, -1.3223682641983032, -0.867615282535553, -0.8138494491577148, -1.028181791305542, -0.8000075221061707, -9.404091835021973, -1.0163896083831787, -1.445360541343689, -0.6547778248786926, -0.7807666659355164, -5.904367923736572, -2.501373291015625, -1.5232384204864502, -1.0277657508850098, -0.9240407943725586, -7.114432334899902, -0.6644827127456665, 4.936777591705322, -0.9329755902290344, -0.8921515941619873, -0.8116706609725952, -3.0774483680725098, -0.9190694093704224, -0.07221107184886932, 14.74031925201416, -0.9749648571014404, -0.1763647496700287, 12.005014419555664, -0.8935961723327637, 0.6402859687805176, -1.0257129669189453, -1.181807518005371, -0.9516039490699768, -3.1304805278778076, -1.4402759075164795, -3.6530215740203857, -0.8244721293449402, -0.8461655974388123, -0.6997277140617371, -1.0689067840576172, -0.8016883134841919, 0.3022933006286621, 0.32295846939086914, -1.5995917320251465, -1.2440654039382935, -2.8085544109344482, -1.2667522430419922, -0.9192014336585999, -0.2858508825302124, 0.234048992395401, -0.26895758509635925, -6.08580207824707, -1.4630569219589233, 2.323629379272461, 4.4118242263793945, -0.781417727470398, -0.16982564330101013, 0.6514472961425781, -0.9848294258117676, -0.6113961935043335, 0.18455840647220612, -6.346983432769775, -3.0930964946746826, -2.12569260597229, -0.825966477394104, -0.03689870238304138, -0.05597178637981415, -1.7091572284698486, -0.8694016337394714, 0.538478672504425, -0.29178640246391296, -0.4680575132369995, -1.1599676609039307, -1.1469377279281616, -0.890026330947876, 1.9173754453659058, -0.9527194499969482, 0.24605567753314972, 1.3845936059951782, 2.9548888206481934, 0.8911598324775696, 0.5366544723510742, 0.13727369904518127, 0.03529117628931999, 0.36252060532569885, -2.377124309539795, 0.017898760735988617, -0.5337632894515991, -0.9570571184158325, -4.513769149780273, -7.736189365386963, 0.6784204840660095, -1.1835755109786987, -1.0912556648254395, -1.4223910570144653, -11.407207489013672, -1.0612695217132568, -12.851149559020996, -3.981472969055176, -0.9559224843978882, -1.2679510116577148, -1.0460032224655151, -0.7622424364089966, -1.0731977224349976, -0.952303946018219, -9.278315544128418, -0.9659073948860168, -1.3613336086273193, -0.4313996434211731, -0.8500753045082092, -5.89675760269165, -2.688828468322754, -1.5145313739776611, -0.9691314101219177, -0.9684584140777588, -7.193000793457031, -0.6728978157043457, 4.875428199768066, -0.8902928233146667, -0.8915324211120605, -0.6865395903587341, -3.149742841720581, -1.0453267097473145, -0.06865935027599335, 14.666970252990723, -0.9149070382118225, -0.30999842286109924, 12.11669921875, -1.038794994354248, 0.6735774278640747, -1.0106775760650635, -1.03125, -0.855364978313446, -3.305170774459839, -1.5760698318481445, -3.4677438735961914, -0.8828592896461487, -0.9409480690956116, -0.6717583537101746, -1.1452490091323853, -0.724443793296814, 0.09653688967227936, 0.3005527853965759, -1.504169225692749, -1.3878728151321411, -2.634042501449585, -1.2404276132583618, -1.0747389793395996, -0.7351477146148682, 0.2935914099216461, -0.1825401782989502, -6.09831428527832, -1.4852796792984009, 2.2743186950683594, 4.412333965301514, -0.8675190210342407, -0.14960786700248718, 0.6853855848312378, -0.9687178730964661, -0.5718677639961243, 0.1714552789926529, -6.306363105773926, -3.0675199031829834, -1.962223768234253, -0.7187012434005737, 0.09421937167644501, 0.0514395497739315, -1.6508066654205322, -1.0744011402130127, 0.5221546292304993, -0.1688251942396164, -0.2852502763271332, -1.1912262439727783, -1.1741142272949219, -0.8497717380523682, 2.0628299713134766, -0.9573359489440918, 0.1239398643374443, 1.39858877658844, 3.0097548961639404, 0.8631302118301392, 0.545143187046051, 0.17631390690803528, -0.1239486038684845, 0.3684420585632324, -2.429640769958496, -0.03239741176366806, -0.5000216364860535, -0.9886659383773804, -4.448267459869385, -7.8853678703308105, 0.4418301582336426, -1.3391191959381104, -1.3216300010681152, -1.2984806299209595, -11.182941436767578, -0.9329841136932373, -12.91749095916748, -3.9666085243225098, -0.9302960634231567, -1.3476884365081787, -0.9111068844795227, -0.80168616771698, -1.1871225833892822, -0.8475130200386047, -9.280434608459473, -1.1822551488876343, -1.2640880346298218, -0.5527045130729675, -0.8045503497123718, -5.992523670196533, -2.5902857780456543, -1.463446855545044, -1.0229277610778809, -0.944084644317627, -7.133020877838135, -0.782139778137207, 4.848005771636963, -1.0444939136505127, -0.7845062017440796, -0.13820376992225647, -3.2052440643310547, -0.9270139932632446, 0.058824386447668076, 14.628971099853516, -0.9205606579780579, -0.20612655580043793, 4.048259735107422, -0.8629136085510254, 0.7893847227096558, -0.8947634696960449, -1.1829833984375, -0.8525384068489075, -3.2257721424102783, -1.59385085105896, -3.6080033779144287, -0.8026497960090637, -0.9271995425224304, -0.7118434309959412, -0.9384663701057434, -0.6680995225906372, 0.20856314897537231, 0.3579999804496765, -1.6446177959442139, -1.3325717449188232, -2.8000986576080322, -1.323870062828064, -0.8808022737503052, -0.6807488203048706, 0.30382585525512695, -0.8766505122184753, -6.005836486816406, -1.2826693058013916, 2.448645830154419, 4.384418964385986, -0.9507842063903809, -0.22881141304969788, 0.5134653449058533, -0.9616960883140564, -0.7230673432350159, 0.11827108263969421, -6.438907146453857, -3.122575521469116, -2.015510320663452, -0.7925659418106079, 0.01845378428697586, 0.10577049106359482, -1.6219987869262695, -0.8885412812232971, -0.3990319073200226, 0.1610254943370819, 0.3931426405906677, 1.0031417608261108, 1.1299707889556885, 0.7007510662078857, -1.9989891052246094, 0.7475440502166748, -0.24501515924930573, -1.3563021421432495, -2.9222452640533447, -0.8815038800239563, -0.6206080913543701, -0.09661660343408585, 0.03201199322938919, -0.22039464116096497, 2.4530599117279053, 0.1538521945476532, 0.4481150805950165, 0.8931834697723389, 4.328883647918701, 7.734996318817139, -0.6424065232276917, 1.1826496124267578, 1.3137836456298828, 1.3616467714309692, 11.386146545410156, 1.080670952796936, 12.866631507873535, 3.9327449798583984, 1.060046672821045, 1.17130708694458, 0.8657472729682922, 0.7906845808029175, 1.0713013410568237, 1.0066542625427246, 9.36905574798584, 1.1339709758758545, 1.4620819091796875, 0.5239474177360535, 0.7948567271232605, 6.029382228851318, 2.539458751678467, 1.3745920658111572, 0.8908397555351257, 1.049965262413025, 7.19590950012207, 0.6697745323181152, -4.869314670562744, 1.0591723918914795, 0.8253028392791748, 0.7593411207199097, 3.0658555030822754, 1.0158782005310059, 0.1413022130727768, -14.779873847961426, 0.823947012424469, 0.20322173833847046, -4.047779083251953, 0.9640843868255615, -0.6722579002380371, 1.0212986469268799, 1.1114691495895386, 0.9280045032501221, 3.092660665512085, 1.6551597118377686, 3.593964099884033, 0.7618563771247864, 0.9365280270576477, 0.6471535563468933, 1.1175612211227417, 0.6640381813049316, -0.24009032547473907, -0.47837749123573303, 1.5553977489471436, 1.4176009893417358, 2.7892978191375732, 1.2938426733016968, 1.1021111011505127, 0.644943356513977, -0.3228708803653717, 0.1429155170917511, 6.081678867340088, 1.3728801012039185, -2.3426244258880615, -4.3570942878723145, 0.8937885761260986, 0.24191537499427795, -0.5800982713699341, 0.9014846086502075, 0.588697612285614, -0.31642162799835205, 6.248983860015869, 3.1653358936309814, 2.141467809677124, 0.7257773876190186, 0.08191932737827301, 0.0024512677919119596, 1.7630603313446045, 0.9945467114448547, 0.042988210916519165, 14.605488777160645, 2.8634936809539795, 2.8143715858459473, -2.6142516136169434]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (50, 500000), 'etaBin': (1.37, 1.54)}}, 'et2_eta1': {'discriminator': {'threshold': -0.080000812560319906, 'nodes': [100, 9, 1], 'bias': [0.1834578812122345, 0.038406264036893845, 0.2277717888355255, -0.11224567145109177, -0.032732654362916946, -0.13294199109077454, -0.0878298208117485, -0.03744007274508476, -0.2362646758556366, -0.38488686084747314], 'weights': [0.004499542061239481, -1.9415453672409058, -0.30703845620155334, 0.1669836789369583, 0.16948339343070984, 0.3984569013118744, 0.31329405307769775, -0.35503950715065, -15.21175479888916, -8.14402961730957, 0.7569541931152344, 36.71369934082031, 1.1281871795654297, 0.5330346822738647, 3.3125078678131104, 5.399392127990723, 5.428003311157227, 2.7117762565612793, 2.896425724029541, 2.153343915939331, 2.2664084434509277, 2.3275535106658936, 0.6963872313499451, -1.242303729057312, 1.416195034980774, -0.4414708614349365, 1.6310455799102783, 1.647055745124817, 1.0301884412765503, 1.561370611190796, 0.6816695928573608, -0.06212157383561134, 1.190083384513855, 0.9948219656944275, 0.5635619163513184, 0.48699843883514404, 0.6377851963043213, 1.1684753894805908, 0.5559937357902527, 1.7703348398208618, 0.4505130648612976, 0.530821681022644, 0.4961338937282562, 0.49482065439224243, 1.167014241218567, 0.4118550717830658, 0.2557421624660492, 1.4883331060409546, 0.22240997850894928, 0.3126266300678253, 0.16667155921459198, 0.0696839913725853, 0.045265376567840576, 0.19445180892944336, 2.012479066848755, 0.5592862963676453, 0.1429232805967331, -2.3565707206726074, 3.2528812885284424, -1.3066539764404297, 0.04093802347779274, 0.03383617848157883, 0.327037513256073, -0.10088060796260834, -0.1659843921661377, 1.8148635625839233, 10.08419418334961, 0.91677325963974, -0.31926605105400085, -0.038209520280361176, 0.335633248090744, -0.06547890603542328, -0.1458699107170105, 0.0707988440990448, 1.649000883102417, 0.4053569436073303, 0.6100645065307617, 0.5359510183334351, 0.07217152416706085, -0.136271670460701, 2.146354913711548, 2.5029799938201904, 1.5638030767440796, 1.088937759399414, 0.9201000928878784, 0.8669834136962891, 0.662987232208252, 1.0024718046188354, 0.6455403566360474, 1.2433773279190063, 0.3235679268836975, -0.19345244765281677, 0.9573050141334534, 0.8204120993614197, 0.25753602385520935, -0.20892475545406342, 1.1113395690917969, -8.521957397460938, 0.4651676118373871, 0.1444692462682724, -1.5022149085998535, -1.8229855298995972, 0.3492593765258789, 0.798374593257904, 0.8134347796440125, 0.47272565960884094, 0.5776800513267517, -0.2740126848220825, -2.629077196121216, -3.1090006828308105, 1.347335934638977, 4.013919353485107, 0.1908143311738968, -1.2652533054351807, 0.6310298442840576, 3.076305866241455, 2.557399034500122, 5.316928863525391, 6.355111598968506, 6.001584529876709, 5.763666152954102, 5.0943450927734375, 3.4046876430511475, 3.0425665378570557, 4.555365562438965, 0.1102314442396164, 4.8203043937683105, 3.7742035388946533, 3.40641450881958, 3.8364181518554688, 2.3925251960754395, 2.232933521270752, 4.025863170623779, 2.707824468612671, 1.6952582597732544, 1.9400101900100708, 3.73349666595459, 5.0669403076171875, 2.0745110511779785, 1.8654143810272217, 1.674062728881836, 1.5602108240127563, 2.8395001888275146, 1.402117371559143, 1.5328067541122437, 0.9909412860870361, 1.4280707836151123, 3.229188919067383, 0.8169304728507996, 1.0814898014068604, 0.6663644313812256, 0.668704628944397, 0.3052811622619629, 0.45168256759643555, 1.1257872581481934, 0.9267649054527283, 0.5674657821655273, -0.4290004372596741, 2.251713991165161, -2.0806214809417725, 0.23142021894454956, 0.2799263298511505, 1.5346530675888062, 0.12800148129463196, 0.17600910365581512, 1.8786375522613525, 2.9274871349334717, 2.382244348526001, -0.25315797328948975, 0.1466868370771408, 1.08413827419281, 0.3730648458003998, -0.4525236487388611, -0.3664560317993164, 0.563310980796814, 1.2535595893859863, 1.6344081163406372, 1.5166316032409668, 0.8127090930938721, 0.6384350061416626, 0.4925779104232788, 6.269612789154053, 3.8223912715911865, 2.513105630874634, 2.285754919052124, 2.351311206817627, 2.1976170539855957, 2.7794792652130127, 1.912764549255371, 1.0071821212768555, 0.12011672556400299, -0.0437142550945282, 2.90798282623291, 2.4290592670440674, 1.2592779397964478, 0.18222394585609436, 2.6393823623657227, 1.9669933319091797, 1.472691297531128, 0.6444822549819946, 28.41168785095215, 47.43718338012695, 13.47498893737793, 0.013317426666617393, 0.196879580616951, -0.12371323257684708, 0.0226189736276865, 0.5873128771781921, 0.09287849068641663, -5.849676609039307, -19.8280029296875, -68.08638000488281, -0.6993151307106018, -19.96688461303711, -25.044160842895508, -26.023447036743164, -21.507848739624023, -1.086702823638916, -0.9635292887687683, -1.2544578313827515, -1.0003620386123657, -0.9917522668838501, -0.894866943359375, -0.6843815445899963, -0.8408843874931335, -0.6775660514831543, -0.9608429074287415, -0.7371110916137695, 11.42117977142334, 3.594266176223755, -0.5161185264587402, -0.8242433071136475, -0.4583587646484375, -0.42477867007255554, 0.9191774725914001, -0.2670925557613373, -0.5567941665649414, 97.39399719238281, -0.4116446375846863, -0.3808867633342743, -0.3668149709701538, -0.22649337351322174, -0.22388523817062378, 0.4518795609474182, -0.46158498525619507, 110.1222152709961, -0.49389466643333435, -0.8184410333633423, -0.32555973529815674, -0.05224964767694473, -0.20526716113090515, -12.303352355957031, -0.040718384087085724, -0.11035522073507309, -0.21083015203475952, 79.80033874511719, 88.04261779785156, 0.540647029876709, 0.0693846046924591, 0.4059399962425232, 0.1039746105670929, -0.10286895185709, -0.13233275711536407, 0.09262023121118546, 91.39602661132812, 70.29059600830078, -0.16574479639530182, -0.554405927658081, 47.85167694091797, -36.75209045410156, -0.15515011548995972, 0.0975303053855896, 0.11210978776216507, -0.18740850687026978, -0.3541460633277893, -0.32059091329574585, -0.2577117681503296, -0.23744109272956848, -0.1360265463590622, -0.010025538504123688, -1.3780848979949951, 0.0021154675632715225, -0.9787189364433289, -0.5059293508529663, -6.785722255706787, -0.4535842835903168, -0.27630648016929626, -0.45833268761634827, -0.5230143666267395, -0.07583164423704147, 0.08355328440666199, 0.171754390001297, -0.5364022254943848, -0.3701072931289673, -0.21269479393959045, 0.10152851045131683, -0.4154379069805145, -7.532531261444092, -9.859244346618652, 0.03940296545624733, -1.2337274551391602, -0.4335934519767761, 0.9166411757469177, 0.7453747987747192, 0.5866844654083252, 0.3642278015613556, 0.32438454031944275, -0.23731689155101776, -0.8489590287208557, -2.9175198078155518, 1.5359359979629517, 12.10604476928711, 1.0601284503936768, 37.87739562988281, 7.095449924468994, 3.9640674591064453, 7.444843769073486, 10.113004684448242, 6.432591915130615, 6.033285617828369, 5.461123466491699, 5.922774791717529, 4.597827911376953, 5.73243522644043, 5.280814170837402, 0.03771522641181946, 4.807012557983398, 3.884894371032715, 3.4321846961975098, 3.775815486907959, 2.2388792037963867, -1.4359182119369507, 3.187615394592285, 2.7590298652648926, 1.6618001461029053, 1.9376020431518555, 2.2107949256896973, 2.1880698204040527, 2.113541841506958, 1.8094573020935059, 2.5658693313598633, 1.4600869417190552, 2.9799880981445312, 1.4653410911560059, 1.8500776290893555, 0.9305185079574585, 1.3162413835525513, 3.284100294113159, 0.9997169375419617, 2.221728801727295, 0.7267639636993408, 0.7726669907569885, 0.267424613237381, 0.4987851083278656, 0.9479166269302368, 0.8012362122535706, 0.5337008237838745, -0.1159716472029686, 2.6097190380096436, -2.4153318405151367, 0.22665263712406158, 0.15801391005516052, 1.209650993347168, 0.1512717753648758, 0.1114291399717331, 4.474946975708008, 2.7808334827423096, 2.305875062942505, 0.02152210846543312, 1.5491405725479126, 0.9760637879371643, 0.4223584830760956, -0.3807240426540375, -0.3168112337589264, 0.755028247833252, 1.2472203969955444, 1.520928144454956, 1.5277856588363647, 0.8655574321746826, 0.21166647970676422, 6.648160934448242, 6.387720108032227, 3.919774293899536, 2.4727578163146973, 2.191469669342041, 2.349933624267578, 2.195526361465454, 2.667527914047241, 1.9361271858215332, 1.1334940195083618, 0.258385568857193, -0.06807686388492584, 2.6236867904663086, 2.6032185554504395, 1.106451153755188, 0.3257206678390503, 2.5508103370666504, 1.929329514503479, 1.281491994857788, 0.6217859387397766, -1.5021765232086182, -1.4461970329284668, 0.5640124082565308, 0.981315553188324, 1.2827445268630981, 0.5912262797355652, 1.178019642829895, -0.33531904220581055, -2.809582233428955, -3.1131229400634766, 1.4225068092346191, 3.87982177734375, 0.469290554523468, -1.1348881721496582, 0.6388782262802124, 3.050302028656006, 2.4826037883758545, 5.365139007568359, 6.385817050933838, 5.990123271942139, 5.323315620422363, 5.085732460021973, 3.3135428428649902, 3.0149080753326416, 4.425673007965088, -0.19109445810317993, 4.892195701599121, 3.839364767074585, 3.4483485221862793, 3.8701438903808594, 2.4748520851135254, 2.3508870601654053, 3.980473041534424, 2.858336925506592, 1.7441316843032837, 1.8300179243087769, 3.696619749069214, 5.169502258300781, 2.155214786529541, 2.1112329959869385, 2.4660096168518066, 1.4416824579238892, 2.9635796546936035, 1.4038550853729248, 1.577034831047058, 0.870784342288971, 1.4041846990585327, 3.450667381286621, 1.004298210144043, 1.0883773565292358, 0.6329202055931091, 0.7479889988899231, 0.30382758378982544, 0.5790987014770508, 1.1568552255630493, 5.794923782348633, 0.5792981386184692, -0.061572104692459106, 2.185656785964966, -2.268634557723999, 0.10133589059114456, 0.296243280172348, 1.9594827890396118, -0.05143973231315613, 0.09080538898706436, 1.847223162651062, 2.890036106109619, 2.4931607246398926, -0.1823013424873352, 0.4473358690738678, 0.9557338953018188, 0.3270702362060547, -0.25409695506095886, -0.3848559856414795, 0.542361319065094, 1.2222687005996704, 1.5160866975784302, 1.4482650756835938, 0.7508527040481567, 0.448066771030426, 0.2841876447200775, 6.169351577758789, 3.963287591934204, 2.449603796005249, 2.318325996398926, 2.2539281845092773, 2.2551498413085938, 2.824129104614258, 1.8977012634277344, 0.9984173774719238, 0.3091556131839752, -0.19289308786392212, 2.915731906890869, 2.447483539581299, 1.1825993061065674, 0.10495427995920181, 2.626293659210205, 2.1071934700012207, 1.5078914165496826, 0.45019951462745667, -1.297458291053772, -0.45740842819213867, 0.952518880367279, 0.6373777985572815, 0.7348952293395996, 0.353727251291275, 0.42706888914108276, -0.3269568383693695, -1.0887354612350464, -2.9002525806427, 1.4518436193466187, 12.14744758605957, 0.9752563238143921, 37.93968200683594, 7.127453804016113, 3.9040489196777344, 7.506072521209717, 8.715500831604004, 6.388621807098389, 6.213069438934326, 5.509678840637207, 5.967726230621338, 4.50136137008667, 5.619169235229492, 5.209662437438965, 0.020495720207691193, 4.934803009033203, 3.9512500762939453, 3.443044662475586, 3.9560184478759766, 1.5216786861419678, -1.3993854522705078, 3.08848237991333, 2.9669272899627686, 1.5964852571487427, 1.731454610824585, 2.2143537998199463, 2.2742791175842285, 2.073272943496704, 1.9499629735946655, 2.6253602504730225, 1.5912553071975708, 2.9273369312286377, 1.4746536016464233, 1.7879953384399414, 1.165419578552246, 1.4779512882232666, 3.3087761402130127, 0.8256181478500366, 2.0899481773376465, 0.6756985187530518, 0.6540297269821167, 0.17427369952201843, 0.6067681312561035, 0.970686674118042, 0.7315359711647034, 0.6330856680870056, -0.02533109486103058, 2.65073561668396, -2.3136680126190186, 0.31018516421318054, 0.3979533612728119, 1.4435147047042847, 0.2120596468448639, 0.06903615593910217, 8.270658493041992, 2.8063602447509766, 2.5225446224212646, 0.1363167017698288, 3.1430139541625977, 1.0987015962600708, 0.34112128615379333, -0.26429417729377747, -0.24070362746715546, 0.6392266154289246, 1.3987681865692139, 1.5764124393463135, 1.3250266313552856, 0.944579005241394, 0.34557822346687317, 6.569159507751465, 6.1601972579956055, 3.9310855865478516, 2.5563488006591797, 2.3274309635162354, 2.1285853385925293, 2.203329086303711, 2.6448850631713867, 2.114823579788208, 1.1883994340896606, 0.08191344141960144, -0.07570543885231018, 2.898005723953247, 2.5649702548980713, 1.3304966688156128, 0.3165499269962311, 2.591526508331299, 1.9233766794204712, 1.4951139688491821, 0.5217757225036621, -23.634342193603516, -2.67168927192688, 0.045292843133211136, 0.2216816544532776, 0.07813402265310287, 6.476638317108154, 1.0681407451629639, -0.094279944896698, 10.026422500610352, -4.954705715179443, 0.276483952999115, -0.9913234114646912, 0.19012588262557983, -13.826842308044434, 0.5055462718009949, 3.183793067932129, 2.4594969749450684, 1.4656578302383423, 1.395868182182312, 1.7472290992736816, 1.2462667226791382, 1.5416176319122314, 0.8516262769699097, 16.841707229614258, 1.8300551176071167, 1.1149345636367798, 1.0239062309265137, 0.988641619682312, 0.7956610321998596, 0.8884279727935791, 0.4951491057872772, 0.3537820875644684, 1.2845431566238403, 0.49777495861053467, 0.2427581548690796, 0.365629106760025, 4.162539482116699, 0.3248137831687927, 0.4120083749294281, 0.3664233982563019, 0.39584794640541077, 0.3796992599964142, 0.6232036352157593, 0.260934442281723, 4.111270904541016, 2.965893268585205, 1.2554230690002441, 5.462955474853516, 0.2593518793582916, 0.20760609209537506, 0.051538560539484024, 0.05514802783727646, 0.10930357128381729, 0.029312636703252792, 0.11183460056781769, 0.27811092138290405, 0.052516620606184006, 0.0238356851041317, 0.36149781942367554, -0.3040696084499359, 288.4954528808594, 0.11892435699701309, 0.29140424728393555, -0.053263161331415176, 0.11719116568565369, 0.19966453313827515, 0.12815673649311066, 0.43745794892311096, 0.059598274528980255, 0.09878852963447571, 0.24286161363124847, 0.03916141763329506, -0.10920850932598114, 0.2808002531528473, 0.5932399034500122, 0.24074918031692505, 0.41230329871177673, 0.34480297565460205, 0.2830016613006592, 0.11590540409088135, 1.2982475757598877, 1.4071950912475586, 0.9277039766311646, 0.6887012124061584, 0.36969977617263794, 0.493261456489563, 0.5307020545005798, 0.5004181861877441, 0.35800501704216003, 0.6476626396179199, 0.10353843122720718, -0.008556912653148174, 0.6868646144866943, 0.5910359621047974, 0.3235679268836975, 0.11743918061256409, 0.5103510618209839, 0.314921498298645, 0.40727105736732483, 0.6025475263595581, -1.3994519710540771, -1.7226303815841675, 0.531259298324585, 0.8950603604316711, 0.6087445020675659, 0.5132849216461182, 0.4879535436630249, -0.20305709540843964, -2.7216796875, -3.1903700828552246, 1.4612499475479126, 3.9633963108062744, 0.5909196138381958, -1.1266835927963257, 0.6652944087982178, 3.0919103622436523, 3.2945356369018555, 5.363988876342773, 6.400425434112549, 6.181777000427246, 5.76285457611084, 5.312102794647217, 3.345689058303833, 3.08036470413208, 5.172361850738525, 0.11408300697803497, 4.958394527435303, 3.9501912593841553, 3.4192490577697754, 3.753365993499756, 2.499711275100708, 1.8412697315216064, 4.04606294631958, 2.8555219173431396, 1.7463409900665283, 1.8255099058151245, 3.6650938987731934, 3.4058666229248047, 2.0260956287384033, 2.1895196437835693, 1.590471625328064, 1.3690470457077026, 2.8683502674102783, 1.2934595346450806, 1.5637098550796509, 1.056125283241272, 1.3485442399978638, 3.3485984802246094, 0.9271038174629211, 1.0521769523620605, 0.7092902660369873, 0.7690393924713135, 0.19443196058273315, 0.4285842776298523, 0.9676355123519897, 0.859369158744812, 0.6703961491584778, -0.45424211025238037, 2.389968156814575, -1.9599623680114746, 0.1280466467142105, 0.26896631717681885, 1.5135680437088013, 0.04972628876566887, 0.05607781186699867, 1.9092299938201904, 2.7298192977905273, 2.4488275051116943, -0.2617037892341614, 0.1572466790676117, 0.9914611577987671, 0.2766714096069336, -0.37643498182296753, -0.19370697438716888, 0.6235930919647217, 1.273690938949585, 1.6386196613311768, 1.5023044347763062, 0.9571459293365479, 0.4961557984352112, 6.636341571807861, 6.200307369232178, 3.970154285430908, 2.6529831886291504, 2.200371742248535, 2.152639627456665, 2.0386765003204346, 2.8019371032714844, 1.9440817832946777, 0.981881856918335, 0.2583397626876831, -0.11086706072092056, 2.876617431640625, 2.546860933303833, 1.1089571714401245, 0.28759852051734924, 2.5311782360076904, 1.8756697177886963, 1.3897396326065063, 0.5234129428863525, 0.8017023801803589, -2.3502840995788574, -0.0693027526140213, -0.21624846756458282, -0.20724447071552277, -6.735622882843018, -0.062252093106508255, 0.3753495216369629, 10.807839393615723, 9.636984825134277, -0.8205879926681519, -3.51694917678833, -1.2329678535461426, -0.40269768238067627, -3.9202659130096436, -7.355228900909424, -5.336204528808594, -2.728790283203125, -2.794332981109619, -2.214664936065674, -2.3095030784606934, -2.286529064178467, -1.1347591876983643, -1.370967984199524, -2.8154757022857666, 0.5419830083847046, -1.713679313659668, -1.5397913455963135, -0.7256280183792114, -1.6379294395446777, -0.7846157550811768, 5.786059379577637, -2.338231325149536, -1.1871604919433594, -0.6099388599395752, -0.9533227682113647, -0.9428920745849609, -65.0632095336914, -0.5772411823272705, -0.8050519824028015, -0.5091246962547302, -0.46976080536842346, -0.5779293179512024, -0.46858686208724976, -1.1925735473632812, -0.23946407437324524, -0.26331502199172974, -1.5529396533966064, -0.18409310281276703, -0.21518602967262268, -0.09123919159173965, -0.09589371085166931, -0.026181204244494438, -0.6270238161087036, -9.73526668548584, -51.97587203979492, -0.08429419994354248, 0.23809543251991272, -1.5656036138534546, 1.131711483001709, -0.05779992416501045, -0.01669810526072979, -1.3589448928833008, 0.0744287371635437, 0.10739950835704803, -46.482173919677734, -49.18745040893555, -0.8655964136123657, 0.20156894624233246, -0.05822359398007393, -0.31801721453666687, -0.011549745686352253, 0.15759193897247314, 0.09393136203289032, -1.6774038076400757, -0.3906159996986389, -0.6258748173713684, -0.5668478012084961, -0.16054296493530273, -0.04315653070807457, 60.08961486816406, -2.3439624309539795, -1.5780463218688965, -1.0342209339141846, -0.9736708402633667, -0.9788872599601746, -0.6396852731704712, -0.9882106184959412, -0.7097277641296387, -0.2984163165092468, -0.23520687222480774, 0.37739497423171997, -0.8094437122344971, -0.820475697517395, -0.35888633131980896, 0.060245271772146225, -1.015425205230713, -0.6828067302703857, -0.5472896099090576, -14.223094940185547, -0.3423876464366913, -1.995727777481079, 0.4365156888961792, -0.9568784832954407, -1.145176649093628, -1.0865919589996338, -0.04911554232239723, -1.697597861289978, 0.16821187734603882]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (30, 40), 'etaBin': (0.8, 1.37)}}, 'et2_eta2': {'discriminator': {'threshold': -0.06000081673264504, 'nodes': [100, 5, 1], 'bias': [0.08753234893083572, 0.13090386986732483, -0.054588861763477325, -0.01655721850693226, -0.003977576736360788, 0.008401443250477314], 'weights': [0.43544790148735046, -0.2538854479789734, -0.8397748470306396, -0.8486863374710083, -1.009407639503479, -1.0432308912277222, -0.3306425213813782, -0.6216546297073364, -0.6540290713310242, 3.440434455871582, 3.277256727218628, 2.0262792110443115, 0.32433223724365234, 0.43337640166282654, 0.46535080671310425, 0.43867695331573486, -3.022052764892578, 0.3197908103466034, 0.057934291660785675, -0.31624263525009155, -2.448324203491211, -1.2621147632598877, -0.879868745803833, -1.3610750436782837, -1.3672606945037842, -1.0881459712982178, -1.2026821374893188, -1.3869057893753052, -5.145620346069336, -0.8585528135299683, -1.1984525918960571, 0.5639861226081848, 1.2934925556182861, -2.4027976989746094, -1.1335461139678955, -1.1355934143066406, -3.581644058227539, -0.9561834931373596, -1.0029189586639404, -1.067145586013794, -0.5116070508956909, -0.8311207294464111, 1.7083876132965088, -1.2086714506149292, 3.2893738746643066, -1.0111340284347534, -1.9538010358810425, -1.0812138319015503, -1.1459778547286987, -1.1777316331863403, -0.8713607788085938, -1.1594771146774292, -0.903601348400116, -0.9112756848335266, -1.215891718864441, -1.238979697227478, -0.8064771294593811, 7.213140964508057, -0.33242931962013245, -0.4586346745491028, -1.0447313785552979, -0.9684170484542847, 1.1170791387557983, -0.8538909554481506, 7.183265209197998, -0.2465347796678543, 0.717339277267456, 2.2496159076690674, -1.066243052482605, -1.0407042503356934, -1.0538791418075562, -1.0579310655593872, 0.1311648041009903, 0.07169005274772644, -5.1904754638671875, -0.8873730897903442, -3.0730955600738525, -2.4272725582122803, -1.2928894758224487, -1.0526258945465088, -0.12569546699523926, -4.972345352172852, -2.46457576751709, -1.3521400690078735, -1.3025455474853516, -1.4406278133392334, -1.3122296333312988, -0.6634224653244019, 0.7299451231956482, -0.7153655886650085, -0.4721425175666809, -0.09434489160776138, -4.599591255187988, -1.6644418239593506, -1.239997148513794, -1.8230412006378174, -0.07049793004989624, 0.06914123892784119, -0.6952479481697083, -0.9023397564888, -0.9573584198951721, 0.06490606814622879, 0.9684723615646362, 0.874728798866272, 1.102800726890564, 1.0971516370773315, 0.2597167491912842, 0.4802432060241699, -0.21859869360923767, -3.431432008743286, -3.1913387775421143, -1.9646916389465332, -0.5874313116073608, -0.20583021640777588, -0.39834147691726685, -0.33817678689956665, 2.970319986343384, -0.2858656644821167, -0.05120851844549179, 0.3205240070819855, 2.590973138809204, 1.2641915082931519, 0.2522640824317932, 1.477105975151062, 1.3650877475738525, 1.1837058067321777, 1.1533266305923462, 1.3192018270492554, 4.9258270263671875, 0.9556280374526978, 1.1799613237380981, -0.565028965473175, -1.309804916381836, 1.196069359779358, 1.1629536151885986, 1.2170822620391846, 3.508270740509033, 1.116434097290039, 0.9529591202735901, 1.0607781410217285, 0.4331416189670563, 0.8688268661499023, -1.6487596035003662, 1.169366478919983, -0.22837479412555695, 1.1421794891357422, 1.7672773599624634, 1.0516108274459839, 1.0632296800613403, 1.2456525564193726, 0.8417384624481201, 0.9716588854789734, 0.9690882563591003, 0.8602927327156067, 1.1396955251693726, 1.0545265674591064, 0.8554439544677734, -7.33428430557251, 0.3280395567417145, 0.5355259776115417, 1.0162546634674072, 1.207880973815918, 0.3732747435569763, 0.813510000705719, -7.314406871795654, 0.3517904579639435, -0.6806394457817078, -2.2064120769500732, 1.0840307474136353, 1.0318522453308105, 1.0951234102249146, 0.9928448796272278, -0.3500291705131531, -0.21853646636009216, 1.8853754997253418, 0.9339408874511719, 3.0617027282714844, 2.3884851932525635, 1.3142625093460083, 0.9540764689445496, 0.15042097866535187, 4.968503952026367, 2.4259274005889893, 1.1946336030960083, 1.4957234859466553, 1.5735015869140625, 1.2180371284484863, 0.7528160810470581, -0.8782432079315186, 0.6123750805854797, 0.5387499928474426, -0.205851748585701, 4.488345146179199, 1.5635864734649658, 1.1872773170471191, 1.8283729553222656, 0.07930629700422287, -0.08956926316022873, 0.4332733154296875, 0.9245277643203735, 0.3053550720214844, -0.10476681590080261, -0.9733907580375671, -0.9292745590209961, -0.9025076627731323, -1.049320101737976, -0.28465980291366577, -0.4118485748767853, 0.031934238970279694, 3.515028476715088, 3.28084397315979, 2.0305871963500977, 0.6264911890029907, 0.3885815441608429, 0.4074462652206421, 0.2582876980304718, -3.14158034324646, 0.2844088077545166, 0.24454064667224884, -0.34183499217033386, -2.518915891647339, -1.344730019569397, -0.38430649042129517, -1.2529305219650269, -1.2437069416046143, -1.053612470626831, -1.1766802072525024, -1.2144511938095093, -4.997520446777344, -0.9604114294052124, -1.1055437326431274, 0.5908668637275696, 1.2696261405944824, -1.122104525566101, -1.1961266994476318, -1.1486186981201172, -3.64306640625, -0.9639080166816711, -1.072693109512329, -1.1256461143493652, -0.4536110460758209, -0.8945903182029724, 2.9062373638153076, -1.1463106870651245, 0.21846027672290802, -1.1409780979156494, -1.8196452856063843, -1.0657037496566772, -1.059019684791565, -1.1091536283493042, -0.8726768493652344, -1.1519840955734253, -0.9086622595787048, -1.0277389287948608, -1.352437138557434, -1.129360556602478, -0.8972620964050293, 7.354781627655029, -0.30253973603248596, -0.3924461007118225, -0.9960758686065674, -1.112428903579712, 1.2012749910354614, -0.8379755616188049, 7.227231502532959, -0.4771038591861725, 0.729102611541748, 2.2410333156585693, -1.0523523092269897, -0.8465303778648376, -1.1298357248306274, -0.9771705865859985, 0.2529947757720947, 0.1848514974117279, -1.8511106967926025, -0.8738077878952026, -2.8375940322875977, -2.4110536575317383, -1.272687554359436, -0.9823499917984009, -0.03202511742711067, -4.962332725524902, -2.3779337406158447, -1.2724038362503052, -1.4004063606262207, -1.4816577434539795, -1.1140007972717285, -0.6948519349098206, 0.8216823935508728, -0.7394312024116516, -0.5942984223365784, 0.07731347531080246, -4.515483856201172, -1.7112752199172974, -1.0836892127990723, -1.9471524953842163, -0.09571601450443268, -0.014971595257520676, -0.2608397603034973, -0.9047937989234924, 0.27724403142929077, -0.01901376247406006, -0.7699190378189087, -0.7830173969268799, -1.167035460472107, -0.9709010720252991, -0.10496655106544495, -0.4907691478729248, -0.6567061543464661, 3.4595987796783447, 3.2112812995910645, 1.9043993949890137, 0.5714796781539917, 0.35154953598976135, 0.4668389558792114, 0.43017899990081787, -3.0579068660736084, 0.3886381983757019, 0.03927021473646164, -0.19387896358966827, -2.649522304534912, -1.236520528793335, -0.32060861587524414, -1.4439131021499634, -1.3942391872406006, -1.064635992050171, -1.2871571779251099, -1.2962430715560913, -4.978155136108398, -0.8016833066940308, -1.3351682424545288, 0.5719218850135803, 1.3680896759033203, -1.1584571599960327, -1.058614730834961, -1.2172975540161133, -3.5908002853393555, -0.8975604176521301, -0.5588316917419434, -1.0803050994873047, -0.4324931204319, -0.8710951805114746, 1.5746749639511108, -1.1904040575027466, 3.1687188148498535, -1.1420321464538574, -1.9427047967910767, -0.9957467913627625, -0.9661791920661926, -1.1866260766983032, -0.9056214094161987, -0.9388925433158875, -0.888228178024292, -0.9867854714393616, -1.320128321647644, -1.2492583990097046, -0.8571321964263916, 7.26641321182251, -0.2533717751502991, -0.34315019845962524, -1.0717334747314453, -1.0420279502868652, 1.2418256998062134, -0.8049693703651428, 7.271480083465576, -0.28884080052375793, 0.6832298636436462, 2.0866901874542236, -1.048599362373352, -1.0400032997131348, -0.9879794120788574, -1.2031575441360474, 0.3338753581047058, 0.005202845204621553, -1.870332956314087, -1.0473015308380127, -3.028496742248535, -2.3024778366088867, -1.366024136543274, -1.0702126026153564, -0.011121917515993118, -4.837756156921387, -2.5035622119903564, -1.2208665609359741, -1.485734224319458, -1.5851771831512451, -1.192561388015747, -0.7502496838569641, 0.8806524872779846, -0.7586238980293274, -0.5902004837989807, 0.07082610577344894, -4.474475860595703, -1.656426191329956, -1.0673701763153076, -1.8516955375671387, -0.10346166789531708, -0.03432529419660568, -0.3299255967140198, -0.9189863801002502, -0.34211108088493347, 0.15302442014217377, 0.8172764778137207, 0.9279978275299072, 1.0501629114151, 1.0340768098831177, 0.31618791818618774, 0.8232476711273193, 0.5855967402458191, -3.346769332885742, -3.2345681190490723, -1.9675462245941162, -0.5035005807876587, -0.3756554126739502, -0.33215922117233276, -0.45611947774887085, 3.185671091079712, -0.474907249212265, -0.0019796714186668396, 0.2282453030347824, 2.537781238555908, 1.1804982423782349, 0.892102837562561, 1.4359885454177856, 1.205693006515503, 1.2003264427185059, 1.3300193548202515, 1.310004472732544, 4.988697052001953, 0.8599144220352173, 1.336311936378479, -0.3725610375404358, -1.3246933221817017, 1.1793049573898315, 1.14927077293396, 1.1568491458892822, 3.6878509521484375, 0.9457520246505737, 0.560152530670166, 1.0932188034057617, 0.3348715007305145, 0.8299450278282166, -2.872796058654785, 1.1127365827560425, -3.654811143875122, 0.9817737936973572, 1.852124810218811, 1.057611346244812, 0.9731946587562561, 1.120308756828308, 1.0147731304168701, 1.0878523588180542, 1.0194711685180664, 1.0786226987838745, 1.2074791193008423, 1.204982876777649, 0.8299685120582581, -7.349228382110596, 0.20936447381973267, 0.5802146792411804, 1.1650177240371704, 0.9715105295181274, -1.0590862035751343, 0.6879644989967346, -7.308121204376221, 0.3085511028766632, -0.6069979071617126, -2.2799665927886963, 1.1295291185379028, 0.8643592596054077, 1.0620927810668945, 1.2044507265090942, -0.29747265577316284, -0.2227703034877777, 5.236808776855469, 1.0438685417175293, 2.8584067821502686, 2.376181125640869, 1.170770287513733, 0.966115415096283, 0.0054801031947135925, 5.0053391456604, 2.294739246368408, 1.3594955205917358, 1.4909740686416626, 1.517390489578247, 1.2738871574401855, 0.6205419301986694, -0.777568519115448, 0.808970034122467, 0.539140522480011, -0.12814348936080933, 4.707989692687988, 1.5344207286834717, 1.1467335224151611, 1.7948827743530273, 0.014194371178746223, -0.06376484781503677, 0.33352214097976685, 0.8976209163665771, 1.4930099248886108, -0.8525076508522034, 1.7975599765777588, 1.2298215627670288, -1.9667859077453613]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (30, 40), 'etaBin': (1.37, 1.54)}}, 'et2_eta3': {'discriminator': {'threshold': -0.10500081200152636, 'nodes': [100, 13, 1], 'bias': [0.12301873415708542, 0.12412352859973907, -0.14823086559772491, -0.1450803130865097, -0.12146025896072388, -0.04708926007151604, -0.20305420458316803, -0.13244207203388214, -0.1551319658756256, 0.12996461987495422, 0.16650205850601196, -0.11159323900938034, -0.0754173994064331, 0.11395751684904099], 'weights': [0.30418726801872253, 0.8497653007507324, -0.6887367963790894, -1.1621745824813843, -0.6113541126251221, -1.057387113571167, -0.3409591019153595, -0.6250436305999756, 1.0915658473968506, 1.1697919368743896, 0.11023081094026566, -2.862215280532837, -0.25837546586990356, -0.1397186815738678, -2.98982310295105, -3.6729938983917236, -1.3729815483093262, -4.9331135749816895, -3.3440096378326416, -2.172529935836792, -1.5044852495193481, -4.413820743560791, -1.3811358213424683, -1.588523507118225, -4.195178508758545, -2.3188867568969727, -0.6977825164794922, -1.3636525869369507, -0.4245065152645111, -1.4669708013534546, -0.772320568561554, -1.9325722455978394, -1.1024763584136963, 0.2176528424024582, -1.571555495262146, -1.6388942003250122, -0.73421311378479, -1.843888759613037, -1.0722200870513916, -0.4295573830604553, -0.45321106910705566, -0.7210465669631958, -0.7969924211502075, -1.5129765272140503, -0.9125153422355652, -0.47102102637290955, -0.9808535575866699, -1.9205478429794312, 0.28503116965293884, -0.2707855701446533, 0.21478445827960968, -0.3487158715724945, -0.7190283536911011, -0.5389546155929565, -0.6640545725822449, -0.34965771436691284, -0.8494725227355957, -1.8142505884170532, 0.4217793345451355, -0.17951776087284088, -0.16311372816562653, -1.8624355792999268, -0.05131518840789795, 0.6620866656303406, -0.06519957631826401, 0.26691943407058716, -1.0862338542938232, 0.47569042444229126, 2.3826143741607666, -0.9888518452644348, -0.6096920371055603, -2.0633859634399414, 0.1741425096988678, 0.09333915263414383, -1.3368562459945679, -1.0445584058761597, -1.8494149446487427, -1.421730637550354, -0.8431060314178467, -0.9251859188079834, -0.5813602805137634, -3.3905375003814697, -2.6186413764953613, -2.1882357597351074, -1.119201898574829, -0.9595183730125427, -1.125844120979309, -0.09222555160522461, -0.8053295016288757, -1.335995078086853, -0.6404117941856384, -0.15574225783348083, -2.905750036239624, -1.2272462844848633, -0.2803206145763397, -1.5305250883102417, -0.9465407133102417, -0.14035649597644806, -0.21217818558216095, -6.7821831703186035, 0.4178466796875, 0.9353280067443848, -0.5816575288772583, -1.1598467826843262, -0.5564528703689575, -0.9457266330718994, -0.16822941601276398, -0.5664964318275452, 0.9762808680534363, 1.2137621641159058, 0.437343031167984, -2.7996912002563477, -0.3631327748298645, -0.24042445421218872, -2.7883148193359375, -2.5495426654815674, -1.263527750968933, -5.11525297164917, -3.1762044429779053, -2.0281825065612793, -1.6031328439712524, -4.4091362953186035, -1.3487286567687988, -1.641599178314209, -4.1170244216918945, -2.3824644088745117, -0.6433667540550232, -1.461822509765625, -0.39284271001815796, -1.3839620351791382, -0.693322479724884, -2.0719099044799805, -1.0699131488800049, 0.1502453237771988, -1.7072285413742065, -1.4347018003463745, -0.6855227947235107, -1.8113669157028198, -1.0726268291473389, -0.24809420108795166, -0.3721972107887268, -0.6835063695907593, -0.801081657409668, -1.542225956916809, -0.7369579076766968, -0.639552652835846, -0.9209814071655273, -1.8816319704055786, 0.19405755400657654, -0.2908840775489807, 0.14995653927326202, -0.2907114028930664, -0.7556899785995483, -0.5869253873825073, -0.6548513770103455, -0.28700974583625793, -0.7130810022354126, -1.757418155670166, 0.3907534182071686, -0.07897394150495529, -0.27136585116386414, -2.0624635219573975, -0.2664145529270172, 0.4506451189517975, -0.08523759245872498, 0.1642151027917862, -0.8453987836837769, 0.25697019696235657, 2.3169705867767334, -0.9964538216590881, -0.6514313817024231, -2.0524673461914062, 0.1995789110660553, 0.051973167806863785, -1.3547682762145996, -1.0910674333572388, -1.7880864143371582, -1.3799949884414673, -0.8465836644172668, -0.957261323928833, -0.564211905002594, -3.5106306076049805, -3.1596767902374268, -2.178257942199707, -0.9829910397529602, -0.9245108962059021, -1.0569998025894165, -0.06946852803230286, -0.7025414109230042, -1.2926933765411377, -0.6913346648216248, -0.1600404530763626, -3.0791871547698975, -1.2459183931350708, -0.2689438760280609, -1.4641588926315308, -1.0716415643692017, -0.1361074596643448, -0.11653489619493484, -6.724954128265381, -0.3965246379375458, -0.8558112382888794, 0.5742728114128113, 1.2904711961746216, 0.5677658319473267, 1.086992621421814, 0.17724068462848663, 0.8273959755897522, -1.094128131866455, -1.1877236366271973, -0.45167985558509827, 2.8013670444488525, 0.481206476688385, 0.2692694067955017, 2.8116722106933594, 2.666585922241211, 1.3945326805114746, 4.969942092895508, 3.330779790878296, 2.2182538509368896, 1.571179747581482, 4.505165100097656, 1.344825267791748, 1.698574185371399, 4.963958263397217, 2.4525885581970215, 0.7026008367538452, 1.4111098051071167, 0.5565152168273926, 1.3050004243850708, 0.7208021283149719, 2.0179920196533203, 1.0633853673934937, -0.13319465517997742, 1.568001389503479, 1.4417909383773804, 0.6033551096916199, 1.9216288328170776, 1.117271065711975, 0.28853896260261536, 0.2680075168609619, 0.7167360186576843, 0.8398164510726929, 1.6980571746826172, 0.7816507816314697, 0.5635744333267212, 0.9330514669418335, 2.029628038406372, -0.15740585327148438, 0.21728986501693726, -0.0327858105301857, 0.2960619032382965, 0.7494935989379883, 0.6769182085990906, 0.4767330288887024, 0.33478879928588867, 0.8754949569702148, 1.8766576051712036, -0.39680272340774536, 0.09256334602832794, 0.0658884197473526, 1.8434150218963623, 0.05762580782175064, -0.6603575944900513, 0.1237194836139679, -0.2717497646808624, 0.8832526206970215, -0.3037146329879761, -2.31727933883667, 0.838454008102417, 0.6482180953025818, 1.9509977102279663, -0.0838266909122467, -0.01945280097424984, 1.4060927629470825, 1.3620051145553589, 1.7707526683807373, 1.4466333389282227, 0.93125981092453, 0.9794870018959045, 0.5605012774467468, 3.5484373569488525, 2.9119770526885986, 1.951120138168335, 1.035802960395813, 0.773888111114502, 1.120093584060669, 0.045821741223335266, 0.6521666646003723, 1.1093902587890625, 0.5105617046356201, 0.16685819625854492, 2.9315502643585205, 1.0994263887405396, 0.3065134286880493, 1.5813195705413818, 1.057920217514038, 0.2084522694349289, 0.1900288313627243, 6.71383810043335, -42.46225357055664, -70.96731567382812, 0.07631244510412216, 19.227619171142578, 3.3918514251708984, 18.458330154418945, 0.9544081687927246, 0.4319327771663666, -1.5471141338348389, 3.1591649055480957, -3.498514413833618, 11.57614803314209, 4.312415599822998, 9.06739330291748, -20.08837127685547, 1.2611100673675537, 4.591228008270264, 3.2659976482391357, -8.876774787902832, 2.2359485626220703, -29.228708267211914, 2.082066059112549, 1.5442314147949219, 1.4400252103805542, 17.212377548217773, 1.7645370960235596, -0.542725145816803, 1.4210560321807861, 1.026045560836792, 1.5745453834533691, -28.105018615722656, 1.1648740768432617, -19.639842987060547, 4.012938499450684, -0.051800403743982315, 1.4506182670593262, 0.8734657168388367, 1.3684583902359009, -0.8187167644500732, 1.4108632802963257, 0.6901399493217468, 26.724184036254883, 11.367783546447754, -7.4334940910339355, -9.515633583068848, 0.939599335193634, 0.5313428640365601, 0.720454752445221, -0.45186764001846313, 0.3764512538909912, -0.35271570086479187, 0.21664610505104065, -2.4248080253601074, -0.2605746388435364, 0.7959389090538025, 0.6855553388595581, 0.5836410522460938, 14.972626686096191, 0.3206372857093811, 4.867676734924316, 1.4906827211380005, -1.5150582790374756, 6.724363327026367, 0.7121997475624084, 16.79769515991211, 6.245677471160889, 0.8168960809707642, -0.3535807132720947, -0.9013701677322388, 19.182355880737305, 0.6428565382957458, 1.3382554054260254, -0.3308599293231964, -0.29333075881004333, 0.9137106537818909, 0.5301271677017212, 1.0323295593261719, 1.3004313707351685, 1.1908447742462158, 0.8775336146354675, 33.16133117675781, 2.3310062885284424, 2.678463935852051, 1.7283899784088135, 0.9873225092887878, -5.185284614562988, 1.2016500234603882, 12.617661476135254, -50.8746223449707, -6.66983699798584, 0.5779006481170654, 0.7036734223365784, 14.482378005981445, 1.5860333442687988, 0.4311436116695404, 1.172850489616394, -1.7398306131362915, 1.2602179050445557, -4.303325176239014, -688.7769775390625, -0.5277848243713379, -1.0461124181747437, 0.6094116568565369, 1.1573532819747925, 0.7563377022743225, 0.916793942451477, 0.35657933354377747, 0.8378023505210876, -1.0734639167785645, -1.1636098623275757, -0.4562557339668274, 2.833606481552124, 0.5163435339927673, 0.32135361433029175, 2.8050928115844727, 2.634460687637329, 1.279829740524292, 4.988045692443848, 3.1871063709259033, 2.096364736557007, 1.503313660621643, 4.611399173736572, 1.5462313890457153, 1.6967856884002686, 5.010919094085693, 2.3433640003204346, 0.668563723564148, 1.561421275138855, 0.49576336145401, 1.444431185722351, 0.841437578201294, 2.066014528274536, 1.0146316289901733, -0.21768641471862793, 1.7231591939926147, 1.5794697999954224, 0.5889291167259216, 2.0158655643463135, 1.012094497680664, 0.28763899207115173, 0.38233309984207153, 0.6044565439224243, 0.6848258376121521, 1.5692805051803589, 0.7184041142463684, 0.6654860377311707, 0.789604663848877, 1.8791120052337646, -0.2951842248439789, 0.17412510514259338, -0.08447487652301788, 0.33074140548706055, 0.5779514312744141, 0.5859646797180176, 0.5065541863441467, 0.444772332906723, 0.9155693054199219, 1.8753169775009155, -0.3768397867679596, 0.0687597393989563, 0.20108890533447266, 1.9811288118362427, 0.07897226512432098, -0.5760437250137329, 0.1798102855682373, -0.3355177640914917, 0.8649784326553345, -0.25917550921440125, -2.5271005630493164, 0.9552915692329407, 0.6989930272102356, 2.0957932472229004, -0.07641968131065369, -0.12085721641778946, 1.424972653388977, 1.3087549209594727, 1.7453577518463135, 1.3189929723739624, 0.9482564330101013, 1.064982295036316, 0.6298055648803711, 3.460169553756714, 2.7317564487457275, 2.083712577819824, 0.905897319316864, 0.9155291318893433, 1.1221959590911865, -0.04841718077659607, 0.7889496684074402, 1.128574013710022, 0.6327909827232361, 0.1991017609834671, 3.0771656036376953, 1.2395368814468384, 0.4259513318538666, 1.556912899017334, 0.9002264738082886, 0.3124716281890869, 0.20730529725551605, 6.586654186248779, 14.063756942749023, 8.218186378479004, -0.14519159495830536, 4.272008419036865, 7.982744216918945, 3.923720598220825, 0.22982282936573029, 6.627468585968018, -0.1453406661748886, 0.5045799612998962, -0.36684590578079224, -1.4339826107025146, -0.18114908039569855, -0.2483782172203064, -1.1930547952651978, -0.5184308290481567, -0.13267658650875092, -0.7445982098579407, -1.9974291324615479, -0.23628738522529602, -1.1211274862289429, -1.020624041557312, -66.09517669677734, -5.356493949890137, -1.3376556634902954, -0.34383901953697205, -0.4764726161956787, -0.051435891538858414, -0.13659794628620148, -0.25425228476524353, -0.4077799320220947, -0.535479724407196, -0.25888094305992126, 0.9030393958091736, -23.053281784057617, -39.430747985839844, -1.5864990949630737, -5.059427261352539, -0.26177147030830383, 0.4109734892845154, 0.07736000418663025, 0.481022447347641, 0.04597252234816551, -61.85880661010742, -0.4914794862270355, 0.07932600378990173, -0.7798473238945007, 54.87738037109375, -0.03970981761813164, -0.3524216115474701, -69.59514617919922, -23.8482666015625, -52.1743278503418, -1.2950568199157715, 0.019184764474630356, 15.454039573669434, -0.2506156265735626, -0.061185866594314575, -0.03239520639181137, -14.93748664855957, 3.340256929397583, 0.15641818940639496, -2.3994925022125244, 1.835261344909668, -13.6608247756958, 77.0022201538086, -0.19211140275001526, 19.97312355041504, -36.92919921875, -0.17449429631233215, -0.09447365999221802, 78.25885009765625, -5.779533863067627, -5.420243263244629, -0.3052462637424469, -3.9634804725646973, -0.5211328268051147, -0.31938979029655457, -0.2517760097980499, -0.2685023844242096, -212.9854736328125, -30.17164421081543, -24.490009307861328, -10.645490646362305, -21.07343864440918, -11.246722221374512, 0.04942397400736809, -71.0390625, 11.424042701721191, 10.798490524291992, -0.0429750494658947, 4.414422035217285, -2.6547229290008545, -4.820148944854736, -0.12145984172821045, -0.5519380569458008, 3.101762533187866, 4.2444658279418945, -3.6345603466033936, -0.562982976436615, -1.2166202068328857, -4.596149921417236, -0.7959448099136353, -6.384563446044922, -4.002380847930908, 0.8029256463050842, -0.35959765315055847, 3.7923853397369385, -16.618196487426758, -9.554988861083984, 1.1377618312835693, 47.795204162597656, 109.44261932373047, 24.423660278320312, -3.6046438217163086, -22.6756534576416, -260.8214416503906, -63.076087951660156, 15.552159309387207, 0.4022412896156311, -0.11724751442670822, 0.36431413888931274, -2.5042953491210938, -23.82703399658203, -85.89523315429688, -0.4229048192501068, 24.80335235595703, -2.1182053089141846, -0.4451961815357208, -0.012475650757551193, 26.245166778564453, 31.059240341186523, -35.73555374145508, 41.04964828491211, 36.78553009033203, 0.12180949747562408, -0.23237749934196472, 34.898136138916016, 0.4524468183517456, 41.13677215576172, 21.005521774291992, 15.234944343566895, -2.944014549255371, 0.13965633511543274, 50.49112319946289, -4.110185623168945, -0.39785847067832947, -43.943660736083984, -0.42626452445983887, -24.15531349182129, 0.644363284111023, -13.422357559204102, 49.38895797729492, -0.06469817459583282, 37.11933135986328, 38.50857162475586, 2.538553237915039, -32.90419006347656, -0.6295183897018433, -15.45336627960205, 52.15901565551758, 18.984493255615234, -2.1657252311706543, 25.40456771850586, -0.34799468517303467, -5.49114990234375, 26.026382446289062, -15.492897033691406, 47.72470474243164, -13.565674781799316, -0.576643168926239, 7.9617767333984375, 0.061585333198308945, 0.7577609419822693, -6.103629112243652, -14.067750930786133, -18.153383255004883, -3.8901801109313965, -0.06462503224611282, -3.9029226303100586, -51.21853256225586, 14.732786178588867, -26.661537170410156, 4.567901134490967, 10.833147048950195, 0.04311544820666313, 17.802446365356445, -4.474728107452393, -2.7988169193267822, -3.1032097339630127, -1.3325752019882202, 10.483931541442871, -45.62336349487305, -0.5037767887115479, 2.8887016773223877, 0.20716409385204315, 0.29963305592536926, 6.20416784286499, -0.5406949520111084, 1.17706298828125, -0.5078774094581604, -0.9594403505325317, 0.5891019701957703, 1.230588436126709, 0.7258692979812622, 0.918239951133728, 0.28832927346229553, 0.7563337087631226, -0.9690443277359009, -1.15109121799469, -0.5003306269645691, 2.9191904067993164, 0.369613915681839, 0.11917898803949356, 3.0260579586029053, 2.614006280899048, 1.4625333547592163, 5.118364334106445, 3.2308008670806885, 2.204737663269043, 1.5220906734466553, 4.58559513092041, 1.452600121498108, 1.6444710493087769, 5.074839115142822, 2.4159789085388184, 0.579825758934021, 1.4140586853027344, 0.5123767852783203, 1.2717394828796387, 0.7904630303382874, 2.1074490547180176, 0.9395533800125122, -0.0409160740673542, 1.589781641960144, 1.4682937860488892, 0.7720704078674316, 1.809342861175537, 1.080473780632019, 0.33711913228034973, 0.43754005432128906, 0.6236121654510498, 0.7613350749015808, 1.7258000373840332, 0.7839359045028687, 0.5030819177627563, 0.9207557439804077, 1.8706471920013428, -0.34089863300323486, 0.34998661279678345, -0.23262326419353485, 0.30890199542045593, 0.7487384080886841, 0.6121823787689209, 0.6804398894309998, 0.40631455183029175, 0.7663447260856628, 1.7124123573303223, -0.31505870819091797, 0.2561591565608978, 0.11884371936321259, 1.9870301485061646, 0.23096242547035217, 0.3338371515274048, 0.11443057656288147, -0.32183289527893066, 0.8388746976852417, -0.389498233795166, -2.471872091293335, 1.0024690628051758, 0.6032493710517883, 1.9581527709960938, -0.005172703880816698, -0.1352144181728363, 1.195815920829773, 1.1974705457687378, 1.8081310987472534, 1.469057321548462, 0.8334143757820129, 0.8341609835624695, 0.7078484296798706, 3.70715069770813, 3.0509819984436035, 2.0596837997436523, 0.9122124314308167, 0.8366513848304749, 1.0534800291061401, 0.056742988526821136, 0.7957990765571594, 1.1165286302566528, 0.6075904965400696, 0.11813954263925552, 3.0899298191070557, 1.1223469972610474, 0.4400268495082855, 1.4853813648223877, 1.0389213562011719, 0.30533814430236816, 0.25351232290267944, 6.785035610198975, -0.39140114188194275, -1.139840006828308, 0.6731201410293579, 1.1550958156585693, 0.5638008117675781, 1.0792462825775146, 0.3624536395072937, 0.6030336022377014, -1.1120805740356445, -1.2129931449890137, -0.2030080407857895, 2.742615222930908, -1.0337464809417725, 0.30721890926361084, 3.462728500366211, 2.477478504180908, 1.182031273841858, 4.89307165145874, 3.2948129177093506, 2.036480188369751, 1.670960545539856, 4.506345272064209, 1.5122008323669434, 2.244701623916626, 4.131073474884033, 2.262995958328247, 0.7003257274627686, 1.3925265073776245, 0.5528702735900879, 1.4417014122009277, 0.7929090857505798, 2.0238447189331055, 1.1691749095916748, -0.19980467855930328, 1.6516227722167969, 1.969643235206604, 0.761513888835907, 1.9527347087860107, 1.0873714685440063, 0.22053319215774536, 0.7128230929374695, 0.6049107313156128, 0.8591893315315247, 1.5111196041107178, 0.732628583908081, 0.558334231376648, 0.9773120880126953, 1.8561618328094482, -0.39211851358413696, 0.005776680540293455, -0.16405422985553741, 0.4031231999397278, 0.552124559879303, 0.4953479766845703, 0.4938861131668091, 0.3383435308933258, 0.7426741123199463, 1.6564736366271973, -0.41170963644981384, 0.03124856762588024, 0.2252117395401001, 1.9004722833633423, 0.16434632241725922, 0.2846846580505371, 0.11429283022880554, -0.3527865409851074, 0.9703900814056396, -0.3925929069519043, -2.333373785018921, 0.8955271244049072, 0.7136886119842529, 2.0322043895721436, -0.05712644010782242, -0.18348143994808197, 1.307091236114502, 1.2848570346832275, 1.8391969203948975, 1.3917560577392578, 0.8969113230705261, 1.0127688646316528, 0.7510788440704346, 3.6391384601593018, 3.945478677749634, 2.1604669094085693, 0.9281222820281982, 1.2677093744277954, 1.0914695262908936, 0.041172102093696594, 0.8696383833885193, 1.3039631843566895, 0.6090715527534485, 0.30596521496772766, 3.606468439102173, 1.1730620861053467, 0.3334497809410095, 1.609261155128479, 1.029264211654663, 0.32256901264190674, 0.1050935611128807, 6.615805625915527, 0.44275766611099243, 1.0860676765441895, -0.6361497044563293, -1.1486839056015015, -0.7489868402481079, -1.0916446447372437, -0.1996331810951233, -0.5125791430473328, 0.8987367749214172, 1.3552607297897339, 0.1900576651096344, -2.9276974201202393, -0.34848079085350037, -0.23827406764030457, -3.0009052753448486, -3.120072603225708, -1.3448060750961304, -4.940805435180664, -3.394080400466919, -2.1645140647888184, -1.6466408967971802, -4.567572593688965, -1.4169425964355469, -2.3487601280212402, -4.133004188537598, -2.437957525253296, -0.5606707334518433, -1.458410382270813, -0.554598867893219, -1.2566148042678833, -0.6758361458778381, -1.9483543634414673, -1.0569878816604614, 0.09677363187074661, -1.5889736413955688, -1.4748929738998413, -0.6199264526367188, -1.9844932556152344, -1.0697342157363892, -0.2587957978248596, -0.2410532832145691, -0.6015037298202515, -0.7069128751754761, -1.6559184789657593, -0.9482842683792114, -0.6457294225692749, -0.787306547164917, -1.9159588813781738, 0.3557521402835846, -0.2937186360359192, 0.23418042063713074, -0.4342738687992096, -0.6624311208724976, -0.5870678424835205, -0.608083963394165, -0.46999478340148926, -0.7522498965263367, -1.8880794048309326, 0.4712357521057129, -0.02299511805176735, -0.29113438725471497, -1.9809561967849731, -0.0999230444431305, -0.21887987852096558, -0.04071185737848282, 0.2224041372537613, -0.9774309396743774, 0.3506249785423279, 2.428495168685913, -0.865532636642456, -0.813362181186676, -2.069868564605713, 0.12737295031547546, 0.2549683749675751, -1.2262831926345825, -1.2279356718063354, -1.8744863271713257, -1.378003716468811, -0.9208574891090393, -0.8273350596427917, -0.5485767722129822, -3.598797082901001, -3.7702102661132812, -2.08737850189209, -0.973261833190918, -1.2275522947311401, -1.1310789585113525, -0.11530504375696182, -0.83946293592453, -1.3033760786056519, -0.694290041923523, -0.28694257140159607, -3.6592657566070557, -1.0928118228912354, -0.22903433442115784, -1.5917664766311646, -1.180234670639038, -0.42320385575294495, -0.13401277363300323, -6.652355670928955, 5.676045894622803, 19.770729064941406, 23.222349166870117, 11.33836555480957, -0.382088303565979, -1.095794677734375, -0.13374540209770203, -8.887331008911133, -4.773684024810791, -7.823843002319336, -9.213000297546387, -11.879658699035645, 173.0123748779297, 41.449607849121094, -13.581475257873535, 66.26525115966797, 8.883946418762207, -7.707841396331787, 49.82863235473633, 84.21129608154297, -1.0134878158569336, 134.4239044189453, -1.493996024131775, -1.3615819215774536, 8.893420219421387, 9.426976203918457, -0.5602660775184631, 26.191953659057617, -12.173545837402344, -1.5878174304962158, -2.582836627960205, -0.7510395646095276, -3.0528995990753174, -0.7998068928718567, 10.311631202697754, 41.3348274230957, 2.155888319015503, -2.0228519439697266, -22.477628707885742, 23.287004470825195, 3.4981820583343506, 9.579017639160156, 5.486382484436035, -1.6653884649276733, 15.744100570678711, -0.6553637385368347, 5.699670314788818, -24.563302993774414, 0.448487251996994, -2.5196456909179688, 67.56224822998047, -0.7288800477981567, 98.18753814697266, -12.992110252380371, -33.887813568115234, 15.54227352142334, -0.7602488398551941, -26.514163970947266, -22.066547393798828, 31.037639617919922, -8.115333557128906, 12.380725860595703, 8.054473876953125, 7.686533451080322, 7.942568778991699, -0.3603121042251587, 2.8651421070098877, 0.2672731578350067, 11.944064140319824, -0.846297025680542, -11.89965534210205, 11.031524658203125, 0.22739070653915405, 0.38495784997940063, -1.281140923500061, -1.7910065650939941, -1.864558458328247, -4.447373867034912, -1.1394922733306885, -8.389485359191895, 5.285486221313477, 1.3094311952590942, -14.86137866973877, 4.189198017120361, 6.647069454193115, -1.0425013303756714, 17.80618667602539, -16.129196166992188, -5.551366806030273, -4.523837089538574, 1.6083695888519287, 1.8986173868179321, -10.16767692565918, -3.654367208480835, -0.3141562044620514, 23.318510055541992, 9.78225326538086, -2.691760778427124, 5.128377437591553, 229.34840393066406, -0.40750205516815186, -0.9493240118026733, 0.7802091240882874, 1.1088117361068726, 0.7727574706077576, 1.0732859373092651, 0.25883087515830994, 0.8580639958381653, -0.8193686008453369, -1.2143988609313965, -0.42096102237701416, 5.592052459716797, 0.41015130281448364, 0.6507567167282104, 2.8110806941986084, 7.526437282562256, 2.3188974857330322, 7.0018768310546875, 3.231797695159912, 2.0545995235443115, 1.6128654479980469, 4.6465678215026855, 1.5516663789749146, 1.714942455291748, 5.084629058837891, 2.3604440689086914, 0.5300267934799194, 1.480985403060913, 0.41223475337028503, 1.2992547750473022, 0.7385439276695251, 2.10420560836792, 0.932577908039093, -0.1520778238773346, 1.713442325592041, 1.5210338830947876, 0.5656725764274597, 1.9072049856185913, 0.9567627310752869, 0.3960697650909424, 0.44163215160369873, 0.5878949165344238, 0.8206663131713867, 1.611753225326538, 0.8479095697402954, 0.5944604873657227, 0.7890034914016724, 1.7957267761230469, 0.2998366057872772, 0.22618070244789124, -0.18701373040676117, 0.4275779724121094, 0.6229318976402283, 0.484366774559021, 0.6177490949630737, 0.45515379309654236, 0.8331781625747681, 1.8538588285446167, -0.4489183723926544, 0.12093083560466766, 0.28035518527030945, 2.051271438598633, 0.1941535919904709, -0.5715430378913879, 0.06991387903690338, -0.23077881336212158, 1.0564696788787842, -0.38945966958999634, -2.5332345962524414, 0.8461225032806396, 0.6650053858757019, 2.1577959060668945, -0.2023492157459259, -0.014899578876793385, 1.2793691158294678, 1.315588355064392, 1.7638591527938843, 1.4163093566894531, 0.9151162505149841, 1.0821192264556885, 0.780752420425415, 3.455174207687378, 2.8397932052612305, 1.9887480735778809, 0.8774558305740356, 0.8926156759262085, 1.0601515769958496, 0.10924302041530609, 0.7368251085281372, 1.237809658050537, 0.6107839345932007, 0.23089584708213806, 2.823254346847534, 1.0797215700149536, 0.463812917470932, 1.6288496255874634, 1.098106026649475, 0.2966061234474182, 0.12865206599235535, 6.780473232269287, -0.3926839828491211, -0.8417141437530518, 0.5603635311126709, 1.2253443002700806, 0.5749374628067017, 1.0861812829971313, 0.14323027431964874, 0.837890088558197, -1.0361592769622803, -1.3356995582580566, -0.4629151225090027, 2.809370994567871, 0.35665374994277954, 0.32396990060806274, 2.9100983142852783, 2.6866960525512695, 1.233535647392273, 4.903575897216797, 3.28961443901062, 2.1631999015808105, 1.6127880811691284, 4.525756359100342, 1.3435090780258179, 1.7663136720657349, 4.98877477645874, 2.470659017562866, 0.6718692183494568, 1.4164974689483643, 0.4008151590824127, 1.4083858728408813, 0.6580820679664612, 2.0783207416534424, 0.9338761568069458, -0.20211385190486908, 1.5251353979110718, 1.570773720741272, 0.7841767072677612, 1.8578743934631348, 0.9782386422157288, 0.27680420875549316, 0.3058190643787384, 0.8169229030609131, 0.8495539426803589, 1.5865484476089478, 0.914578914642334, 0.46138980984687805, 0.7614924907684326, 2.0410616397857666, -0.3417319357395172, 0.15728244185447693, -0.10924871265888214, 0.405869722366333, 0.7487831711769104, 0.6119390726089478, 0.6409085392951965, 0.3202405869960785, 0.8153237104415894, 1.7592722177505493, -0.39275893568992615, 0.12709733843803406, 0.04390799254179001, 2.0353190898895264, 0.13898898661136627, -0.5605301260948181, -0.004498795606195927, -0.2200174480676651, 0.8615419864654541, -0.23729310929775238, -2.3160743713378906, 0.9283014535903931, 0.6896944642066956, 1.9768567085266113, -0.14448532462120056, -0.2189287692308426, 1.333641529083252, 1.1834828853607178, 1.696648359298706, 1.4531941413879395, 0.7313092947006226, 0.9738285541534424, 0.757607638835907, 3.4497151374816895, 3.037750482559204, 2.109966278076172, 0.933390736579895, 0.7784393429756165, 1.2766214609146118, 0.13047191500663757, 0.8273962140083313, 1.257369041442871, 0.6205911040306091, 0.2958318889141083, 3.019834280014038, 1.0379300117492676, 0.2847546637058258, 1.555392861366272, 1.0617468357086182, 0.17820194363594055, 0.21733613312244415, 6.705352306365967, 1.7399436235427856, 1.593267560005188, -1.848791480064392, 0.5474113821983337, -0.4398048520088196, 0.6698813438415527, -0.772300660610199, -1.4968303442001343, -0.6162540912628174, 1.213181972503662, 1.14113450050354, -0.7641025185585022, -0.45179712772369385]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (30, 40), 'etaBin': (1.54, 2.5)}}, 'et2_eta0': {'discriminator': {'threshold': -0.06000081673264504, 'nodes': [100, 5, 1], 'bias': [0.07847574353218079, 0.7629546523094177, 0.10928067564964294, 0.19618543982505798, 0.18218255043029785, -0.08439499139785767], 'weights': [-0.7119408845901489, -2.240541696548462, -2.7603185176849365, 0.2700490355491638, -0.41171079874038696, -0.9108693599700928, -0.9470913410186768, -0.1902671903371811, -2.4491517543792725, -3.2685701847076416, 3.370185136795044, 12.913612365722656, 5.621732711791992, 26.516376495361328, 55.569419860839844, 4.388315677642822, 3.5565598011016846, 3.211742401123047, 3.8946003913879395, 3.7326226234436035, 4.113090991973877, 2.12119722366333, 2.739637851715088, 2.7863919734954834, 2.442747116088867, 2.8151042461395264, 2.1818275451660156, 2.2052829265594482, 2.2070767879486084, 2.384472608566284, 1.6437053680419922, 0.8267799019813538, 1.2870289087295532, 3.154662609100342, 1.4556388854980469, 1.5003046989440918, 1.5551685094833374, 1.509101390838623, 1.483616828918457, 1.6190054416656494, 2.250215768814087, 1.4467514753341675, 0.16150003671646118, -8.42698860168457, 1.0536600351333618, 1.1665540933609009, 1.165086269378662, 1.4236738681793213, 1.230736255645752, 0.8768990635871887, 0.6607258915901184, 0.2204592376947403, 0.42039763927459717, 0.7857428193092346, 0.9055647253990173, 0.4581426978111267, 0.0927475318312645, 0.05435469374060631, -0.2726903259754181, -0.5764389038085938, -1.6322872638702393, -2.6324899196624756, 0.5350361466407776, 1.2776252031326294, 2.4128077030181885, 0.8366170525550842, 0.23994331061840057, -0.3887934684753418, 0.0355718694627285, -0.5618188977241516, 0.35970374941825867, 0.8971461653709412, -0.5802282691001892, -0.5947319269180298, 0.966034471988678, 1.4822137355804443, 1.62027108669281, 1.471069574356079, 0.15782611072063446, -0.020223205909132957, 2.823122262954712, 2.693579912185669, 2.8301751613616943, 2.3084781169891357, 1.6026636362075806, 1.6897698640823364, 1.5767418146133423, 5.69877815246582, 2.7764956951141357, 2.256046772003174, 0.16424404084682465, -0.06079587712883949, 3.2271440029144287, 2.1910839080810547, 0.9774269461631775, -0.20367079973220825, 4.154149055480957, 2.442843437194824, 0.2865254580974579, 3.124415397644043, -56.49191665649414, -0.4098327159881592, -0.7341068387031555, -1.5462725162506104, -0.11737889796495438, -0.08675909787416458, -0.6945703625679016, -0.0257110632956028, -5.058988094329834, -3.632960319519043, 0.46336981654167175, 8.2831449508667, 0.7417730093002319, -11.89832592010498, -0.3551108241081238, -0.6785120368003845, -2.656543254852295, 0.4756072461605072, 0.7682706117630005, 0.3508555293083191, 0.7252914309501648, 0.278731107711792, 0.7361022233963013, 0.7715103030204773, 0.19049392640590668, 0.4049382507801056, 0.2623523473739624, -0.08075734227895737, 0.2134803831577301, 0.22921833395957947, 0.261470228433609, 0.43027669191360474, 0.19312967360019684, 0.3928200304508209, 0.44809895753860474, 0.37734153866767883, 0.3831552565097809, 0.2500981092453003, 0.29143449664115906, 0.27737849950790405, 1.7319985628128052, 0.3704843819141388, 0.027276014909148216, 0.17787288129329681, 0.892750084400177, 0.2694832682609558, 0.15648795664310455, 0.2537045478820801, 0.18419775366783142, 0.19120995700359344, 0.11450974643230438, -0.11331019550561905, 0.38909637928009033, 0.5923218727111816, 0.31627798080444336, -0.04405646398663521, 0.0014515798538923264, 0.08459271490573883, -0.10759730637073517, 0.21883749961853027, -0.45896679162979126, -0.18342788517475128, 0.1355195939540863, 0.019575851038098335, 0.25031718611717224, 0.17690414190292358, 0.029845835641026497, -0.015406846068799496, 0.010905565693974495, -0.005880381446331739, -0.039869677275419235, 25.09929656982422, -0.011351218447089195, -0.23217561841011047, -1.473679542541504, 0.1123473197221756, 0.44710657000541687, 0.3514510989189148, -4.154234409332275, -0.02785796858370304, 0.05499179661273956, 0.705963134765625, 0.44965454936027527, 0.8405165672302246, 0.41737860441207886, 0.44072991609573364, 0.20978909730911255, 0.3216022253036499, 0.3156183063983917, -0.6809942722320557, -0.3737870454788208, 0.000582381384447217, -0.27832743525505066, 0.46415385603904724, 0.16863110661506653, 3.162311315536499, 0.7340706586837769, 0.5276182889938354, -0.019018065184354782, 0.13615861535072327, -3.885833740234375, -2.250655174255371, 0.08676255494356155, 0.3059181571006775, -0.3745964467525482, 0.36144012212753296, -0.7617700099945068, -0.6664785742759705, -2.301903009414673, -3.1738085746765137, 3.3496274948120117, 4.603571891784668, 5.325782775878906, -4.5366973876953125, -0.6852859258651733, 3.5065078735351562, 3.6086719036102295, 3.360424518585205, 3.8940789699554443, 3.435147285461426, 3.4170849323272705, 2.007793664932251, 2.9455790519714355, 2.7861993312835693, 2.4028189182281494, 2.2636289596557617, 2.12794828414917, 2.1937096118927, 2.122143268585205, 2.2096493244171143, 1.6055375337600708, 1.6099010705947876, 1.5194404125213623, 4.133847236633301, 1.4598667621612549, 1.6122678518295288, 1.4496665000915527, 1.5963572263717651, 1.616939902305603, 1.5164343118667603, 3.1513895988464355, 1.4457648992538452, 1.1238073110580444, 0.6345608234405518, 1.2533984184265137, 1.018856167793274, 0.7702746987342834, 0.8643901348114014, 0.7191444635391235, 0.9200932383537292, 0.7738093137741089, 0.34013867378234863, 1.3611621856689453, 0.7824179530143738, 1.0800970792770386, 0.5242002606391907, 0.26881375908851624, -0.007204233668744564, -0.2283705621957779, -0.501410961151123, -1.6035155057907104, -0.7626625299453735, 1.4196206331253052, 1.171082854270935, 2.4265995025634766, 0.9581426382064819, 0.2041902095079422, -0.254436731338501, 0.10813120752573013, -0.4622395634651184, 0.1457851231098175, 0.8357154726982117, -0.4234122037887573, -0.485456645488739, 0.8002054691314697, 1.5129543542861938, 1.6100502014160156, 1.620447039604187, 1.0160433053970337, 0.39991846680641174, 2.8421740531921387, 3.086730718612671, 3.16877818107605, 3.2167727947235107, 1.7400325536727905, 1.6114381551742554, 1.3821934461593628, 1.6403707265853882, 3.987455368041992, 2.641127347946167, 1.1868956089019775, -0.1966841071844101, 3.11489200592041, 2.3976504802703857, 1.0971933603286743, -0.1261538565158844, 4.030074119567871, 2.5336809158325195, 0.2542243003845215, 0.40848666429519653, -3.6147656440734863, -2.1539711952209473, 0.045470431447029114, 0.7304039597511292, -0.3738579750061035, -0.6959854364395142, -0.6956247091293335, -0.5939298868179321, -2.439155340194702, -3.18929123878479, 5.671125888824463, 4.483436584472656, 5.276941299438477, 4.772185325622559, -0.54397052526474, 3.5849523544311523, 3.6388955116271973, 3.3671553134918213, 4.1331281661987305, 3.3683149814605713, 3.404278039932251, 2.116446018218994, 2.9454658031463623, 2.9406914710998535, 2.028132677078247, 2.127959966659546, 2.0885345935821533, 2.175482749938965, 2.2884764671325684, 2.2066760063171387, 2.0421037673950195, 1.5948137044906616, 1.611924409866333, 4.083347797393799, 1.4701485633850098, 1.4637832641601562, 1.4488550424575806, 1.4325478076934814, 1.5399307012557983, 1.6220324039459229, 2.905242919921875, 1.3415616750717163, 1.1074074506759644, 0.6788487434387207, 1.1415725946426392, 1.1479862928390503, 0.8960355520248413, 0.7605296969413757, 0.8521959781646729, 0.9242546558380127, 0.8740400671958923, 0.1877056062221527, 1.4756288528442383, 0.7101624608039856, 2.6559505462646484, 0.37599489092826843, 0.06333006173372269, -0.04173819720745087, -0.24581675231456757, -0.5424069166183472, -1.6604419946670532, -0.7659134864807129, 0.8391252160072327, 2.537083864212036, 2.3545873165130615, 0.9121683835983276, 0.10163474828004837, -0.32298609614372253, 0.13920442759990692, -0.394283652305603, 0.18470700085163116, 0.6860589385032654, -0.6604444980621338, -0.6959370374679565, 0.7248620390892029, 1.5838512182235718, 1.7571015357971191, 1.4008452892303467, 0.9828911423683167, 0.36834990978240967, 2.867776393890381, 4.006468772888184, 3.2964606285095215, 3.3589704036712646, 1.7385478019714355, 1.744105577468872, 1.2849962711334229, 1.6732823848724365, 3.8446593284606934, 2.7659952640533447, 1.2162116765975952, -0.08323752135038376, 3.2214784622192383, 2.3385660648345947, 0.9700197577476501, -0.3291915953159332, 4.1662797927856445, 2.549304485321045, 0.22350864112377167, 0.30393296480178833, -3.6114461421966553, -2.3934710025787354, 0.09477496892213821, 0.3588869571685791, -0.45580652356147766, -0.7425466179847717, -0.7596940398216248, -0.6543024182319641, -2.3511250019073486, -2.977902889251709, 3.531572103500366, 4.63935661315918, 5.377264022827148, 1.71120023727417, -0.6276735663414001, 3.5791587829589844, 3.644695281982422, 3.318505048751831, 4.479356288909912, 3.693902015686035, 3.3519914150238037, 2.0276482105255127, 2.944472551345825, 3.9413626194000244, 2.0502684116363525, 2.1641287803649902, 2.111687421798706, 2.2166693210601807, 1.618442416191101, 1.6708953380584717, 1.9803305864334106, 1.6056240797042847, 1.5804476737976074, 4.259450912475586, 1.5122487545013428, 1.5869331359863281, 1.5093088150024414, 1.4131137132644653, 1.599554181098938, 1.534354567527771, 2.8035945892333984, 1.3648053407669067, 0.938794732093811, 0.7846008539199829, 0.8212500214576721, 0.8945085406303406, 0.9411532878875732, 0.8930754661560059, 0.7907464504241943, 0.8233004212379456, 0.896054208278656, 0.31046944856643677, 1.5223931074142456, 0.721443235874176, 1.0003323554992676, 0.541334331035614, 0.12053316831588745, -0.008119943551719189, -0.369466096162796, -0.7188175916671753, -1.6764843463897705, -0.7763171195983887, 1.4366395473480225, 1.1803926229476929, 2.5309770107269287, 0.7898460626602173, 0.17730993032455444, -0.32265764474868774, -0.005061417818069458, -0.4954034388065338, 0.33508720993995667, 0.7351938486099243, -0.6127973198890686, -0.48705407977104187, 0.8037559390068054, 1.3957831859588623, 1.6182202100753784, 1.54705810546875, 1.1642327308654785, 0.5082777142524719, 2.676494598388672, 3.9732484817504883, 3.3225440979003906, 3.216959238052368, 1.6738606691360474, 1.7805352210998535, 1.4509203433990479, 1.481755018234253, 3.917235851287842, 2.8054752349853516, 1.0479758977890015, -0.2747025787830353, 3.027235269546509, 2.5161335468292236, 0.6379184126853943, -0.3682080805301666, 3.984583854675293, 2.4014289379119873, -0.09441936016082764, 0.21489889919757843, -0.7867413759231567, -0.4875887334346771, -0.6358382105827332, -1.8459546566009521, -2.2943880558013916]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (30, 40), 'etaBin': (0, 0.8)}}, 'et1_eta2': {'discriminator': {'threshold': 0.029999205470085138, 'nodes': [100, 5, 1], 'bias': [0.09213433414697647, -0.23188082873821259, -0.022360503673553467, -0.04104926064610481, 0.03756337985396385, -0.0800914540886879], 'weights': [0.5904896855354309, 0.03893570229411125, -1.3907091617584229, -1.7032928466796875, -0.17930108308792114, -0.08128349483013153, -1.1231359243392944, -0.4356464147567749, -3.0507562160491943, 3.4091029167175293, 3.001242160797119, 2.186160087585449, -0.10801549255847931, -0.3285580277442932, 0.4429783225059509, 1.0124597549438477, -2.9995498657226562, 0.9482599496841431, 1.1347765922546387, -1.0792865753173828, -2.8616366386413574, -2.19612455368042, -0.933168351650238, -0.34021806716918945, -2.1018013954162598, -0.9993510842323303, -1.1490378379821777, -2.6507275104522705, -2.175452709197998, -2.6680071353912354, -1.598770022392273, -0.6464859843254089, 2.9719316959381104, -2.507420539855957, -2.6244289875030518, -1.669575572013855, -2.7445647716522217, -1.4244457483291626, -0.9748613834381104, -0.6090899109840393, -2.1220827102661133, 4.71447229385376, -1.5496011972427368, -1.635913610458374, -1.1907134056091309, -0.014827021397650242, -0.6180021166801453, -0.7886080741882324, 0.8222874402999878, -1.2192057371139526, 0.03905884549021721, -0.6332072019577026, 3.0907986164093018, -1.273242712020874, -1.4562478065490723, -0.7722591161727905, -0.9486415982246399, -0.8034889698028564, 3.963317632675171, -1.277497410774231, -1.5324105024337769, -1.5171821117401123, -0.7567922472953796, 11.43925952911377, 5.547926902770996, 2.2526206970214844, 0.32004526257514954, -0.08272207528352737, -0.8711645007133484, -1.5131275653839111, -5.475527286529541, -2.480309009552002, 0.15551942586898804, 0.6227447390556335, -2.8719332218170166, -1.444675326347351, -2.0609018802642822, -1.8438037633895874, -0.7539303302764893, -0.5538824200630188, 0.029319029301404953, -2.5630404949188232, -2.5874741077423096, -0.8599187135696411, -1.672669768333435, -1.1529184579849243, -1.4896444082260132, -1.1326221227645874, 0.6330705285072327, -0.6693201661109924, -0.13246819376945496, 0.21245704591274261, -2.72232723236084, -0.7060127854347229, -0.521721363067627, -1.2177700996398926, -0.02182083949446678, 0.08974209427833557, -0.7891942858695984, -2.5173909664154053, -0.008088058792054653, -0.36212486028671265, 0.23218347132205963, 0.22939063608646393, 0.0789651870727539, -0.10735327750444412, 0.16151665151119232, -0.04628978669643402, 0.3349303603172302, -0.7026050090789795, -0.6477628946304321, -0.3520905673503876, 0.1677282303571701, 0.8560368418693542, -0.1344541609287262, -0.17212247848510742, 0.4232829213142395, -0.22554950416088104, -0.4439670741558075, -0.0494656004011631, 0.44899943470954895, 0.3173619508743286, 0.20028135180473328, 0.0868181511759758, 0.4064970910549164, 0.24186518788337708, 0.13442009687423706, 0.49868378043174744, 0.4536883234977722, 0.41789302229881287, 0.2941080629825592, 0.08372219651937485, -0.6924700140953064, 0.3533497452735901, 0.5764604210853577, 0.28987061977386475, 0.44642946124076843, 0.2365383356809616, 0.1317114382982254, 0.049991242587566376, 0.45580965280532837, -0.9969360828399658, 0.14324866235256195, 0.26984602212905884, 0.1351763904094696, -0.07751408964395523, 0.07537492364645004, 0.07581835985183716, -0.2067098617553711, 0.22372019290924072, -0.14219994843006134, 0.17268246412277222, -0.8246129751205444, 0.15458162128925323, 0.2911348044872284, 0.16611871123313904, 0.10237517952919006, -0.02008274383842945, -0.8829513788223267, 0.10081202536821365, 0.21726326644420624, 0.1398436278104782, 0.11100310832262039, -2.3700549602508545, -1.3163566589355469, -0.4976082444190979, -0.2008645087480545, -0.05346931144595146, 0.01672099158167839, 0.2794433832168579, 1.153123378753662, 0.5347667336463928, -0.23591700196266174, 0.06366326659917831, 0.5289624929428101, 0.3109363913536072, 0.26955440640449524, 0.21271485090255737, 0.059970956295728683, -0.05220668762922287, -0.08240161091089249, 0.5594058036804199, 0.5780542492866516, -0.006105588749051094, 0.24551650881767273, 0.19855040311813354, 0.2277381420135498, 0.20978404581546783, 0.010368341580033302, -0.008331459946930408, 0.007413141895085573, -0.22215430438518524, 0.46232789754867554, 0.05946789309382439, 0.1490078866481781, 0.14973200857639313, -0.11406383663415909, -0.06628511101007462, 0.21060946583747864, 0.38572537899017334, 0.6790534853935242, -0.0625845268368721, -1.4726331233978271, -1.4356392621994019, -0.12817269563674927, -0.2684076130390167, -1.1802328824996948, 0.5320567488670349, -0.5610719919204712, 3.69439959526062, 3.151961088180542, 2.26894474029541, -0.06426209956407547, -3.326401472091675, 0.9820716381072998, 1.7997863292694092, -2.8844730854034424, 0.949916660785675, 1.9055261611938477, -0.28290674090385437, -2.8899521827697754, -2.081645965576172, -0.9682865738868713, -0.2956332564353943, -1.904733419418335, -1.0034464597702026, -1.4726214408874512, -2.6972193717956543, -2.149054527282715, -2.6661837100982666, -1.8061586618423462, -0.7728073000907898, 3.0695223808288574, -2.555445432662964, -2.6622440814971924, -1.762162446975708, -2.738736152648926, -1.5288463830947876, -1.049529790878296, -0.8103806376457214, -2.27580189704895, 4.559605121612549, -1.5203019380569458, -1.550980806350708, -1.1586025953292847, -0.5841806530952454, -0.579011857509613, -0.651354193687439, 0.8221023678779602, -1.1980561017990112, 0.065700463950634, -0.6556133031845093, 2.9849350452423096, -1.2717925310134888, -1.424140214920044, -0.6916865706443787, -0.9612129330635071, -0.792949914932251, 3.9885778427124023, -1.2518304586410522, -1.5309427976608276, -1.4580252170562744, -0.8494288325309753, 11.549216270446777, 5.5689897537231445, 2.112680673599243, 0.3473624289035797, -0.06544961035251617, -0.8742182850837708, -1.3191906213760376, -5.648783206939697, -2.374908447265625, 0.04539087414741516, 0.580887496471405, -2.9228873252868652, -1.5327987670898438, -1.870954155921936, -1.6144806146621704, -0.9528557658195496, -0.6053400635719299, 0.03321241959929466, -2.4870898723602295, -2.6514077186584473, -0.9663213491439819, -1.836551308631897, -0.943376362323761, -1.1616631746292114, -1.073682188987732, 0.6118646264076233, -0.6491239666938782, -0.48891928791999817, 0.20361731946468353, -2.894702196121216, -0.7100587487220764, -0.430533230304718, -1.1173512935638428, 0.07548007369041443, -0.033040277659893036, -0.9127926230430603, -2.6644287109375, -0.629770815372467, -0.07850421220064163, 1.4082646369934082, 1.3599551916122437, 0.19849306344985962, 0.23612728714942932, 1.1846352815628052, -0.4241095781326294, 3.0868964195251465, -3.493380308151245, -2.861161470413208, -2.2373175621032715, 0.048551034182310104, 0.446251779794693, -0.44748467206954956, -1.0757741928100586, 2.8319435119628906, -0.9173075556755066, -0.9451092481613159, 0.31820836663246155, 2.751389503479004, 2.2438759803771973, 0.8698926568031311, 0.4281347393989563, 2.0359036922454834, 1.1272084712982178, 1.5681869983673096, 2.4893717765808105, 2.0592267513275146, 2.616725444793701, 1.649046778678894, 0.787843644618988, -3.0635390281677246, 2.574495792388916, 2.610328197479248, 1.8476383686065674, 2.716024160385132, 1.4725632667541504, 0.9866077303886414, 0.6180453896522522, 2.3364200592041016, -4.705195903778076, 1.506639838218689, 1.6076021194458008, 0.9751289486885071, 0.5456989407539368, 0.5271331667900085, 0.6558789014816284, -0.8371469378471375, 1.0203856229782104, -0.013975318521261215, 0.7584142684936523, -2.991203784942627, 1.2342934608459473, 1.418912410736084, 0.8065088987350464, 1.038306474685669, 0.6427537798881531, -3.8408119678497314, 1.2946735620498657, 1.5718222856521606, 1.6892096996307373, 0.6667776703834534, -11.493181228637695, -5.559185028076172, -2.1062769889831543, -0.446382075548172, 0.2928588390350342, 0.8152022957801819, 1.4135942459106445, 5.444582462310791, 2.3882269859313965, -0.08741159737110138, -0.44619089365005493, 3.0019993782043457, 1.5476585626602173, 1.9402860403060913, 1.632541537284851, 0.9815916419029236, 0.6687995195388794, -0.1889418661594391, 2.5583789348602295, 2.2068729400634766, 0.8004432916641235, 1.6298130750656128, 1.104409098625183, 1.1206876039505005, 1.1845680475234985, -0.5918524861335754, 0.5153836607933044, -0.05285320058465004, -0.38325634598731995, 2.7411727905273438, 0.681136429309845, 0.5474600791931152, 1.2225672006607056, -0.10717086493968964, 0.06011933460831642, 1.0072410106658936, 2.5828940868377686, -0.7259383797645569, -0.016049988567829132, 1.543966293334961, 1.5821679830551147, 0.14803296327590942, 0.24122636020183563, 1.078426718711853, -0.42724740505218506, 0.5997751951217651, -3.838749885559082, -3.0026040077209473, -2.3924615383148193, -0.02239542454481125, 3.494504928588867, -1.005405306816101, -1.7695751190185547, 2.9350998401641846, -0.9304192662239075, -1.9162030220031738, 0.4818142354488373, 2.88106369972229, 2.149655342102051, 0.8577679991722107, 0.21102914214134216, 2.0918517112731934, 0.9984931945800781, 1.410853385925293, 2.6451926231384277, 2.114591360092163, 2.732818603515625, 1.5853537321090698, 0.6914913058280945, -3.081550121307373, 2.6373603343963623, 2.496070146560669, 1.7700231075286865, 2.7934415340423584, 1.4922529458999634, 0.9308130741119385, 0.6724027395248413, 2.326244592666626, -4.52893590927124, 1.3958758115768433, 1.5147380828857422, 1.1259888410568237, 0.5307672619819641, 0.5730082392692566, 0.6693390607833862, -0.8560463786125183, 1.1814037561416626, -0.08019416034221649, 0.8441669940948486, -3.1649646759033203, 1.1468080282211304, 1.5281178951263428, 0.6987478137016296, 1.06266188621521, 0.603773295879364, -3.802156925201416, 1.318844199180603, 1.6397875547409058, 1.6550276279449463, 0.8351544737815857, -11.452370643615723, -5.521458625793457, -2.293156623840332, -0.4740429222583771, 0.1676577776670456, 0.8885350823402405, 1.3051804304122925, 5.613041400909424, 2.4396400451660156, -0.028703929856419563, -0.6290497779846191, 2.951404094696045, 1.5168440341949463, 1.9830490350723267, 1.6369656324386597, 0.9549140334129333, 0.6835190057754517, -0.027351686730980873, 2.474626302719116, 2.6867542266845703, 0.7921246290206909, 1.6991311311721802, 1.0826727151870728, 0.9945557713508606, 1.2690974473953247, -0.6617172360420227, 0.6684654355049133, 0.5199615955352783, -0.3760114014148712, 2.87965989112854, 0.726798951625824, 0.5863709449768066, 1.1498115062713623, -0.007829710841178894, 0.0622253343462944, 0.816074550151825, 2.5150094032287598, 0.8264837265014648, -0.13779251277446747, 1.0971431732177734, -2.029695987701416, -2.529853105545044]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (20, 30), 'etaBin': (1.37, 1.54)}}} - signatures["ElectronHighEnergyVeryLooseConf"]={'et3_eta2': {'discriminator': {'threshold': 0.63999844789505, 'nodes': [100, 7, 1], 'bias': [0.14202213287353516, 0.044922810047864914, 0.130228653550148, -0.23902182281017303, -0.06338616460561752, -0.09544681757688522, -0.012388982810080051, 0.052718501538038254], 'weights': [0.28274717926979065, -0.0902794897556305, -1.1716275215148926, -1.3358254432678223, -1.1099737882614136, -1.2971314191818237, -1.1283234357833862, 1.2253859043121338, 0.06466394662857056, 3.320276975631714, 3.171196460723877, 1.138137936592102, 0.045503389090299606, 0.22475014626979828, 0.17751266062259674, 0.06439196318387985, -2.633634567260742, -0.034996699541807175, -0.26828062534332275, -2.000157594680786, -6.725962162017822, -1.618412971496582, -0.08970476686954498, -1.3093565702438354, 0.6815795302391052, -4.424966335296631, -4.0503716468811035, -1.5026123523712158, -4.661406517028809, -2.0828752517700195, -0.5624021291732788, -1.2347328662872314, -1.6328587532043457, -1.1456995010375977, -1.8225566148757935, -3.344203233718872, -5.027546405792236, -4.453680992126465, 2.239474058151245, -1.0636610984802246, -1.310888409614563, -2.8235020637512207, -1.498542070388794, -1.2264456748962402, -1.2086938619613647, -1.15601646900177, -1.4287259578704834, -1.165838360786438, -1.8594722747802734, -4.3931884765625, -0.19476176798343658, -3.165910005569458, -3.085859537124634, -2.0063984394073486, -1.8945086002349854, -16.13319969177246, -1.3044785261154175, -1.3416823148727417, 2.1770057678222656, -0.7433953881263733, 0.12988553941249847, -0.9316554069519043, 2.217691659927368, 1.3818416595458984, -0.5709995627403259, 0.10366477817296982, 1.7351735830307007, -2.106459379196167, -0.9717280268669128, -2.6626627445220947, -14.11143684387207, 1.331822395324707, 0.20649340748786926, 0.2823592722415924, -3.0638129711151123, -1.2494398355484009, -2.881779670715332, -2.7773523330688477, -1.3643923997879028, -2.6660802364349365, 0.12275853753089905, -0.531599223613739, -2.955622911453247, -1.8080048561096191, -1.099861979484558, -1.2246712446212769, -2.114856481552124, -3.929741382598877, 0.15120084583759308, -1.2696914672851562, -0.9174460172653198, -0.6061720848083496, -1.789094090461731, -3.2463278770446777, 0.8811066746711731, -0.703289806842804, 0.060550328344106674, 0.023639215156435966, -0.6814206838607788, -3.909001350402832, 0.18770723044872284, -0.1405377835035324, -1.2302677631378174, -1.2209010124206543, -1.1579291820526123, -1.246543049812317, -1.0957294702529907, 1.1706188917160034, -0.014210512861609459, 3.3775975704193115, 3.121427536010742, 1.215960144996643, -0.011379869654774666, 0.055852439254522324, 0.11891841888427734, -0.00011067414015997201, -2.463144302368164, 0.05265668407082558, -0.21255169808864594, -2.0422146320343018, -6.922985553741455, -1.5908870697021484, -0.05098368227481842, -1.2778136730194092, 0.672627866268158, -4.401785850524902, -4.167597770690918, -1.497903823852539, -4.746738433837891, -2.0047824382781982, -0.39979735016822815, -1.1637401580810547, -1.6208927631378174, -1.1186578273773193, -1.8880037069320679, -3.3668735027313232, -5.20128059387207, -4.5024027824401855, 2.1461684703826904, -1.0649056434631348, -1.2864209413528442, -2.715212821960449, -1.4060957431793213, -1.242992877960205, -1.0179378986358643, -1.1375652551651, -1.2584116458892822, -1.055956482887268, -1.7858989238739014, -4.418509006500244, -0.11106868088245392, -3.0379960536956787, -3.0995235443115234, -2.135347843170166, -1.9988124370574951, -15.904447555541992, -1.1588839292526245, -1.3118478059768677, 2.1590986251831055, -0.9344964623451233, -0.0135507732629776, -0.8568328022956848, 2.0817148685455322, 1.2662397623062134, -0.4850042164325714, 0.1536051332950592, 1.8482657670974731, -1.9428343772888184, -0.954640805721283, -2.658745050430298, -9.85637092590332, 1.3575080633163452, 0.06733619421720505, 0.30169108510017395, -3.0705435276031494, -1.178808569908142, -1.454285740852356, -1.2192264795303345, -1.438407301902771, -2.5547242164611816, -0.00877488311380148, -0.5377897620201111, -2.9677164554595947, -1.9030320644378662, -1.2191334962844849, -1.0897046327590942, -2.232499361038208, -4.124947547912598, 0.6349344849586487, -1.1538774967193604, -1.0822242498397827, -0.5848073959350586, -1.8498214483261108, -3.295718193054199, 1.0382333993911743, -0.6621528267860413, 0.07696890830993652, 0.0424940399825573, -0.4925270080566406, -3.891364574432373, 0.2936531603336334, -0.08454501628875732, -1.3505454063415527, -1.1100420951843262, -1.0956943035125732, -1.2969938516616821, -1.19979989528656, 1.156850814819336, 0.10668422281742096, 3.385024309158325, 3.27032470703125, 1.3354922533035278, -0.0006183558725751936, 0.11222503334283829, 0.11331998556852341, 0.151800274848938, -2.5373029708862305, 0.022961391136050224, -0.14889909327030182, -1.9839359521865845, -6.814295291900635, -1.7548489570617676, -0.060591235756874084, -1.2306143045425415, 0.6699003577232361, -4.380358695983887, -4.096383094787598, -1.4795560836791992, -4.785045623779297, -1.9159256219863892, -0.44302597641944885, -1.3554067611694336, -1.4681158065795898, -1.1972999572753906, -1.9608839750289917, -3.4111669063568115, -5.071067810058594, -4.420048236846924, 2.096034288406372, -1.073103666305542, -1.4559451341629028, -2.8757550716400146, -1.5540671348571777, -1.4096827507019043, -1.1300352811813354, -1.1148945093154907, -1.2811181545257568, -0.9829069972038269, -1.669853925704956, -4.369635581970215, -0.23904581367969513, -3.072566270828247, -2.955306053161621, -2.013627290725708, -1.9658594131469727, -16.02226448059082, -1.2750412225723267, -1.215607762336731, 2.318936824798584, -0.8296549916267395, 0.17947354912757874, -0.9137855172157288, 2.254194736480713, 1.352735996246338, -0.6126715540885925, 0.24527733027935028, 1.6311631202697754, -1.948216438293457, -1.0399196147918701, -2.6666765213012695, -14.206071853637695, 1.3620108366012573, 0.15816786885261536, 0.14013929665088654, -2.9734251499176025, -1.2094577550888062, -2.8923392295837402, -2.782792806625366, -1.386623501777649, -2.4949629306793213, 0.1145109087228775, -0.35467785596847534, -2.934598207473755, -1.894834280014038, -1.173606038093567, -1.0315607786178589, -2.0828115940093994, -3.9362707138061523, 0.22694946825504303, -1.1036574840545654, -1.0480130910873413, -0.48877695202827454, -1.848626732826233, -3.096954822540283, 0.9614549279212952, -0.7965526580810547, 0.10809937119483948, 0.007918222807347775, -0.6243818998336792, -3.9375853538513184, 0.051183849573135376, 0.09048901498317719, -0.4733905494213104, -0.3319469392299652, -0.2653762698173523, -0.4868011474609375, -0.297495573759079, 0.560832142829895, -0.05003780126571655, 1.3924373388290405, 1.3854362964630127, 0.5146607756614685, -0.19103823602199554, -0.017589056864380836, 0.023756936192512512, 0.0330176055431366, -1.114441156387329, -0.22596734762191772, -0.7708549499511719, -0.6054661870002747, -2.9334278106689453, -0.6454871296882629, 0.05751057714223862, -0.41776296496391296, 0.5411032438278198, -1.7859348058700562, -1.719722867012024, -0.580839216709137, -2.130156993865967, -0.7216871976852417, -0.10892875492572784, -0.4566148519515991, -0.6056199073791504, -0.4279724359512329, -0.7769535779953003, -1.4744900465011597, -2.1605429649353027, -1.7213953733444214, 1.1051760911941528, -0.3211342394351959, -0.445777952671051, -1.1812955141067505, -0.5576277375221252, -0.4195803701877594, -0.3422568142414093, -0.22653773427009583, -0.4695035219192505, -0.3262995183467865, -0.735004186630249, -1.9418224096298218, 0.09174071997404099, -1.168866515159607, -1.22128164768219, -0.7043483257293701, -0.7283256649971008, -7.204474925994873, -0.3798859715461731, -0.33746176958084106, 1.1496115922927856, -0.20708248019218445, 0.22945275902748108, -0.22658023238182068, 1.0233837366104126, 0.8642142415046692, -0.18985693156719208, 0.1500888168811798, 0.8520581126213074, -0.7269424796104431, -0.35286080837249756, -1.0235799551010132, -6.348456382751465, 0.8705183863639832, 0.15560570359230042, 0.08678900450468063, -1.209613561630249, -0.4835868179798126, -0.4736233949661255, -0.3437206447124481, -0.33955317735671997, -0.9751660823822021, -0.29732581973075867, -0.06590645760297775, -1.1636468172073364, -0.6912620067596436, -0.4436054527759552, -0.42642655968666077, -0.7728438377380371, -1.5741921663284302, 0.05708381533622742, -0.4356011748313904, -0.3077152967453003, -0.048934049904346466, -0.5054852366447449, -1.3148101568222046, 0.6431949734687805, -0.3225339353084564, 0.07493171840906143, 0.10042744129896164, -0.04590907320380211, -1.7250473499298096, -0.0603816881775856, 0.23417924344539642, 1.2101662158966064, 1.2427308559417725, 1.1328670978546143, 1.2249811887741089, 0.9862027764320374, -1.161576747894287, -0.04822760447859764, -3.262429714202881, -3.2015626430511475, -1.338485598564148, -0.15154676139354706, -0.07190978527069092, -0.1653263121843338, -0.15322059392929077, 2.595893383026123, -0.11972130835056305, 0.18652082979679108, 2.0217485427856445, 6.926002025604248, 1.5598387718200684, 0.16886068880558014, 1.2638275623321533, -0.5272692441940308, 4.492748260498047, 4.03787899017334, 1.5100269317626953, 4.785079002380371, 1.9689689874649048, 0.2699744701385498, 1.345538854598999, 1.4226157665252686, 1.2248382568359375, 1.8355270624160767, 3.399639368057251, 5.029793739318848, 4.3292717933654785, -2.115488052368164, 1.0870859622955322, 1.2395857572555542, 2.6768858432769775, 1.5618555545806885, 1.2893359661102295, 1.2196587324142456, 0.9908119440078735, 1.4075284004211426, 1.1343210935592651, 1.82818603515625, 4.285490036010742, 0.18009521067142487, 3.0944271087646484, 2.924328088760376, 2.0661463737487793, 2.0301294326782227, 16.130718231201172, 1.1917723417282104, 1.2245737314224243, -2.1768124103546143, 0.749620258808136, -0.12066446244716644, 0.9654014110565186, -2.0959198474884033, -1.3426272869110107, 0.4436481297016144, -0.20915882289409637, -1.6357824802398682, 1.9860965013504028, 0.9602493643760681, 2.645803689956665, 9.665706634521484, -1.38805091381073, -0.12973235547542572, -0.08195609599351883, 3.0752155780792236, 1.3292607069015503, 1.2726296186447144, 1.3841434717178345, 1.4111193418502808, 2.6714603900909424, 0.02954469993710518, 0.5684002041816711, 2.8847787380218506, 1.7597341537475586, 1.191670298576355, 1.0492116212844849, 2.0593647956848145, 4.1192450523376465, -0.7738291621208191, 1.2191345691680908, 0.9027732610702515, 0.5678022503852844, 1.767541766166687, 3.1131906509399414, -0.8755212426185608, 0.7946219444274902, -0.058945488184690475, 0.07659655064344406, 0.6571308374404907, 3.925680160522461, -0.07904722541570663, 0.09933401644229889, 1.1631450653076172, 1.292356252670288, 1.1254448890686035, 1.2377358675003052, 1.2000197172164917, -1.2117499113082886, -0.1780625283718109, -3.26377534866333, -3.06864595413208, -1.1412039995193481, -0.19419358670711517, -0.05612161383032799, -0.1832316666841507, -0.14489597082138062, 2.4453468322753906, -0.08739234507083893, 0.26468759775161743, 1.9401435852050781, 6.82135534286499, 1.6155610084533691, 0.17874838411808014, 1.2941884994506836, -0.6455373167991638, 4.384232997894287, 4.177690029144287, 1.375864028930664, 4.703462600708008, 2.041057586669922, 0.35167667269706726, 1.24973726272583, 1.5953521728515625, 1.2429873943328857, 1.7988351583480835, 3.3330843448638916, 5.070181846618652, 4.270904064178467, -2.24532413482666, 0.9881550669670105, 1.4153648614883423, 2.68945050239563, 1.424712896347046, 1.4129841327667236, 1.0125186443328857, 1.1543220281600952, 1.3040084838867188, 1.0121275186538696, 1.8835437297821045, 4.269620895385742, 0.21178914606571198, 3.054622173309326, 2.9546971321105957, 2.1172122955322266, 2.0112013816833496, 16.03333282470703, 1.143807291984558, 1.3549410104751587, -2.172865629196167, 0.8555322289466858, -0.15370137989521027, 0.8155571818351746, -2.0952937602996826, -1.2124121189117432, 0.5474461913108826, -0.23574058711528778, -1.8112386465072632, 2.120798349380493, 0.8876272439956665, 2.5760042667388916, 14.055011749267578, -1.3161897659301758, -0.19645124673843384, -0.18186043202877045, 3.0352323055267334, 1.2923511266708374, 1.2616549730300903, 2.6287970542907715, 1.4860528707504272, 2.4803502559661865, -0.12982788681983948, 0.439534991979599, 2.889356851577759, 1.8662235736846924, 1.1233550310134888, 1.044345736503601, 2.0779550075531006, 3.993479013442993, -0.6578121781349182, 1.232187032699585, 0.8924049139022827, 0.6412978172302246, 1.8662434816360474, 3.1129326820373535, -0.9073031544685364, 0.7616286277770996, -0.09526926279067993, 0.10485108941793442, 0.523346483707428, 3.7854385375976562, 0.17648743093013763, -0.2528316378593445, -1.2156128883361816, -1.1102771759033203, -1.0704588890075684, -1.2753180265426636, -1.210276484489441, 0.9992573261260986, 0.1409521847963333, 3.2184674739837646, 3.1039376258850098, 1.151229977607727, 0.09455053508281708, 0.23564834892749786, 0.09298748522996902, 0.1539033055305481, -2.470391273498535, 0.12664496898651123, -0.23481540381908417, -1.9038240909576416, -6.783145427703857, -1.6993741989135742, -0.11947531998157501, -1.2329158782958984, 0.5226105451583862, -4.325520992279053, -4.037867546081543, -1.550290584564209, -4.854043006896973, -1.916058897972107, -0.37323376536369324, -1.2939159870147705, -1.6378166675567627, -1.3380255699157715, -1.9009093046188354, -3.302973508834839, -5.188836574554443, -4.369269371032715, 2.299292802810669, -1.1578855514526367, -1.3190635442733765, -2.8401646614074707, -1.5704522132873535, -1.4302914142608643, -1.2236803770065308, -1.0672663450241089, -1.2983427047729492, -1.0083593130111694, -1.902198076248169, -4.474057197570801, -0.18566705286502838, -3.0211009979248047, -3.002972364425659, -2.0178515911102295, -1.930372953414917, -15.964561462402344, -1.225709080696106, -1.3742645978927612, 2.3071861267089844, -0.8480401635169983, 0.01940225251019001, -0.9427683353424072, 2.298581600189209, 1.2756229639053345, -0.5297210216522217, 0.09697975963354111, 1.660962462425232, -1.9817538261413574, -0.8847788572311401, -2.6862776279449463, -9.727682113647461, 1.4013739824295044, 0.17543819546699524, 0.26084262132644653, -2.953389883041382, -1.2830952405929565, -1.4196559190750122, -1.4025901556015015, -1.4884506464004517, -2.6430399417877197, 0.012899785302579403, -0.4018450379371643, -3.0324909687042236, -1.7914526462554932, -1.2262786626815796, -1.0926862955093384, -2.1743857860565186, -3.9383301734924316, 0.8301222920417786, -1.1796116828918457, -1.069738507270813, -0.6172525882720947, -1.7295562028884888, -3.3269524574279785, 1.008524775505066, -0.8471908569335938, -0.017537109553813934, 0.08606838434934616, -0.4558980464935303, -3.909362316131592, 0.9480514526367188, 2.385404586791992, 0.9066774845123291, 0.14874543249607086, -1.9307057857513428, -1.6492191553115845, 3.136667490005493]}, 'datecode': '2016-10-18 17:04', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (1.37, 1.54)}}, 'et1_eta3': {'discriminator': {'threshold': -0.25500081777572631, 'nodes': [100, 7, 1], 'bias': [-0.03094511106610298, -0.5799899697303772, -0.2377893626689911, -0.026239745318889618, 0.046430233865976334, -0.5510327816009521, -0.0039180004969239235, -0.051922306418418884], 'weights': [-2.1007091999053955, -2.313844680786133, 1.0081775188446045, 1.1952576637268066, 1.1381967067718506, 0.05225830525159836, 0.8718470931053162, 0.7521812915802002, -2.3881070613861084, -3.520962715148926, -1.7607707977294922, 1.2383842468261719, 0.5015622973442078, 0.5506165623664856, 7.889691352844238, 4.487699508666992, 2.413928270339966, 4.557316780090332, 2.7182300090789795, 6.116832256317139, 1.8896197080612183, 2.954477071762085, 2.252577304840088, 4.00665807723999, 7.100888729095459, 3.796987533569336, 1.3658812046051025, 2.5489814281463623, 2.373077392578125, 2.194671869277954, 3.1750872135162354, 2.3532614707946777, 1.3565171957015991, 2.281101703643799, 1.3306998014450073, 2.118257999420166, 2.540738105773926, 0.7964193224906921, 0.5464814305305481, 2.3898704051971436, 1.2077999114990234, 1.6454503536224365, 1.5282938480377197, 2.09716796875, -0.790364146232605, 2.1279666423797607, 0.2590458393096924, 1.4781116247177124, -0.3069359362125397, 1.6084834337234497, 1.3704075813293457, 1.980455994606018, 1.8952268362045288, 0.6363973617553711, 1.8800452947616577, 1.7378103733062744, 0.6629533171653748, 1.0552384853363037, 0.9378629326820374, 0.7483189702033997, -0.1298983097076416, 0.9791874289512634, 0.8771135210990906, -1.0042057037353516, 0.40825867652893066, 1.1051154136657715, 1.0564031600952148, 0.45147621631622314, -1.067683219909668, -1.2380783557891846, -3.285083770751953, 1.7178001403808594, -0.7389792203903198, -0.22323843836784363, 2.189730167388916, 2.009469747543335, 2.255263566970825, 1.9634788036346436, 1.4359910488128662, 0.6549786329269409, 3.5869414806365967, 5.503750324249268, 4.111057758331299, 1.946467638015747, 1.4941688776016235, 1.556199550628662, 1.214790940284729, 1.1002682447433472, 0.8039454817771912, 1.1697194576263428, 0.060469068586826324, 0.37819790840148926, 3.4146008491516113, 1.5209791660308838, 0.16834624111652374, 0.9300581216812134, 0.7021365165710449, 0.21195092797279358, -0.021994179114699364, 1.546455979347229, 1.3528074026107788, 5.125917434692383, 0.22711265087127686, -0.4906262159347534, -0.30035990476608276, 0.43955761194229126, -0.17688122391700745, -0.04665842652320862, 0.9400006532669067, 0.8820577263832092, 3.295884132385254, -6.009624481201172, -7.582295894622803, -0.5822781920433044, -0.8339431285858154, -0.7792884111404419, -1.3579961061477661, -1.968181848526001, -0.73675137758255, -3.972010850906372, 3.736644744873047, -1.5014550685882568, -0.1969117820262909, -1.642208456993103, -2.2833566665649414, -1.8617013692855835, 0.559748113155365, -1.1071833372116089, -1.2239174842834473, -0.8167917132377625, -2.072439432144165, -0.9969769716262817, -0.6641512513160706, -0.7494655847549438, -1.007724404335022, -0.8033524751663208, 1.0693188905715942, 0.4696619510650635, 0.44561606645584106, -0.7622324824333191, -0.4941210150718689, -0.500256359577179, -0.5528082847595215, -0.8811859488487244, -2.627695322036743, -0.9086533784866333, -0.13771457970142365, -0.4600067436695099, -0.23270897567272186, -0.48949337005615234, -0.4211263060569763, -0.8661603331565857, -0.3454934060573578, -0.25097566843032837, -1.109216332435608, -0.2770203948020935, 2.2806193828582764, -0.4382098913192749, -0.2284175008535385, 0.38630273938179016, 2.6404471397399902, 0.015628736466169357, 0.060615409165620804, 0.5514221787452698, -0.13763225078582764, -0.34061601758003235, -0.13166075944900513, -0.10710185021162033, 0.7150377631187439, 0.6659208536148071, 1.686867356300354, -0.4217521548271179, 0.051326170563697815, 1.9894918203353882, -0.4145640730857849, 0.0018460950814187527, -0.9995002746582031, -0.7671723365783691, -0.36894315481185913, -0.16878998279571533, -0.9874062538146973, -2.3170623779296875, -1.5303120613098145, -0.7137605547904968, -0.5784990787506104, -0.5984774231910706, -0.3706347346305847, -0.3041951358318329, 0.6751729249954224, -0.18250393867492676, 0.014772665686905384, 0.47152262926101685, -1.1612502336502075, -0.35504812002182007, -0.15878286957740784, -0.23169395327568054, 0.06546385586261749, 0.1422242820262909, 0.12764205038547516, -0.4763239026069641, 402.8721008300781, 33.97813034057617, 0.2774106562137604, -13.140117645263672, 18.208972930908203, -1.6552678346633911, -14.364242553710938, 0.10251864045858383, 0.6461477279663086, -6.983832359313965, -0.1841837614774704, -5.492713451385498, 11.75304889678955, -11.98824405670166, -159.63316345214844, -1.214348554611206, 0.8628255128860474, -107.30135345458984, 0.7032712697982788, -1.4195795059204102, -0.18183526396751404, -65.83489990234375, 0.33127501606941223, -106.34962463378906, 11.31546688079834, -53.09890365600586, -21.88643455505371, -3.195594072341919, -28.47698211669922, 0.3772991895675659, 0.3786780834197998, 0.3228470981121063, 13.256346702575684, -1.2974534034729004, 0.24294105172157288, -5.732027053833008, -98.69583892822266, 0.11705353111028671, -0.3564915955066681, 0.5138375163078308, -0.8186004757881165, 0.21545495092868805, 0.1928042769432068, 0.3294401466846466, -2.746062755584717, 0.5420972108840942, 0.1389545351266861, 0.3707195222377777, -0.10348216444253922, 0.40366220474243164, 0.21224001049995422, 0.35471540689468384, -78.8619155883789, 0.14935342967510223, 0.1958923041820526, 0.36816808581352234, -56.387245178222656, 0.10132946819067001, 0.16250264644622803, 0.06466923654079437, -0.06174613907933235, 0.10366235673427582, 0.06677092611789703, -0.16304466128349304, 0.07947070896625519, 0.19330325722694397, 0.23532555997371674, 0.03881563991308212, -0.1308038830757141, -0.32119083404541016, -0.6026683449745178, 7.16275691986084, -0.03346657752990723, -0.4408835768699646, 0.6430355906486511, 2.9998464584350586, 0.5100350379943848, 0.5578357577323914, 0.2675873935222626, -0.35237443447113037, -16.593713760375977, 1.062922716140747, 0.8223982453346252, -0.4407559633255005, 0.43679893016815186, 0.38295313715934753, 0.2279316931962967, 0.13923469185829163, 85.44652557373047, 11.521448135375977, 0.005550213158130646, 0.11674965918064117, 0.6307211518287659, 0.29508522152900696, 0.1420155018568039, 0.1129414290189743, 0.1537802517414093, 0.016230463981628418, 0.10687793791294098, 0.18670910596847534, -1.9405847787857056, -2.2584705352783203, 0.43508070707321167, 1.1229798793792725, 1.2083641290664673, -0.055893369019031525, 0.854990541934967, 0.4440760016441345, -2.362013339996338, -3.002002239227295, -1.7424116134643555, 1.282680869102478, 3.54481840133667, 0.3624274730682373, 7.852659225463867, 4.4275736808776855, 2.3369593620300293, 4.522994518280029, 2.953019380569458, 6.063052177429199, 1.98888099193573, 2.8754169940948486, 2.223193407058716, 4.024523735046387, 3.9249138832092285, 3.621492624282837, 1.3646823167800903, 2.564692497253418, 2.1688525676727295, 2.0190727710723877, 3.2260923385620117, 2.3291244506835938, 1.4813531637191772, 2.127375841140747, 1.2334511280059814, 2.068463087081909, 2.523533344268799, 1.1103572845458984, 0.47116997838020325, 2.399650812149048, 1.3764628171920776, 1.7786095142364502, 1.5651535987854004, 1.948794960975647, -0.4554291367530823, 2.1042613983154297, 0.5021664500236511, 1.5149105787277222, -0.09896903485059738, 1.6347845792770386, 1.3543245792388916, 2.042853355407715, 0.7513309121131897, 0.7224506139755249, 1.668306827545166, 1.629412293434143, 0.5949528217315674, 0.9215031862258911, 1.0848543643951416, 0.7651270627975464, -0.15050332248210907, 0.9530659317970276, 0.868942141532898, -1.1884386539459229, 0.473081111907959, 1.0005643367767334, 0.6908371448516846, 0.5094130635261536, -1.0406453609466553, -1.303475260734558, -3.4733846187591553, 1.6681971549987793, -0.6520408987998962, -0.12984442710876465, 1.2784024477005005, 1.8467698097229004, 2.34696626663208, 2.044661045074463, 1.404430627822876, 0.7100067734718323, 3.449969530105591, 5.455233573913574, 4.227277755737305, 2.001664876937866, 1.5308459997177124, 1.507209062576294, 1.4007253646850586, 1.0763568878173828, 0.2573568820953369, 1.2577941417694092, 0.20016540586948395, 0.2080109715461731, 3.231663942337036, 1.4974982738494873, 0.22924233973026276, 0.8112363219261169, 0.5831732153892517, 0.03717155382037163, -0.0931810736656189, 1.6993858814239502, 1.9425886869430542, 2.230010747909546, -0.7899075746536255, -1.041550874710083, -1.163835048675537, -0.023047853261232376, -0.7102572917938232, -0.6930257081985474, 2.35408616065979, 2.9593417644500732, 1.747288703918457, -1.4183573722839355, -3.672621726989746, -0.4312297999858856, -7.906158447265625, -4.6028571128845215, -2.2369861602783203, -4.694456100463867, -2.8813130855560303, -6.100637435913086, -5.464810848236084, -2.905691385269165, -2.2714719772338867, -3.974491834640503, -7.147107124328613, -3.6417150497436523, -1.5428097248077393, -2.6747145652770996, -2.2317328453063965, -2.1590499877929688, -3.2053399085998535, -2.3329577445983887, -1.3180989027023315, -2.262638807296753, -1.149888038635254, -2.112332820892334, -2.4860734939575195, -0.8565242886543274, -0.47458285093307495, -2.3548367023468018, -1.354463815689087, -1.7831059694290161, -1.6712779998779297, -2.0474355220794678, 0.6300367116928101, -2.0333731174468994, -0.30299773812294006, -1.705795407295227, 0.2845810353755951, -1.818902850151062, -1.2862391471862793, -2.0488240718841553, -0.5381596684455872, -0.5640580058097839, -1.6181864738464355, -1.55097234249115, -0.1210620179772377, -1.1456257104873657, -1.1275335550308228, -0.8689118027687073, 0.08309686183929443, -0.9453075528144836, -0.970598042011261, 0.9878921508789062, -0.34412458539009094, -1.0246222019195557, -1.0590088367462158, -0.5912625193595886, 1.081247091293335, 1.3132822513580322, 3.4099647998809814, -1.5989214181900024, 0.6513791680335999, 0.21187707781791687, -2.2735748291015625, -1.9909420013427734, -2.1788532733917236, -1.8416821956634521, -1.3916486501693726, -0.6080116629600525, -3.4252054691314697, -5.368403434753418, -4.12479305267334, -1.9456300735473633, -1.5372709035873413, -1.6067602634429932, -1.2785377502441406, -1.1867151260375977, 0.2990397810935974, -1.0779470205307007, -0.158025324344635, -0.14052170515060425, -3.3931007385253906, -1.5667158365249634, -0.36663204431533813, -0.8455533385276794, -0.6713784337043762, -0.16063879430294037, -0.040134310722351074, -1.4953278303146362, 1.596260905265808, 5.198098182678223, 2.63092041015625, -0.40998658537864685, -0.32816070318222046, 0.4930421710014343, -0.0616956390440464, -0.03750624507665634, 1.0591871738433838, 0.959857702255249, 3.3427958488464355, -4.3458991050720215, -7.73824405670166, -0.6858645081520081, -0.9432830214500427, -0.6730754375457764, -1.3013004064559937, -1.9121559858322144, -1.011731505393982, -3.1688013076782227, 3.716156482696533, -1.3690149784088135, -0.16697902977466583, -1.5855625867843628, -2.169727325439453, -1.7538241147994995, 0.6404786109924316, -1.0807452201843262, -1.1927940845489502, -0.849341869354248, -1.9389855861663818, -0.8733682632446289, -0.659896194934845, -0.8995044231414795, -1.0617659091949463, -0.8034411668777466, 0.9729233980178833, 0.5285145044326782, 0.2824307382106781, -0.9946240782737732, -0.37254321575164795, -0.6959270238876343, -0.4802451729774475, -0.7419224977493286, -2.6758620738983154, -0.695358157157898, 0.09782667458057404, -0.46678611636161804, -0.23515424132347107, -0.4873230457305908, -0.47331178188323975, -0.867354154586792, -0.21005989611148834, -0.2723740041255951, -1.0755614042282104, -0.29528096318244934, 2.2023961544036865, -0.32304009795188904, -0.22123561799526215, 0.24789991974830627, 2.7217793464660645, 0.15713565051555634, 0.04494522139430046, 0.6728058457374573, -0.14567501842975616, -0.4104965031147003, -0.2612016201019287, -0.21245737373828888, 0.7029872536659241, 0.7955795526504517, 1.6041685342788696, -0.3090055584907532, 0.10718128830194473, 1.8080730438232422, -0.46032610535621643, -0.11171220988035202, -0.7961090207099915, -0.790030837059021, -0.4890535771846771, -0.2189905345439911, -0.9987297058105469, -2.211577892303467, -1.6008617877960205, -0.5922768712043762, -0.5221610069274902, -0.637117862701416, -0.2673161029815674, -0.41357263922691345, 0.8814568519592285, -0.2164633423089981, 0.16833142936229706, 0.3782579302787781, -1.1592421531677246, -0.38619136810302734, -0.12990409135818481, -0.10718148946762085, -0.01697695441544056, 0.06661339849233627, 0.014486494474112988, -0.5699627995491028, 1.9973385334014893, 2.1309306621551514, -0.5122681260108948, -1.202344298362732, -1.1297152042388916, 0.014354710467159748, -0.9862836599349976, -0.30565881729125977, 2.4909772872924805, 4.27197265625, 4.374741554260254, -1.3085383176803589, -11.390575408935547, -0.20352113246917725, -7.747992038726807, -4.423669815063477, -2.3426685333251953, -4.480123519897461, -2.8186402320861816, -5.92237663269043, -1.4835683107376099, -3.0571129322052, -2.2464282512664795, -3.940237045288086, -2.7140586376190186, -3.6811470985412598, 0.9845989346504211, -2.5505330562591553, -1.9789199829101562, -2.08762788772583, -1.9171174764633179, -2.359292984008789, -1.315712809562683, -2.2376279830932617, -0.8671364784240723, -2.107095241546631, -2.6475205421447754, -0.8589930534362793, -0.3683758080005646, -2.1531691551208496, -1.4233540296554565, -1.5702155828475952, -1.6174753904342651, -2.0062501430511475, 0.342667818069458, -2.0331859588623047, -0.5590293407440186, -1.6435714960098267, 0.14125694334506989, -1.7987854480743408, -1.3453396558761597, -2.090360641479492, -0.6115875244140625, -0.7373771667480469, -1.8221087455749512, -1.6411436796188354, -0.6797935962677002, -0.9783271551132202, -1.0827277898788452, 0.2515128254890442, 0.021974338218569756, -0.9872182607650757, -0.47856155037879944, 1.1943868398666382, -0.36076390743255615, -0.9760910272598267, -0.7265956997871399, -0.5572766065597534, 1.1302062273025513, 1.1217896938323975, 3.399322032928467, -1.6227389574050903, 0.7325427532196045, 0.005098146852105856, -1.2944973707199097, -1.6728495359420776, -2.1555445194244385, -1.8680419921875, -1.3898398876190186, -0.7260504364967346, -3.4318902492523193, -5.429965496063232, -4.287997245788574, -2.0866763591766357, -1.5176806449890137, -1.5258362293243408, -1.2487256526947021, -1.1510461568832397, -0.7547659277915955, -1.276963472366333, -0.170984148979187, 0.596198558807373, -3.3602657318115234, -1.3989766836166382, -0.18409514427185059, -0.5489795804023743, -0.704750120639801, -0.2765718698501587, 0.021174276247620583, -1.4826658964157104, -0.8679412603378296, 0.2576349973678589, -0.5919599533081055, -0.7536229491233826, 1.2111365795135498, 0.7024969458580017, 1.1383100748062134]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (20, 30), 'etaBin': (1.54, 2.5)}}, 'et1_eta2': {'discriminator': {'threshold': 0.34999872446060182, 'nodes': [100, 16, 1], 'bias': [-0.019316092133522034, -0.1037711575627327, -0.03230678290128708, 0.11474386602640152, -0.08302824199199677, -0.05786946788430214, -0.006892677396535873, -0.01378057524561882, -0.14864644408226013, 0.019947558641433716, 0.1488591730594635, 0.038698844611644745, 0.040183890610933304, -0.017803698778152466, -0.1598578244447708, -0.11896070092916489, 0.11337883025407791], 'weights': [0.5552917718887329, 0.010228516533970833, -0.9567947387695312, -0.8506383895874023, -0.25354018807411194, -0.09409420937299728, -0.5022487640380859, -0.24314863979816437, -1.4397705793380737, 3.3494832515716553, 3.500687837600708, 1.4162331819534302, -1.6418179273605347, -0.2862023115158081, 0.6304506659507751, 0.7158096432685852, -2.605576753616333, 0.05955013632774353, 0.11632593721151352, -0.8891122341156006, -1.8062291145324707, -0.5559478402137756, -0.19555532932281494, 0.020463798195123672, -1.0237559080123901, -0.23868079483509064, -0.9529364705085754, -1.6772258281707764, -1.8570913076400757, -1.2494373321533203, -0.8983120322227478, -1.152151346206665, -0.6400688290596008, -1.185542345046997, -2.6568124294281006, -1.2505749464035034, -1.5172412395477295, -1.1229621171951294, -0.7818270921707153, 0.44712117314338684, -0.8999243974685669, 1.5345436334609985, -0.8705605864524841, -1.120680809020996, -0.4715586304664612, -0.18130704760551453, -0.9992321729660034, -0.8352436423301697, -0.7491253614425659, -1.182928204536438, 0.302002876996994, -0.13425582647323608, 0.8934618830680847, -0.8060379028320312, -1.351983666419983, -0.8858078718185425, -0.7271347045898438, -0.8996135592460632, -0.5432066917419434, -1.5538347959518433, -0.8567658066749573, -1.1478756666183472, -0.38719427585601807, 10.876370429992676, -0.332080215215683, 2.5477261543273926, 0.5793077349662781, -1.4362565279006958, -0.603681206703186, -0.8186864852905273, -2.2784171104431152, -3.0707437992095947, 0.32493945956230164, 0.12808974087238312, -1.5168015956878662, -1.3067073822021484, -1.2778325080871582, -1.0687216520309448, -0.7766463160514832, -0.04328407719731331, -0.19496800005435944, -1.2531750202178955, -2.910007953643799, -0.3609386682510376, -2.1424617767333984, -0.7363407611846924, -0.8463560342788696, -0.9375942945480347, 0.6519914865493774, -0.2914380431175232, -0.43966105580329895, 0.16867288947105408, -4.101846218109131, -1.0502941608428955, 0.011142313480377197, -0.9158366918563843, 0.0484946183860302, -0.06989461928606033, -0.5177410244941711, -0.7031639814376831, 0.7335751056671143, -0.0949900820851326, -0.8556097745895386, -0.897462010383606, -0.08025611937046051, -0.261803537607193, -0.4068710207939148, -0.1846694052219391, -0.2076261341571808, 3.481656789779663, 3.419125556945801, 1.398795485496521, -1.6988979578018188, -0.16265524923801422, 0.4975373148918152, 0.772631824016571, -2.782301902770996, 0.14371941983699799, 0.20590175688266754, -0.8948282599449158, -1.7259280681610107, -0.6316713094711304, -0.21104009449481964, -0.08008550852537155, -1.1546460390090942, -0.29059165716171265, -0.25878670811653137, -1.7542731761932373, -1.844640851020813, -1.0604256391525269, -0.9801983833312988, -0.9484772086143494, -0.8163326382637024, -1.4220900535583496, -2.7558176517486572, -1.266526222229004, -1.665647029876709, -1.1136500835418701, -0.7263275384902954, 0.2755652070045471, -0.7718544602394104, 1.5213825702667236, -0.8038144707679749, -1.051478385925293, -0.3741123676300049, -0.26005318760871887, -0.8455421924591064, -0.6586684584617615, -0.756643533706665, -1.1935230493545532, 0.2170078158378601, -0.048524320125579834, -0.3516852855682373, -0.9206705689430237, -1.4098917245864868, -0.9038867950439453, -0.6365238428115845, -0.8064131140708923, -0.4581282436847687, -1.4378315210342407, -0.8303741812705994, -1.0381807088851929, -0.32336902618408203, 10.86023235321045, -0.20308178663253784, 2.4996066093444824, 0.916535496711731, -1.4427239894866943, -0.651955246925354, -0.916057288646698, -2.6491751670837402, -1.3226696252822876, 0.20145893096923828, 0.016924021765589714, -1.5994532108306885, -1.3198020458221436, -1.2118921279907227, -1.0106171369552612, -0.8690285086631775, -0.05156170204281807, -0.1345367282629013, -1.1746867895126343, -3.0087599754333496, -0.4126783609390259, -1.6475902795791626, -0.6453680396080017, -0.8594444394111633, -0.8819097280502319, 0.5885420441627502, -0.3558621108531952, -0.5238243937492371, 0.14452555775642395, -4.069514751434326, -1.0835719108581543, -0.16290251910686493, -0.7415673136711121, -0.019963355734944344, 0.1148814857006073, -0.6057941317558289, -0.8104291558265686, 0.7246147394180298, -0.11818815022706985, -0.8793654441833496, -0.7741272449493408, -0.1725231111049652, -0.3059075176715851, -0.46918076276779175, -0.212732195854187, -1.3384826183319092, 3.487067461013794, 3.4443018436431885, 1.584708571434021, -1.7936021089553833, -0.1785620003938675, 0.6468092799186707, 0.7794907689094543, -2.569432497024536, 0.09671192616224289, 0.15427713096141815, -0.7508818507194519, -1.856061339378357, -0.46623748540878296, -0.02812071517109871, -0.07284417003393173, -0.9098274111747742, -0.18429060280323029, -0.23630863428115845, -1.5745432376861572, -2.073143482208252, -1.1390475034713745, -0.96384197473526, -0.9389058947563171, -0.666911780834198, -1.4336183071136475, -2.62703537940979, -1.4563757181167603, -1.7171554565429688, -1.0512981414794922, -0.6972362995147705, 0.339679092168808, -0.9511238932609558, 1.5715643167495728, -0.8007113337516785, -1.0636872053146362, -0.586872935295105, -0.3550742268562317, -0.8697413802146912, -0.6544356942176819, -0.8945467472076416, -1.2754613161087036, 0.3610660135746002, -0.06953465938568115, -0.26404812932014465, -0.8395150899887085, -1.3439617156982422, -0.774702787399292, -0.6974011659622192, -0.9728923439979553, -0.5893943309783936, -1.4801794290542603, -0.8205973505973816, -1.250777244567871, -0.36026930809020996, 10.894411087036133, -0.42308273911476135, 2.3444528579711914, 0.8858518600463867, -1.467198133468628, -0.7441110610961914, -0.9217826128005981, -2.156825304031372, -1.343586802482605, 0.25004807114601135, 0.05955538526177406, -1.6514348983764648, -1.2369376420974731, -1.2601590156555176, -1.0826798677444458, -0.7860440611839294, 0.0887174904346466, -0.041484326124191284, -1.1946935653686523, -2.973034620285034, -0.4790688157081604, -1.8347071409225464, -0.7825266718864441, -0.8445653915405273, -0.8828567266464233, 0.5315582156181335, -0.3270191550254822, -0.320083886384964, 0.09319224953651428, -4.249144554138184, -1.1637670993804932, -0.05504040792584419, -0.8941628932952881, -0.008276454173028469, -0.05497322976589203, -0.5358245968818665, -0.6403898000717163, -0.6696319580078125, 0.03270046040415764, 0.8640455007553101, 0.8980611562728882, 0.2464776635169983, 0.32776811718940735, 0.5700050592422485, 0.21295976638793945, 0.3229745626449585, -3.3371031284332275, -3.4341933727264404, -1.3828312158584595, 1.6272374391555786, 0.27042704820632935, -0.7119466662406921, -0.7196571230888367, 2.580906867980957, -0.156316876411438, -0.13831043243408203, 0.8095064759254456, 1.8257427215576172, 0.5846728086471558, 0.12217122316360474, 0.19327515363693237, 0.977573037147522, 0.3239986002445221, 0.1648118644952774, 1.7038171291351318, 1.908756971359253, 1.108931303024292, 0.8072933554649353, 1.0766046047210693, 0.8026160597801208, 1.286221981048584, 2.6415646076202393, 1.41896390914917, 1.5956764221191406, 0.9195521473884583, 0.6640766859054565, -0.2301202118396759, 0.9652895331382751, -1.598633885383606, 0.8651534914970398, 1.1733200550079346, 0.40456539392471313, 0.35020318627357483, 0.7773797512054443, 0.7307055592536926, 0.8341201543807983, 1.195003628730774, -0.23022514581680298, 0.22589200735092163, 0.3061002492904663, 0.8185170292854309, 1.4574700593948364, 0.938140332698822, 0.5677893161773682, 0.7599512934684753, 0.4279262125492096, 1.4332828521728516, 0.8324853777885437, 1.078055739402771, 0.2039680778980255, -10.871905326843262, 0.35006770491600037, -2.490281581878662, -0.7757031917572021, 1.5198066234588623, 0.7101616859436035, 0.7515924572944641, 2.7716360092163086, 1.3313320875167847, -0.20012888312339783, -0.076100192964077, 1.486978530883789, 1.3516525030136108, 1.2427988052368164, 1.0729584693908691, 0.729925811290741, 0.15996645390987396, 0.19842636585235596, 1.2653568983078003, 3.051607847213745, 0.4309154748916626, 1.63603937625885, 0.7357271313667297, 0.8980702757835388, 0.8016939163208008, -0.5445800423622131, 0.12130704522132874, 0.4391273558139801, -0.09838249534368515, 4.11781120300293, 1.122452974319458, 0.19744031131267548, 0.9369194507598877, 0.06823644787073135, 0.060421332716941833, 0.6352501511573792, 0.6739318370819092, 0.6858038902282715, -0.019727200269699097, -1.001968264579773, -0.8918737173080444, -0.1502036452293396, -0.3205699026584625, -0.5736018419265747, -0.13186383247375488, -0.39529410004615784, 3.4859557151794434, 3.4284462928771973, 1.4035826921463013, -1.640210509300232, -0.3135383725166321, 0.5356839299201965, 0.6600520014762878, -2.5823628902435303, 0.13955093920230865, 0.0725494921207428, -0.770932674407959, -1.7348649501800537, -0.6507049798965454, -0.20144428312778473, -0.13504642248153687, -1.1447025537490845, -0.35723036527633667, -0.286099910736084, -1.6319332122802734, -1.8560181856155396, -1.2031279802322388, -0.8930785059928894, -1.00017511844635, -0.6441065669059753, -1.245873212814331, -2.794471025466919, -1.3996754884719849, -1.5556483268737793, -1.0835742950439453, -0.7992517948150635, 0.22534754872322083, -0.9724661111831665, 1.6932770013809204, -0.8565849661827087, -1.1712214946746826, -0.360552579164505, -0.2824894189834595, -0.8571367263793945, -0.6806299090385437, -0.7907031774520874, -1.1049941778182983, 0.3263963758945465, -0.08406949043273926, -0.28964173793792725, -0.8079245090484619, -1.4929438829421997, -0.7955628633499146, -0.5991711616516113, -0.932087779045105, -0.6560699343681335, -1.404407024383545, -0.8554427027702332, -1.2351109981536865, -0.33419013023376465, 10.89401912689209, -0.2312469482421875, 2.4426827430725098, 0.9305117130279541, -1.3534389734268188, -0.6897302865982056, -0.9675629138946533, -2.168972969055176, -1.322123646736145, 0.3144022524356842, 0.23111803829669952, -1.4979221820831299, -1.1858443021774292, -1.2555993795394897, -1.1561403274536133, -0.7495806813240051, -0.04245036467909813, -0.18406154215335846, -1.1813132762908936, -2.8791563510894775, -0.4076322913169861, -1.7781468629837036, -0.5980466604232788, -0.7824084758758545, -0.967664361000061, 0.5172649025917053, -0.319959431886673, -0.3406945765018463, 0.28363990783691406, -4.237994194030762, -1.1467232704162598, -0.10464151203632355, -0.9307601451873779, 0.09541943669319153, -0.04833906143903732, -0.470238596200943, -0.7218970060348511, 0.6560988426208496, -0.019636064767837524, -0.987587571144104, -0.8654680252075195, -0.21539467573165894, -0.2691390812397003, -0.3547929525375366, -0.15463805198669434, -0.44715645909309387, 3.268347978591919, 3.445453643798828, 1.4911233186721802, -1.6178590059280396, -0.16750086843967438, 0.6673619151115417, 0.7508688569068909, -2.7298293113708496, 0.27502188086509705, 0.04391147196292877, -0.878665566444397, -1.7333455085754395, -0.42223119735717773, -0.08202985674142838, -0.1357778012752533, -1.0610271692276, -0.18828009068965912, -1.10871160030365, -1.6452271938323975, -1.9328927993774414, -1.1163911819458008, -1.0184240341186523, -1.1207354068756104, -0.799267590045929, -1.3428575992584229, -2.646636724472046, -1.378038763999939, -1.5872211456298828, -0.9589189887046814, -0.8143696784973145, 0.38390132784843445, -0.8238955140113831, 1.7091470956802368, -0.8524795174598694, -1.0142797231674194, -0.44063395261764526, -0.38869708776474, -0.8513612151145935, -0.6661911606788635, -0.7474545240402222, -1.113882303237915, 0.2191244661808014, -0.05329042673110962, -0.31202733516693115, -0.7818042039871216, -1.2730140686035156, -0.9762862324714661, -0.6460895538330078, -0.9700111150741577, -0.6080973148345947, -1.5421806573867798, -0.8005247712135315, -1.0704976320266724, -0.3505350351333618, 10.77982234954834, -0.4056065082550049, 2.332180976867676, 0.8519328832626343, -1.3173824548721313, -0.6615946292877197, -0.8192706108093262, -2.2163519859313965, -1.3874064683914185, 0.23657876253128052, 0.20182503759860992, -1.648252248764038, -1.3577327728271484, -1.1491069793701172, -1.0587122440338135, -0.9210017323493958, 0.09329727292060852, -0.10950182378292084, -1.2180290222167969, -2.954618453979492, -0.5974734425544739, -1.8027368783950806, -0.6955682039260864, -0.9109864234924316, -0.79716956615448, 0.6159631609916687, -0.1585788130760193, -0.5499623417854309, 0.1952921748161316, -4.153988838195801, -1.1303470134735107, -0.0651962012052536, -0.7791256308555603, 0.015276663936674595, -0.10145309567451477, -0.5245361924171448, -0.7878845930099487, 0.5420677065849304, 0.08807596564292908, -0.9652855396270752, -0.7756388187408447, -0.2582073509693146, -0.17781835794448853, -0.4082542657852173, -0.10696716606616974, -1.258629560470581, 3.3630504608154297, 3.330069065093994, 1.3764828443527222, -1.6140903234481812, -0.22745390236377716, 0.5316597819328308, 0.6512035727500916, -2.667112112045288, 0.06558626890182495, 0.055324967950582504, -0.8987908959388733, -1.9087872505187988, -0.5168763399124146, -0.017934247851371765, 0.1199500784277916, -1.108228087425232, -0.21412090957164764, -1.0999445915222168, -1.7409183979034424, -2.016655683517456, -1.1809495687484741, -0.9947664141654968, -1.0683255195617676, -0.749823272228241, -1.3067584037780762, -2.7546021938323975, -1.3776978254318237, -1.7094800472259521, -1.1140555143356323, -0.760067343711853, 0.42332199215888977, -0.8901544809341431, 1.6417795419692993, -0.6780205368995667, -1.0704796314239502, -0.5616641044616699, -0.3436475396156311, -0.7575474381446838, -0.7307946085929871, -0.9181311130523682, -1.2583494186401367, 0.38407453894615173, -0.14973074197769165, 0.8444107174873352, -0.802437424659729, -1.2806735038757324, -0.7632415294647217, -0.6862729787826538, -0.9626096487045288, -0.7404227256774902, -1.4165318012237549, -0.863975465297699, -1.18902587890625, -0.4225977659225464, 10.772107124328613, -0.23835685849189758, 2.40183162689209, 0.6040114760398865, -1.5220704078674316, -0.7533706426620483, -0.7849242687225342, -2.1319403648376465, -2.95457124710083, 0.2098451554775238, 0.21101662516593933, -1.606735110282898, -1.2558144330978394, -1.3445488214492798, -1.172842264175415, -0.8773942589759827, -0.022912582382559776, -0.11842013895511627, -1.2591526508331299, -2.9178128242492676, -0.5895341038703918, -2.1575403213500977, -0.660133957862854, -0.6962929964065552, -0.8991097211837769, 0.6525007486343384, -0.3258896470069885, -0.5198801159858704, 0.17467382550239563, -4.190149307250977, -1.1786179542541504, -0.0998210459947586, -0.8977149724960327, 0.030365636572241783, 0.09993544965982437, -0.5981345772743225, -0.8582810163497925, 0.5524110198020935, 0.11531226336956024, -1.0019946098327637, -0.9969024658203125, -0.20132476091384888, -0.11159340292215347, -0.5777144432067871, -0.15819329023361206, -0.4240085184574127, 3.3257875442504883, 3.2646822929382324, 1.432519555091858, -1.6101032495498657, -0.28971201181411743, 0.5283111929893494, 0.6881642937660217, -2.7632620334625244, 0.21138545870780945, 0.12903903424739838, -0.9136327505111694, -1.7372262477874756, -0.4604852497577667, -0.064637191593647, -0.006348660681396723, -1.0896896123886108, -0.13110902905464172, -0.9624751210212708, -1.7700157165527344, -2.0115745067596436, -1.1155856847763062, -0.788764238357544, -1.0497938394546509, -0.6650617718696594, -1.3809199333190918, -2.709787368774414, -1.4830747842788696, -1.7210495471954346, -0.9916821122169495, -0.6696491241455078, 0.2705630660057068, -0.8018741011619568, 1.6704416275024414, -0.7711095213890076, -0.9818471074104309, -0.34823861718177795, -0.1930639147758484, -0.8789785504341125, -0.8605405688285828, -0.8687694072723389, -1.0590296983718872, 0.24311695992946625, -0.17582863569259644, -0.2927711009979248, -0.9937281012535095, -1.429437279701233, -0.732380747795105, -0.7981847524642944, -0.9775375723838806, -0.7422921657562256, -1.5196466445922852, -0.8099066615104675, -1.2283482551574707, -0.2597169876098633, 10.907303810119629, -0.3482074439525604, 2.3625059127807617, 0.8717207908630371, -1.3964693546295166, -0.6666903495788574, -0.908074140548706, -2.1554651260375977, -1.3678256273269653, 0.1117272675037384, 0.09076996147632599, -1.5935816764831543, -1.3875312805175781, -1.3178406953811646, -1.0343167781829834, -0.891835629940033, 0.056560713797807693, -0.027595989406108856, -1.1675275564193726, -2.860581398010254, -0.49365389347076416, -1.71084725856781, -0.7552939057350159, -0.8165731430053711, -0.8600330352783203, 0.5460430383682251, -0.20101794600486755, -0.3369798958301544, 0.11865200847387314, -4.100966930389404, -1.0798583030700684, -0.01701251044869423, -0.9220162630081177, 0.09343264997005463, -0.030823949724435806, -0.49320000410079956, -0.7121666669845581, 0.632112979888916, -0.05428549274802208, -0.8398749828338623, -0.7990745306015015, -0.1185401976108551, 2.6731719970703125, -0.5765849351882935, -0.18326599895954132, -0.35980263352394104, 3.3923072814941406, 3.337785482406616, 1.521710991859436, -1.7350128889083862, -0.13072694838047028, 0.529849112033844, 0.7103376984596252, -2.7135844230651855, 0.2357502579689026, 0.06007874011993408, -0.7547092437744141, -1.775507926940918, -0.5906293392181396, -0.06129206717014313, -0.14705394208431244, -1.1301027536392212, -0.15509547293186188, -0.2765403687953949, -1.7038192749023438, -1.9208108186721802, -1.0965497493743896, -0.9743235111236572, -1.116319179534912, -0.8019616007804871, -1.4192209243774414, -2.8154807090759277, -1.3002300262451172, -1.5239949226379395, -1.1099088191986084, -0.7488856315612793, 0.23943021893501282, -0.8672509789466858, 1.6506108045578003, -0.7268218398094177, -1.1732014417648315, -0.44607657194137573, -0.1607809215784073, -0.7964323163032532, -0.6717060208320618, -0.7984524965286255, -1.0591058731079102, 0.35388270020484924, -0.13013166189193726, -0.4093472361564636, -0.8671713471412659, -1.3253464698791504, -0.9607282280921936, -0.6807286739349365, -0.9727411270141602, -0.46037420630455017, -1.5484155416488647, -0.799708902835846, -1.0443429946899414, -0.36867570877075195, 10.794164657592773, -0.2161657214164734, 2.3848462104797363, 0.927868127822876, -1.3043650388717651, -0.7762401103973389, -0.9174246191978455, -2.7800586223602295, -1.3057551383972168, 0.09613153338432312, 0.196137472987175, -1.4711434841156006, -1.2639726400375366, -1.1665273904800415, -1.0663243532180786, -0.8164348006248474, 0.04119865968823433, -0.04601795971393585, -1.2183531522750854, -3.0672388076782227, -0.39163029193878174, -1.6475480794906616, -0.6290925145149231, -0.8715149760246277, -0.9162837266921997, 0.6716094613075256, -0.13705773651599884, -0.43566396832466125, 0.26804637908935547, -4.089991092681885, -1.050508737564087, 0.005654691252857447, -0.765339195728302, -0.09186980128288269, 0.061650313436985016, -0.4814169406890869, -0.7700247168540955, 0.22261957824230194, 0.27385228872299194, -0.38581645488739014, -0.2188703864812851, 0.02134861797094345, 0.09258832782506943, -0.08652443438768387, -0.04787389934062958, -2.271608829498291, 1.4947373867034912, 1.4573472738265991, 0.5160476565361023, -0.8225224018096924, -0.07194259762763977, 0.07544585317373276, 0.22346793115139008, -0.9598096013069153, 0.7252102494239807, 0.6960195302963257, -1.4652684926986694, -0.7625773549079895, -0.8763155341148376, 0.1309540867805481, 0.6470280885696411, 0.15402714908123016, -0.10100390762090683, -0.42381924390792847, -0.6934351325035095, -0.762237012386322, -0.4023946523666382, -0.3195303976535797, -0.38602960109710693, -0.0778217613697052, -0.48665106296539307, -0.9878547787666321, -0.5887565016746521, -0.7072536945343018, -0.35406625270843506, -0.2763228118419647, 0.21918776631355286, -0.31705358624458313, 0.9699246287345886, -0.17995712161064148, -0.40799084305763245, -0.03289899230003357, 0.1274687796831131, -0.36904576420783997, -0.17907430231571198, -0.22493049502372742, -0.330144464969635, 0.2705046832561493, 0.14948803186416626, -0.06799889355897903, -0.3077440857887268, -0.43842312693595886, -0.22256720066070557, -0.06345987319946289, -0.18686693906784058, -0.06358469277620316, -0.5627282857894897, -0.32939475774765015, -0.45493051409721375, 0.01959889568388462, 5.156739234924316, 0.2834535539150238, 1.2460044622421265, 0.3060623109340668, -0.47827714681625366, -0.1157769039273262, -0.3361499011516571, -0.8086167573928833, -1.3150746822357178, 0.6540687680244446, 0.5690444707870483, -3.209197998046875, -0.395097553730011, -0.4609433114528656, -0.40177494287490845, -0.2810609042644501, 0.25238457322120667, 0.2293238490819931, -2.195103883743286, -1.167539358139038, -0.14838236570358276, -0.999081552028656, -0.212384432554245, -0.13247260451316833, -0.15001089870929718, 0.026074187830090523, -0.15011508762836456, -0.10747889429330826, 0.19392193853855133, -1.6530259847640991, -0.2750660479068756, -0.06225883215665817, -0.2546047568321228, -0.03841559961438179, -0.03967097029089928, 0.015415400266647339, -0.3048535883426666, -0.5692223310470581, -0.07346553355455399, 0.928709089756012, 0.7833044528961182, 0.153292715549469, -2.6441550254821777, 0.44275110960006714, 0.2619275450706482, 0.3028370440006256, -3.4265103340148926, -3.321615219116211, -1.5663403272628784, 1.835250973701477, 0.30459505319595337, -0.6639588475227356, -0.7172166705131531, 2.7376997470855713, -0.2478047013282776, -0.1797090619802475, 0.8652576208114624, 1.81241774559021, 0.6039350628852844, 0.10478495061397552, 0.06856509298086166, 0.9166993498802185, 0.3458516597747803, 0.2566390633583069, 1.6602988243103027, 2.040602684020996, 1.2547693252563477, 0.9900321364402771, 1.0598194599151611, 0.844077467918396, 1.2845771312713623, 2.759064197540283, 1.3612451553344727, 1.6575517654418945, 0.9038020968437195, 0.6493788957595825, -0.4374237358570099, 0.8661250472068787, -1.494763970375061, 0.723382294178009, 1.0331300497055054, 0.5366083383560181, 0.2624150216579437, 0.888665497303009, 0.7704996466636658, 0.9038853645324707, 1.2708921432495117, -0.38372424244880676, 0.03329093009233475, 0.3952557444572449, 0.8966758847236633, 1.389200210571289, 0.9724171757698059, 0.6618061065673828, 0.7775104641914368, 0.41268953680992126, 1.4101024866104126, 1.0018811225891113, 1.25154709815979, 0.41304636001586914, -10.789060592651367, 0.2728728652000427, -2.4127449989318848, -0.8776015043258667, 1.5104824304580688, 0.7814182043075562, 0.8841051459312439, 2.8040359020233154, 1.2939538955688477, -0.2128550112247467, -0.19145046174526215, 1.5584542751312256, 1.2222511768341064, 1.2886991500854492, 1.0066851377487183, 0.8890364766120911, -0.05277736857533455, 0.2140362411737442, 1.2769666910171509, 2.974672555923462, 0.5296852588653564, 1.7198127508163452, 0.5845268368721008, 0.7820757627487183, 0.9854792356491089, -0.6722201704978943, 0.23911726474761963, 0.3506932556629181, -0.3056710362434387, 4.160074234008789, 0.9940557479858398, 0.201008602976799, 0.90798020362854, 0.0233707744628191, -0.043903857469558716, 0.5909914374351501, 0.6908525228500366, -0.5875297784805298, -0.02776630036532879, 0.9093465805053711, 0.9859960675239563, 0.23784762620925903, 0.23874036967754364, 0.5052947402000427, 0.28018468618392944, 1.2873717546463013, -3.4774231910705566, -3.30070424079895, -1.5356227159500122, 1.7687159776687622, 0.18869982659816742, -0.5209565758705139, -0.6100957989692688, 2.753513813018799, -0.12017790228128433, -0.06640010327100754, 0.812556803226471, 1.909602165222168, 0.6444414258003235, 0.1857922524213791, -0.005518943537026644, 1.121510624885559, 0.25868430733680725, 1.003171443939209, 1.6081900596618652, 1.8776129484176636, 1.2382960319519043, 0.7876763343811035, 1.1334214210510254, 0.6184034943580627, 1.2892389297485352, 2.78045392036438, 1.4749940633773804, 1.7585704326629639, 0.9878721833229065, 0.7815052270889282, -0.3511771857738495, 0.8986721038818359, -1.596664547920227, 0.8401011824607849, 0.9845490455627441, 0.5737125873565674, 0.2673555612564087, 0.9618011116981506, 0.8235570788383484, 0.7815597057342529, 1.2024366855621338, -0.3832310736179352, 0.008286681026220322, -0.7784460186958313, 0.9768238067626953, 1.5027365684509277, 0.836801290512085, 0.6561470031738281, 0.8466697931289673, 0.6869416236877441, 1.4963550567626953, 0.791848361492157, 1.173964023590088, 0.3179985284805298, -10.969965934753418, 0.2000882625579834, -2.486266613006592, -0.7102620601654053, 1.2838163375854492, 0.7918285131454468, 0.9491873979568481, 2.214906930923462, 2.995861768722534, -0.2495458722114563, -0.21504539251327515, 1.5675654411315918, 1.2224774360656738, 1.2699116468429565, 1.089068055152893, 0.6877438426017761, 0.06078376993536949, -0.02695423737168312, 1.0760304927825928, 3.0633158683776855, 0.5158119797706604, 1.8551548719406128, 0.7786241769790649, 0.6904430389404297, 0.8602482080459595, -0.6634842157363892, 0.27224621176719666, 0.31184902787208557, -0.25209683179855347, 4.115756511688232, 1.1150634288787842, 0.07361479103565216, 0.7907412648200989, 0.07072055339813232, 0.016683489084243774, 0.501982569694519, 0.7487491369247437, -0.15351438522338867, -0.015474776737391949, 0.3224705457687378, 0.368401437997818, 0.054661836475133896, -0.33910059928894043, 0.20444133877754211, 0.14257746934890747, 1.1763544082641602, -0.7914208173751831, -0.761695384979248, -0.489960640668869, 0.2430058717727661, 0.04654635488986969, -0.30573949217796326, -0.29601770639419556, 0.5736737251281738, 0.040292833000421524, 0.0001534953189548105, 0.8606926202774048, 0.4631679654121399, 0.5023238658905029, -0.05345385521650314, -0.05911736190319061, -0.02512521483004093, 0.15216971933841705, 0.2015838325023651, 0.4772830307483673, 0.5508400797843933, 0.27763503789901733, 0.16519032418727875, 0.30578505992889404, 0.12799791991710663, 0.41659292578697205, 0.6312043070793152, 0.3065654933452606, 0.46833327412605286, 0.1810104250907898, 0.3182970881462097, 0.05631256848573685, 0.26955774426460266, -0.25929880142211914, 0.3093605935573578, 0.40027838945388794, 0.21371953189373016, 0.2256433367729187, 0.16652962565422058, 0.32942795753479004, 0.2278715968132019, 0.3164258897304535, 0.07985683530569077, 0.19594430923461914, -0.1714591681957245, 0.347763329744339, 0.4583021402359009, 0.19667427241802216, 0.1678125262260437, 0.2956392168998718, 0.31660836935043335, 0.2720945179462433, 0.36709728837013245, 0.42693787813186646, 0.15950585901737213, -2.0562732219696045, 0.19613035023212433, -0.3040444552898407, -0.10329990833997726, 0.3453850746154785, 0.35603317618370056, 0.1640731394290924, 0.43434178829193115, 0.3735398054122925, 0.03558903560042381, 0.11653785407543182, 1.4684211015701294, 0.2657748758792877, 0.3720548152923584, 0.2963389754295349, 0.13488070666790009, 0.19518886506557465, 0.1809907853603363, 1.1420998573303223, 0.7772908806800842, 0.07644534111022949, 0.45514440536499023, 0.2749902904033661, 0.19483910501003265, 0.34127283096313477, -0.2552580237388611, 0.07143449038267136, 0.2498902976512909, -0.02597561478614807, 0.8495694994926453, 0.2772759795188904, 0.0762675553560257, 0.3240980803966522, -0.04781553894281387, -0.02920999936759472, 0.11201774328947067, 0.20301388204097748, -0.22155533730983734, -0.25239482522010803, 0.3942726254463196, 0.35944950580596924, -0.15318694710731506, -0.14408089220523834, 0.08346880227327347, -0.02467876859009266, 2.467668056488037, -1.3736053705215454, -1.3765095472335815, -0.4578242897987366, 0.9056024551391602, 0.14426404237747192, -0.1581110656261444, -0.2552333474159241, 1.146436333656311, -0.7663829922676086, -0.6800397634506226, 1.678048014640808, 0.7941333651542664, 0.9000147581100464, -0.7960336208343506, -0.5820049047470093, -0.12017951905727386, 0.21020056307315826, 0.33966541290283203, 0.52530837059021, 0.850095272064209, 0.48447316884994507, 0.27255627512931824, 0.23525470495224, 0.18350504338741302, 0.4500918686389923, 0.9798058867454529, 0.5604541897773743, 0.6170668005943298, 0.3408123850822449, 0.17761513590812683, -0.2505834102630615, 0.18524663150310516, -0.9803856015205383, 0.20893211662769318, 0.3571166694164276, 0.08735021948814392, 0.058525990694761276, 0.28425905108451843, 0.18046684563159943, 0.13006743788719177, 0.22451025247573853, -0.296002596616745, 0.026890018954873085, 0.03122042305767536, 0.247061088681221, 0.4401393234729767, 0.21346578001976013, 0.11411820352077484, 0.3441142141819, 0.1260416954755783, 0.46154752373695374, 0.3290356993675232, 0.4680897891521454, -0.03187314420938492, -5.049267768859863, -0.30469444394111633, -1.268471360206604, -0.4665786027908325, 0.6065343022346497, 0.08062374591827393, 0.3166109621524811, 0.9076255559921265, 1.147546648979187, -0.6914778351783752, -0.6807433366775513, 3.230966567993164, 0.41428691148757935, 0.2955557703971863, 0.3404185175895691, 0.299495667219162, -0.23678402602672577, -0.11761575937271118, 2.1901726722717285, 1.0836626291275024, -0.07470156252384186, 0.9313201308250427, 0.12807345390319824, 0.1899438351392746, 0.37263065576553345, -0.19281698763370514, 0.2678961157798767, -0.010805061087012291, -0.12060068547725677, 1.7620373964309692, 0.3841964304447174, 0.0026256220880895853, 0.12676605582237244, -0.11460620164871216, 0.05920666456222534, -0.012849540449678898, 0.11611093580722809, 0.6771117448806763, -0.09010560810565948, -0.9665323495864868, -0.7928628921508789, -0.2548508644104004, 2.631056785583496, -0.373775839805603, -0.1700432449579239, -0.26178157329559326, 3.4720377922058105, 3.269885301589966, 1.568495750427246, -1.6251331567764282, -0.2848411202430725, 0.5914715528488159, 0.5737268328666687, -2.653423547744751, 0.15727578103542328, 0.11436566710472107, -0.36837369203567505, -1.7710082530975342, -0.5890544056892395, -0.004598815925419331, -0.1717689037322998, -0.9595019817352295, -0.1270713210105896, -0.2681505084037781, -1.6845159530639648, -1.821069359779358, -1.2113145589828491, -1.0177128314971924, -0.9937042593955994, -0.6653838753700256, -1.3438081741333008, -2.7087831497192383, -1.280611276626587, -1.7361533641815186, -1.045855164527893, -0.7381701469421387, 0.37074896693229675, -0.9689252972602844, 1.615546464920044, -0.7941573262214661, -1.187119483947754, -0.389799028635025, -0.1440800577402115, -0.9248347282409668, -0.8007283806800842, -0.8823519945144653, -1.109104871749878, 0.31093350052833557, -0.23165729641914368, -0.4798595607280731, -0.8755504488945007, -1.4294612407684326, -0.8385142683982849, -0.6832071542739868, -0.8230113387107849, -0.5643129348754883, -1.4732786417007446, -1.0101966857910156, -1.169541835784912, -0.41638052463531494, 10.843693733215332, -0.24382582306861877, 0.15963220596313477, 0.8735771179199219, -1.2987276315689087, -0.6054645776748657, -0.9831261038780212, -2.6652421951293945, -1.4855848550796509, 0.24082186818122864, -0.0018209561239928007, -1.6427631378173828, -1.3087844848632812, -1.102328896522522, -1.120883822441101, -0.7444868683815002, -0.07999657094478607, -0.14935782551765442, -1.2114752531051636, -4.82593297958374, -0.5667009353637695, -1.6259385347366333, -0.6089750528335571, -0.6789158582687378, -0.9202635288238525, 0.5959989428520203, -0.2938535809516907, -0.3423807919025421, 0.22740700840950012, -4.126529693603516, -0.9828047752380371, -0.10889439284801483, -0.8516637682914734, 0.03482954949140549, -0.12931567430496216, -0.5842295289039612, -0.721480667591095, 0.7322691679000854, 0.06651779264211655, -0.8901524543762207, -0.7736340761184692, -0.28127360343933105, -0.3023776113986969, -0.367135226726532, -0.18577773869037628, -0.2133750468492508, 3.312370777130127, 3.439251184463501, 1.4256643056869507, -1.6716214418411255, -0.08436109125614166, 0.4995855987071991, 0.678874671459198, -2.5522241592407227, 0.16384737193584442, 0.06027798354625702, -0.9152365326881409, -1.8614736795425415, -0.47841542959213257, -0.005530437454581261, -0.1541101038455963, -1.1144267320632935, -0.27409517765045166, -0.0974019393324852, -1.7681572437286377, -1.8858016729354858, -1.1614291667938232, -0.9538732171058655, -0.9946754574775696, -0.7595598101615906, -1.434044361114502, -2.6819193363189697, -1.4070396423339844, -1.7144439220428467, -1.00375235080719, -0.6213544607162476, 0.21728792786598206, -0.8275063633918762, 1.642755150794983, -0.8314856886863708, -1.0835851430892944, -0.42108863592147827, -0.28220322728157043, -0.9751375317573547, -0.7222127318382263, -0.7549343109130859, -1.224083662033081, 0.379701167345047, -0.18609243631362915, -0.22526735067367554, -0.7991133332252502, -1.374838948249817, -0.9978248476982117, -0.7451139688491821, -0.8566227555274963, -0.6976406574249268, -1.5913162231445312, -0.9853466153144836, -1.0982879400253296, -0.2764087915420532, 10.765791893005371, -0.27141159772872925, 2.37382173538208, 0.9282246828079224, -1.313207745552063, -0.6641057729721069, -0.8031356334686279, -2.574204921722412, -1.3942062854766846, 0.18911921977996826, 0.06048859283328056, -1.4564509391784668, -1.3828494548797607, -1.1867462396621704, -1.243852972984314, -0.7489772439002991, -0.028437986969947815, -0.1516718715429306, -1.1385879516601562, -2.876561164855957, -0.5500564575195312, -1.7365912199020386, -0.7247620224952698, -0.8301856517791748, -0.8328460454940796, 0.7055837512016296, -0.1701187789440155, -0.38160234689712524, 0.10288836807012558, -4.190521717071533, -1.1410326957702637, -0.052337292581796646, -0.9346357583999634, 0.04343460127711296, -0.00950728077441454, -0.42270371317863464, -0.7629152536392212, 0.42700091004371643, 0.6053087115287781, 0.3591371178627014, -0.46631619334220886, 0.5706192851066589, 0.27974873781204224, 0.3642050623893738, 0.5283149480819702, 0.3677680492401123, 1.3959580659866333, -0.5715200304985046, -0.6076533198356628, -1.867607593536377, -0.4095662832260132, 0.6237652897834778, 0.08427703380584717]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (1.37, 1.54)}}, 'et1_eta1': {'discriminator': {'threshold': -0.94999999999999996, 'nodes': [100, 6, 1], 'bias': [0.21030354499816895, -0.18122774362564087, -0.14719505608081818, -0.18119624257087708, -0.14072690904140472, 0.16648980975151062, -0.14101508259773254], 'weights': [1.4386593103408813, 0.45915886759757996, -1.5229798555374146, -1.436055302619934, -1.004254698753357, -0.9490943551063538, -0.5090715289115906, 0.49285227060317993, 1.9872885942459106, 4.876913070678711, 0.6880943179130554, -4.636479377746582, 0.0033839084208011627, -0.9218282699584961, -5.503398895263672, -19.312273025512695, -7.673230171203613, -3.245694160461426, -12.294034957885742, -10.059121131896973, -8.340250015258789, -6.9441423416137695, -5.462812900543213, -6.334737300872803, -5.314388751983643, -5.322555065155029, -4.323203086853027, -4.6451287269592285, -3.095691680908203, -3.3984415531158447, -3.402747869491577, -2.7085652351379395, -2.51513671875, -2.951267957687378, -2.7571682929992676, -2.558816909790039, -2.4867498874664307, -2.3901329040527344, -2.375945568084717, -2.404093027114868, -2.5399789810180664, -2.4855754375457764, -2.0552096366882324, 0.23360034823417664, -0.6254650950431824, -1.5911295413970947, -2.2850494384765625, -1.5522570610046387, -1.359688401222229, -1.9866268634796143, -2.0798442363739014, -1.1338692903518677, -1.0612783432006836, -0.9105952382087708, -1.1205147504806519, -0.9206946492195129, -0.4777166247367859, -1.28596830368042, -1.001623511314392, -1.1145389080047607, -1.0381758213043213, -0.7109525799751282, -0.5408516526222229, -0.9200298190116882, -0.4221055507659912, -0.6132196187973022, -0.45678186416625977, 0.5002219080924988, 1.1828240156173706, 0.41585877537727356, 0.20065852999687195, 1.139463186264038, 0.3380820155143738, 0.3371035158634186, -0.3092867434024811, -2.6889688968658447, -1.9579792022705078, -1.7426689863204956, -1.6036344766616821, -1.2619227170944214, -14.300032615661621, -8.209640502929688, -4.43801736831665, -3.0450103282928467, -2.8707964420318604, -2.649761199951172, -2.2836263179779053, -2.322253942489624, -2.373394727706909, -1.5404067039489746, -0.3449452817440033, -0.13616986572742462, -3.456265926361084, -2.842782974243164, -1.1350173950195312, -0.3811895251274109, -3.3155393600463867, -2.7761964797973633, -1.235686182975769, -0.4446364641189575, -1.4873168468475342, -0.3480736315250397, 1.4507967233657837, 1.0528265237808228, 1.0006486177444458, 1.0663710832595825, 0.4961460828781128, -0.3954235315322876, -2.0221221446990967, -4.891871929168701, -0.8532798886299133, 4.709255218505859, -0.013590337708592415, 0.9823217391967773, 5.466055870056152, 19.248552322387695, 7.704766273498535, 5.583001136779785, 12.463115692138672, 9.907303810119629, 8.166528701782227, 6.845732688903809, 5.3061347007751465, 6.326858997344971, 5.333719730377197, 5.330562114715576, 4.300183296203613, 4.602540016174316, 2.9993722438812256, 3.5282344818115234, 3.533322811126709, 2.567115306854248, 2.5072102546691895, 2.760854959487915, 2.6527812480926514, 2.550811529159546, 2.410085916519165, 2.2692928314208984, 2.216564416885376, 2.2961227893829346, 2.407707452774048, 2.409529685974121, 2.016953468322754, -0.1272735744714737, 0.8253637552261353, 1.518592119216919, 1.4460020065307617, 1.5685250759124756, 1.2729991674423218, 2.198314905166626, 1.1334038972854614, 1.122263789176941, 0.6390866637229919, 0.8636446595191956, 1.1045585870742798, 0.5485116839408875, 0.4423002600669861, 1.242871642112732, 0.888534426689148, 0.4922315776348114, 0.8671665787696838, 0.7313299179077148, 0.5199978947639465, 0.9993928670883179, 0.2491784691810608, 0.17265687882900238, 0.5316669940948486, -0.5010084509849548, -1.1836270093917847, -0.8156769871711731, -0.3058880567550659, -1.3355276584625244, -0.25306302309036255, -0.23224976658821106, 0.2825390696525574, 2.7587192058563232, 1.9938229322433472, 1.7585293054580688, 1.3305540084838867, 1.0360625982284546, 14.278777122497559, 8.15658187866211, 4.375566005706787, 2.884700059890747, 2.5964536666870117, 2.567826509475708, 2.2518980503082275, 2.4391605854034424, 2.245429277420044, 1.4949644804000854, 0.582448422908783, -0.04790542274713516, 3.585293769836426, 2.8106274604797363, 1.177231788635254, 0.34081751108169556, 3.1510887145996094, 2.6571271419525146, 1.2718452215194702, 0.4502386450767517, -1.4569214582443237, -0.5183768272399902, 1.4247690439224243, 1.1952847242355347, 1.0704149007797241, 0.696662187576294, 0.4357132017612457, -0.578811526298523, -1.8127881288528442, -4.848544120788574, -1.1404229402542114, 4.530750274658203, -0.055479906499385834, 0.9808154106140137, 5.488518238067627, 19.33883285522461, 7.602758407592773, 5.736112594604492, 12.462970733642578, 9.844576835632324, 8.31246566772461, 6.9471540451049805, 5.471607685089111, 6.386049747467041, 5.386390209197998, 5.40241003036499, 2.610337018966675, 4.740708351135254, 3.048919439315796, 3.6115033626556396, 3.4233739376068115, 2.649955987930298, 2.675405979156494, 2.880108594894409, 2.622850179672241, 2.533543586730957, 2.4685275554656982, 2.43415904045105, 2.2711384296417236, 2.308668375015259, 2.3606715202331543, 2.2971839904785156, 2.1062240600585938, -0.2133009135723114, 0.714409589767456, 1.633223056793213, 1.4234013557434082, 1.6107935905456543, 1.2855113744735718, 2.2024240493774414, 1.1158424615859985, 0.4681008458137512, 0.7417191863059998, -0.018716486170887947, 0.6319336295127869, 0.4485854506492615, 0.40393227338790894, 1.1905807256698608, 0.9238787889480591, 0.5063086748123169, 0.3457896411418915, 0.659623384475708, 0.3616856336593628, 0.940438449382782, -0.017967281863093376, 0.23964345455169678, 0.4583423137664795, -0.3950194716453552, -1.2081607580184937, -0.837325394153595, -0.18445560336112976, -1.4030430316925049, -0.3841593861579895, -0.27677664160728455, 0.384226530790329, 2.7718987464904785, 2.0668253898620605, 1.8644696474075317, 1.3831040859222412, 1.118679165840149, 14.3859281539917, 8.18867301940918, 4.36430025100708, 3.0915863513946533, 2.7764554023742676, 2.5189714431762695, 2.1111817359924316, 2.325563907623291, 2.3995134830474854, 1.384935975074768, 0.4858267903327942, 0.13715675473213196, 3.7168657779693604, 2.8109235763549805, 1.3313827514648438, 0.20373184978961945, 3.2154736518859863, 2.7099101543426514, 1.243646502494812, 0.494144082069397, -1.3658320903778076, -0.2865876853466034, 1.411838173866272, 1.240986943244934, 1.1471396684646606, 0.6116806864738464, 0.5536534190177917, -0.39608824253082275, -1.845452904701233, -4.9010419845581055, -1.1081583499908447, 4.535780906677246, 0.04654265567660332, 0.9656124114990234, 1.0901126861572266, 19.22427749633789, 7.695137023925781, 3.196397304534912, 12.50178337097168, 10.081515312194824, 8.283769607543945, 6.9158220291137695, 5.522806644439697, 6.357304096221924, 5.484114170074463, 5.319051265716553, 2.5015573501586914, 2.6620595455169678, 3.189669370651245, 3.437335729598999, 3.353301525115967, 2.6260738372802734, 2.4773058891296387, 2.9661858081817627, 2.6470768451690674, 2.6678895950317383, 2.4720301628112793, 2.3206045627593994, 2.332486152648926, 2.2819125652313232, 2.450340747833252, 2.393202781677246, 2.08209228515625, -0.1893307864665985, 0.7928186655044556, 1.5357530117034912, 1.5885379314422607, 1.5258595943450928, 1.3274190425872803, 2.150324821472168, 1.0121275186538696, 0.4153326153755188, 0.6610209345817566, -0.06882555782794952, 0.5366686582565308, 0.4680175185203552, 0.5261852741241455, 1.1460870504379272, 1.0939064025878906, 0.5135902166366577, 0.38284966349601746, 0.5038571953773499, 0.34749162197113037, 1.035119891166687, 0.16806532442569733, 0.24726973474025726, 0.43164873123168945, -0.4612061381340027, -1.0572110414505005, -0.8009306788444519, -0.27980440855026245, -1.419301986694336, -0.2534865736961365, -0.14053583145141602, 0.38953104615211487, 2.7252590656280518, 1.8498742580413818, 1.7791889905929565, 1.5072519779205322, 1.0790969133377075, 14.251280784606934, 8.211511611938477, 4.321418285369873, 3.1319620609283447, 2.746779441833496, 2.6478898525238037, 2.173396587371826, 2.4205477237701416, 2.4815316200256348, 1.3614569902420044, 0.585685670375824, 0.0005135852843523026, 3.4771370887756348, 2.640866994857788, 1.2618694305419922, 0.2105192393064499, 3.308764934539795, 2.6412551403045654, 1.1818405389785767, 0.48150718212127686, -1.5107616186141968, -0.3225195109844208, 1.2603260278701782, 1.2160567045211792, 1.0267380475997925, 0.65908282995224, 0.5652944445610046, -0.49803096055984497, -1.9257208108901978, -4.867487907409668, -1.0967252254486084, 4.723787307739258, 0.02865936979651451, 1.019310712814331, 1.254241704940796, 4.055185317993164, 7.567360877990723, 3.211092472076416, 12.443714141845703, 9.924410820007324, 8.145870208740234, 6.735800743103027, 5.43444299697876, 6.302181720733643, 5.499661922454834, 5.4852070808410645, 2.479905366897583, 2.6220808029174805, 3.051096200942993, 3.459430456161499, 3.5227506160736084, 2.5863850116729736, 2.4729700088500977, 2.740309000015259, 2.59195876121521, 2.6279690265655518, 2.5373692512512207, 2.2866287231445312, 2.2001237869262695, 2.276484966278076, 2.440417528152466, 2.516087532043457, 2.0203919410705566, -0.20763608813285828, 0.7255880832672119, 1.629145860671997, 1.4388022422790527, 1.5746650695800781, 1.4260063171386719, 2.186660051345825, 0.9133277535438538, 0.6198347210884094, 0.5265095233917236, -0.012174995616078377, 0.4535791277885437, 0.5928670763969421, 0.5051784515380859, 1.3202658891677856, 0.934963583946228, 0.597823977470398, 0.3353094756603241, 0.5238648056983948, 0.40153753757476807, 0.9737392663955688, -0.0473051592707634, 0.23669660091400146, 0.3398519456386566, -0.36742353439331055, -1.111261248588562, -0.7812760472297668, -0.20095059275627136, -1.4737744331359863, -0.354761004447937, -0.1324179768562317, 0.3072521686553955, 2.800567865371704, 1.960886001586914, 1.7909883260726929, 1.387552261352539, 1.0448821783065796, 14.30859088897705, 8.236827850341797, 4.247890949249268, 3.0452592372894287, 2.5849311351776123, 2.470428705215454, 2.2210445404052734, 2.481506586074829, 2.468748092651367, 1.4939759969711304, 0.4870641827583313, -0.07574906200170517, 3.678239107131958, 2.8401055335998535, 1.1401684284210205, 0.38198792934417725, 3.2536163330078125, 2.6715707778930664, 1.2032781839370728, 0.2400844693183899, 1.3826874494552612, 0.3309628665447235, -1.2250014543533325, -1.1954489946365356, -1.0189226865768433, -0.582927405834198, -0.38215675950050354, 0.42838865518569946, 1.8308719396591187, 4.7571234703063965, 1.0189274549484253, -4.620083808898926, 0.020166272297501564, -0.9369232654571533, -1.1644896268844604, -3.984037399291992, -7.723116874694824, -3.3409547805786133, -12.376529693603516, -10.060873985290527, -8.131372451782227, -6.80804967880249, -5.285688877105713, -6.289992809295654, -5.292094707489014, -5.304602146148682, -2.461285352706909, -4.682882308959961, -3.0819664001464844, -3.54605770111084, -3.5396275520324707, -2.5012898445129395, -2.54142689704895, -2.9659008979797363, -2.7302956581115723, -2.6040196418762207, -2.442765951156616, -2.4858672618865967, -2.2360897064208984, -2.2670035362243652, -2.505980968475342, -2.3858113288879395, -2.1512467861175537, 0.20062515139579773, -0.7569640874862671, -1.6799755096435547, -1.6187050342559814, -1.5177586078643799, -1.3626587390899658, -2.055011510848999, -0.9831571578979492, -0.5517156720161438, -0.7114755511283875, 0.08137281239032745, -0.6173107028007507, -0.5799934267997742, -0.4994145631790161, -1.2213376760482788, -0.999640941619873, -0.3788909316062927, -0.31328150629997253, -0.5956922173500061, -0.3415490388870239, -1.0298950672149658, -0.006074368022382259, -0.32477182149887085, -0.36233147978782654, 0.3989202380180359, 1.0691436529159546, 0.7131035923957825, 0.23220178484916687, 1.3746638298034668, 0.1728249192237854, 0.2768540680408478, -0.42310068011283875, -2.7698402404785156, -1.8575527667999268, -1.8426998853683472, -1.2901911735534668, -1.1741160154342651, -14.219252586364746, -7.236485004425049, -4.247403621673584, -2.89684796333313, -2.7419683933258057, -2.643399953842163, -2.3037991523742676, -2.388740062713623, -2.2987513542175293, -1.397368311882019, -0.4194043278694153, -0.0017059465171769261, -3.605109214782715, -2.7221839427948, -1.258066177368164, -0.17627477645874023, -3.2137367725372314, -2.567908525466919, -1.2101079225540161, -0.3757832646369934, 0.7011764645576477, -1.0349770784378052, -0.6078515648841858, -0.7064729928970337, -0.4256393313407898, 0.6446554660797119]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (20, 30), 'etaBin': (0.8, 1.37)}}, 'et1_eta0': {'discriminator': {'threshold': -0.32000081166625022, 'nodes': [100, 6, 1], 'bias': [0.09428483247756958, -0.04721463471651077, 0.03348788246512413, -0.09799544513225555, -0.3383110463619232, 0.136421799659729, -0.0016502226935699582], 'weights': [3.923448324203491, 1.1882224082946777, -0.6763618588447571, -0.6988966464996338, -0.18739859759807587, -0.13122932612895966, -0.0803513303399086, 0.36352407932281494, 1.6484767198562622, 2.7206170558929443, -2.009655237197876, -4.764303684234619, -7.428475379943848, -5.242104530334473, -5.1493120193481445, -3.9369795322418213, -4.319851875305176, -2.42492413520813, -3.8639581203460693, -3.06176495552063, -3.5927224159240723, -2.342604398727417, -2.2864866256713867, -2.682417392730713, -2.4459338188171387, -1.8506228923797607, -2.380054473876953, -2.536121368408203, -1.7753264904022217, -1.7710134983062744, -1.7237180471420288, -1.73544442653656, -1.6591451168060303, -1.634910225868225, -1.7335577011108398, -1.5049324035644531, -1.4207079410552979, -1.808071494102478, -1.769775629043579, -1.9586020708084106, -1.759112000465393, 0.6824190020561218, -1.6991995573043823, -1.5732603073120117, -1.0441198348999023, -0.26445966958999634, -1.1053507328033447, -0.8227761387825012, -0.8396470546722412, -0.029614917933940887, -1.1335971355438232, -0.42685258388519287, -0.7260417938232422, -0.9086365103721619, -0.5909733772277832, -0.5020917654037476, -0.5897409915924072, 0.5629515051841736, -0.571086049079895, -0.4344123899936676, 0.3413902521133423, -0.184260293841362, 0.02249733917415142, -0.7398144602775574, -1.648028016090393, -1.3329564332962036, 0.5283265113830566, -0.4305841326713562, 0.36262255907058716, -0.7422177195549011, 0.9301882386207581, 0.1162920743227005, 0.3746093511581421, 0.08978663384914398, -0.7556164264678955, -1.4996659755706787, -1.5741618871688843, -1.4125343561172485, -1.1244484186172485, -0.6970234513282776, -7.393949508666992, -3.830742597579956, -2.5318894386291504, -1.7298834323883057, -1.7483831644058228, -1.3825581073760986, -1.6762408018112183, -1.9955909252166748, -3.0325729846954346, -2.321094274520874, -0.9059852361679077, 0.01854351907968521, -2.9494946002960205, -1.7963650226593018, -0.5497912764549255, 0.044953852891922, -2.9953620433807373, -1.6981210708618164, -0.07101298868656158, -0.12509861588478088, -4.037827491760254, -1.3446953296661377, 0.7784045934677124, 0.6073556542396545, 0.24960488080978394, 0.10312885791063309, 0.027864275500178337, -0.4808664619922638, -1.7037843465805054, -2.634799003601074, 2.0211637020111084, 5.004406929016113, 7.504706382751465, 5.29726505279541, 5.054901123046875, 4.020586967468262, 4.481381893157959, 2.438789129257202, 3.8085429668426514, 2.972856283187866, 3.5939173698425293, 2.3869593143463135, 2.360999345779419, 2.6569135189056396, 2.468747615814209, 1.950138807296753, 2.4906649589538574, 2.5407261848449707, 1.802910566329956, 1.877778172492981, 1.8937097787857056, 1.6418582201004028, 1.626845359802246, 1.6486958265304565, 1.8066765069961548, 1.5416336059570312, 1.399609088897705, 1.8354934453964233, 1.682347059249878, 1.8889862298965454, 1.6141008138656616, -0.5000907182693481, 1.6114388704299927, 1.336704969406128, 1.0233625173568726, 0.3405361771583557, 1.1204007863998413, 0.7052913308143616, 0.905900239944458, 0.2467210441827774, 1.1417542695999146, 0.487510621547699, 0.7292344570159912, 0.7330562472343445, 0.6316474080085754, 0.5346447229385376, 0.7719225287437439, -0.4184606969356537, 0.6150315999984741, 0.3875364661216736, -0.34836921095848083, 0.13995802402496338, 0.09368211776018143, 0.7073189616203308, 1.6107147932052612, 1.264011263847351, -0.5309082269668579, 0.37896299362182617, -0.4109354615211487, 0.6589947938919067, -1.0766267776489258, -0.36314404010772705, -0.28229787945747375, -0.2987841069698334, 0.7517623901367188, 1.3129756450653076, 1.6994911432266235, 1.4297255277633667, 1.0785218477249146, 0.6303584575653076, 7.369983673095703, 4.051222801208496, 2.5190908908843994, 1.715894103050232, 1.8000702857971191, 1.417280912399292, 1.6880205869674683, 1.9712133407592773, 2.953469753265381, 2.383610486984253, 0.8263368606567383, 0.1536141335964203, 2.960911273956299, 1.8261113166809082, 0.4312123656272888, -0.06406568735837936, 2.962948799133301, 1.8352017402648926, -0.006507714278995991, 0.30261319875717163, 4.094224452972412, 1.3538014888763428, -0.6430330276489258, -0.5037286281585693, -0.02021068148314953, -0.1343294233083725, -0.051147762686014175, 0.468893438577652, 1.6346927881240845, 2.55149507522583, -2.0465762615203857, -4.870841026306152, -7.596250057220459, -5.097512722015381, -5.134709358215332, -4.079732418060303, -4.504998683929443, -1.448211908340454, -3.7079124450683594, -3.1969354152679443, -3.535269260406494, -2.3765645027160645, -2.3216142654418945, -2.565958023071289, -2.5622763633728027, -1.9192848205566406, -2.419567108154297, -2.5183629989624023, -1.8477065563201904, -1.884598731994629, -1.7961883544921875, -1.645997405052185, -1.6679456233978271, -1.6720283031463623, -1.6914526224136353, -1.3376121520996094, -1.4698761701583862, -1.7278283834457397, -1.7396018505096436, -2.0397355556488037, -1.6054697036743164, 0.666731059551239, -1.6442240476608276, -1.170311689376831, -0.8893857002258301, -0.2035771906375885, -1.261660099029541, -0.860862672328949, -0.8593165874481201, -0.03884166479110718, -1.2719595432281494, -0.3960013687610626, -0.7602661848068237, -0.8397487998008728, -0.43347546458244324, -0.6437143087387085, -0.5984553098678589, 0.4384280741214752, -0.6860079169273376, -0.2746046781539917, 0.3457860052585602, -0.1354590803384781, 0.030843423679471016, -0.7352814674377441, -1.6452915668487549, -1.2735707759857178, 0.45766186714172363, -0.4680826663970947, 0.25973784923553467, -0.5401926636695862, 1.0860638618469238, 0.469875693321228, 0.31843212246894836, 0.26076576113700867, -0.7279438972473145, -1.4087984561920166, -1.5858793258666992, -1.2986433506011963, -1.0795834064483643, -0.4858991503715515, -7.280345439910889, -3.934363603591919, -2.5324549674987793, -1.6415549516677856, -1.7741668224334717, -1.2166703939437866, -1.7384816408157349, -1.7875797748565674, -2.9822635650634766, -2.255749225616455, -0.7790749669075012, 0.06430347263813019, -3.0778605937957764, -1.9036273956298828, -0.49056267738342285, 0.1618373692035675, -3.0342941284179688, -1.7184972763061523, -0.23414337635040283, -0.27585524320602417, -1.1261011362075806, -1.1798738241195679, -0.9485312700271606, 0.16112913191318512, 0.1641768515110016, 0.07582134753465652, 0.14433221518993378, -0.4372958242893219, -1.676491141319275, -2.551440954208374, 1.9285380840301514, 4.91425085067749, 7.662518501281738, 5.29468297958374, 5.193585395812988, 4.031679630279541, 4.416653633117676, 2.5406181812286377, 3.8636605739593506, 2.9419915676116943, 3.573391914367676, 2.4995038509368896, 2.229203224182129, 2.7799723148345947, 2.3641457557678223, 1.9324288368225098, 2.3154587745666504, 2.694338798522949, 1.870150089263916, 1.7996881008148193, 1.7266204357147217, 1.6662640571594238, 1.6988842487335205, 1.4557876586914062, 1.694400668144226, 1.518085241317749, 1.3557237386703491, 1.8312348127365112, 1.7126238346099854, 1.8639191389083862, 1.7016428709030151, -0.19371654093265533, 1.7526798248291016, 1.6858230829238892, 0.953188419342041, 0.36363399028778076, 1.0622607469558716, 0.8269491791725159, 0.7739856243133545, 0.23601265251636505, 1.2676434516906738, 0.5918899178504944, 0.8395336866378784, 0.981619119644165, 0.602532148361206, 0.5546470880508423, 0.7497178912162781, -0.36620593070983887, 0.5320726037025452, 0.4394287168979645, -0.3673272430896759, 0.11589080095291138, -0.08498596400022507, 0.7535653114318848, 1.600698471069336, 1.229651927947998, -0.49804428219795227, 0.3166012167930603, -0.4410797953605652, 0.9971193671226501, -0.8890329599380493, -0.0023846453987061977, -0.2948201298713684, -0.24493838846683502, 0.7322864532470703, 1.4917255640029907, 1.5198543071746826, 1.3444273471832275, 0.708216667175293, 0.5756549835205078, 7.282473087310791, 3.964520215988159, 2.5772628784179688, 1.7302260398864746, 1.707587480545044, 1.1897637844085693, 1.7308176755905151, 1.864957571029663, 3.0347917079925537, 2.334423303604126, 0.7820855975151062, -0.038981884717941284, 2.9271435737609863, 1.8597732782363892, 0.5414337515830994, -0.1161341443657875, 2.9158060550689697, 1.7217378616333008, 0.13564832508563995, 0.25485867261886597, 68.41543579101562, 0.807092010974884, -0.03815412148833275, -0.0031056092120707035, 0.3357650637626648, 0.17168110609054565, 0.14499792456626892, 0.3020905554294586, 1.037489414215088, 2.240356922149658, 0.2505757808685303, -10.780411720275879, 2.1264612674713135, -0.3292251527309418, -1.6696528196334839, -1.4874883890151978, -0.6973477005958557, -0.7882032990455627, -1.4552565813064575, 0.05444833263754845, -1.3506237268447876, -1.0490533113479614, -0.8472493886947632, -1.0677050352096558, -0.827885091304779, -0.7792014479637146, -0.6453233361244202, -1.0011374950408936, -0.6126304864883423, -0.6655076742172241, -0.6420760750770569, -0.6135802865028381, -0.72860187292099, 4.171623706817627, -0.5551552176475525, 2.451664686203003, -0.4434615671634674, -0.7158829569816589, -0.6591212153434753, -0.7634958624839783, -0.5202367305755615, 0.29859960079193115, -0.5022311806678772, -0.2385317087173462, -0.3225386440753937, 0.08737433701753616, -0.3380112946033478, -0.2965800166130066, -0.31959769129753113, 0.13457518815994263, -0.39021754264831543, -0.14648278057575226, -0.11529599875211716, -0.3072280287742615, -0.05452859029173851, -0.017405381426215172, -0.1924649477005005, 0.37374645471572876, -0.8509728908538818, -0.13951194286346436, 0.32901865243911743, 0.15458373725414276, 0.16355739533901215, -0.2256907969713211, -0.15639078617095947, -0.21790683269500732, 0.35897794365882874, 0.0248115137219429, 0.36136311292648315, -0.038327042013406754, 0.7363858222961426, 0.34456291794776917, 0.3903294801712036, -0.4767921268939972, -0.021873565390706062, 0.3957872688770294, 1.7582982778549194, 1.7655011415481567, -0.21013952791690826, 0.15366579592227936, -1.8137587308883667, -1.5353763103485107, -0.7630446553230286, -0.6249462366104126, -0.7243854999542236, -0.36755916476249695, -0.7164442539215088, -0.7284979820251465, 4.877445220947266, 1.675413727760315, -0.24474026262760162, 0.1344580352306366, 13.538191795349121, 0.393987774848938, 0.02512023225426674, 0.13981109857559204, -1.15338933467865, -0.909194827079773, 0.16977693140506744, 0.004831548780202866, 1.0855668783187866, 1.3767421245574951, 0.779876172542572, -0.3380758762359619, -0.214487686753273, -0.06112128123641014, -0.16263015568256378, 0.33733585476875305, 1.6739202737808228, 2.5217883586883545, -1.9365088939666748, -4.83817195892334, -7.593231678009033, -5.2851080894470215, -5.0597243309021, -4.102902889251709, -4.443674564361572, -2.5735738277435303, -3.7927825450897217, -2.9662463665008545, -3.575557231903076, -2.3379318714141846, -2.442155122756958, -2.6344223022460938, -2.339329242706299, -1.9245784282684326, -2.4700746536254883, -2.717705249786377, -1.6702909469604492, -1.8246701955795288, -1.8243670463562012, -1.7465704679489136, -1.7666319608688354, -1.4825994968414307, -1.7120200395584106, -1.3965201377868652, -1.376320719718933, -1.6275217533111572, -1.6995038986206055, -1.9057179689407349, -1.5360676050186157, 0.5846211314201355, -1.7099270820617676, -1.756282091140747, -0.9218419790267944, -0.4266519248485565, -1.21243155002594, -0.830771267414093, -0.8784458637237549, -0.046456318348646164, -1.2872374057769775, -0.4588843882083893, -0.7572606801986694, -0.9550910592079163, -0.5648831725120544, -0.49344655871391296, -0.7432249784469604, 0.4892309010028839, -0.5027213096618652, -0.47274747490882874, 0.22537299990653992, -0.1758030503988266, -0.037124548107385635, -0.7236385345458984, -1.6959059238433838, -1.3609012365341187, 0.40990275144577026, -0.4239270091056824, 0.2739073634147644, -0.8325074315071106, 0.9795343279838562, 0.00927299540489912, 0.22855588793754578, 0.13855595886707306, -0.8043398261070251, -1.298763632774353, -1.6467868089675903, -1.3270063400268555, -0.758661687374115, -0.6183732748031616, -7.344381332397461, -4.043093681335449, -2.7266080379486084, -1.7013587951660156, -1.7875580787658691, -1.3098913431167603, -1.6492325067520142, -1.946955680847168, -3.023843765258789, -2.2150039672851562, -0.9058859348297119, -0.10050598531961441, -2.876117706298828, -1.8660410642623901, -0.41135260462760925, 0.08043376356363297, -2.813690662384033, -1.6882896423339844, -0.03904115408658981, -0.3114432096481323, 0.8298541903495789, -0.9455680251121521, 1.103615641593933, -1.0841418504714966, 0.3889533579349518, 1.1483161449432373]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (20, 30), 'etaBin': (0, 0.8)}}, 'et3_eta1': {'discriminator': {'threshold': -0.94999999999999996, 'nodes': [100, 5, 1], 'bias': [-0.14058396220207214, -0.010156997479498386, 0.06733924150466919, -0.07649846374988556, 0.1293705850839615, 0.10575754195451736], 'weights': [1.1464204788208008, 1.2067878246307373, -0.28515830636024475, -0.6625406742095947, -0.28769823908805847, 0.13101060688495636, 0.5060973763465881, 0.07477506250143051, 1.7470577955245972, 2.6376776695251465, -1.5882339477539062, -4.5880889892578125, -0.46777409315109253, -0.4468534290790558, -2.810885429382324, -4.303411960601807, -2.836515426635742, -2.6504995822906494, -5.5379157066345215, -5.193375110626221, -5.799534797668457, -2.3341825008392334, -2.6373019218444824, -2.5101006031036377, -2.6728148460388184, -0.5762125253677368, -2.9398365020751953, -1.8632680177688599, -1.7720856666564941, -1.7791000604629517, -2.0870559215545654, -2.242917537689209, -3.039011001586914, -4.897435665130615, -1.5594055652618408, 0.29868486523628235, -1.8047505617141724, -0.5125581622123718, -1.627350926399231, -1.0700658559799194, -1.6318979263305664, -1.447097897529602, -0.97405606508255, -0.9917728900909424, -0.27230104804039, -0.44569796323776245, 1.3847215175628662, -0.9223855137825012, -0.8403496742248535, -0.8519346117973328, -0.6648346185684204, -0.4896341860294342, -2.749429941177368, 2.6370368003845215, -0.33549007773399353, -0.480179101228714, -0.5426475405693054, -0.4316626489162445, -0.6873779296875, -0.660333514213562, 0.05645446106791496, 1.2366952896118164, -0.16785748302936554, 0.4090938866138458, -0.4713269770145416, -0.8317732810974121, -1.8288275003433228, -0.13761776685714722, 0.261544793844223, -0.020635241642594337, 0.19626902043819427, 1.6235370635986328, 0.4725204408168793, 0.1403738111257553, -0.43527036905288696, -0.8138880729675293, -1.7723891735076904, -0.7774099707603455, -1.136383056640625, -0.3619338572025299, -3.3469748497009277, -3.8529646396636963, -2.103095769882202, -1.985591173171997, -1.6665419340133667, -0.6530410647392273, -2.53981351852417, -1.8707005977630615, -1.3365834951400757, -0.7573326826095581, -0.1973240226507187, 0.24604938924312592, -3.0916507244110107, -2.1134731769561768, -0.7261000275611877, 0.03696891665458679, -2.770416736602783, -1.9849522113800049, -1.8168784379959106, -0.20196595788002014, 1.2289875745773315, 1.2332342863082886, -0.4334612786769867, -0.7423491477966309, -0.23879605531692505, 0.16808798909187317, 0.37993887066841125, 0.09751887619495392, 1.7321946620941162, 0.9208857417106628, -1.632216215133667, -4.4352898597717285, -0.5792647004127502, -1.706499457359314, -2.6057097911834717, -4.27695894241333, -2.979640483856201, -2.666217088699341, -5.394307613372803, -5.226280689239502, -5.667537212371826, -2.3605830669403076, -2.468632459640503, -2.567067861557007, -2.603724479675293, -0.6089507937431335, -2.765385389328003, -1.7737246751785278, -1.7722558975219727, -1.9457465410232544, -2.237405300140381, -2.1448466777801514, -2.932236433029175, -4.942885875701904, -1.5568363666534424, -0.7975941300392151, -1.7974990606307983, -0.48156991600990295, -1.6772531270980835, -1.093492865562439, -1.6772154569625854, -1.556591510772705, -1.097195029258728, -0.931762158870697, -0.39597970247268677, -0.6163713335990906, 1.096318244934082, -0.8394436836242676, -0.7740214467048645, -1.091386318206787, -0.696062445640564, -0.5440112948417664, -2.7632176876068115, 2.7588603496551514, 0.6027905941009521, -0.676897406578064, -0.7062645554542542, -0.6056439280509949, -0.5418381690979004, -0.5713596940040588, -0.03145892545580864, 1.4845952987670898, -0.739717960357666, 0.4211161434650421, -0.521577000617981, -0.642084002494812, -1.8894439935684204, -0.196270152926445, 0.2301837056875229, 0.12156328558921814, 0.09879958629608154, 1.5312397480010986, 0.4896114468574524, 0.1724841147661209, -0.447278767824173, -0.90472412109375, -1.6582369804382324, -1.0757876634597778, -1.2255232334136963, 0.17686861753463745, -3.4604837894439697, -3.9889583587646484, -2.2140815258026123, -1.859501838684082, -1.696321725845337, -0.6070360541343689, -2.626055955886841, -2.04848051071167, -1.4573805332183838, -0.8128771781921387, -0.034132182598114014, 0.2672517001628876, -3.0215039253234863, -2.030954122543335, -0.9436529278755188, -0.4262523651123047, -2.7508294582366943, -1.3706477880477905, -1.6185466051101685, -0.1981123685836792, -1.175389051437378, -1.1598323583602905, 0.38730573654174805, 0.8325306177139282, 0.28435105085372925, -0.18733718991279602, -0.4185461103916168, -0.08939151465892792, -1.8770824670791626, -2.563385248184204, 1.6099488735198975, 4.484491348266602, 0.6108928918838501, 1.6056360006332397, 2.662555456161499, 4.263810157775879, 2.78157901763916, 2.6834702491760254, 5.538370609283447, 5.223874568939209, 5.660417079925537, 2.297001600265503, 2.4157140254974365, 2.639709949493408, 2.755115032196045, 0.6514777541160583, 2.894240140914917, 1.737408995628357, 1.8106071949005127, 1.8579720258712769, 2.2233378887176514, 2.241504430770874, 2.9423248767852783, 4.878469467163086, 1.9052973985671997, 0.5610609650611877, 1.71853768825531, 0.5269231200218201, 1.4773133993148804, 1.1114442348480225, 1.4584585428237915, 1.5761823654174805, 0.9307408928871155, 0.9505367875099182, 0.30985787510871887, 0.4778963327407837, -1.0503709316253662, 0.7971989512443542, 0.8974006772041321, 1.0396018028259277, 0.6561216115951538, 0.6621599793434143, 2.640239715576172, -2.61531138420105, 0.38022053241729736, 0.4664246737957001, 0.6559479832649231, 0.44172337651252747, 0.5368390679359436, 0.554684042930603, 0.02156297117471695, -1.2618663311004639, 0.5779081583023071, -0.20528863370418549, 0.43809038400650024, 0.6577037572860718, 1.8972069025039673, 0.029116105288267136, -0.16851399838924408, -0.07194825261831284, -0.006217167712748051, -1.4465324878692627, -0.4251112639904022, -0.2592546343803406, 0.5819464921951294, 0.8879455327987671, 1.6747844219207764, 1.0146082639694214, 1.1712167263031006, -0.035036683082580566, 3.3428122997283936, 3.8900070190429688, 2.2322709560394287, 1.8635920286178589, 1.7416054010391235, 0.5695316195487976, 2.661424398422241, 2.0481526851654053, 1.4977550506591797, 0.8479567766189575, 0.012441311962902546, -0.24147672951221466, 3.0376315116882324, 2.089226484298706, 0.9434524178504944, 0.3540703356266022, 2.8294332027435303, 1.2397146224975586, 1.625142216682434, 0.09659366309642792, 1.0279542207717896, 1.138154149055481, -0.2595961391925812, -0.819037675857544, -0.41244974732398987, 0.05184108391404152, 0.4502420723438263, 0.1416597068309784, 1.6836082935333252, 2.4917287826538086, -1.4323716163635254, -4.5349345207214355, -0.6647194027900696, -1.6684268712997437, -2.6388678550720215, -4.355661869049072, -2.808748722076416, -2.6888272762298584, -5.588684558868408, -5.214621067047119, -5.685235500335693, -2.3215930461883545, -2.635526657104492, -2.6018660068511963, -2.5341546535491943, -0.6950390338897705, -2.7777016162872314, -1.7542210817337036, -1.8483892679214478, -1.846396565437317, -2.178955078125, -2.181396961212158, -2.9261341094970703, -4.951703071594238, -1.666548252105713, 0.2821841537952423, -1.681933045387268, -0.4199392795562744, -1.5648959875106812, -1.022971510887146, -1.6724826097488403, -1.485029697418213, -1.1298590898513794, -0.9730470776557922, -0.28265199065208435, -0.4415583610534668, 1.1810696125030518, -0.7960107922554016, -0.8624612092971802, -0.9603792428970337, -0.6445156335830688, -0.6536909937858582, -2.8332080841064453, 2.647057056427002, -0.3350646197795868, -0.681509256362915, -0.6635286211967468, -0.5253638029098511, -0.5234053134918213, -0.6012322902679443, 0.1517142355442047, 1.3208472728729248, -0.05931241810321808, 0.36842599511146545, -0.45350944995880127, -0.8182008266448975, -1.873921513557434, -0.009066952392458916, 0.35633140802383423, 0.00880338903516531, 0.11586792767047882, 1.6656674146652222, 0.45195531845092773, 0.1604243814945221, -0.630664587020874, -0.8327372670173645, -1.7361226081848145, -0.7621591687202454, -1.1136603355407715, -0.3598534166812897, -3.42808198928833, -3.8219974040985107, -2.2530033588409424, -1.8942232131958008, -1.8818079233169556, -0.5462697148323059, -2.6618480682373047, -1.9506031274795532, -1.5569698810577393, -0.7033156156539917, -0.2067478746175766, 0.3543814420700073, -2.9655261039733887, -2.0257229804992676, -0.9127545952796936, -0.5428412556648254, -2.681168556213379, -1.3037751913070679, -1.7885948419570923, -0.005853230599313974, -1.0860682725906372, -1.0734792947769165, 0.27771878242492676, 0.66318678855896, 0.4281288683414459, 0.021441476419568062, -0.4228176176548004, -0.045351747423410416, -1.7974884510040283, -2.4933993816375732, 1.4437899589538574, 4.48915433883667, 0.6418988704681396, 0.38811638951301575, 2.6976161003112793, 4.356443881988525, 2.789215087890625, 2.8492746353149414, 5.5300068855285645, 5.209054470062256, 5.647152423858643, 2.3758299350738525, 2.457690477371216, 2.6274266242980957, 2.619152545928955, 0.5737661123275757, 2.9511682987213135, 1.893384337425232, 1.8045170307159424, 1.8663023710250854, 2.0648622512817383, 2.0794131755828857, 3.0032405853271484, 4.855755805969238, 1.6529033184051514, -0.18197762966156006, 1.6592453718185425, 0.43303021788597107, 1.5172001123428345, 1.1304086446762085, 1.6846052408218384, 1.448781132698059, 0.9475112557411194, 0.9966188073158264, 0.47153156995773315, 0.5621554851531982, -1.3490948677062988, 1.062267541885376, 0.8943380117416382, 0.8916992545127869, 0.5641133785247803, 0.647514820098877, 2.8187954425811768, -2.661088466644287, 0.3544188439846039, 0.5078852772712708, 0.5281962752342224, 0.4739721715450287, 0.7331516742706299, 0.6662646532058716, -0.1832236498594284, -1.4693982601165771, 0.02233303338289261, -0.31534868478775024, 0.45322951674461365, 0.7676177024841309, 2.0272295475006104, 0.23029379546642303, -0.14894478023052216, -0.14739438891410828, -0.031203297898173332, -1.4461865425109863, -0.38258659839630127, -0.2581344246864319, 0.5952154397964478, 0.8467711210250854, 1.7590489387512207, 0.716701090335846, 1.0528626441955566, 0.41462835669517517, 3.313983917236328, 3.92500376701355, 2.3016252517700195, 1.765486240386963, 1.7265759706497192, 0.6142205595970154, 2.6038918495178223, 1.9042367935180664, 1.3280261754989624, 0.6109039783477783, -0.01948726363480091, -0.12509223818778992, 2.968801736831665, 2.007418155670166, 0.9509100317955017, 0.07723372429609299, 2.856487512588501, 1.2510318756103516, 1.7686060667037964, 0.144351989030838, 1.976989507675171, 0.8318104147911072, -4.274761199951172, 2.218122720718384, -1.989960789680481]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (0.8, 1.37)}}, 'et0_eta3': {'discriminator': {'threshold': -0.28000081256031989, 'nodes': [100, 12, 1], 'bias': [-0.005526068154722452, -0.14407646656036377, -0.08192288130521774, -0.001809734501875937, -0.10623811930418015, -0.1274862289428711, 0.0917968600988388, 0.17756062746047974, 0.009135567583143711, 0.05177127569913864, 0.16776925325393677, 0.1346316933631897, 0.03238997980952263], 'weights': [0.07347682863473892, 0.11086798459291458, -0.22192643582820892, 0.09431090205907822, -0.05672236904501915, 0.11650260537862778, 0.14526772499084473, 0.018506711348891258, 0.3028365671634674, 0.15159951150417328, 0.2367319017648697, 0.042840637266635895, -0.35028985142707825, -0.31897103786468506, -1.3899519443511963, -1.9221934080123901, -0.8345057964324951, -1.4002259969711304, -0.11473327875137329, -0.5336739420890808, 0.046892136335372925, 0.020185809582471848, -0.27707216143608093, -0.32486623525619507, -0.28225624561309814, -0.12812288105487823, -0.07255647331476212, -0.0880657508969307, 0.04132342338562012, -0.01982087269425392, -0.06551582366228104, -0.21632741391658783, 0.08068790286779404, -0.2809408903121948, 0.07507067173719406, -0.21632595360279083, 0.10672523826360703, 0.17428983747959137, 0.08878613263368607, 0.0024222845677286386, 0.21090568602085114, 0.13904181122779846, 0.056481070816516876, -0.053941935300827026, -0.0006760474061593413, 0.1476811170578003, -0.2004903107881546, -0.060623180121183395, -0.03918984904885292, -0.14786642789840698, 0.07511330395936966, -0.12189099192619324, 0.11945702880620956, 0.0014888636069372296, 0.055504683405160904, 0.06655048578977585, -0.004591848701238632, 0.049100060015916824, 0.07141102105379105, 0.1084647849202156, 0.11069134622812271, -0.05304590240120888, 0.08269322663545609, 0.022154495120048523, 0.06309032440185547, 0.17265938222408295, 0.1972074657678604, 0.11327174305915833, 0.21721617877483368, 0.029723765328526497, 0.6813767552375793, 0.28352710604667664, 0.06496311724185944, -0.04755278304219246, -0.35126793384552, -0.07787079364061356, -0.13117091357707977, -0.1766783446073532, 0.031938813626766205, 0.07550125569105148, -0.8615522384643555, -0.6679161190986633, -0.12950240075588226, -0.09848945587873459, -0.0540039986371994, -0.14964455366134644, 0.23978275060653687, -0.15690870583057404, 0.08983753621578217, -0.10051235556602478, 0.02544274553656578, -0.025074589997529984, -0.1731126606464386, -0.013265403918921947, 0.005334390792995691, 0.3504922091960907, 0.05395995453000069, 0.20664794743061066, -0.008105502463877201, -0.0842062383890152, 0.855747640132904, 0.7074270248413086, -0.016444029286503792, -0.2780096232891083, -0.3728114366531372, -0.3448895812034607, 0.010952084325253963, 0.17163412272930145, 1.401155710220337, 1.4119529724121094, 1.1573766469955444, 0.15913087129592896, -0.9635791182518005, -0.004706947132945061, -2.7353320121765137, -1.8571641445159912, -0.8683490753173828, -1.224515676498413, -0.32254523038864136, -4.198087215423584, -0.6634833812713623, 0.08895087242126465, -1.5653350353240967, -1.5306264162063599, -1.265318751335144, -1.2880889177322388, -0.9057645201683044, -1.3303006887435913, -0.6194390654563904, -0.2876385748386383, -0.2651457190513611, -0.926378607749939, -0.689467191696167, -1.1560643911361694, -0.5342223644256592, -1.0350139141082764, -0.4904097616672516, 0.03905121982097626, -0.012493722140789032, -0.7521436214447021, 0.21592386066913605, 0.8197923302650452, -0.4486432373523712, -0.36533045768737793, -0.5907633304595947, 0.6238790154457092, -0.8606862425804138, -0.5602596998214722, -0.2714194655418396, -0.4400058686733246, 0.06338010728359222, -0.5400457382202148, 0.5681506395339966, -0.38450828194618225, 0.3632930815219879, 0.10522530227899551, -0.22643527388572693, -0.4927605390548706, 0.2428278625011444, 0.5828389525413513, 0.4789542257785797, -0.6057939529418945, 0.27690306305885315, 0.16087718307971954, -0.14181575179100037, 0.8329270482063293, 0.9529933333396912, 0.11186084151268005, 0.19148360192775726, -0.37853938341140747, 3.115266799926758, 0.48467060923576355, 0.27880263328552246, 0.3575509786605835, -0.1261363923549652, -0.8967247605323792, -0.9208580851554871, -0.7278516888618469, -0.4357077181339264, -0.30160582065582275, -4.074020862579346, -3.13667631149292, -1.4786394834518433, -0.6965441703796387, -0.9018935561180115, -0.7534804940223694, 0.41811078786849976, -0.6213122010231018, -0.34094229340553284, -0.5763772130012512, -0.09397301077842712, 0.05943828076124191, -1.3248196840286255, -0.6100223660469055, 0.19724351167678833, 0.10311945527791977, -0.3543071448802948, -0.03594284504652023, 0.10391878336668015, 0.24742886424064636, 0.00842108391225338, 0.0860825926065445, -0.07726234942674637, -0.12025225162506104, 0.022525157779455185, -0.06872686743736267, -0.16843517124652863, -0.08427511155605316, -1.0784353017807007, -0.1799338012933731, -0.583513081073761, 0.3034774661064148, 1.4859081506729126, 0.2909749746322632, 2.9033586978912354, 0.5619007349014282, 0.3196623921394348, 0.34367048740386963, -0.02729983814060688, 0.21850748360157013, -0.04758019000291824, -0.08521731197834015, -0.060818083584308624, 0.11483602970838547, -0.0322471521794796, 0.050403304398059845, 0.09942431002855301, 0.15561765432357788, -0.06184005364775658, -0.03521320968866348, -0.09842794388532639, 0.10993342846632004, -0.04234985262155533, 0.01581757329404354, -0.1170201376080513, -0.09533613175153732, 0.06596697866916656, -0.05266482010483742, -0.10430748015642166, -0.09664641320705414, -0.16822968423366547, -0.09581680595874786, 0.025377027690410614, 0.08222180604934692, 0.007014991249889135, -0.01759798638522625, 0.030903633683919907, -0.10274358093738556, 0.056878261268138885, 0.08013400435447693, -0.06835773587226868, -0.08981900662183762, -0.3249205946922302, 0.08807559311389923, -0.05523494631052017, -0.1798548847436905, -0.04893767833709717, 0.06124546378850937, -0.20350730419158936, -0.17651942372322083, -0.32398101687431335, -0.027756955474615097, -0.16674423217773438, -0.18017792701721191, -0.01897132210433483, -0.23978625237941742, -0.30503523349761963, -0.09166087210178375, -0.2619082033634186, -0.123734250664711, -0.6592873334884644, -0.22616378962993622, 0.3362840414047241, 0.01528079342097044, 0.19117462635040283, -0.09905395656824112, -0.08071215450763702, 0.0898781269788742, -0.07270664721727371, 0.08015698194503784, 0.1904226541519165, 0.0017876464407891035, -0.03542063757777214, 0.054917220026254654, 0.1386953890323639, -0.07253273576498032, -0.15625742077827454, -0.005800198297947645, 0.08101876825094223, -0.0663861334323883, -0.22704042494297028, -1.006371259689331, 0.09764708578586578, 0.010764076374471188, -0.11778287589550018, -2.0778450965881348, -0.09443961083889008, -0.17228789627552032, -0.18620581924915314, 0.27392756938934326, 0.8744163513183594, 0.8125483989715576, -0.0053376671858131886, -0.2002032846212387, -0.47455692291259766, -0.15588080883026123, -0.0051125288009643555, -0.024333246052265167, 1.2056201696395874, 1.3944300413131714, 1.1319537162780762, -0.09528699517250061, -0.9170843958854675, -0.014647792093455791, -2.8694591522216797, -1.9158152341842651, -0.8248977661132812, -1.2046726942062378, -0.25200286507606506, -3.3429982662200928, -0.37323155999183655, -0.027821844443678856, -1.4500927925109863, -1.486460566520691, -1.3272377252578735, -1.3038021326065063, -0.9106979966163635, -1.2255276441574097, -0.6897165179252625, -0.33680611848831177, -0.09995408356189728, -0.967322051525116, -0.6430069208145142, -1.2293671369552612, -0.39361080527305603, -1.0808135271072388, -0.001004521269351244, 0.26315218210220337, -0.006637883838266134, -0.8298298120498657, -0.07509388774633408, 0.7364076972007751, -0.4815395176410675, -0.38508111238479614, -0.43553584814071655, 0.7057363390922546, -0.8194615244865417, -0.6102641820907593, -0.4546935260295868, -0.579706609249115, 0.10725420713424683, -0.785744845867157, 0.4946363568305969, -0.474288672208786, 0.2102336436510086, -0.03970213234424591, -0.3224485218524933, -0.4019050598144531, 0.21190160512924194, 0.6654230356216431, 0.511168360710144, -0.4810371398925781, 1.0577058792114258, 0.2490135133266449, -0.09986763447523117, 0.8817153573036194, 1.0048160552978516, -0.36437126994132996, 0.20315374433994293, -0.330370157957077, 2.942955493927002, 0.42803582549095154, 0.5143197774887085, 0.39953476190567017, -0.5323323607444763, -0.7767040133476257, -1.044390082359314, -0.7440090179443359, -0.355406790971756, -0.35815170407295227, -4.237850189208984, -3.0227644443511963, -1.49408757686615, -0.6865396499633789, -0.8504322171211243, -0.673483669757843, 0.5320491194725037, -0.45379316806793213, -0.4189683198928833, -0.48896026611328125, 0.14664076268672943, 0.023087093606591225, -1.375417947769165, -0.587888777256012, 0.0001595106878085062, 0.10394413024187088, -0.2924331724643707, -0.1908976286649704, 0.012759930454194546, 0.3284040689468384, 0.14168211817741394, -0.04534709081053734, -0.061322566121816635, -0.0018186133820563555, -0.008228253573179245, 0.002197754569351673, 0.14681458473205566, 0.06852608174085617, 0.16117675602436066, 0.18891580402851105, 0.23935651779174805, -0.11590386182069778, -0.237266406416893, -0.37408459186553955, -1.3021790981292725, -2.021311044692993, -1.0043226480484009, -1.2683333158493042, 0.04500492289662361, -0.613460898399353, 0.028964290395379066, 0.05371265113353729, -0.15793932974338531, -0.3019441068172455, -0.199056476354599, -0.2443135529756546, -0.11962194740772247, -0.1444297730922699, -0.03305366635322571, 0.00960729829967022, 0.013261242769658566, -0.24069702625274658, -0.027906352654099464, -0.2840786874294281, -0.0272306427359581, -0.03390061482787132, 0.007627041079103947, 0.050167858600616455, 0.07867341488599777, 0.004167712293565273, 0.1452757567167282, 0.11340190470218658, -0.11871328204870224, -0.02474808134138584, -0.06323155760765076, 0.30139535665512085, -0.07401128858327866, -0.05047077685594559, 0.0033744617830961943, -0.10416176915168762, -0.0127211669459939, -0.11493046581745148, 0.21504515409469604, 0.04273524507880211, 0.10369852185249329, 0.0026657693088054657, 0.16297727823257446, 0.06843680143356323, 0.1936783790588379, 0.1834593564271927, 0.14125841856002808, -0.032214343547821045, 0.1515183448791504, 0.18664170801639557, 0.03668138012290001, 0.1209854707121849, 0.30160486698150635, 0.23028595745563507, 0.06258966028690338, -0.11846767365932465, 0.7819381952285767, 0.30579298734664917, -0.09066370129585266, 0.12039241194725037, -0.31799423694610596, -0.0535348616540432, -0.052090127021074295, 0.0012685826513916254, 0.08462054282426834, -0.04484141618013382, -0.8824142217636108, -0.4605533182621002, -0.2246975600719452, 0.06346900761127472, -0.04791492596268654, 0.045877862721681595, 0.2868633270263672, -0.001428512274287641, 0.06217288225889206, 0.050635140389204025, 0.013391317799687386, -0.04036753997206688, -0.30595308542251587, 0.06169583275914192, 0.17272765934467316, 0.43375855684280396, 0.09545344859361649, 0.23572556674480438, -0.05034046992659569, -0.2155289351940155, 0.9065430164337158, 0.5857232809066772, -0.03530312702059746, -0.3067540228366852, -0.4503781199455261, -0.339547336101532, -0.18671448528766632, 0.028712963685393333, 1.4522440433502197, 1.3335511684417725, 1.0613354444503784, 0.17492231726646423, -0.9013590812683105, -0.06811504065990448, -2.72227144241333, -1.8414833545684814, -0.899369478225708, -1.2936887741088867, -0.34870070219039917, -4.074159622192383, -0.7317330837249756, 0.06324698030948639, -1.571948528289795, -1.529797911643982, -1.3649953603744507, -1.2017725706100464, -0.8665840029716492, -1.1559250354766846, -0.5724329352378845, -0.3783361315727234, -0.20255477726459503, -1.071000337600708, -0.6594464778900146, -1.3547478914260864, -0.33298036456108093, -1.0795292854309082, -0.057504959404468536, 0.15285950899124146, 0.04248875379562378, -0.8943964242935181, 0.25436675548553467, 0.7213768362998962, -0.5781385898590088, -0.26770395040512085, -0.5101674795150757, 0.7498635649681091, -0.7504525780677795, -0.5074657201766968, -0.4570271074771881, -0.5983095169067383, -0.002321421168744564, -0.551486611366272, 0.6265198588371277, -0.4537837505340576, 0.3557170331478119, 0.06089989095926285, -0.4518108069896698, -0.4641896188259125, 0.1304561197757721, 0.6468974351882935, 0.6592563986778259, -0.41315239667892456, 0.1933002471923828, 0.3742205798625946, -0.1508912742137909, 0.821418285369873, 0.8794024586677551, 0.1548968255519867, 0.29681187868118286, -0.40018463134765625, 3.0190861225128174, 0.6254054307937622, 0.4011673033237457, 0.37429165840148926, -0.46948426961898804, -0.936190664768219, -1.0205520391464233, -0.8640571236610413, -0.4193330407142639, -0.34448835253715515, -4.124610424041748, -3.189025640487671, -1.5359941720962524, -0.6932930946350098, -0.7811101675033569, -0.5759922862052917, 0.37400275468826294, -0.4834817051887512, -0.37729647755622864, -0.49043789505958557, 0.10487262904644012, -0.039048321545124054, -1.2886598110198975, -0.49174559116363525, 0.06968165189027786, 0.13323935866355896, -0.2505851089954376, 0.005125742871314287, 0.18010830879211426, 0.21406501531600952, -0.9584665894508362, -0.7277305126190186, 0.16012613475322723, 0.18554215133190155, 0.32520437240600586, 0.35149189829826355, 0.16333350539207458, -0.06821055710315704, -1.296568751335144, -1.37785804271698, -1.1466500759124756, 0.03394511714577675, 1.0219504833221436, 0.10026994347572327, 2.81296706199646, 1.9108121395111084, 0.6823952198028564, 1.2771985530853271, 0.27122944593429565, 4.195213317871094, 0.7168731689453125, 0.0016496042953804135, 1.3323209285736084, 1.4375067949295044, 1.4913971424102783, 1.2384988069534302, 1.08400297164917, 1.3802720308303833, 0.6991890072822571, 0.22822077572345734, 0.11677227914333344, 0.8910311460494995, 0.6221300363540649, 1.138989806175232, 0.28660231828689575, 1.171839952468872, 0.10849226266145706, -0.23197291791439056, 0.0009737455984577537, 0.8462570905685425, -0.12290724366903305, -0.7538785338401794, 0.4840732514858246, 0.2649516463279724, 0.5004700422286987, -0.7625958323478699, 0.826468288898468, 0.5355994701385498, 0.4371645450592041, 0.6062021255493164, -0.10328906774520874, 0.5074070692062378, -0.5644182562828064, 0.3633464276790619, -0.23727551102638245, -0.12718234956264496, 0.4074524939060211, 0.5452460050582886, -0.22704115509986877, -0.5738474726676941, -0.4735086262226105, 0.485590398311615, -0.2908652126789093, -0.23514603078365326, 0.01691947877407074, -0.7105526924133301, -0.9028140902519226, -0.2472354620695114, -0.27440768480300903, 0.4295786917209625, -2.904749870300293, -0.46219155192375183, -0.49081698060035706, -0.36337631940841675, 0.6392976641654968, 0.9233927726745605, 1.0280735492706299, 0.855082094669342, 0.4253135025501251, 0.32280850410461426, 4.114168643951416, 3.0987489223480225, 1.4795920848846436, 0.7543225884437561, 0.8552014827728271, 0.6286765933036804, -0.3699073791503906, 0.5038646459579468, 0.5203952789306641, 0.37468552589416504, -0.002101720543578267, 0.11309120059013367, 1.2686017751693726, 0.48761066794395447, -0.11136091500520706, -0.03246009349822998, 0.36666861176490784, 0.18458890914916992, -0.18100899457931519, -0.33038026094436646, -0.8576292395591736, -0.6034986972808838, 0.1782567799091339, 0.1853518784046173, 0.48616868257522583, 0.3124924302101135, 0.14944002032279968, -0.13483746349811554, -1.4192923307418823, -1.456716537475586, -1.2490123510360718, -0.06486590951681137, 1.0535950660705566, -0.09196782112121582, 2.8710718154907227, 1.8114943504333496, 0.6964011788368225, 1.1661278009414673, 0.48658767342567444, 4.5252580642700195, 0.8016472458839417, 0.04046686738729477, 1.4570856094360352, 1.538711667060852, 1.277990698814392, 1.1479015350341797, 1.1226155757904053, 1.395092248916626, 0.6385074853897095, 0.3767186999320984, 0.36560413241386414, 0.939081072807312, 0.6355020403862, 1.2757031917572021, 0.4591260254383087, 1.0899118185043335, 0.3337954878807068, -0.19800813496112823, 0.10867235064506531, 0.8212641477584839, -0.16458255052566528, -0.8197336792945862, 0.6165056228637695, 0.2516234815120697, 0.49862009286880493, -0.5641435980796814, 0.692038893699646, 0.5399461984634399, 0.26827704906463623, 0.4212935268878937, 0.046381376683712006, 0.665159285068512, -0.45296868681907654, 0.3815387785434723, -0.2345687597990036, 0.027097560465335846, 0.338366836309433, 0.5328542590141296, -0.050201691687107086, -0.45964911580085754, -0.5936470627784729, 0.5169273018836975, -0.3848832845687866, -0.33402392268180847, 0.17707763612270355, -0.7725269198417664, -0.826316773891449, -0.23771458864212036, -0.2643836736679077, 0.3564695119857788, -2.928142786026001, -0.5430784225463867, -0.37379151582717896, -0.24647824466228485, 0.1978469341993332, 0.7825720310211182, 1.0872291326522827, 0.8748255372047424, 0.545219898223877, 0.4693337678909302, 4.217126846313477, 3.1120924949645996, 1.5275987386703491, 0.7005982398986816, 0.8788042068481445, 0.6872969269752502, -0.5256029367446899, 0.713604211807251, 0.31036660075187683, 0.4176439940929413, 0.054314471781253815, 0.03916264325380325, 1.3210774660110474, 0.7062481045722961, -0.027917219325900078, -0.07610499113798141, 0.26682043075561523, 0.08701750636100769, 0.04109897091984749, -0.19383859634399414, -0.9060099124908447, -0.8061052560806274, 0.1346808820962906, 0.2311590611934662, 0.44427114725112915, 0.1269865334033966, 0.021368691697716713, -0.16141526401042938, -1.2312791347503662, -1.4421308040618896, -0.9955828189849854, -0.06613966077566147, 1.1256804466247559, -0.08193204551935196, 2.844921827316284, 1.9210702180862427, 0.8079874515533447, 1.3337292671203613, 0.3976365923881531, 4.219398021697998, 0.45786532759666443, -0.13562770187854767, 1.3916535377502441, 1.4762107133865356, 1.463157057762146, 1.2964633703231812, 0.9028158783912659, 1.2343894243240356, 0.7546287775039673, 0.3548973500728607, 0.15370763838291168, 1.0007694959640503, 0.6673437356948853, 1.1535650491714478, 0.1998511403799057, 1.0750494003295898, -0.10461225360631943, -0.19961868226528168, 0.07331909239292145, 0.7016324996948242, -0.15799236297607422, -0.7915172576904297, 0.44717732071876526, 0.3366883099079132, 0.5416970252990723, -0.7644333243370056, 0.9053620100021362, 0.44135719537734985, 0.23079749941825867, 0.5505024194717407, -0.1197170615196228, 0.9046310782432556, -0.4715484380722046, 0.35268810391426086, -0.3597562611103058, -0.05945149064064026, 0.4516793191432953, 0.5026513934135437, -0.04410887509584427, -0.4710855782032013, -0.650486171245575, 0.4444030523300171, -0.33818143606185913, -0.36381253600120544, -0.012776313349604607, -0.8477009534835815, -0.8672123551368713, -0.22888538241386414, -0.11814677715301514, 0.2764802873134613, -3.0342233180999756, -0.602359414100647, -0.37518393993377686, -0.2685604691505432, 0.5680629014968872, 0.7738755345344543, 1.1179381608963013, 0.8658738136291504, 0.4418547749519348, 0.4673839509487152, 4.072352409362793, 3.0460755825042725, 1.4626399278640747, 0.8022899031639099, 0.7519503831863403, 0.7506676316261292, -0.5152669548988342, 0.4847334027290344, 0.3387884497642517, 0.4153599739074707, 0.07847215235233307, 0.015526333823800087, 1.264989972114563, 0.5176454186439514, -0.07653401792049408, -0.06885093450546265, 0.2627805173397064, -0.006038305349647999, -0.19594085216522217, -0.2749088406562805, -0.15506508946418762, -0.07674091309309006, 0.20880095660686493, -0.13028904795646667, -0.06834574788808823, -0.09979509562253952, 0.03406215459108353, -0.0370730385184288, -0.1818811446428299, -0.15657664835453033, -0.11721772700548172, 0.11424239724874496, 0.24962656199932098, 0.35821688175201416, 1.4577369689941406, 1.91103196144104, 0.9968602657318115, 1.2154844999313354, -0.035733118653297424, 0.5517828464508057, 0.1226339116692543, -0.017128044739365578, 0.2432246059179306, 0.1492808759212494, 0.1701391339302063, 0.10536917299032211, 0.1825931817293167, 0.17476706206798553, -0.030415143817663193, -0.1356056183576584, 0.017266996204853058, 0.15089617669582367, 0.027581969276070595, 0.21431761980056763, 0.05308667942881584, 0.20477096736431122, 0.07292912900447845, -0.09120200574398041, -0.12410985678434372, 0.06861978024244308, -0.14101625978946686, -0.28445982933044434, -0.05799431353807449, 0.02841321937739849, 0.12406405806541443, -0.3109760582447052, 0.16056585311889648, 0.11679185181856155, -0.07927782088518143, -0.04777057096362114, 0.004410652909427881, -0.05662199482321739, -0.08247187733650208, 0.03897350654006004, -0.18002575635910034, -0.1469271332025528, 0.027537068352103233, -0.06884099543094635, -0.05984370410442352, -0.06936267763376236, -0.280610054731369, 0.011115786619484425, -0.11427098512649536, -0.07855330407619476, -0.1768922656774521, -0.30564671754837036, -0.2704107463359833, -0.042173322290182114, -0.0405212864279747, 0.09127126634120941, -0.7688004970550537, -0.26651617884635925, -0.09464344382286072, -0.03610975667834282, 0.3480038046836853, -0.05798826366662979, 0.11375173926353455, 0.12823611497879028, 0.1179373487830162, 0.01817651093006134, 0.8470374345779419, 0.6677495241165161, 0.2742365002632141, 0.11571747809648514, 0.08905573189258575, -0.059712912887334824, -0.07337439060211182, -0.014665705151855946, -0.08936870098114014, 0.04892120137810707, -0.16316162049770355, -0.13913169503211975, 0.3091582655906677, 0.07353337854146957, 0.0036234387662261724, -0.5578142404556274, -0.1319304257631302, -0.2759475111961365, 0.10144764930009842, 0.1881783902645111, -0.09759411960840225, -0.04952652379870415, 0.26593542098999023, 0.00643699336796999, 0.16204950213432312, 0.04702237993478775, 0.06161084026098251, -0.03125558793544769, -0.31633904576301575, -0.373982697725296, -2.102773904800415, -0.13163958489894867, 0.07909572869539261, 0.23009540140628815, 3.4120571613311768, 8.32243824005127, 4.10237979888916, 5.228827953338623, -2.7055113315582275, 0.5222992897033691, 0.2140372395515442, 0.1592486947774887, 0.25893259048461914, 0.19383087754249573, 0.2061028927564621, 0.21586407721042633, 0.09745234251022339, 0.2664583921432495, 0.03401170298457146, 0.13446660339832306, 0.09642453491687775, -0.04614802449941635, 0.17165958881378174, 0.17747050523757935, 0.08152814209461212, 0.268003910779953, 0.09988859295845032, -0.0798511952161789, -0.13566634058952332, 0.2791441082954407, -0.05417996644973755, -0.27447569370269775, 0.04101395979523659, 0.023564089089632034, 0.0016796530690044165, -0.03237523138523102, 0.12366566061973572, 0.1786729097366333, 0.1742279976606369, 0.08037525415420532, -0.12613973021507263, 0.01852203905582428, -0.08336832374334335, 0.08367909491062164, -0.14198455214500427, 0.041289862245321274, 0.10388877987861633, 0.03752424567937851, -0.10942618548870087, -0.009894691407680511, -0.21749547123908997, 0.14783616364002228, -0.3288171589374542, 0.0449431836605072, -0.09457507729530334, -0.5045395493507385, -0.16149289906024933, -0.010722105391323566, -0.0024131862446665764, 0.10652121156454086, -0.6093565225601196, 0.00548471650108695, -0.023121826350688934, -0.038937196135520935, 0.7127572894096375, -0.14538134634494781, 0.2567242980003357, 0.20106500387191772, 0.12912382185459137, 0.10088694840669632, 0.9673728942871094, 0.5949899554252625, 0.35058775544166565, 0.10116714239120483, 0.00028490315889939666, 0.20796535909175873, -0.15689198672771454, 0.2182890772819519, 0.20317070186138153, 0.08681519329547882, 0.0504450686275959, -0.0007735955878160894, 0.2315407693386078, 0.15969708561897278, 0.09008954465389252, -0.05359499529004097, 0.0116139966994524, 0.025718441233038902, -0.1322256624698639, 0.026017479598522186, -0.9817870259284973, -0.6066368818283081, 0.16600172221660614, 0.16566255688667297, 0.3446674942970276, 0.30290859937667847, 0.1603359878063202, -0.02179131843149662, -1.355717658996582, -1.3758225440979004, -1.221917986869812, -0.16333216428756714, 0.9108412861824036, -0.08025842905044556, 2.6888298988342285, 2.0144193172454834, 0.7878190279006958, 1.1553541421890259, 0.4640013873577118, 4.694734573364258, 0.8231510519981384, 0.08003854751586914, 1.3627078533172607, 1.5198570489883423, 1.4475654363632202, 1.186111569404602, 0.8843483328819275, 1.2401591539382935, 0.6395353674888611, 0.38456523418426514, 0.198313906788826, 1.0574777126312256, 0.6501401662826538, 1.2411178350448608, 0.5506219863891602, 1.2045819759368896, 0.29643648862838745, -0.08840465545654297, 0.09486310184001923, 0.8406497240066528, -0.22680316865444183, -0.799617350101471, 0.5306044816970825, 0.29936936497688293, 0.5236285328865051, -0.5907637476921082, 0.714980959892273, 0.6494489908218384, 0.23771736025810242, 0.4380604326725006, 0.08380818367004395, 0.6636692881584167, -0.40345141291618347, 0.5661117434501648, -0.24809308350086212, 0.004664320964366198, 0.3084019124507904, 0.5841951370239258, -0.22073587775230408, -0.48312321305274963, -0.5276358127593994, 0.5587068200111389, -0.28312763571739197, -0.2465420961380005, -0.0572635792195797, -0.820408046245575, -0.865695059299469, -0.26787200570106506, -0.22597427666187286, 0.3101177215576172, -2.945730447769165, -0.5323840975761414, -0.3293997049331665, -0.343095064163208, 0.24950294196605682, 0.7813385725021362, 0.9707733988761902, 0.9425172209739685, 0.4118528366088867, 0.31547462940216064, 4.284393787384033, 3.0229828357696533, 1.379088282585144, 0.8345760703086853, 0.96744704246521, 0.7667807936668396, -0.4072304368019104, 0.531790554523468, 0.4480220377445221, 0.6070080399513245, -0.13287457823753357, 0.001303400844335556, 1.3107070922851562, 0.6144444346427917, 0.014874671585857868, -0.0792723298072815, 0.1337544173002243, 0.09746420383453369, 0.0009585428633727133, -0.26542824506759644, 2.372265338897705, 0.47514158487319946, -0.3515172600746155, 0.6451715230941772, 0.03153396397829056, 1.7297091484069824, -1.5963265895843506, -0.4168339967727661, -0.8385906219482422, -0.44107484817504883, -0.5089825391769409, -0.6203166246414185]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (0, 20), 'etaBin': (1.54, 2.5)}}, 'et3_eta3': {'discriminator': {'threshold': -0.31500081177800893, 'nodes': [100, 5, 1], 'bias': [-0.0026822981890290976, -0.07377532869577408, -0.007974994368851185, -0.16853055357933044, -0.06441225856542587, 0.13564197719097137], 'weights': [1.6453747749328613, 2.6088600158691406, -1.3678135871887207, -1.2877781391143799, 0.0757671445608139, -1.313241958618164, 0.3504394292831421, 1.5601763725280762, 1.8411474227905273, 1.8598456382751465, 0.6482876539230347, -2.511263608932495, -0.2952120006084442, -0.7789666056632996, -2.5676252841949463, -2.1249446868896484, -2.0311155319213867, -4.27354097366333, -4.34259033203125, -6.79109001159668, 0.26440444588661194, -1.3378560543060303, -1.8120442628860474, -4.250185012817383, -4.795808792114258, -4.172086715698242, -2.1067121028900146, -1.054761290550232, -1.254315972328186, -2.626077651977539, -0.08611088991165161, -4.771571159362793, -0.9363676309585571, -2.3707633018493652, -1.7289048433303833, -1.649170994758606, -1.8055485486984253, -2.6921520233154297, -1.6702463626861572, -3.475526809692383, -0.8764222860336304, -2.4371860027313232, -1.4124659299850464, -1.1228387355804443, -0.0710236057639122, -1.706192135810852, -1.7178205251693726, -0.4437747001647949, 0.9503127336502075, -2.0104548931121826, -0.48377037048339844, 0.6771113872528076, 1.2609716653823853, -0.9713212847709656, -1.2625234127044678, 0.11309906840324402, 1.554800033569336, -3.551863431930542, 1.255460262298584, -2.244666337966919, 0.06816621869802475, 0.8891024589538574, -0.31957268714904785, 0.6217986941337585, -0.755652129650116, -1.3269896507263184, 0.393809050321579, -0.6914824843406677, 1.1989281177520752, 2.0677664279937744, -0.3061457872390747, -0.8172145485877991, 0.5543983578681946, 0.26117756962776184, -1.7833328247070312, -1.9560140371322632, -2.247663736343384, -1.8420708179473877, -1.7461508512496948, -0.7262256741523743, -1.5775303840637207, -3.9379920959472656, -6.896449565887451, -1.7874044179916382, -2.4555823802948, -1.904052495956421, 0.6451247334480286, -1.394220232963562, -0.6604307293891907, -1.612280249595642, -0.2587394118309021, -0.3036463260650635, -4.475130558013916, -1.869966745376587, -0.40121808648109436, -1.164275050163269, 0.9186030030250549, -0.16907858848571777, 0.43050912022590637, 3.2057249546051025, 1.6611487865447998, 1.9638066291809082, -1.3152694702148438, -1.266971468925476, -0.012450817972421646, -1.237388253211975, 0.5422267913818359, 0.033369556069374084, 1.9038782119750977, 1.9781697988510132, 0.5547154545783997, -2.5483882427215576, -0.28108328580856323, -0.7324627041816711, -2.6389048099517822, -1.9112340211868286, -2.124799966812134, -4.432255744934082, -4.41224479675293, -6.802875518798828, 0.4018074870109558, -1.1553627252578735, -1.9742958545684814, -4.18024206161499, -4.953296661376953, -4.3323283195495605, -1.9895886182785034, -0.9182958006858826, -1.2809019088745117, -4.090524196624756, 0.25694540143013, -4.791000843048096, -0.8209642171859741, -2.378762722015381, -1.9224141836166382, -1.8710798025131226, -1.7290903329849243, -1.6767504215240479, -1.8385858535766602, -3.344933032989502, -0.8140627145767212, -2.392922878265381, -1.3276156187057495, -1.1542680263519287, 0.02396303229033947, -2.0387930870056152, -1.7846342325210571, -0.4471873342990875, 0.8051605224609375, -1.8978304862976074, -0.4933512210845947, 0.6779794692993164, -1.2109791040420532, -0.8121653199195862, -1.2003304958343506, 0.01022394746541977, 1.5496234893798828, -3.6216423511505127, 1.2804350852966309, -2.2850427627563477, 0.1395234912633896, 0.8535337448120117, -0.37076684832572937, 0.5594646334648132, -0.5713777542114258, -1.3768380880355835, 0.35866066813468933, -0.6591535806655884, 1.0931122303009033, 2.1704494953155518, -0.15126368403434753, -0.8692861199378967, 0.4619787037372589, 0.4645921587944031, -0.45322543382644653, -1.9674001932144165, -2.243455410003662, -1.7346749305725098, -1.7518469095230103, -0.8585518002510071, -1.6066029071807861, -3.9446539878845215, -7.036523342132568, -1.761863112449646, -2.5527281761169434, -1.732835054397583, -1.3442597389221191, -1.5046111345291138, -0.5676074624061584, -1.465461015701294, -0.1604148894548416, -0.41759225726127625, -4.571678638458252, -1.8314518928527832, -0.2993718683719635, -1.3043948411941528, 0.8986514210700989, -0.35147565603256226, 0.31468939781188965, 3.329052448272705, 1.7038644552230835, 2.0513393878936768, -1.241438388824463, -1.2287734746932983, -0.014411812648177147, -1.1697802543640137, 0.3433302044868469, -0.11848220974206924, 1.7212376594543457, 1.8913778066635132, 0.624262809753418, -2.4948599338531494, -1.1592159271240234, -0.6414404511451721, -2.6828062534332275, -1.9724620580673218, -2.117993116378784, -4.335535049438477, -4.3711628913879395, -6.860287666320801, 0.3457065224647522, -1.2056001424789429, -1.8813178539276123, -4.197864055633545, -4.894214630126953, -4.131383895874023, -2.022266387939453, -1.0494474172592163, -1.1988086700439453, -2.6329545974731445, 0.05129804089665413, -4.660510063171387, -0.8967994451522827, -2.258549928665161, -1.802286982536316, -1.6968477964401245, -1.7932871580123901, -2.5292296409606934, -1.7534565925598145, -3.3403868675231934, -0.9253813028335571, -2.3010048866271973, -1.2638598680496216, -1.2387075424194336, -0.040734414011240005, -2.0132577419281006, -1.6782728433609009, -0.2569505572319031, 0.9217413663864136, -2.002413749694824, -0.6130432486534119, 0.48643115162849426, -1.1137219667434692, -0.8444671034812927, -1.1574695110321045, -0.08551698923110962, 1.4662344455718994, -3.6057822704315186, 1.3055717945098877, -2.2806570529937744, 0.004436437040567398, 0.9250521659851074, -0.4877007305622101, 0.6005710959434509, -0.6104230284690857, -1.3253049850463867, 0.321970671415329, -0.7774056792259216, 1.120121717453003, 2.1561338901519775, -0.2598663568496704, -0.7015664577484131, 0.5452624559402466, 0.4589969515800476, -1.7789264917373657, -1.9475234746932983, -2.2627665996551514, -1.8027403354644775, -1.793903112411499, -0.7669637799263, -1.5272283554077148, -4.112431526184082, -6.88445520401001, -1.8373111486434937, -2.5002312660217285, -1.789937973022461, 0.6400154232978821, -1.5303689241409302, -0.6031690239906311, -1.5702120065689087, -0.187468484044075, -0.3362116813659668, -4.640526294708252, -1.7236292362213135, -0.42891374230384827, -1.1815162897109985, 1.0636907815933228, -0.2656785249710083, 0.32441914081573486, 3.2690725326538086, -34.40025329589844, 0.41740137338638306, -1.3427472114562988, -1.8935437202453613, -0.07210046797990799, -1.257354736328125, 0.42105773091316223, 1.9622278213500977, 1.8373973369598389, 1.4988397359848022, 0.5791566371917725, -6.353612899780273, -0.27011504769325256, -0.9749468564987183, -2.828953504562378, -2.065742254257202, -2.1755571365356445, -4.3603644371032715, -4.385867595672607, -6.798715591430664, -0.9942068457603455, -1.1383098363876343, -1.8002347946166992, -4.139078140258789, -5.653036594390869, -4.271299362182617, -2.0500035285949707, -1.0299122333526611, -1.319596529006958, -4.078281879425049, -0.09901869297027588, -4.635015964508057, -0.9073197841644287, -2.270519733428955, -1.9242812395095825, -1.7391963005065918, -1.891558289527893, -2.5714898109436035, -1.6749062538146973, -3.3198678493499756, -0.7976337671279907, -2.5387473106384277, -1.2916070222854614, -1.0383052825927734, -0.1292460858821869, -1.9439153671264648, -1.7040313482284546, -0.37775999307632446, 0.8713788390159607, -1.7951557636260986, -0.41710808873176575, 0.6332650780677795, 1.430885910987854, -0.8980161547660828, -1.199503779411316, -0.12392499297857285, 1.5348355770111084, -3.6775381565093994, 1.289231538772583, -2.3353352546691895, 0.09248685836791992, 0.7473977208137512, -0.5191354155540466, 0.7092427015304565, -0.551459550857544, -1.4764515161514282, 0.4311779737472534, -0.818794310092926, 1.1750246286392212, 1.8094141483306885, -0.28274527192115784, -0.7673657536506653, 0.4760637581348419, 0.6220453977584839, -0.4894423484802246, -1.8552812337875366, -2.0978188514709473, -1.9490512609481812, -1.575343132019043, -0.8947160243988037, -1.7066760063171387, -3.9449539184570312, -6.8630571365356445, -1.743622899055481, -2.6345927715301514, -1.8126083612442017, 0.7065228223800659, -2.7592875957489014, -0.8106955289840698, -1.7465633153915405, -1.0619277954101562, -0.34462061524391174, -4.518394470214844, -1.8728910684585571, -0.3283807039260864, -1.2613738775253296, 1.3888221979141235, -0.3492630422115326, 0.45158952474594116, 3.269859552383423, 1.7088007926940918, 2.451556444168091, -1.3519201278686523, -1.9614174365997314, -0.008374339900910854, -1.1711941957473755, 0.39905989170074463, -0.06875412911176682, 1.673877239227295, 1.9118486642837524, 0.5733628273010254, -2.568279266357422, -1.2159640789031982, -0.6716782450675964, -2.5906946659088135, -2.105297327041626, -2.012949228286743, -4.33719539642334, -4.386645317077637, -6.748504161834717, 0.44734546542167664, 0.2650229036808014, -1.7927244901657104, -4.137123107910156, -4.86408805847168, -4.295288562774658, -3.994318723678589, -1.0194958448410034, -1.2288086414337158, -3.8779234886169434, 0.20965246856212616, -4.6872782707214355, -0.7442327737808228, -2.458414316177368, -2.1241183280944824, -1.7859731912612915, -1.7468398809432983, -1.7682089805603027, -1.6021887063980103, -3.3703441619873047, -0.9675437211990356, -2.391298294067383, -1.3692113161087036, -1.0898878574371338, -0.16703927516937256, -2.0278801918029785, -1.6609057188034058, -0.2729266583919525, 0.9068354368209839, -2.001925468444824, -0.37908220291137695, 0.5717799663543701, -1.30225670337677, -0.815249502658844, -1.2591121196746826, 0.0038052527233958244, 1.5792746543884277, -3.538403034210205, 1.1771156787872314, -2.1983330249786377, 0.18195728957653046, 0.9563326835632324, -0.4344067871570587, 0.6829262971878052, -0.5312673449516296, -1.3887757062911987, 0.31381747126579285, -0.653171181678772, 0.9940149784088135, 2.108583688735962, -0.16697187721729279, -0.8684530854225159, 0.6122769117355347, 0.4479224681854248, -0.39230504631996155, -2.239649772644043, -2.040733575820923, -1.8034400939941406, -1.5750021934509277, -0.8075667023658752, -1.5260570049285889, -3.907365322113037, -7.087438583374023, -1.7769445180892944, -2.514227867126465, -2.75828218460083, -1.3614614009857178, -1.432160496711731, -0.5940631031990051, -1.5489791631698608, -0.2553326189517975, -0.3682858943939209, -4.589400291442871, -1.7366037368774414, -0.40904679894447327, -1.2989604473114014, 0.9858608841896057, -0.5643770694732666, 0.19531701505184174, 3.3128654956817627, 1.0682185888290405, 0.4756389856338501, 3.894681453704834, 1.0250746011734009, 1.9188525676727295]}, 'datecode': '2016-10-18 17:04', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (40, 50), 'etaBin': (1.54, 2.5)}}, 'et0_eta2': {'discriminator': {'threshold': -0.075000885128974903, 'nodes': [100, 5, 1], 'bias': [-0.04407104104757309, -0.0810713842511177, 0.05680200457572937, -0.031822316348552704, 0.014685048721730709, -0.271891713142395], 'weights': [-1.0825904607772827, 0.08574618399143219, 0.9685280323028564, 0.25779464840888977, 1.4009474515914917, -0.43996185064315796, -0.5787885785102844, -0.052533622831106186, 2.152944564819336, -4.60988712310791, -4.571747303009033, -3.3987250328063965, 0.8187448978424072, 0.24409186840057373, -1.5000301599502563, -2.578064441680908, 6.256258964538574, -0.26530393958091736, -0.3800651431083679, 1.0240007638931274, 1.2560677528381348, 0.32237425446510315, 0.9248688817024231, 0.5689820051193237, 4.2176594734191895, 0.4145246148109436, 0.008375607430934906, 1.1467556953430176, 2.8383400440216064, 0.7960429787635803, 1.509331226348877, 0.3867398202419281, 0.08516347408294678, 1.1665160655975342, 2.0155913829803467, 0.7269957661628723, 2.8648746013641357, 0.3785054087638855, 1.0710755586624146, 0.44012337923049927, -7.029890060424805, 2.7329320907592773, -0.4517747163772583, 2.704028606414795, 1.7207869291305542, 1.76518976688385, 0.31695756316185, 0.4686599671840668, 1.864015817642212, -0.2112739086151123, 1.531958818435669, -9.805472373962402, -7.812379360198975, 0.012495559640228748, 0.5575580596923828, 1.4924118518829346, 1.44475257396698, 0.7656540274620056, 0.21027854084968567, 0.021225228905677795, 0.27754437923431396, 0.0004881627392023802, 1.467686653137207, -0.016614526510238647, 0.43773579597473145, 1.5841753482818604, 0.9382981061935425, -0.1464185118675232, -0.8255245089530945, 1.0672740936279297, 0.8217244744300842, 0.5950704216957092, -0.27170273661613464, -0.296937495470047, 2.9902400970458984, 0.479889452457428, 0.01635497808456421, 0.4594772756099701, 1.3170560598373413, 1.3166279792785645, -4.464760780334473, -1.6882765293121338, -0.8037212491035461, 1.1366719007492065, 0.7525591850280762, -7.0844807624816895, 0.3426554203033447, 1.106463074684143, -1.1505635976791382, 0.41234174370765686, -0.11217062175273895, 0.38337114453315735, 1.154335379600525, -1.9204294681549072, 0.7371239066123962, -0.3465268313884735, 0.08321468532085419, -0.030556054785847664, -0.031579989939928055, -0.35611554980278015, -0.9876312613487244, 0.10274811089038849, 1.0551854372024536, 0.37982040643692017, 1.4573813676834106, -0.6407098770141602, -0.5639141201972961, 0.10327505320310593, 2.2927420139312744, -4.5257673263549805, -4.426496982574463, -3.3717570304870605, 0.8411870002746582, 0.25315651297569275, -1.698035478591919, -3.124276876449585, 6.366399765014648, -0.14681683480739594, -0.33744296431541443, 0.9182819128036499, 1.2642593383789062, 0.23908913135528564, 1.0396828651428223, 0.4190557599067688, 4.11634635925293, 0.5109344124794006, -0.053779978305101395, 1.3481312990188599, 2.7488715648651123, 0.9549916386604309, 1.531281590461731, 0.39701613783836365, 0.01831832528114319, 1.2805454730987549, 1.9067471027374268, 0.7213699221611023, 3.0208144187927246, 0.5273315906524658, 0.984556257724762, 0.49320197105407715, -7.039739608764648, 2.548867702484131, -0.3765135407447815, 2.599059581756592, 1.788646936416626, 1.898934006690979, 0.3848823606967926, 0.4087528586387634, 1.8734512329101562, -0.0959416925907135, 1.609128713607788, -9.783060073852539, -7.7851176261901855, 0.19969406723976135, 0.4252587854862213, 1.6623327732086182, 1.4855653047561646, 0.814243495464325, 0.29807761311531067, -0.022644948214292526, 0.18716299533843994, -0.09185656160116196, 1.3251649141311646, -0.1139320433139801, 0.46420544385910034, 1.4334721565246582, 1.0781512260437012, 0.031342972069978714, -0.8239216208457947, 1.1147432327270508, 0.8097687363624573, 0.5916090607643127, -0.1644834578037262, -0.2390330582857132, 2.99937105178833, 0.2348819226026535, -0.040052302181720734, 0.5412852764129639, 1.1846431493759155, 1.2704479694366455, -4.510382652282715, -1.5035237073898315, -0.822405219078064, 1.1230968236923218, 0.8845148682594299, -6.992668151855469, 0.49421584606170654, 1.0364357233047485, -1.2529572248458862, 0.4496068060398102, 0.01672779582440853, 0.25050511956214905, 1.1040409803390503, -1.8346953392028809, 0.7438300848007202, -0.3751390874385834, 0.021725764498114586, -0.12088722735643387, -0.12522420287132263, -0.42078670859336853, 0.40593743324279785, -0.17704273760318756, -2.5800063610076904, -0.6200281977653503, -0.5745964646339417, -0.1709720939397812, 0.1915697306394577, -0.10357870161533356, -0.31075340509414673, 3.0802440643310547, 7.903794765472412, 1.383229374885559, 1.0003013610839844, 0.42152512073516846, 0.5634909272193909, 0.962303638458252, -2.6268694400787354, 0.015338052064180374, 0.11794253438711166, -0.187285378575325, -3.4550161361694336, -0.3742278218269348, -0.3502424955368042, -0.4000864624977112, -1.87181556224823, -1.419228196144104, -0.24961507320404053, -3.085707664489746, -1.0063339471817017, -1.8244991302490234, -3.7415499687194824, -1.082822322845459, -0.5979400873184204, -3.151231288909912, -4.487706184387207, -1.944701075553894, -1.6603573560714722, -1.8000693321228027, -0.17634537816047668, -1.2092612981796265, -0.9449935555458069, -1.0295277833938599, -1.5545796155929565, -1.2223538160324097, -0.6605437994003296, -0.7603915333747864, -1.1740238666534424, -0.7833941578865051, -0.6020617485046387, 0.07888055592775345, -0.8712419271469116, 2.9096338748931885, 7.952542781829834, 0.0743514746427536, -0.33217012882232666, -0.45973896980285645, -0.5926423668861389, -0.25713425874710083, -1.5991075038909912, -0.2073005586862564, -1.2610282897949219, -0.42198652029037476, -0.41359448432922363, -0.35890793800354004, -1.1611835956573486, -0.2069760262966156, -0.2726447284221649, -0.0705200657248497, -0.16371753811836243, -0.17558065056800842, -0.22931239008903503, -0.10156021267175674, -0.09828787297010422, 0.15635733306407928, -6.191123008728027, -1.6424697637557983, -2.1052184104919434, -1.5590429306030273, -0.4421420991420746, -0.3700082004070282, 1.9565821886062622, 0.33755236864089966, -0.95201176404953, -0.17235925793647766, -0.43996310234069824, 3.0674614906311035, -1.3589973449707031, -0.6367796063423157, 0.6908778548240662, -1.4051241874694824, 0.1204921156167984, 1.5098772048950195, -3.6376779079437256, 0.16056931018829346, -0.0936564952135086, 0.4496389627456665, -0.02629782259464264, -0.08783216029405594, -0.019794583320617676, 0.001618462847545743, 0.9761450290679932, -0.055561479181051254, -1.1416538953781128, -0.3853769302368164, -1.513965129852295, 0.5668556690216064, 0.302071750164032, -0.061637625098228455, -2.1873176097869873, 4.628849506378174, 4.638221740722656, 3.6216931343078613, 1.3733007907867432, -0.2658552825450897, 1.5429216623306274, 2.6711924076080322, -6.0058112144470215, 0.3061431646347046, 0.27969062328338623, -1.1286944150924683, -1.2777042388916016, -0.23044545948505402, -0.8125728368759155, -0.4178599715232849, -4.178099632263184, -0.5654889345169067, -0.13899219036102295, -1.275926947593689, -2.6826772689819336, -0.9007846713066101, -1.6263715028762817, -0.3489578664302826, -0.030371999368071556, -1.2079277038574219, -1.8554635047912598, -0.6779713034629822, -4.139376163482666, -0.5931854248046875, -0.8874623775482178, -0.49628978967666626, 1.0718165636062622, -2.5306694507598877, 0.3706080913543701, -2.745999336242676, -1.790184497833252, -1.7904106378555298, -0.5145547389984131, -0.30139032006263733, -3.0778181552886963, 0.1586395800113678, -1.5348047018051147, 5.99743127822876, 7.641915798187256, -0.22821012139320374, -0.4714745283126831, -1.6166611909866333, -1.562677264213562, -0.8104075789451599, -0.2106080949306488, 0.006476747803390026, -0.431707501411438, -0.005110820755362511, -1.3908367156982422, -0.033923424780368805, -0.3585066795349121, -1.5972576141357422, -1.1322345733642578, 0.07311927527189255, -0.4280344843864441, -1.0599029064178467, -0.8081928491592407, -0.5103299021720886, 0.23274576663970947, 0.20392929017543793, -3.0005948543548584, -0.6365391612052917, 0.0015095829730853438, -0.4286399781703949, -1.284263014793396, -1.330533504486084, 4.446524143218994, 1.1311116218566895, 0.09046709537506104, -1.0766178369522095, -0.8885828852653503, 7.081045627593994, -0.3920170068740845, -1.1443006992340088, 1.102772831916809, -0.472776859998703, 0.30169478058815, -0.17559286952018738, -1.0941393375396729, 1.7821416854858398, -0.9212589263916016, 0.4484897553920746, 0.01548506785184145, -0.09181047230958939, 0.1414693146944046, 0.4962255358695984, -1.0334877967834473, 0.07781491428613663, 1.1460769176483154, 0.30784404277801514, 1.320994257926941, -0.49919629096984863, -0.2512543797492981, 0.10831945389509201, 2.0478789806365967, -4.505317687988281, -4.594081401824951, -3.527892589569092, 0.8108193874359131, 0.15681114792823792, -1.598739504814148, -2.5955898761749268, 6.39864444732666, -0.3007097840309143, -0.27232977747917175, 0.9647157192230225, 1.4248409271240234, 0.2729596197605133, 0.8721199631690979, 0.34965887665748596, 4.077643394470215, 0.5557665824890137, 0.053583815693855286, 1.2528311014175415, 2.727527379989624, 0.9207438230514526, 1.5947096347808838, 0.33100053668022156, 0.06567537784576416, 1.1861624717712402, 2.0139987468719482, 0.7745558023452759, 3.9312446117401123, 0.5401031970977783, 1.036202073097229, 0.4027394652366638, -7.002265930175781, 2.680999994277954, -0.3758254051208496, 2.7289979457855225, 1.5763626098632812, 1.7348488569259644, 0.31913086771965027, 0.47689637541770935, 1.929862380027771, -0.09270866215229034, 1.5254355669021606, -9.940582275390625, -7.787464618682861, 0.024363325908780098, 0.4464062750339508, 1.6232454776763916, 1.6031330823898315, 0.9539582133293152, 0.201005756855011, -0.1744878888130188, 0.3411921262741089, -0.04162665456533432, 1.4588932991027832, -0.015815282240509987, 0.2954772412776947, 1.569823980331421, 0.9250545501708984, -0.0902547836303711, 0.3614014685153961, 1.2554881572723389, 0.8420773148536682, 0.5306254029273987, -0.1407562494277954, -0.3198264241218567, 2.945493698120117, 0.7684943079948425, 0.080005943775177, 0.4330621659755707, 1.3119004964828491, 1.314406394958496, -4.630164623260498, -1.5067929029464722, -0.9357821345329285, 1.0014532804489136, 0.7030044794082642, -7.084412097930908, 0.33034592866897583, 1.2532033920288086, -1.2166136503219604, 0.3960300385951996, -0.3553300201892853, 0.22526171803474426, 0.9761221408843994, -1.7732036113739014, 0.9098100066184998, -0.3755049705505371, -0.028497174382209778, -0.1154387891292572, -0.09133943170309067, -0.32184547185897827, -0.5127127170562744, -0.7881003022193909, 0.5929464101791382, 0.7647581100463867, -0.4633060097694397]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (0, 20), 'etaBin': (1.37, 1.54)}}, 'et4_eta3': {'discriminator': {'threshold': -0.36000080332159995, 'nodes': [100, 5, 1], 'bias': [0.06462695449590683, -0.12676197290420532, -0.05327867344021797, -0.12458591908216476, -0.02929820492863655, 0.4395279586315155], 'weights': [-1.4867814779281616, -1.4737091064453125, 0.844450056552887, 1.5732043981552124, 0.6019328236579895, -0.4373997449874878, -0.5268439650535583, 1.2225843667984009, -1.5791033506393433, -1.3404196500778198, -0.37639474868774414, 2.592952251434326, 0.6489744186401367, -0.5390294194221497, 2.801182508468628, 4.186042308807373, 1.5369982719421387, 3.385530471801758, 4.301487922668457, 3.444990396499634, 3.128727436065674, 1.4267210960388184, 1.3380502462387085, 3.8352210521698, 4.03884220123291, 3.417123556137085, 1.5704231262207031, 4.7366719245910645, 1.7156262397766113, -0.337830126285553, -0.2463470995426178, 3.733076333999634, 2.0827527046203613, 3.4395291805267334, 1.6618478298187256, 2.271916151046753, 1.433703064918518, -0.7758818864822388, 1.5254719257354736, 3.477954387664795, -1.267235517501831, 1.9360064268112183, 0.8179213404655457, 3.515212059020996, 0.20326341688632965, 1.2137004137039185, 1.4239284992218018, 1.738392949104309, 0.07549072057008743, 1.7007884979248047, 0.5368281602859497, -0.2083173394203186, -0.2131136655807495, -4.36929988861084, -1.907471776008606, -0.1919580101966858, -2.4573922157287598, 1.0268385410308838, -1.1203089952468872, 7.070017337799072, -0.13881118595600128, 0.7215918302536011, -1.300080418586731, 0.9581174254417419, -1.2448112964630127, 1.5979256629943848, -1.021296501159668, 1.8850929737091064, 1.729594349861145, 7.351315975189209, -2.1720261573791504, 4.964243412017822, -0.4282679855823517, -0.4487836956977844, 1.6107763051986694, 1.6064417362213135, 1.8531638383865356, 1.4907758235931396, 1.025588870048523, 1.2084702253341675, 1.0822110176086426, 1.6485376358032227, 6.506876468658447, 4.879627227783203, 2.8146398067474365, 1.2076873779296875, 1.7120426893234253, 1.5159088373184204, 0.18634159862995148, 1.2148019075393677, 0.336647629737854, 0.3901866376399994, 4.704002380371094, 2.0778651237487793, 0.29331091046333313, 1.7218950986862183, 0.1951432079076767, -0.3266952335834503, 0.2843090891838074, 1.1680628061294556, 1.6010924577713013, 1.6172492504119873, -0.8451579213142395, -1.6616193056106567, -0.5480712652206421, 0.4967135190963745, 0.5839541554450989, -1.2435401678085327, 1.639122486114502, 1.4536617994308472, 0.8924252986907959, -2.502986431121826, -0.6584173440933228, 0.5919974446296692, -2.688136339187622, -4.183643341064453, -1.7220592498779297, -3.4389805793762207, -4.238657474517822, -3.503734827041626, -3.1268930435180664, -1.5796105861663818, -1.5052632093429565, -3.872730016708374, -3.983173370361328, -3.5366408824920654, -1.5897138118743896, -4.627622604370117, -1.7220213413238525, 0.19923824071884155, 0.262792706489563, -3.628666639328003, -2.0813517570495605, -3.420935869216919, -1.6493909358978271, -2.213114023208618, -1.3593264818191528, 0.6032209396362305, -1.4911677837371826, -2.0726802349090576, 1.450044870376587, -1.7461060285568237, -0.8393234610557556, -3.34538197517395, -0.20262302458286285, -1.1185157299041748, -1.4939242601394653, -1.680585265159607, -0.27598610520362854, -1.7114967107772827, -0.5413006544113159, 0.006118231453001499, 0.053060561418533325, 4.440168380737305, 1.9099938869476318, 0.0841115191578865, 2.4119558334350586, -1.0400716066360474, 1.1249712705612183, -7.125352382659912, 0.2292049080133438, -0.704696774482727, 1.3456120491027832, -1.1085519790649414, 1.2788655757904053, -1.536393642425537, 1.1718889474868774, -2.0209789276123047, -1.598495602607727, -7.162876605987549, 2.1705310344696045, -5.220207214355469, 0.5644900798797607, 0.4294244647026062, -1.6114963293075562, -1.7119221687316895, -1.7808786630630493, -1.5579559803009033, -0.8310328722000122, -1.0944525003433228, 0.19997258484363556, -1.7006828784942627, -6.591492652893066, -4.871800422668457, -2.7927043437957764, -0.9788928031921387, -1.8071975708007812, -1.5429456233978271, -0.24970172345638275, -1.3173140287399292, -0.4225567877292633, -0.3986871838569641, -4.786027908325195, -2.1147027015686035, -0.9594298601150513, -1.7684777975082397, -0.412676066160202, 0.31834909319877625, -0.22456033527851105, -1.012269377708435, -133.3319854736328, 0.7500282526016235, -1.04212486743927, -5.753209590911865, -1.772415280342102, -0.5085403919219971, 0.9793993830680847, 4.756992340087891, 1.5842928886413574, 2.8646275997161865, 0.9690821766853333, -3.982877731323242, -0.6454582810401917, 1.8154902458190918, -2.6285903453826904, -3.281752824783325, -1.7247415781021118, 9.381003379821777, -4.36454439163208, 0.47222229838371277, -3.27756404876709, -1.0361080169677734, -1.6282318830490112, -2.890007495880127, -4.3262939453125, 5.245368480682373, 30.798059463500977, -4.717989921569824, -1.8360204696655273, 18.620315551757812, 1.6453514099121094, -3.6965060234069824, -2.125960350036621, -3.574266195297241, -1.5278217792510986, 8.578984260559082, -1.4894806146621704, 0.5837669372558594, -1.5354734659194946, -2.2052173614501953, 1.2544898986816406, -1.7368152141571045, 3.2383806705474854, -3.3198013305664062, -0.20314103364944458, 36.236717224121094, -1.4842288494110107, -1.7330299615859985, -0.2848369777202606, -1.5803918838500977, -0.8730565309524536, 1.9593693017959595, -0.5476393699645996, 4.369739532470703, 1.837645411491394, 0.12737376987934113, 2.434699058532715, -1.0143126249313354, 1.073431134223938, -7.206415176391602, 0.026276158168911934, -0.7369642853736877, 1.454508662223816, -0.9562530517578125, 1.3384836912155151, -1.5626505613327026, 1.1611621379852295, -1.8394544124603271, -1.628089427947998, -7.215399742126465, -0.8328399658203125, -5.198910236358643, 0.5378676652908325, 0.299236923456192, -1.571925163269043, -1.752135157585144, -1.939960241317749, -1.6952630281448364, -1.1344391107559204, -1.1983847618103027, 15.013886451721191, -1.5810015201568604, -2.1311440467834473, 2.483027696609497, -2.818328619003296, -1.1147847175598145, -1.5673705339431763, -1.5386836528778076, -61.90903091430664, -7.341132640838623, -0.6849504113197327, -2.770543098449707, 14.490680694580078, -2.344757080078125, -0.32797905802726746, -1.8134076595306396, -9.469379425048828, 0.4396365284919739, -0.5708122849464417, 1175.425537109375, -0.6392597556114197, 5.817916393280029, -0.7583734393119812, -1.6797935962677002, -0.6084758043289185, 0.49208471179008484, 0.37925252318382263, -1.281166434288025, 1.4826879501342773, 1.3099654912948608, 0.9481105804443359, -2.466290235519409, -0.25591522455215454, 0.5295944213867188, -2.845876693725586, -4.244900703430176, -1.8413976430892944, -3.353544235229492, -4.254318714141846, -3.648327350616455, -3.2965798377990723, -1.60770845413208, -1.539547324180603, -3.897989273071289, -4.200295925140381, -3.5161688327789307, -1.5999046564102173, -4.629602432250977, -1.8001389503479004, 0.3400377631187439, 0.20770108699798584, -3.6942813396453857, -1.8704400062561035, -3.6249916553497314, -1.4966779947280884, -2.187971591949463, -1.331571102142334, 0.7840662598609924, -1.494399905204773, -3.4661026000976562, 1.2672978639602661, -1.9300782680511475, -0.6854815483093262, -3.309452533721924, -0.21256285905838013, -1.1317399740219116, -1.5249943733215332, -1.6415632963180542, -0.1943846344947815, -1.506707787513733, -0.4104507267475128, 0.2074458748102188, 0.22047878801822662, 4.341631889343262, 1.8496493101119995, 0.27076441049575806, 2.3170735836029053, -1.11367928981781, 1.0733110904693604, -7.143605709075928, 0.05996796116232872, -0.49723702669143677, 1.3839823007583618, -1.0266321897506714, 0.6632851362228394, -1.5816642045974731, 1.042488932609558, -1.8211493492126465, -1.6957498788833618, -7.30482816696167, 2.2417476177215576, -5.263777732849121, 0.4748886227607727, 0.4238177239894867, -1.6097875833511353, -1.5732351541519165, -1.7961047887802124, -1.581592082977295, -0.8914350271224976, -1.0374106168746948, 0.14475391805171967, -1.6208686828613281, -6.5695343017578125, -4.996014595031738, -2.8021655082702637, -1.0248346328735352, -1.7940449714660645, -1.6252694129943848, -0.36168837547302246, -1.28688645362854, -0.4638928472995758, -0.4508695900440216, -5.0872039794921875, -2.0638904571533203, -0.931699275970459, -1.6916216611862183, -0.3978312015533447, 0.45317956805229187, -0.1839575320482254, -1.1039848327636719, 1.9617257118225098, 1.6389902830123901, -0.8699897527694702, -1.5998834371566772, -0.47336500883102417, 0.32016292214393616, 0.5577893853187561, -1.2908899784088135, 1.6202701330184937, 1.4410102367401123, 0.358812153339386, -2.5089657306671143, -0.7544220685958862, 0.48537203669548035, -2.641774892807007, -4.277714252471924, -1.6127872467041016, -3.270237445831299, -4.33588171005249, -3.503051996231079, -3.3448410034179688, -1.3215751647949219, -0.953072726726532, -3.757697105407715, -4.174436092376709, -3.2933425903320312, -1.4677386283874512, -4.575158596038818, -1.8304145336151123, 0.1457415372133255, 0.18272513151168823, -3.783085584640503, -1.947263240814209, -3.5277891159057617, -1.4989421367645264, -2.245493173599243, -1.3996042013168335, 0.7301384210586548, -1.3280394077301025, -2.129436492919922, 1.3069052696228027, -1.75732421875, -0.6596307754516602, -3.3413944244384766, -0.31757453083992004, -1.0883784294128418, -1.5811158418655396, -1.68881094455719, -0.13395372033119202, -1.6528756618499756, -0.5463045835494995, 0.17333471775054932, 0.20440131425857544, 4.364204406738281, 1.8462419509887695, 0.04675350338220596, 2.4032280445098877, -1.1763029098510742, 0.6204546093940735, -7.208596706390381, 0.09103894978761673, -0.7689123749732971, 1.3510886430740356, -1.1080331802368164, 1.348832130432129, -1.6236079931259155, 1.1374080181121826, -1.9865670204162598, -1.5614207983016968, -7.277379035949707, 2.144817352294922, -5.323642253875732, 0.4416712820529938, 0.3412749767303467, -1.4677971601486206, -1.7046772241592407, -1.8935762643814087, -1.5041370391845703, -0.8366202116012573, -1.0677515268325806, -1.0486068725585938, -1.7086403369903564, -6.6407341957092285, -4.853827476501465, -2.8789336681365967, -1.0603193044662476, -1.8825640678405762, -1.6039913892745972, -0.37384241819381714, -1.3188132047653198, -0.4087521731853485, -0.3929712474346161, -5.079066276550293, -2.0130181312561035, -0.199309840798378, -1.767380714416504, -0.39557260274887085, 0.2972075045108795, -0.1916777640581131, -0.9607219099998474, -1.3500920534133911, 2.688656806945801, 0.8741428256034851, 0.8419037461280823, 4.304064750671387]}, 'datecode': '2016-10-18 17:04', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (50, 500000), 'etaBin': (1.54, 2.5)}}, 'et0_eta0': {'discriminator': {'threshold': -0.21500081121921538, 'nodes': [100, 12, 1], 'bias': [-0.3243821859359741, -0.022949250414967537, 0.06397953629493713, -0.002450532279908657, 0.005139805842190981, -0.0042592985555529594, -0.1272035837173462, -0.01745532639324665, -0.057310499250888824, -0.10154696553945541, 0.01067082304507494, -0.02071106806397438, -0.026636380702257156], 'weights': [1.476061463356018, 0.057953573763370514, -0.061145782470703125, 0.14903037250041962, 0.05627449229359627, 0.12229415774345398, 0.0437023751437664, 0.23709996044635773, 0.21900202333927155, 0.3448837399482727, 0.0644509568810463, -1.284635066986084, -5.035192489624023, -0.043930720537900925, -0.490546315908432, -0.7604197859764099, 0.054398056119680405, -0.20822304487228394, -0.8825193047523499, -0.41976767778396606, -0.32447633147239685, -0.22125662863254547, -0.15850138664245605, -0.24071381986141205, -0.3704829812049866, -0.362745076417923, -0.2589312791824341, -0.11356930434703827, -0.16233879327774048, -0.24333973228931427, -0.23491203784942627, 0.016969546675682068, -0.1014983132481575, -0.22767505049705505, -0.13504700362682343, 0.12819024920463562, -0.09571896493434906, 0.05516155809164047, -0.12372250854969025, -0.14374038577079773, -0.17545878887176514, 0.031179307028651237, -0.2246602326631546, -0.006212448701262474, 0.4229028522968292, -0.10946831107139587, -0.019336272031068802, 0.006436899304389954, -0.025292545557022095, 0.0565677285194397, 0.5393238067626953, 0.010842016898095608, -0.11572227627038956, -0.010478798300027847, 0.02785000391304493, -0.12484199553728104, 0.29947125911712646, 0.012082966044545174, 0.15753582119941711, 0.07837500423192978, 0.15220965445041656, 0.3800061047077179, -0.01225293893367052, 0.05631566792726517, 0.4082483947277069, 0.08196637034416199, 0.1384999006986618, -0.06263206899166107, 0.2716931700706482, 0.5301321148872375, 0.05661932751536369, 0.18994684517383575, 0.060955509543418884, -0.11557963490486145, -0.02318572625517845, -0.09796342253684998, -0.26194578409194946, 0.05938266962766647, -0.06903216987848282, 0.033798396587371826, -0.766826331615448, -0.19958138465881348, -0.18872560560703278, 0.01909077726304531, 0.03044808842241764, -0.06817609816789627, -0.13110919296741486, -0.012401021085679531, -0.1713392734527588, -0.21668341755867004, 0.012201621197164059, 0.4037587344646454, -0.14945973455905914, -0.1395430713891983, 0.06031619384884834, 0.38285258412361145, -0.2974977493286133, -0.12648186087608337, 0.20011746883392334, 0.10430724918842316, -0.6960152387619019, -0.2775358557701111, 0.1363564282655716, 0.18876704573631287, 0.16436830163002014, -0.14093901216983795, 0.09610968083143234, -0.1800735890865326, -0.7320963740348816, -1.1285581588745117, -0.11085426807403564, 0.6199904084205627, 2.050849199295044, 3.8321921825408936, 2.064218282699585, 2.286722421646118, 1.4917384386062622, 1.842494249343872, 2.0157387256622314, 1.0776647329330444, 1.0539902448654175, 0.9616613388061523, 0.9284083247184753, 1.0583244562149048, 0.9447614550590515, 1.046964406967163, 0.7982513904571533, 0.7098509669303894, 0.863567590713501, 0.8808420300483704, 0.8805064558982849, 0.25724586844444275, 0.36333155632019043, 0.9393158555030823, 0.6228321194648743, 0.37539443373680115, 0.6231546401977539, 0.247482031583786, 0.39974692463874817, 0.38513579964637756, 0.506837785243988, 0.44895729422569275, 0.6238045692443848, 0.4085644483566284, -0.5285047888755798, 0.34321993589401245, 0.3186812996864319, 0.4267951548099518, 0.4548929035663605, 0.31742143630981445, -0.19146175682544708, -0.01741754822432995, 0.5441179871559143, 0.31392115354537964, 0.320030152797699, 0.5049025416374207, -0.028435463085770607, 0.09931579977273941, -0.05825544148683548, 0.11842112243175507, 0.1963658332824707, -0.357530802488327, 0.12685859203338623, -0.19431133568286896, -0.46653425693511963, 0.3576080799102783, 0.2375250607728958, 0.24967795610427856, -0.19622279703617096, -0.651342511177063, 0.2566276490688324, -0.05432011932134628, -0.062122780829668045, -0.01816791109740734, 0.3294052183628082, 0.42870306968688965, 0.6888091564178467, 0.5112172961235046, 0.3980710208415985, 0.28258341550827026, 2.864884376525879, 1.0171176195144653, 0.8973293900489807, 0.4066636562347412, 0.4845094680786133, 0.501609206199646, 0.27183276414871216, 0.4392940402030945, 0.9660190939903259, 0.842970073223114, 0.29989534616470337, -0.10744970291852951, 1.1572062969207764, 0.46984249353408813, 0.28639930486679077, -0.20800787210464478, 0.8500248193740845, 0.4979040026664734, 0.24565085768699646, -0.13411100208759308, 0.6587658524513245, 0.3341616690158844, -0.31965118646621704, -0.1291426420211792, -0.1039436012506485, 0.09522631764411926, -0.09256931394338608, 0.17307069897651672, 0.878302276134491, 1.1097573041915894, 0.11843667924404144, -0.780601441860199, -2.0414466857910156, -3.766209602355957, -1.871741771697998, -2.2838282585144043, -1.6353451013565063, -1.8062189817428589, -1.9007903337478638, -1.1669193506240845, -1.0442146062850952, -1.0744746923446655, -0.70192950963974, -0.9318003058433533, -0.7778177261352539, -0.9121586680412292, -0.9268052577972412, -0.8662547469139099, -0.9678456783294678, -0.930668294429779, -0.8388561606407166, -0.39635470509529114, -0.35807496309280396, -0.8350146412849426, -0.7014111876487732, -0.3082309067249298, -0.5654641389846802, -0.32241711020469666, -0.340485543012619, -0.4271754026412964, -0.5996658802032471, -0.38121673464775085, -0.5805191993713379, -0.49109143018722534, 0.4162992238998413, -0.35344594717025757, -0.3992149829864502, -0.436668336391449, -0.4587709903717041, -0.2821115255355835, 0.09143092483282089, 0.022399021312594414, -0.38038790225982666, -0.4334152936935425, -0.4344814419746399, -0.415460467338562, 0.04464549571275711, -0.09638110548257828, -0.00780858937650919, -0.2073897421360016, -0.026212023571133614, 0.3322162330150604, -0.10899668186903, 0.1515868753194809, 0.5464217066764832, -0.17238718271255493, -0.2121865153312683, -0.3770309388637543, 0.09445513039827347, 0.48999956250190735, -0.4061352014541626, 0.07177530229091644, -0.030583752319216728, 0.15788069367408752, -0.3935731053352356, -0.634501576423645, -0.5583630800247192, -0.40997612476348877, -0.36782220005989075, -0.4019736349582672, -2.9742817878723145, -1.0826107263565063, -1.0108041763305664, -0.34852731227874756, -0.4269449710845947, -0.4836242198944092, -0.3701973855495453, -0.3664204478263855, -0.9441653490066528, -0.7609328031539917, -0.3055655360221863, 0.0812799483537674, -1.1000967025756836, -0.46806764602661133, -0.3543839752674103, 0.3440917432308197, -0.6621334552764893, -0.5414609909057617, -0.21703045070171356, 0.1872454583644867, -0.7800435423851013, -0.26391303539276123, 0.2687060832977295, 0.14706704020500183, 0.10998667776584625, -0.10566559433937073, -0.00527771795168519, -0.31274887919425964, -0.8602349162101746, -1.0804035663604736, -0.12237152457237244, 0.7297987937927246, 2.231590747833252, 3.8236396312713623, 1.8765668869018555, 2.218198537826538, 1.5936576128005981, 1.9169617891311646, 2.1039249897003174, 0.9597241282463074, 1.1086180210113525, 1.004084587097168, 0.7974360585212708, 0.9986209273338318, 0.8849788308143616, 0.8981264233589172, 0.9357025027275085, 0.9319033622741699, 0.9834273457527161, 0.7466726899147034, 0.9445087313652039, 0.2888241708278656, 0.4901118576526642, 0.887897789478302, 0.6136507391929626, 0.19943992793560028, 0.6060624718666077, 0.38367411494255066, 0.3388911187648773, 0.48767632246017456, 0.4434056878089905, 0.3775225579738617, 0.5883793830871582, 0.498860239982605, -0.6094395518302917, 0.36791694164276123, 0.3394908308982849, 0.4487156271934509, 0.5549932718276978, 0.1786375641822815, -0.03970607742667198, 0.13637468218803406, 0.4542858898639679, 0.3339504599571228, 0.41318264603614807, 0.34875234961509705, -0.1564885377883911, 0.08213863521814346, 0.008575341664254665, 0.10929201543331146, 0.07375779002904892, -0.22763368487358093, 0.15024155378341675, 0.029834937304258347, -0.635840117931366, 0.3727417588233948, 0.2866503596305847, 0.33003586530685425, -0.292678564786911, -0.6640088558197021, 0.17276149988174438, 0.033568210899829865, -0.1452905535697937, -0.1365237981081009, 0.2597862780094147, 0.5123768448829651, 0.5960836410522461, 0.4633513391017914, 0.5046104788780212, 0.2890225648880005, 2.9260005950927734, 1.0276273488998413, 1.0584967136383057, 0.37141573429107666, 0.5158037543296814, 0.508152425289154, 0.32820868492126465, 0.34160280227661133, 0.956307053565979, 0.7184001207351685, 0.1844894289970398, -0.01977946236729622, 1.168821930885315, 0.6351172924041748, 0.3504367172718048, -0.12327994406223297, 0.7826497554779053, 0.6101318597793579, 0.14397403597831726, -0.29887765645980835, 0.723616361618042, 0.25893381237983704, -0.30390241742134094, -0.18394224345684052, -0.0011842958629131317, 0.19550587236881256, 0.008074487559497356, 0.22621819376945496, 0.8383589386940002, 0.9687522053718567, -0.014054263941943645, -0.8114946484565735, -2.2685179710388184, -3.687333345413208, -1.8694920539855957, -2.25789475440979, -1.4992057085037231, -1.9338481426239014, -1.8828308582305908, -1.1564518213272095, -0.999512255191803, -0.9706010818481445, -0.9313433170318604, -0.9694126844406128, -0.8566136956214905, -1.0584187507629395, -0.784536600112915, -0.8348600268363953, -0.9686130285263062, -0.7070528864860535, -0.9538553357124329, -0.3339445888996124, -0.45528101921081543, -0.9326247572898865, -0.6954519152641296, -0.30490538477897644, -0.5611538290977478, -0.46350178122520447, -0.5306990146636963, -0.46445584297180176, -0.6350771188735962, -0.4572320878505707, -0.6470425128936768, -0.5068849921226501, 0.41750097274780273, -0.41931775212287903, -0.38742950558662415, -0.29768016934394836, -0.3747560679912567, -0.2540116608142853, -0.005796564277261496, -0.0955575704574585, -0.49509480595588684, -0.5135501027107239, -0.34334731101989746, -0.362275630235672, 0.06511737406253815, -0.10966382175683975, 0.07512755692005157, -0.1860388219356537, -0.03367023542523384, 0.30179962515830994, -0.2719210684299469, 0.01747116446495056, 0.4167458415031433, -0.32770150899887085, -0.09628990292549133, -0.2367144227027893, 0.2576958239078522, 0.6623708009719849, -0.3237297534942627, -0.011700491420924664, 0.06413056701421738, 0.17541424930095673, -0.2461612969636917, -0.536953330039978, -0.6084061861038208, -0.49747201800346375, -0.37795478105545044, -0.36963239312171936, -2.786975383758545, -0.9466710686683655, -0.8497671484947205, -0.522612988948822, -0.3659266531467438, -0.4781096875667572, -0.4927422106266022, -0.2832837700843811, -0.9536038041114807, -0.7994208335876465, -0.2122483104467392, 0.03496243804693222, -1.1701340675354004, -0.5265145897865295, -0.28813809156417847, 0.14604005217552185, -0.8775339126586914, -0.605994701385498, -0.2954024076461792, 0.16882073879241943, -0.7774041891098022, -0.1178220883011818, 0.22547976672649384, 0.1690535545349121, 0.15536841750144958, -0.29932695627212524, -0.03597563877701759, -0.10570986568927765, -0.8147822022438049, -1.076404094696045, 0.02478604018688202, 0.6669730544090271, 2.1209115982055664, 3.795520782470703, 1.8743782043457031, 2.13991379737854, 1.6914101839065552, 1.7487924098968506, 2.0167899131774902, 1.0183645486831665, 1.0455210208892822, 1.11996328830719, 0.7865516543388367, 0.8750813603401184, 0.8187900185585022, 0.936396062374115, 0.8437780141830444, 0.8014704585075378, 0.9436918497085571, 0.885571300983429, 0.9232723116874695, 0.25422343611717224, 0.5256718397140503, 0.8227117657661438, 0.6017442345619202, 0.2802416980266571, 0.5966557264328003, 0.3428051173686981, 0.3773047626018524, 0.5244446992874146, 0.6559674739837646, 0.563808023929596, 0.5616024732589722, 0.3792630136013031, -0.45197808742523193, 0.33967095613479614, 0.39106473326683044, 0.45449888706207275, 0.3592917323112488, 0.14236736297607422, 0.025437576696276665, 0.12701091170310974, 0.5290206074714661, 0.38731324672698975, 0.5297143459320068, 0.36218366026878357, -0.06395639479160309, 0.10603252798318863, -0.10770198702812195, 0.1613713800907135, -0.04068173095583916, -0.36586424708366394, 0.16843944787979126, -0.02052471414208412, -0.5898191332817078, 0.3797563910484314, 0.06766174733638763, 0.3673762381076813, -0.3272448778152466, -0.5951536893844604, 0.24615316092967987, -0.03786547854542732, -0.13957352936267853, -0.08918934315443039, 0.31821122765541077, 0.42612648010253906, 0.6158890724182129, 0.3239102363586426, 0.4248531758785248, 0.3625611960887909, 2.7510218620300293, 1.0123035907745361, 0.8732120394706726, 0.5261968970298767, 0.5547390580177307, 0.43870770931243896, 0.49714115262031555, 0.47235339879989624, 0.9114752411842346, 0.7698146104812622, 0.11789002269506454, -0.15053117275238037, 1.077889323234558, 0.5874332189559937, 0.16860392689704895, -0.1621113121509552, 0.7412704825401306, 0.4587494730949402, 0.14176379144191742, -0.12539425492286682, -0.579647958278656, -0.38935571908950806, 0.12167588621377945, 0.15145407617092133, 0.0600559338927269, 0.04652192071080208, -0.006256299093365669, 0.1282905489206314, -0.16438427567481995, -0.113800048828125, 0.08819019794464111, 2.362645387649536, 2.040235996246338, 0.6736499071121216, 0.2812625467777252, 0.4025460183620453, 0.00039687901153229177, 0.22943401336669922, 0.4316480755805969, 0.10370149463415146, 0.09645375609397888, 0.29061609506607056, 0.16679520905017853, 0.20591211318969727, 0.056572336703538895, 0.1707373559474945, 0.2876901626586914, -0.007451578509062529, 0.22167544066905975, 0.19639211893081665, 0.24014900624752045, 0.03732027858495712, 0.13819825649261475, 0.2038734257221222, 0.07922736555337906, 0.016163617372512817, 0.11822336912155151, 0.12362080067396164, 0.21042616665363312, 0.2035510241985321, 0.15610383450984955, 0.15003079175949097, 0.04464350640773773, 0.1710120290517807, -0.14172954857349396, 0.023574458435177803, -0.012666396796703339, 0.18968015909194946, -0.008056697435677052, 0.10037846118211746, 0.08987661451101303, -0.07269002497196198, 0.1226225420832634, 0.09563713520765305, 0.12487387657165527, 0.13163724541664124, 0.07762188464403152, 0.06325860321521759, 0.06127370521426201, 0.0795314759016037, -0.03956534340977669, -0.03349811211228371, -0.08067768812179565, 0.09203643351793289, -0.19249092042446136, 0.011392530985176563, 0.1043589785695076, 0.09499963372945786, -0.12877480685710907, -0.17455501854419708, 0.07403942197561264, 0.0576593279838562, 0.19663161039352417, 0.33649685978889465, 0.21683286130428314, 0.07682272046804428, 0.22730880975723267, 0.1339457482099533, 0.009706462733447552, -0.048624444752931595, 0.38573452830314636, 0.04370135813951492, 0.10157392919063568, -0.025286376476287842, 0.14711278676986694, 0.19015805423259735, 0.11559094488620758, 0.1336848884820938, 0.10356315225362778, 0.15963514149188995, -0.008706903085112572, 0.1580125093460083, 0.016266142949461937, 0.09074185788631439, 0.08938904851675034, 0.01862986758351326, 0.20890820026397705, 0.18977190554141998, 0.18820568919181824, 0.049352794885635376, -0.7806790471076965, -0.23438364267349243, 0.14554771780967712, 0.09212977439165115, 0.027323439717292786, -0.1795697957277298, -0.030876850709319115, -0.1481524109840393, -0.760424792766571, -1.1755577325820923, -0.10541558265686035, 0.6398243308067322, 2.0786359310150146, 3.635143518447876, 2.067805528640747, 2.346752166748047, 1.6585654020309448, 1.880583643913269, 1.9749646186828613, 1.0171561241149902, 1.133100986480713, 0.9676198959350586, 0.7912762761116028, 0.897345244884491, 0.9583345055580139, 0.9731187224388123, 0.7820274829864502, 0.8727594017982483, 0.9315875768661499, 0.8790619969367981, 1.0047755241394043, 0.4724777042865753, 0.41589975357055664, 0.837573230266571, 0.5062357783317566, 0.27869340777397156, 0.7179790139198303, 0.2380809485912323, 0.3466125428676605, 0.4632721543312073, 0.438789427280426, 0.38961848616600037, 0.710131824016571, 0.3566570580005646, -0.5497071146965027, 0.4447776675224304, 0.33844923973083496, 0.33722302317619324, 0.35933974385261536, 0.28477299213409424, -0.1063450425863266, 0.20133990049362183, 0.5057849287986755, 0.4971030056476593, 0.3894655108451843, 0.491787314414978, -0.1542949676513672, 0.140877366065979, -0.14365963637828827, 0.2957767844200134, 0.028755055740475655, -0.3070200979709625, 0.28425130248069763, -0.10196131467819214, -0.5294090509414673, 0.3867524266242981, 0.2215283066034317, 0.3122559189796448, -0.1881251484155655, -0.485280841588974, 0.36670801043510437, 0.12092411518096924, -0.19059531390666962, -0.05695551633834839, 0.21754713356494904, 0.5142231583595276, 0.7399312257766724, 0.4074784219264984, 0.3823760151863098, 0.24980266392230988, 2.9636974334716797, 1.074893832206726, 0.8481115698814392, 0.478789359331131, 0.4902724027633667, 0.5101810097694397, 0.3424863815307617, 0.3308432102203369, 1.004491925239563, 0.8160499334335327, 0.12408070266246796, -0.029177628457546234, 1.169668197631836, 0.47259026765823364, 0.22181475162506104, -0.24677099287509918, 0.8702714443206787, 0.42897742986679077, 0.23883172869682312, -0.0941210612654686, -0.7464067339897156, -0.1393120437860489, 0.30386295914649963, 0.06628911942243576, 0.016536641865968704, -0.254507839679718, -0.03825397044420242, -0.22446735203266144, -0.774318277835846, -1.1725398302078247, -0.05262186378240585, 0.7752832770347595, 2.062148332595825, 3.6173818111419678, 1.9630950689315796, 2.2362475395202637, 1.569177269935608, 1.8511412143707275, 1.9206682443618774, 0.954825222492218, 1.081829309463501, 0.8732966184616089, 0.7028389573097229, 0.9882843494415283, 0.8494143486022949, 0.9445117115974426, 0.9234167337417603, 0.7813320755958557, 0.8666919469833374, 0.8231660723686218, 0.8291475176811218, 0.44714823365211487, 0.4455345571041107, 0.8096457123756409, 0.6892251372337341, 0.30815285444259644, 0.6257227659225464, 0.4243081510066986, 0.5339103937149048, 0.3445960581302643, 0.6384410858154297, 0.39555492997169495, 0.7375269532203674, 0.30566170811653137, -0.550922691822052, 0.35684967041015625, 0.4111183285713196, 0.4807831645011902, 0.5070168375968933, 0.31376034021377563, -0.014503933489322662, 0.06359174102544785, 0.5199306607246399, 0.5111125111579895, 0.3320494294166565, 0.3863998055458069, -0.17949503660202026, 0.23546284437179565, -0.10630717873573303, 0.21629539132118225, 0.057924315333366394, -0.21113428473472595, 0.16882818937301636, -0.03254755213856697, -0.45083826780319214, 0.2201589047908783, 0.08624336123466492, 0.2879609763622284, -0.18969903886318207, -0.6674262881278992, 0.2343495935201645, 0.11666262149810791, -0.13148455321788788, -0.17209984362125397, 0.39633241295814514, 0.5815616846084595, 0.5470340251922607, 0.42488759756088257, 0.3591296970844269, 0.43875575065612793, 1.948797583580017, 0.9059339761734009, 0.8886678814888, 0.5393306612968445, 0.32810941338539124, 0.5039650797843933, 0.28703731298446655, 0.3776465058326721, 0.8586753606796265, 0.8085424304008484, 0.3255603015422821, -0.13518378138542175, 0.5526973009109497, 0.5480127930641174, 0.17460809648036957, -0.32457220554351807, 0.7896354794502258, 0.48064878582954407, 0.14689065515995026, -0.15502357482910156, -15.491171836853027, -4.285859107971191, 0.0818476751446724, 0.06650038808584213, 0.03016006015241146, -0.081988625228405, 0.08372359722852707, 0.06274610012769699, -0.13087241351604462, -0.19910715520381927, 3.3757717609405518, 39.55893325805664, 2.093914270401001, -176.65133666992188, -4.331258773803711, 0.39432811737060547, -0.10075069963932037, -3.6958420276641846, 0.37659895420074463, 0.2783397138118744, 0.1598002016544342, 0.21591122448444366, -0.3677313029766083, 0.24481381475925446, 0.2627587616443634, 0.12696927785873413, 0.13358008861541748, -0.01974961906671524, 0.19124282896518707, 0.25373348593711853, 0.13908451795578003, 0.0008843100513331592, 0.07936114817857742, 0.09220340847969055, 0.1904328465461731, 0.13175538182258606, 0.11042188107967377, 0.07629276812076569, 0.16529527306556702, -0.0060999030247330666, 0.02589152194559574, 0.18454609811306, 0.2563488185405731, 0.20759092271327972, -0.01230043824762106, 0.19658254086971283, 0.021490851417183876, 0.20630313456058502, 0.03463979810476303, 0.07174990326166153, 0.03506484255194664, 0.051517553627491, 0.06359807401895523, 0.15722902119159698, 0.03541490063071251, 0.014536981470882893, 0.09417340159416199, 0.044150520116090775, -0.08035457134246826, 0.8098222017288208, 5.259992030914873e-05, -0.01029662974178791, 0.13987113535404205, 0.05670633167028427, -0.04850941523909569, 0.051377393305301666, 0.10235633701086044, 0.005661094095557928, 0.09524820744991302, -0.12393156439065933, -0.0378715880215168, -0.5669868588447571, -0.40579789876937866, -0.2606159448623657, -0.04482203722000122, 0.038945335894823074, -0.15142029523849487, 0.034491658210754395, -0.015906868502497673, 0.022592587396502495, 0.4919695556163788, 0.41574862599372864, 0.26817673444747925, -0.002132260473445058, 0.12034596502780914, 0.015913166105747223, 0.008873587474226952, 0.11072759330272675, 0.14224855601787567, 0.008609726093709469, -0.05536558851599693, 0.005231568124145269, -0.018855849280953407, 0.20781876146793365, 0.1079775020480156, 0.025684602558612823, 0.11940726637840271, 0.06137339770793915, 0.04815657436847687, -0.9021568894386292, -0.880332887172699, -0.2813597023487091, 0.11267052590847015, 0.09328419715166092, 0.08167222887277603, -0.2526177763938904, -0.003816338023170829, -0.18739047646522522, -0.863169252872467, -1.0840320587158203, -0.06257447600364685, 0.6662363409996033, 2.093428611755371, 3.6898958683013916, 2.071664571762085, 2.1934731006622314, 1.6108354330062866, 1.8452820777893066, 2.0900933742523193, 1.1813876628875732, 1.0497792959213257, 1.1331278085708618, 0.6984289288520813, 0.914137601852417, 0.9053791165351868, 1.0205188989639282, 0.940129816532135, 0.9280211329460144, 0.9807019829750061, 0.9307714104652405, 0.9677285552024841, 0.4357527196407318, 0.4068205952644348, 1.0050190687179565, 0.7080274224281311, 0.3384552299976349, 0.5750148892402649, 0.2305757701396942, 0.35322532057762146, 0.45492783188819885, 0.53663170337677, 0.4528823792934418, 0.7420092821121216, 0.483097106218338, -0.41787874698638916, 0.4667041599750519, 0.29779791831970215, 0.407510906457901, 0.33215752243995667, 0.3730563521385193, -0.109189972281456, 0.10464361310005188, 0.5269121527671814, 0.41522321105003357, 0.5469120740890503, 0.4414403438568115, -0.2025863528251648, 0.21906358003616333, -0.15255723893642426, 0.31041210889816284, 0.1170356422662735, -0.3667773902416229, 0.24834677577018738, 0.01885516382753849, -0.4079081416130066, 0.31527531147003174, 0.16464368999004364, 0.2769801616668701, -0.2532947361469269, -0.5217404365539551, 0.33690035343170166, -0.08377234637737274, -0.17760571837425232, -0.06869559735059738, 0.3766525685787201, 0.42167961597442627, 0.5127557516098022, 0.5397555828094482, 0.3739357590675354, 0.2328018993139267, 2.946880340576172, 1.0774153470993042, 0.9717760682106018, 0.46458330750465393, 0.39710190892219543, 0.5541382431983948, 0.264120876789093, 0.4267430901527405, 0.8890705108642578, 0.743122935295105, 0.23032748699188232, -0.014709069393575191, 1.0502794981002808, 0.5195984840393066, 0.3432987630367279, -0.2584777772426605, 0.8596128225326538, 0.4797530770301819, 0.20566365122795105, -0.18376195430755615, -0.8227311968803406, -0.20698490738868713, 0.11102037131786346, 0.22080208361148834, 0.1153373271226883, -0.2897360324859619, 0.12594637274742126, -0.23577368259429932, -0.8286423087120056, -1.0136382579803467, -0.08974894881248474, 0.7163418531417847, 2.1168737411499023, 3.793184995651245, 2.0460703372955322, 2.3263978958129883, 1.6736890077590942, 1.8304005861282349, 1.9066585302352905, 0.9959879517555237, 1.1238120794296265, 0.9346550703048706, 0.8507928252220154, 0.8582316040992737, 0.9514577984809875, 0.8473272919654846, 0.7740100622177124, 0.7148613333702087, 0.965130090713501, 0.8125954270362854, 1.0081979036331177, 0.46507373452186584, 0.37572628259658813, 0.8053709864616394, 0.6264010071754456, 0.32764407992362976, 0.5767160058021545, 0.2904122769832611, 0.5325918197631836, 0.47844672203063965, 0.6541452407836914, 0.3666097819805145, 0.5771685242652893, 0.38559582829475403, -0.41357266902923584, 0.5147339105606079, 0.34592801332473755, 0.4873802661895752, 0.37800514698028564, 0.2250511646270752, 0.023746708407998085, -0.013935789465904236, 0.4142044186592102, 0.46205636858940125, 0.35973113775253296, 0.39222392439842224, -0.09047795832157135, 0.1042354479432106, -0.1764659732580185, 0.16848084330558777, 0.15030142664909363, -0.3375096619129181, 0.14844581484794617, -0.019485371187329292, -0.5909953117370605, 0.37221550941467285, 0.12829771637916565, 0.3150736689567566, -0.3749918043613434, -0.6171873807907104, 0.40479397773742676, -0.0752357691526413, -0.12085483968257904, -0.1529383510351181, 0.27498093247413635, 0.4954458475112915, 0.7150106430053711, 0.4734967052936554, 0.2890981435775757, 0.24244461953639984, 2.971099853515625, 0.883664608001709, 0.8501023650169373, 0.3935048580169678, 0.49203982949256897, 0.48357340693473816, 0.38229358196258545, 0.39532411098480225, 0.942328691482544, 0.8241564035415649, 0.2859242558479309, -0.19443035125732422, 1.148388385772705, 0.49751755595207214, 0.3637045919895172, -0.3307400047779083, 0.8817672729492188, 0.4765219986438751, 0.1777738481760025, -0.2705914378166199, 0.05752190575003624, -1.150236964225769, 0.5735300183296204, -1.1392220258712769, 0.22553712129592896, -0.6983524560928345, -2.0947089195251465, -1.6132698059082031, -0.5439276099205017, -0.27180683612823486, -1.7030823230743408, -0.43344739079475403]}, 'datecode': '2016-10-18 17:04', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (0, 20), 'etaBin': (0, 0.8)}}, 'et3_eta0': {'discriminator': {'threshold': -0.94999999999999996, 'nodes': [100, 10, 1], 'bias': [0.17728745937347412, -0.060267046093940735, -0.18031713366508484, 0.19339519739151, -0.2021235227584839, -0.2422117292881012, 0.02458428218960762, 0.0455373078584671, 0.19666767120361328, 0.1951281577348709, -0.38630449771881104], 'weights': [-2.239042282104492, -1.193054437637329, 0.10130614787340164, 0.077732153236866, -0.28948864340782166, -0.48709824681282043, -0.27328553795814514, -0.7119665741920471, -1.5452057123184204, -1.4948227405548096, 2.6356019973754883, 1.3895624876022339, 1.1060211658477783, 0.8897459506988525, 1.6279979944229126, 2.031764030456543, 1.9524110555648804, 1.950697660446167, 0.2668675184249878, 1.9286677837371826, 2.2022855281829834, 1.8675689697265625, 1.3760188817977905, 1.4287655353546143, 1.7971867322921753, 1.014933466911316, 1.4421981573104858, 1.2080477476119995, 1.2991358041763306, 0.8171337842941284, 0.6002821326255798, 0.42710310220718384, 1.1112200021743774, 1.1269630193710327, 2.4265713691711426, 1.1673288345336914, 0.4597588777542114, 0.8000677824020386, 0.948357343673706, 1.1512888669967651, 2.4464528560638428, 1.4949381351470947, 0.533879280090332, -1.5922576189041138, 0.2776532769203186, 0.855198085308075, 0.5342828631401062, 1.6617522239685059, 0.42463386058807373, 0.46751052141189575, 0.6457004547119141, -1.5743060111999512, -0.04708711430430412, -1.1245516538619995, 0.08592380583286285, 1.3257657289505005, -0.9139286875724792, -0.951816201210022, 0.63743656873703, 1.365053653717041, -0.48002371191978455, -0.8110402226448059, -0.12207528948783875, -0.1744014024734497, -0.6583820581436157, -0.6415829658508301, 0.16945123672485352, -0.6192817687988281, -0.4287709593772888, 0.5661042332649231, -0.3378031551837921, -0.4615362584590912, -0.494212806224823, -0.24629426002502441, 0.3412192761898041, 0.6793802976608276, 0.9677519798278809, 0.9163610339164734, 0.703278660774231, 0.3944285809993744, 0.8558233976364136, 0.9388306140899658, 2.641338348388672, 1.7916686534881592, 0.644843578338623, 1.081906795501709, 0.5050879716873169, 1.9577882289886475, 2.2299489974975586, 1.9200313091278076, 0.6415445804595947, -0.11577116698026657, 1.7925642728805542, 1.6948580741882324, 0.7407084107398987, -0.06291315704584122, 2.3198184967041016, 1.1895947456359863, -0.9326055645942688, -0.2404146045446396, 2.2779293060302734, 1.1723291873931885, -0.07709205895662308, 0.009872540831565857, 0.35524341464042664, 0.3591274917125702, 0.3421315848827362, 0.8148862719535828, 1.4112972021102905, 1.3282899856567383, -2.795855760574341, -1.3158165216445923, -0.9573688507080078, -1.0057073831558228, -1.7129524946212769, -2.1079723834991455, -1.985476016998291, -2.1140975952148438, -0.136284738779068, -1.9993411302566528, -2.3148820400238037, -1.9802287817001343, -1.3858450651168823, -1.4189133644104004, -1.6426162719726562, -1.1204235553741455, -1.346848487854004, -1.1531518697738647, -1.3088210821151733, -1.179398775100708, -0.6055530905723572, -0.6614584922790527, -1.0318186283111572, -1.1138473749160767, -2.309666872024536, -1.0168190002441406, -0.5687865018844604, -0.8607608079910278, -0.940894603729248, -1.1477817296981812, -2.4272351264953613, -1.4012854099273682, -0.4624536335468292, 1.5136843919754028, -0.09189184010028839, -0.8745547533035278, -1.0733500719070435, -1.7171263694763184, -0.3609464168548584, -0.49171313643455505, -0.5253045558929443, 1.7718403339385986, 0.15666791796684265, 0.9886773228645325, -0.18354475498199463, -1.3080577850341797, 0.9190080165863037, 1.0279908180236816, -0.5590051412582397, -1.3638322353363037, 0.40405648946762085, 0.6377573013305664, 0.15249820053577423, 0.18366572260856628, 0.7446582317352295, 0.7830826044082642, -0.2556442320346832, 0.6023577451705933, 0.5154051780700684, -0.3983910083770752, 0.3185587227344513, 0.32094255089759827, 0.3294515311717987, 0.3042007386684418, -0.3139403164386749, -0.6984218955039978, -1.3539637327194214, -1.032212734222412, -0.7718667984008789, -0.4775051474571228, -0.7494340538978577, -0.8928504586219788, -2.5885422229766846, -1.8221418857574463, -0.7289097905158997, -1.0671120882034302, -0.5120259523391724, -2.042602777481079, -2.547106981277466, -1.842767357826233, -0.47869452834129333, 0.13617964088916779, -2.1420276165008545, -1.50803804397583, -0.7052081227302551, 0.05322765186429024, -2.237316608428955, -0.9938442707061768, 0.8821194171905518, 0.16310741007328033, 2.1447434425354004, 1.0728535652160645, -0.13696448504924774, -0.05550730228424072, 0.19970948994159698, 0.27732881903648376, 0.25448402762413025, 0.7809370160102844, 1.4348810911178589, 1.310713768005371, -2.7845609188079834, -1.2118386030197144, -0.9166501760482788, -2.270514965057373, -1.476441740989685, -0.8001417517662048, -1.9898992776870728, -1.9654734134674072, -0.1848532259464264, -1.9239118099212646, -2.275127649307251, -1.9608579874038696, -1.4868172407150269, -1.6291639804840088, -1.723827838897705, -1.001381516456604, -1.2864340543746948, -1.2287296056747437, -1.3363977670669556, -0.794121503829956, -0.6423551440238953, -0.5582156181335449, -1.2088571786880493, -1.204245686531067, -2.2827398777008057, -1.1020257472991943, -0.49409157037734985, -0.9277572631835938, -0.8136351704597473, -1.0432268381118774, -2.5055317878723145, -1.256455659866333, -0.5008126497268677, 1.462856650352478, -0.23493452370166779, -0.9232950210571289, -0.6957864165306091, -1.6569700241088867, -0.5079548954963684, -0.5465513467788696, -0.6366112232208252, 1.701859474182129, 0.1274765282869339, 1.023290753364563, -0.15832042694091797, -1.4247366189956665, 0.8257716298103333, 1.093299388885498, -0.5974026918411255, -1.2377538681030273, 0.33323556184768677, 0.6493145227432251, 0.11781392246484756, 0.18269553780555725, 0.6720931529998779, 0.781604528427124, -0.34857335686683655, 0.5982115268707275, 0.4406513571739197, -0.6109530925750732, 0.4252433478832245, 0.4147861897945404, 0.43512752652168274, 0.3663524389266968, -0.5108449459075928, -0.6952983736991882, -1.1685101985931396, -0.9947712421417236, -0.7148631811141968, -0.4257887303829193, -0.7605547904968262, -0.940877377986908, -2.54469633102417, -1.868729829788208, -0.7485997676849365, -1.058110237121582, -0.42840108275413513, -2.1492533683776855, -2.37595272064209, -1.7107268571853638, -0.4529905617237091, 0.07569878548383713, -1.997704029083252, -1.5101165771484375, -0.7729349732398987, 0.1242036297917366, -2.2477755546569824, -1.1482243537902832, 0.9732744097709656, 0.32478398084640503, -2.1450037956237793, -1.1404597759246826, 0.014158740639686584, -0.020100193098187447, -0.23917531967163086, -0.44033604860305786, -0.30000045895576477, -0.7670972943305969, -1.4926031827926636, -1.305226445198059, 2.685429811477661, 1.216978907585144, 1.067989468574524, 0.8069314956665039, 1.5168771743774414, 1.9856197834014893, 1.8579005002975464, 1.9841488599777222, 0.11744345724582672, 2.0995750427246094, 2.1469924449920654, 1.938354253768921, 1.532765507698059, 1.6629221439361572, 1.813986897468567, 1.075127124786377, 1.392306923866272, 1.0991307497024536, 1.2994121313095093, 0.8540873527526855, 0.5601438879966736, 0.5102548599243164, 1.2119313478469849, 1.2631114721298218, 2.4230542182922363, 1.0549194812774658, 0.37923571467399597, 0.7586725950241089, 0.7696542739868164, 1.1345311403274536, 2.6058168411254883, 1.3772258758544922, 0.6079716086387634, -1.4751144647598267, 0.34056025743484497, 0.8070067167282104, 0.609471321105957, 1.6413116455078125, 0.42105668783187866, 0.6567086577415466, 0.5327335596084595, -1.653010368347168, -0.050537388771772385, -1.0919348001480103, 0.23021310567855835, 1.32795250415802, -0.8816784024238586, -1.1208522319793701, 0.5418692827224731, 1.2058699131011963, -0.3486722707748413, -0.6833118200302124, -0.18694405257701874, -0.20577266812324524, -0.657939076423645, -0.7211319208145142, 0.2891044616699219, -0.6881989240646362, -0.5385521650314331, 0.5182172656059265, -0.43464115262031555, -0.4231164753437042, -0.6709752082824707, -0.25787681341171265, 0.5009713172912598, 0.828959047794342, 1.1714119911193848, 0.8878676295280457, 0.5689829587936401, 0.3310777246952057, 0.7530944347381592, 0.9550017714500427, 2.7627170085906982, 1.948923110961914, 0.7047944664955139, 1.0841410160064697, 0.6756921410560608, 2.1105499267578125, 2.3265812397003174, 1.7316349744796753, 0.6462854146957397, -0.15122170746326447, 1.99532949924469, 1.6235671043395996, 0.6850496530532837, -0.12313885986804962, 2.15781307220459, 0.9901554584503174, -0.79831463098526, -0.2487647384405136, 2.318676233291626, 1.2051165103912354, 0.016452468931674957, 0.030725371092557907, 0.29274752736091614, 0.35086843371391296, 0.3077310025691986, 0.7247107625007629, 1.523887038230896, 1.4791914224624634, -2.736750364303589, -1.430783987045288, -0.9411048889160156, -1.0433337688446045, -1.532468557357788, -2.0924367904663086, -2.1113338470458984, -2.032477855682373, -0.2753092050552368, -2.058124542236328, -2.238680124282837, -1.9064738750457764, -1.5010687112808228, -1.6562058925628662, -1.8657268285751343, -1.0471060276031494, -1.4882447719573975, -1.3173631429672241, -1.3543518781661987, -0.8708300590515137, -0.5150277018547058, -0.6512885689735413, -1.1491857767105103, -1.1725527048110962, -2.293598175048828, -1.1983673572540283, -0.392975777387619, -0.8812519311904907, -0.970319926738739, -1.1021558046340942, -2.539600133895874, -1.3694462776184082, -0.5296359062194824, 1.4154243469238281, -0.310099333524704, -1.0040279626846313, -0.5231863260269165, -1.6038367748260498, -0.406640887260437, -0.46852391958236694, -0.4686395525932312, 1.8045070171356201, 0.010837312787771225, 0.9279595017433167, -0.08683158457279205, -1.4342236518859863, 0.9337668418884277, 0.9225844144821167, -0.6066074967384338, -1.151829481124878, 0.39342761039733887, 0.6785211563110352, 0.3597167730331421, 0.053507912904024124, 0.728875994682312, 0.7635947465896606, -0.32505154609680176, 0.7602272033691406, 0.4732668995857239, -0.49506449699401855, 0.279278963804245, 0.4092167317867279, 0.4421418011188507, 0.4406158924102783, -0.3217693269252777, -0.7668841481208801, -1.1708629131317139, -0.8821460604667664, -0.729198694229126, -0.3309440314769745, -0.8189537525177002, -1.0362927913665771, -2.5962555408477783, -1.7947170734405518, -0.6902950406074524, -1.0340635776519775, -0.6129263639450073, -1.987069845199585, -2.215005874633789, -1.748450756072998, -0.4539339244365692, 0.04778668284416199, -2.0020923614501953, -1.5182080268859863, -0.6809839010238647, 0.1724814474582672, -2.2697594165802, -1.0368678569793701, 0.9345167279243469, 0.33130133152008057, 2.144519567489624, 1.0889544486999512, -0.09744448214769363, 0.07499998062849045, 0.20698653161525726, 0.4883233606815338, 0.391111820936203, 0.93660968542099, 1.4492250680923462, 1.4098538160324097, -2.6955175399780273, -1.3490216732025146, -1.0756964683532715, -0.9678946137428284, -1.5755923986434937, -0.9260223507881165, -1.979748249053955, -2.006340503692627, -0.1477576494216919, -2.0643367767333984, -2.2879626750946045, -2.006572723388672, -1.4852737188339233, -1.6509864330291748, -1.7501575946807861, -1.1281912326812744, -1.3503042459487915, -1.2975503206253052, -1.1861628293991089, -0.9324530363082886, -0.6094515919685364, -0.6543434262275696, -1.0849491357803345, -1.1388517618179321, -2.2553892135620117, -1.2169792652130127, -0.4638415575027466, -0.7567497491836548, -1.0190273523330688, -1.0056623220443726, -2.481522560119629, -1.3798611164093018, -0.5934018492698669, 1.5739578008651733, -0.24730555713176727, -0.8688960671424866, -0.4644274413585663, -1.65216064453125, -0.4873929023742676, -0.5242351293563843, -0.5260884761810303, 1.7025573253631592, 0.09705090522766113, 1.128327488899231, -0.18647438287734985, -1.474462628364563, 0.8110279440879822, 1.0083045959472656, -0.722978949546814, -1.3484010696411133, 0.3560481071472168, 0.802780270576477, 0.1571776419878006, 0.08327765762805939, 0.6448144912719727, 0.6021802425384521, -0.3168061673641205, 0.6082123517990112, 0.43926411867141724, -0.5384664535522461, 0.22667023539543152, 0.43037864565849304, 0.6303468942642212, 0.3213287591934204, -0.37712201476097107, -0.7585886716842651, -1.1521053314208984, -0.8758272528648376, -0.7663147449493408, -0.3958512246608734, -0.8654335141181946, -0.8888355493545532, -2.521090507507324, -1.9970052242279053, -0.5365056991577148, -1.055628776550293, -0.6134313344955444, -2.00691819190979, -2.212327718734741, -1.7751946449279785, -0.4283324182033539, 0.01599796861410141, -1.9016767740249634, -1.6922330856323242, -0.6859153509140015, 0.18592292070388794, -2.3631749153137207, -1.0364668369293213, 0.7988559603691101, 0.20096497237682343, -2.2798359394073486, -0.9982129335403442, 0.14484696090221405, 0.058334507048130035, -0.24039840698242188, -0.36558279395103455, -0.21348002552986145, -0.8744270205497742, -1.4827383756637573, -1.4441452026367188, 2.7260162830352783, 1.2946815490722656, 0.9623924493789673, 0.974850058555603, 1.51039457321167, 2.1397788524627686, 2.0888113975524902, 2.111521005630493, 0.18752995133399963, 2.000131607055664, 2.2795708179473877, 1.739831566810608, 1.3394826650619507, 1.6208863258361816, 1.6451220512390137, 1.1405341625213623, 1.260148048400879, 1.310970425605774, 1.1956318616867065, 1.052588701248169, 0.6919853091239929, 0.5477901697158813, 1.0776972770690918, 1.2666066884994507, 2.262777805328369, 1.233924150466919, 0.4730463922023773, 0.9439457654953003, 0.8279562592506409, 0.9791718125343323, 2.393134832382202, 1.4605515003204346, 0.5147533416748047, -1.5413330793380737, 0.11887224018573761, 0.9663402438163757, 1.0797563791275024, 1.605398178100586, 0.5854249596595764, 0.5479366183280945, 0.6564112901687622, -1.7207872867584229, -0.1490982472896576, -0.9621780514717102, 0.19452688097953796, 1.3195611238479614, -0.8738262057304382, -1.099992275238037, 0.4820856750011444, 1.2972530126571655, -0.3631128668785095, -0.6268166303634644, -0.3341735601425171, -0.09541554749011993, -0.595929741859436, -0.7696031332015991, 0.2904965877532959, -0.7193057537078857, -0.4173148274421692, 0.5623487830162048, -0.4206360876560211, -0.4989962875843048, -0.3482714593410492, -0.3525504171848297, 0.3502817153930664, 0.7050169110298157, 1.1553555727005005, 0.8329162001609802, 0.6682993173599243, 0.608733594417572, 0.8484053611755371, 0.9189615845680237, 2.5287792682647705, 1.9301106929779053, 0.5394763946533203, 1.0197595357894897, 0.6329258680343628, 2.140395164489746, 2.4269795417785645, 1.8881759643554688, 0.6782927513122559, 0.02659289352595806, 2.1969492435455322, 1.598191499710083, 0.71418696641922, -0.0780780091881752, 2.3423802852630615, 1.0362517833709717, -0.8106425404548645, -0.20199988782405853, -2.2078311443328857, -1.0486295223236084, 0.08000613003969193, -0.05598746985197067, -0.1640249788761139, -0.32660695910453796, -0.3216648995876312, -0.9226858019828796, -1.5902694463729858, -1.4917333126068115, 2.743290424346924, 1.335413932800293, 0.9270409345626831, 0.9063587188720703, 1.654326319694519, 2.030198335647583, 1.9371541738510132, 1.9938161373138428, 0.26860201358795166, 1.9185068607330322, 2.3014047145843506, 1.9614020586013794, 1.5339189767837524, 1.5303282737731934, 1.735044240951538, 1.025425910949707, 1.3128609657287598, 1.2879351377487183, 1.4011987447738647, 1.2297163009643555, 0.661037266254425, 0.5798875093460083, 1.2024052143096924, 1.168814778327942, 2.42602801322937, 1.1895310878753662, 0.41222772002220154, 0.7535437345504761, 0.9807790517807007, 1.0562971830368042, 2.4006195068359375, 1.3851735591888428, 0.6346132159233093, -1.5671972036361694, 0.22047770023345947, 0.9846572279930115, 0.9454964995384216, 1.5533435344696045, 0.48403453826904297, 0.49274617433547974, 0.524734616279602, -1.80234694480896, 0.06958520412445068, -1.085220456123352, 0.2678837478160858, 1.3826919794082642, -0.8665017485618591, -0.9742083549499512, 0.5201785564422607, 1.26466965675354, -0.3033871650695801, -0.6176689863204956, -0.3366625905036926, -0.15645626187324524, -0.6730332374572754, -0.6068395376205444, 0.18305981159210205, -0.6252965927124023, -0.4429503083229065, 0.6097378730773926, -0.24749943614006042, -0.27167239785194397, -0.37826335430145264, -0.3050284683704376, 0.3062669634819031, 0.7746275067329407, 1.2191916704177856, 0.9001162648200989, 0.6878582239151001, 0.5731820464134216, 0.8624178767204285, 1.0523186922073364, 2.6571428775787354, 1.9173321723937988, 0.5480315685272217, 0.976004421710968, 0.43780383467674255, 2.158034324645996, 2.5132133960723877, 1.733149528503418, 0.6613456010818481, -0.07283436506986618, 2.049067258834839, 1.5807583332061768, 0.5517159700393677, -0.07113222032785416, 2.2422335147857666, 1.0118186473846436, -0.7374804019927979, -0.3297822177410126, -2.175553560256958, -1.1985993385314941, 0.07332075387239456, 0.021346617490053177, -0.3300497233867645, -0.25863024592399597, -0.17544278502464294, -0.7952801585197449, -1.5064650774002075, -1.385896921157837, 2.6337473392486572, 1.304810881614685, 0.9117859601974487, 1.0363479852676392, 1.6349717378616333, 1.9729249477386475, 2.1186742782592773, 1.9894551038742065, 0.30509769916534424, 1.9368107318878174, 2.3146684169769287, 1.8927338123321533, 1.4047926664352417, 1.490464448928833, 1.75087308883667, 1.1552612781524658, 1.4223501682281494, 1.2775908708572388, 1.3859087228775024, 0.9964785575866699, 0.6788200736045837, 0.575339674949646, 1.0307259559631348, 1.1754900217056274, 2.2640278339385986, 1.0483067035675049, 0.4824575185775757, 0.9896638989448547, 1.0003074407577515, 1.2147537469863892, 2.490678071975708, 1.2907373905181885, 0.5105671882629395, -1.4879711866378784, 0.21871095895767212, 0.8368341326713562, 0.5817559957504272, 1.5140950679779053, 0.4470527768135071, 0.5511883497238159, 0.5082119107246399, -1.7247977256774902, 0.06378090381622314, -0.9789692759513855, 0.2514275312423706, 1.3882944583892822, -0.8823153376579285, -1.0745110511779785, 0.5152118802070618, 1.2291442155838013, -0.42539942264556885, -0.6004307270050049, -0.3640444874763489, -0.1982484757900238, -0.6535419225692749, -0.7917993068695068, 0.2808682322502136, -0.5897175073623657, -0.6436878442764282, 0.47517508268356323, -0.24679943919181824, -0.37793126702308655, -0.5350465774536133, -0.43289899826049805, 0.5311357975006104, 0.8332191109657288, 1.0170798301696777, 0.8994541764259338, 0.7114859819412231, 0.46820077300071716, 0.9246200919151306, 1.0638461112976074, 2.562593698501587, 1.9693078994750977, 0.661144495010376, 1.1706914901733398, 0.49095994234085083, 2.0036778450012207, 2.1940133571624756, 1.7857164144515991, 0.5535497665405273, -0.09505709260702133, 1.8668205738067627, 1.6191902160644531, 0.7396007180213928, 0.01820875145494938, 2.3482308387756348, 1.0456078052520752, -0.8239447474479675, -0.17262275516986847, -0.1570029854774475, -0.30454376339912415, -0.11810807883739471, -0.012160603888332844, -0.1602475494146347, 0.009688081219792366, -0.22344590723514557, -0.08508329838514328, -0.055638670921325684, 0.027916520833969116, 1.3883978128433228, 0.8419553637504578, 0.604651689529419, 0.6455225944519043, -0.01491620671004057, 0.24911291897296906, 0.18244722485542297, 0.07595661282539368, -0.17563095688819885, 0.03616087883710861, 0.26147356629371643, 0.13462717831134796, 0.08592566102743149, 0.10849546641111374, 0.07942968606948853, 0.023789335042238235, 0.020618518814444542, 0.11601622402667999, -0.041020870208740234, -0.057366784662008286, -0.018283290788531303, 0.010939449071884155, 0.061094630509614944, 0.13172531127929688, 0.05412779003381729, 0.13239683210849762, 0.029915839433670044, -0.03913268819451332, 0.03614918887615204, -0.027741020545363426, 0.07831506431102753, -0.026448508724570274, 0.05860540643334389, -0.2783336043357849, -0.008596600033342838, 0.13391059637069702, -0.06457118690013885, 0.02984980121254921, -0.09440506249666214, -0.054244816303253174, -0.010101713240146637, -0.30560997128486633, -0.20492151379585266, -0.25943583250045776, 0.03756161779165268, 0.0475594587624073, -0.11881260573863983, -0.24812346696853638, -0.09469559043645859, 0.12125609815120697, -0.12497956305742264, -0.09155207127332687, -0.1283242404460907, 0.04938923567533493, -0.14584395289421082, -0.09356189519166946, 0.04735855013132095, -0.23610953986644745, 0.001409954740665853, -0.07452401518821716, -0.13415883481502533, -0.21019898355007172, 0.029680661857128143, -0.02904488705098629, -0.07434059679508209, -0.08405172824859619, -0.08609213680028915, 0.017704444006085396, -0.00887321773916483, -0.08505752682685852, 0.10295527428388596, 0.1559147834777832, 0.18057377636432648, 0.2034745216369629, -0.1067788377404213, -0.01611076109111309, -0.07507006078958511, 0.19650134444236755, 0.1453283727169037, 0.07884165644645691, -0.014847823418676853, 0.03448435291647911, 0.007493128534406424, 0.1800888031721115, 0.09988660365343094, -0.061529431492090225, 0.14850415289402008, 0.09273742139339447, -0.10822104662656784, 0.10528768599033356, -1.7289971113204956, 1.0254331827163696, 1.036848783493042, -1.0040441751480103, 2.7050065994262695, 1.0240970849990845, -1.2022963762283325, -1.1089030504226685, -1.0786373615264893, -0.049769964069128036]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (40, 50), 'etaBin': (0, 0.8)}}, 'et4_eta0': {'discriminator': {'threshold': -0.94999999999999996, 'nodes': [100, 7, 1], 'bias': [-0.04682574048638344, -0.08617614209651947, 0.20550568401813507, 0.19406697154045105, -0.21780766546726227, -0.14207829535007477, -0.19644320011138916, -0.4111674726009369], 'weights': [3.058222532272339, -0.11194922029972076, 0.035943593829870224, -0.7757505774497986, 0.07118203490972519, -0.09140380471944809, 0.2142840027809143, 0.3084720969200134, 3.741539239883423, 2.846857786178589, -23.705419540405273, -2.217923164367676, -3.789524793624878, 6.113155841827393, -1.0452487468719482, -0.30597636103630066, -0.44204625487327576, -0.41467300057411194, -0.3544802665710449, -0.2849993407726288, -0.4855339527130127, -0.4296742379665375, -0.316491037607193, -0.5878586173057556, -0.4117034375667572, -0.4559156894683838, -0.38594603538513184, -0.0028064127545803785, -3.4092721939086914, -0.19013607501983643, 8.469882011413574, -0.11551237106323242, -1.1934882402420044, -0.6451283097267151, -0.15799158811569214, 0.230536550283432, -0.1870790719985962, -0.20149420201778412, -0.03712010011076927, -0.06004518270492554, -0.15890927612781525, -0.3119009733200073, -0.2208530604839325, -0.09368983656167984, -0.03259018063545227, -0.16843222081661224, -0.4838895797729492, -0.2368321269750595, -0.020008714869618416, 0.006714432034641504, 0.3447405993938446, -0.37682273983955383, 0.025721082463860512, -0.0037106380332261324, 0.03084147348999977, 0.12326698750257492, 0.08658303320407867, -0.047322701662778854, -0.044342804700136185, -0.1000499501824379, 0.011086884886026382, 0.05750685930252075, 1.5009475946426392, -0.3275568187236786, 0.23978331685066223, 0.12135636806488037, 14.254684448242188, 0.13094894587993622, 0.29169443249702454, -0.11389230936765671, -0.060511261224746704, 0.7684271931648254, 0.4076651334762573, 0.21494433283805847, -0.8374203443527222, -0.08702822029590607, -0.1917855441570282, -0.0933770164847374, -0.002842595800757408, 0.8212772607803345, 1.4939647912979126, 0.033795006573200226, -0.3374331295490265, -7.199451923370361, -0.2523188292980194, -0.14858418703079224, -0.02545495145022869, -0.2519879937171936, -0.2895655930042267, -0.501137375831604, -0.11993192136287689, 0.034077778458595276, -0.2932177484035492, -0.5695431232452393, -0.14869928359985352, -0.03629862517118454, -0.6153274178504944, -0.5390393137931824, 0.07262600213289261, -0.3199878931045532, 3.8441638946533203, 2.4829163551330566, -0.26871541142463684, -0.8806520104408264, 0.09902488440275192, -0.015863578766584396, 0.04607203230261803, -0.1474648118019104, 1.769394040107727, 1.810459852218628, -2.1421632766723633, -0.47937875986099243, -1.7101706266403198, -2.3814663887023926, -1.507400393486023, 0.2453577071428299, -0.9946631789207458, -0.9898926019668579, -1.0422345399856567, -1.0190954208374023, -1.0885716676712036, -1.0190953016281128, -0.7978494763374329, -1.138378381729126, -0.9015890955924988, -1.0785750150680542, -1.139174222946167, -0.5206763744354248, -1.209172010421753, -0.5813487768173218, -0.47889435291290283, -0.6585498452186584, -0.9243745803833008, -0.8175743818283081, -0.4532160460948944, 0.496810644865036, -0.47903749346733093, -0.672505259513855, -0.45675018429756165, -0.586637020111084, -0.36931079626083374, -1.2034589052200317, -0.38565999269485474, -0.3632654845714569, -0.5101311802864075, -0.2804872989654541, -0.5031045079231262, -0.4227074980735779, -0.15543816983699799, -0.23727214336395264, 0.8670980334281921, -1.1379660367965698, -0.3012160062789917, -0.19568713009357452, -0.1657724529504776, -0.19995617866516113, -0.3173958957195282, -0.26098230481147766, -0.2027474045753479, -0.2685406506061554, -0.12593881785869598, -0.20002315938472748, 0.31118521094322205, -1.1010000705718994, 0.362888902425766, 0.22763827443122864, 0.04347231239080429, 0.13150164484977722, 0.45144176483154297, -0.09309958666563034, -0.08833667635917664, 1.302908182144165, 0.16498632729053497, 0.2480601817369461, -0.9275625944137573, -0.6184854507446289, -0.6614977121353149, -0.6341808438301086, -0.4455365240573883, -0.061971455812454224, -0.5405353903770447, -0.670965313911438, -1.1627663373947144, -0.9610299468040466, -0.6288802027702332, -0.5787298679351807, -0.4981994330883026, -0.45428627729415894, -1.0223252773284912, -1.3182083368301392, -0.3163299262523651, -0.08467867970466614, -0.861793041229248, -0.6871806383132935, -0.3416394889354706, -0.12184478342533112, -1.5149272680282593, -1.1164722442626953, -0.16802158951759338, 0.015504078939557076, 3.6298203468322754, 2.2275190353393555, -0.981661319732666, -1.5638165473937988, 0.8214496970176697, -0.5503222942352295, 0.06743296980857849, 1.7082005739212036, 1.903743863105774, 1.9553890228271484, -1.9765180349349976, -3.019707202911377, -1.7605977058410645, -2.564491033554077, -2.147373914718628, 0.5959938168525696, -5.082260608673096, -4.647099494934082, -5.259606838226318, -5.12030553817749, -5.1186347007751465, -4.634576320648193, -3.6494760513305664, -5.623584270477295, -4.171816825866699, -5.107388496398926, -5.15177583694458, -2.693830728530884, -12.755818367004395, -2.7550582885742188, -2.427621841430664, -2.6396641731262207, -6.116861343383789, -4.335421562194824, -2.5281879901885986, 2.070563554763794, -1.891847848892212, -2.806384325027466, -2.6311497688293457, -2.2443137168884277, -2.0492849349975586, -5.445554256439209, -2.0076398849487305, -1.4045981168746948, -2.261333703994751, -1.442292332649231, -1.8760515451431274, -2.143193006515503, -1.1561247110366821, -0.4909752309322357, 4.346169471740723, -5.302811145782471, -0.9942522048950195, -1.0937047004699707, -1.446998119354248, -1.045389175415039, -1.1076384782791138, -0.8765107989311218, -0.7879534959793091, -1.090978980064392, -0.8969172239303589, -0.6372650861740112, 1.583371877670288, -5.118905544281006, 1.5666515827178955, 1.1148627996444702, 0.5236160755157471, 0.15286563336849213, 1.5849872827529907, -0.115245021879673, -1.1538535356521606, 6.115447998046875, 0.4133511185646057, 0.12399254739284515, -1.1436381340026855, -2.8712241649627686, -2.7044293880462646, -2.7658567428588867, -1.4567821025848389, -1.2862217426300049, -0.638632595539093, -3.1346116065979004, -5.393614768981934, -5.492956161499023, -2.6360185146331787, -2.5395565032958984, -2.088763475418091, -1.862412691116333, -5.033935546875, -5.098400115966797, -1.4891976118087769, -0.11286056786775589, -4.410672187805176, -3.9915692806243896, -1.8804373741149902, -0.4776649475097656, -7.639400482177734, -5.817543983459473, -0.47120505571365356, -0.14676909148693085, 3.7647016048431396, 2.2664897441864014, -0.8277937173843384, -1.5396820306777954, 0.7850982546806335, -0.7172222137451172, -0.0029119609389454126, 1.617307424545288, 1.9747254848480225, 1.8899439573287964, -1.7579938173294067, -2.979426383972168, -1.8452677726745605, -2.6823441982269287, -2.1170928478240967, 0.7532058358192444, -4.998748302459717, -4.28693962097168, -5.187532424926758, -5.077785491943359, -5.217937469482422, -4.488471984863281, -3.5019326210021973, -5.719718933105469, -4.103728294372559, -5.223949432373047, -5.266420364379883, -2.680941343307495, -5.460350513458252, -2.8738937377929688, -1.9959862232208252, -2.856679916381836, -5.214505195617676, -4.245157718658447, -2.482255220413208, 1.954346776008606, -1.9555160999298096, -2.844082832336426, -2.6627228260040283, -2.249976396560669, -2.1391794681549072, -5.342377185821533, -1.9597060680389404, -1.5938774347305298, -2.262721300125122, -1.6072357892990112, -1.6617052555084229, -2.3042099475860596, -0.9879289269447327, -0.4569021463394165, 4.486571311950684, -5.247201919555664, -1.0572209358215332, -1.0646865367889404, -1.244405746459961, -1.0535571575164795, -1.2069679498672485, -1.0317038297653198, -0.796983003616333, -1.0574246644973755, -0.9278029203414917, -0.683318018913269, 1.643038272857666, -5.229658603668213, 1.5981935262680054, 0.9773871898651123, 0.5397863984107971, 0.15572184324264526, 1.6528881788253784, -0.1438533514738083, -1.1919186115264893, 6.106741428375244, 0.5012319684028625, 0.1205344870686531, -1.096039056777954, -2.797684669494629, -2.859549045562744, -2.758711576461792, -1.5302135944366455, -1.516284465789795, -0.6106914281845093, -3.096102237701416, -5.324934959411621, -5.541281700134277, -2.5834882259368896, -2.511425495147705, -1.9021031856536865, -2.353917360305786, -4.917848110198975, -4.9027180671691895, -1.4773632287979126, -0.2708081603050232, -4.27911376953125, -3.933354377746582, -1.906004548072815, -0.5583126544952393, -7.705436706542969, -5.813662528991699, -0.33910590410232544, -0.13162696361541748, -3.7615854740142822, -1.4522404670715332, 0.8991000056266785, 1.686396598815918, -0.7773232460021973, 1.0072230100631714, 0.26715701818466187, -1.7207142114639282, -1.9176400899887085, -1.2886720895767212, 5.597075939178467, 4.755531311035156, 9.08128833770752, 15.556910514831543, 2.565484046936035, 33.14349365234375, 4.91190767288208, 4.60050630569458, 5.39437198638916, 5.049078941345215, 5.1297807693481445, 4.618407726287842, 3.7229318618774414, 5.705411434173584, 4.124068260192871, 5.011401653289795, 5.321530342102051, 2.8017966747283936, 4.413352012634277, 2.832120895385742, -0.14350518584251404, 2.842862129211426, 4.8411760330200195, 3.6803529262542725, 2.4113669395446777, -1.8979147672653198, 1.958972454071045, 2.683875560760498, 2.6418144702911377, 2.3044533729553223, 2.1664774417877197, 5.404063701629639, 2.030165672302246, 1.4528071880340576, 2.4251549243927, 1.5190815925598145, 2.187225341796875, 2.355745792388916, 1.5998170375823975, 0.5241653323173523, -4.441922664642334, 5.520379543304443, 1.104872226715088, 1.0641906261444092, 1.338766098022461, 1.0145593881607056, 1.0118064880371094, 0.9334816932678223, 0.627514123916626, 0.9344139099121094, 1.1682759523391724, 0.7832707762718201, -1.7494443655014038, 5.141222953796387, -1.7669464349746704, -0.940024197101593, -0.561367928981781, 0.023768587037920952, -1.7655338048934937, 0.09105351567268372, 1.1846694946289062, -5.94081449508667, -0.11080938577651978, -0.2980530560016632, 1.404118299484253, 2.6462109088897705, 2.835512399673462, 2.8947935104370117, 1.672385334968567, 1.2797707319259644, 0.5853452086448669, 3.032156467437744, 5.354996681213379, 4.589992523193359, 2.6931378841400146, 2.3857498168945312, 2.0071868896484375, 2.466366767883301, 4.9414544105529785, 5.093765735626221, 1.5791155099868774, 0.1517462581396103, 4.315247535705566, 3.8986899852752686, 1.950404167175293, 0.8662136197090149, 7.7105712890625, 5.836587429046631, 0.48735615611076355, 0.2787986099720001, -3.721740245819092, -2.1914706230163574, 0.9087993502616882, 1.640774130821228, -0.7228733897209167, 0.550100564956665, -0.013423996977508068, -1.60116446018219, -1.9033275842666626, -1.9928429126739502, 1.9557932615280151, 2.929208278656006, 1.947727918624878, 2.7449495792388916, 2.172131299972534, -0.5560443997383118, 4.972500324249268, 4.436136245727539, 5.282439708709717, 5.045923233032227, 5.130961894989014, 4.621788024902344, 3.6188478469848633, 5.9305949211120605, 4.306408405303955, 5.131011962890625, 5.15607213973999, 2.657116174697876, 12.78602409362793, 2.6523661613464355, 2.444584846496582, 2.8161470890045166, 6.058564186096191, 4.287871837615967, 2.543428897857666, -2.038630962371826, 2.082280158996582, 2.642899751663208, 2.7784817218780518, 2.1969587802886963, 2.081080913543701, 5.333948612213135, 2.107991933822632, 1.3853250741958618, 2.321838140487671, 1.5590497255325317, 1.6585291624069214, 2.332139730453491, 1.0124374628067017, 0.5344870090484619, -4.469806671142578, 5.179800510406494, 1.0166256427764893, 1.1776483058929443, 1.2407281398773193, 0.9641483426094055, 0.97700035572052, 0.9127278923988342, 0.6783474683761597, 0.9988885521888733, 0.8387950658798218, 0.782820999622345, -1.7371785640716553, 5.240685939788818, -1.707461953163147, -1.0152877569198608, -0.608104944229126, -0.1329755187034607, -1.6459537744522095, -0.060127999633550644, 1.1567333936691284, -5.90641975402832, -0.46212491393089294, -0.25896692276000977, 1.0951948165893555, 2.644749641418457, 2.677863121032715, 2.7380902767181396, 1.6574537754058838, 1.3541650772094727, 0.6627252697944641, 3.2182869911193848, 5.346889495849609, 5.5477705001831055, 2.5671355724334717, 2.5247654914855957, 2.070686101913452, 1.9010865688323975, 5.063714027404785, 4.701160907745361, 1.4274324178695679, 0.07615093886852264, 4.576550483703613, 3.784346103668213, 1.7273280620574951, 0.34699541330337524, 7.770010948181152, 5.818144798278809, 0.4020147919654846, 0.2080635279417038, -3.8537497520446777, -2.229783058166504, 0.8410850763320923, 1.5596709251403809, -0.7939671874046326, 0.4869135320186615, 0.0008100590202957392, -1.6491413116455078, -1.7287112474441528, -1.8115477561950684, 1.7512292861938477, 3.055027961730957, 1.867591142654419, 2.734863042831421, 2.111686944961548, -0.7517343163490295, 5.02384090423584, 4.319546699523926, 5.213986396789551, 5.21436071395874, 5.190641403198242, 4.480449676513672, 3.6517934799194336, 5.877364158630371, 4.189788341522217, 5.235416412353516, 5.155519485473633, 2.7725393772125244, 5.381101131439209, 2.8336939811706543, 1.0247656106948853, 2.690347671508789, 5.209045886993408, 4.165224552154541, 2.5942981243133545, -1.9667069911956787, 1.9036645889282227, 2.6956348419189453, 2.616560459136963, 2.1857504844665527, 2.0671610832214355, 5.291419506072998, 1.9691225290298462, 1.546148419380188, 2.2623331546783447, 1.613204836845398, 1.8738374710083008, 2.330886125564575, 1.0245407819747925, 0.4370993375778198, -4.325289726257324, 5.258477687835693, 1.0313644409179688, 1.117443323135376, 1.2593004703521729, 1.1157245635986328, 1.0128002166748047, 0.937661349773407, 0.692359447479248, 1.0423952341079712, 0.7915937304496765, 0.7418938279151917, -1.566014051437378, 5.089958667755127, -1.6445757150650024, -1.0467134714126587, -0.4334580600261688, 0.03142494335770607, -1.6122690439224243, -0.0543707013130188, 1.056473970413208, -6.1401047706604, -0.49200066924095154, -0.24462638795375824, 1.2733333110809326, 2.8084726333618164, 2.739459991455078, 2.889749526977539, 1.565711498260498, 1.4347708225250244, 0.7239013910293579, 3.0345113277435303, 5.252737998962402, 5.370234489440918, 2.5766031742095947, 2.4560861587524414, 2.05161714553833, 2.411252975463867, 5.0268659591674805, 4.689214706420898, 1.5177005529403687, 0.24555231630802155, 4.382572650909424, 3.7923269271850586, 1.7391070127487183, 0.38399314880371094, 7.753477096557617, 5.751125335693359, 0.34996873140335083, 0.21831955015659332, 1.2715792655944824, 2.1550581455230713, 1.637433409690857, 1.4867666959762573, -1.228814959526062, -1.1137611865997314, -0.38699743151664734]}, 'datecode': '2016-10-18 17:04', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (0, 0.8)}}, 'et4_eta1': {'discriminator': {'threshold': -0.94999999999999996, 'nodes': [100, 12, 1], 'bias': [-0.0026008044369518757, 0.023759836331009865, -0.024954164400696754, 0.17662985622882843, 0.13368922472000122, -0.003745823632925749, 0.08660782128572464, -0.16665630042552948, 0.08803021162748337, 0.06880437582731247, 0.2080850750207901, -0.20359952747821808, 0.5135029554367065], 'weights': [1.0251964330673218, 0.9432219862937927, -0.0820334330201149, -0.6389436721801758, -0.3155007064342499, -0.2924656271934509, -0.020791927352547646, 1.1528325080871582, 2.107461929321289, 2.2574687004089355, -2.087670087814331, -1.9684263467788696, -1.0845232009887695, -1.1545836925506592, -5.917627334594727, -2.3472442626953125, -2.384425401687622, -2.0445775985717773, -1.7059215307235718, -7.696312427520752, -5.7867913246154785, -5.58860969543457, -5.791332721710205, -5.08574914932251, -4.485403060913086, -4.859439373016357, -4.341657638549805, -5.740997791290283, -4.65217924118042, -3.9596948623657227, -1.6836967468261719, 1.4801589250564575, -3.132284164428711, -3.2424638271331787, -3.0248920917510986, -1.520330548286438, 0.900954008102417, -2.982525110244751, -3.6294922828674316, -3.0259299278259277, -0.5943242907524109, -1.8192708492279053, -5.717397212982178, 2.796595573425293, 0.3239839971065521, -6.452282428741455, -0.917125403881073, 1.2398161888122559, -1.199539303779602, 2.2845866680145264, 2.083760976791382, 3.8625245094299316, -3.4644060134887695, -1.1657593250274658, 0.22709402441978455, -1.031438946723938, -6.911469459533691, 1.969260334968567, -0.31299981474876404, -0.9276729226112366, -1.5744290351867676, 0.512809157371521, -0.0687171146273613, -3.875103235244751, -0.5436527729034424, -0.44733819365501404, 0.34765321016311646, -0.5354034304618835, 0.3033260107040405, -2.8684377670288086, -1.0951836109161377, -0.2306152880191803, 0.5077614188194275, 0.10726307332515717, -1.2207926511764526, -1.2413564920425415, -2.9442501068115234, -1.2926234006881714, -0.9796597361564636, -0.5431806445121765, -0.23998428881168365, -5.076852321624756, -5.459351539611816, -3.251709222793579, -3.8161978721618652, -0.08608277142047882, -2.73380446434021, -3.4887847900390625, -2.2211384773254395, -1.3793654441833496, 0.090150848031044, 0.15583693981170654, -6.495730876922607, -3.0528712272644043, -1.6602296829223633, -0.8064813017845154, -0.7644926309585571, -3.234057903289795, 0.05518966168165207, 0.845378577709198, -1.2251133918762207, -0.9910582304000854, 0.1137213259935379, 0.8121068477630615, 0.37160518765449524, 0.14337804913520813, 0.022148767486214638, -1.1122034788131714, -2.1749846935272217, -2.2468812465667725, 2.1103813648223877, 2.0191025733947754, 1.1914830207824707, 1.1817905902862549, 6.020692348480225, 2.291637420654297, 2.3170127868652344, 2.058645486831665, 1.7249642610549927, 7.651444435119629, 5.870999813079834, 5.3885884284973145, 5.946183681488037, 5.320845603942871, 4.460893630981445, 4.834956169128418, 4.259814262390137, 5.807432174682617, 4.7996063232421875, 3.779287576675415, 1.6268171072006226, -1.2817829847335815, 3.1548917293548584, 3.2432360649108887, 3.145568609237671, 1.5924879312515259, -0.7984192371368408, 2.853696346282959, 3.748835802078247, 3.05438232421875, 0.48264166712760925, 1.7104640007019043, 5.878546714782715, -2.7947616577148438, -0.39902082085609436, 6.383516788482666, 0.8567981123924255, -1.131406545639038, 1.395716667175293, -2.3324129581451416, -2.026764154434204, -3.7778069972991943, 3.4674205780029297, 1.1267383098602295, -0.15828856825828552, 1.019776463508606, 6.8414154052734375, -1.9757224321365356, 0.37437400221824646, 1.0116039514541626, 1.3810056447982788, -0.5017603635787964, 0.10016095638275146, 3.697732925415039, 0.6022651791572571, 0.34859874844551086, -0.20200702548027039, 0.3923362195491791, -0.2800343930721283, 2.882565975189209, 0.9871253371238708, 0.39308643341064453, -0.6089921593666077, -0.14284765720367432, 1.1342353820800781, 1.3159459829330444, 3.0907623767852783, 0.1247924417257309, 0.911798894405365, 0.6349954009056091, 0.045262888073921204, 5.072535991668701, 5.3848724365234375, 3.310866594314575, 3.766305923461914, 0.1662800908088684, 2.787860155105591, 3.375393867492676, 2.2090036869049072, 1.5013518333435059, -0.12616603076457977, -0.10926662385463715, 6.377896785736084, 3.0548548698425293, 1.7790255546569824, 0.9447789192199707, 0.6611884236335754, 3.247640609741211, -0.05340128391981125, -0.6745375990867615, 1.1099302768707275, 1.0986971855163574, -0.20162701606750488, -0.7073443531990051, -0.3732908070087433, -0.14736059308052063, -0.024858394637703896, 0.9577566385269165, 2.5017383098602295, 2.085331439971924, -2.207843065261841, -2.0857114791870117, -1.180777907371521, -1.2209975719451904, -5.892605781555176, -2.2799923419952393, -2.3057477474212646, -2.0553078651428223, -7.654836177825928, -7.512762546539307, -5.941270351409912, -5.707162380218506, -5.920308589935303, -5.096529006958008, -4.323911666870117, -4.680298805236816, -4.384183406829834, -5.889354228973389, -4.647495746612549, -3.74141263961792, -1.6859426498413086, 1.3276662826538086, -3.0246193408966064, -3.122396469116211, -3.0341885089874268, -1.4728587865829468, -1.061299204826355, -2.9632294178009033, -3.53519344329834, -3.0013208389282227, -0.5043294429779053, -1.572134256362915, -5.763169288635254, 4.467467784881592, 0.4760186970233917, -6.275606632232666, -0.8539478182792664, 1.2287415266036987, -1.2754777669906616, 2.3266050815582275, 2.0143067836761475, 3.8740429878234863, -3.43499493598938, -1.122295618057251, 0.22958852350711823, -1.0824428796768188, -6.930768013000488, 2.1717963218688965, -0.5099495649337769, -0.28866466879844666, -1.3955187797546387, 0.5555185079574585, 0.008487560786306858, -3.830439805984497, -0.6227790117263794, -0.3467789590358734, 0.19788362085819244, -0.5888499617576599, 0.5585444569587708, -6.443596839904785, -0.882118821144104, -0.6641891002655029, 0.2545921206474304, -0.011849665082991123, -0.4677331745624542, -1.1706691980361938, -2.4758248329162598, -1.2665096521377563, -0.9177460074424744, -0.5615562796592712, -0.16945156455039978, -4.842496871948242, -5.463808059692383, -3.393669843673706, -3.7802765369415283, -0.16411802172660828, -2.9243597984313965, -3.469766616821289, -1.929958462715149, -1.5249595642089844, 0.09455307573080063, 0.2940637171268463, -6.356712818145752, -2.9688708782196045, -1.7194840908050537, -0.9886189103126526, -0.8218236565589905, -3.2009527683258057, 0.061632126569747925, 0.6635765433311462, -1.2382216453552246, -0.9971335530281067, 0.019470958039164543, 0.6671754717826843, 0.3531658947467804, 0.12772180140018463, -0.05946039780974388, -1.4022151231765747, -2.53204083442688, -2.10646390914917, 2.19331955909729, 2.0382144451141357, 0.20711125433444977, 1.1339126825332642, 5.838322162628174, 2.1841650009155273, 2.322908639907837, 2.145693063735962, 1.573807716369629, 7.499920845031738, 5.714427947998047, 5.387157440185547, 5.922677516937256, 5.238670349121094, 4.401350975036621, 4.873429775238037, 4.369207859039307, 5.7771430015563965, 4.840404987335205, 3.9482839107513428, 1.808384895324707, -1.2685608863830566, 3.0990753173828125, 3.087587594985962, 3.0283801555633545, 1.5938576459884644, 1.001339316368103, 2.8978474140167236, 3.696366548538208, 3.145051956176758, 0.6527377963066101, 1.484790325164795, 5.62541389465332, -3.3827757835388184, -1.3616037368774414, 6.31757116317749, 0.8157055974006653, -1.1573904752731323, 1.4023290872573853, -2.2817232608795166, -1.9613368511199951, -3.9134373664855957, 3.5022149085998535, 1.1831471920013428, -0.13234640657901764, 1.2215951681137085, 6.950757026672363, -2.0840206146240234, 0.30289706587791443, 0.9187925457954407, 1.456176996231079, -0.6346155405044556, 0.035035520792007446, 3.731555700302124, 0.5033611059188843, 0.40924566984176636, -0.24243421852588654, 0.4083879292011261, -0.5669792294502258, 6.326224327087402, 1.074952244758606, 0.8087453842163086, -0.40509048104286194, -0.38344430923461914, 0.669874906539917, 1.2650383710861206, 2.5540072917938232, 1.1964179277420044, 0.6418784260749817, 0.5436469912528992, 0.13871504366397858, 5.06109094619751, 5.4087982177734375, 3.424656629562378, 3.82572865486145, -0.1069582849740982, 2.860503911972046, 3.3012142181396484, 1.8204606771469116, 1.488051176071167, -0.05020489543676376, -0.10891380906105042, 6.474694728851318, 3.051229953765869, 1.8003922700881958, 0.9816703796386719, 0.7326294779777527, 3.2426538467407227, -0.24795597791671753, -0.7556759715080261, -1.0224006175994873, -1.0960065126419067, 0.1724272072315216, 0.618081271648407, 0.2703900635242462, 0.161728173494339, 0.044488195329904556, -1.0469489097595215, -2.5955393314361572, -2.0356216430664062, 2.2399470806121826, 1.9626954793930054, 1.1609466075897217, 1.2922126054763794, 5.988289833068848, 2.2544703483581543, 2.410997152328491, 2.2540550231933594, 1.7642277479171753, 7.523647308349609, 5.807666778564453, 5.554626941680908, 5.7545390129089355, 5.135281562805176, 4.462368488311768, 4.680713653564453, 4.363576412200928, 5.796703815460205, 4.660062789916992, 3.772775650024414, 1.6081422567367554, -1.471457600593567, 3.0630686283111572, 3.2786765098571777, 3.0147647857666016, 1.6522928476333618, 0.9880763292312622, 2.998074769973755, 3.621058464050293, 3.078218698501587, 0.5854324698448181, 1.4462122917175293, 5.721438884735107, -2.9753527641296387, -0.5350960493087769, 6.3251423835754395, 0.8918828368186951, -1.178076148033142, 1.2798835039138794, -2.2551615238189697, -1.9484108686447144, -3.759337902069092, 3.4578652381896973, 1.2663029432296753, -0.07196418941020966, 1.2481582164764404, 7.079575538635254, -2.0389509201049805, 0.33912286162376404, 0.8573747277259827, 1.5641136169433594, -0.5602573156356812, 0.009096524678170681, 3.7935914993286133, 0.530432403087616, 0.3795877695083618, -0.29918399453163147, 0.4276634752750397, -0.7347871661186218, 2.9592950344085693, 1.0416816473007202, 0.4138214588165283, -0.5701772570610046, -0.33055979013442993, 1.2272226810455322, 1.2141225337982178, 2.643156051635742, 1.2718297243118286, 1.016147494316101, 0.48940518498420715, 0.25058063864707947, 5.002410888671875, 5.510743141174316, 3.2538001537323, 3.840313673019409, 0.045687563717365265, 2.706317186355591, 3.434723377227783, 1.7798007726669312, 1.3799846172332764, 0.031778641045093536, -0.2800126373767853, 6.452972412109375, 2.868900775909424, 1.7012298107147217, 0.9948225617408752, 0.7590370774269104, 3.325113296508789, -0.22099743783473969, -0.6587223410606384, -1.0300753116607666, -0.9809174537658691, 0.20402590930461884, 0.6747562289237976, 0.36125537753105164, 0.12726211547851562, -0.07617892324924469, -1.1187833547592163, -2.069230556488037, -2.2167840003967285, 2.0338022708892822, 2.032545804977417, 1.0873364210128784, 1.1565704345703125, 5.824941635131836, 2.3353078365325928, 2.3644630908966064, 2.2303528785705566, 7.487512588500977, 7.609893798828125, 5.867670059204102, 5.418933391571045, 5.811473369598389, 5.253249168395996, 4.464521884918213, 4.742184638977051, 4.261347770690918, 5.8816657066345215, 4.7547101974487305, 3.7690134048461914, 1.638009786605835, -1.3821550607681274, 3.147852897644043, 3.074791431427002, 3.158412218093872, 1.5820027589797974, -0.989870548248291, 3.018725633621216, 3.7248706817626953, 3.219202756881714, 0.42725083231925964, 1.8604326248168945, 5.686347007751465, -2.9643173217773438, -0.5248097777366638, 6.372659206390381, 0.981423556804657, -1.2166671752929688, 1.3060123920440674, -2.124894857406616, -2.146759271621704, -3.9191555976867676, 3.454770803451538, 1.1225602626800537, -0.11614386737346649, 1.2448756694793701, 6.994974136352539, -2.1830263137817383, 0.4231380522251129, 0.8697505593299866, 1.413941502571106, -0.44870397448539734, 0.10844480991363525, 3.7305378913879395, 0.6840401887893677, 0.3766346871852875, -0.1865873485803604, 0.5865291953086853, -0.3374776244163513, 6.403009414672852, 1.0956276655197144, 0.2733466625213623, -0.2795400619506836, -0.0930406004190445, 1.0954533815383911, 1.3384860754013062, 2.8791983127593994, 1.2319310903549194, 0.8559791445732117, 0.5842558741569519, 0.09502561390399933, 4.889835834503174, 5.443447113037109, 3.3410708904266357, 3.8299357891082764, -0.06345857679843903, 2.7926387786865234, 3.342074394226074, 2.1019814014434814, 1.304375410079956, -0.05082263797521591, -0.19152170419692993, 6.486573696136475, 2.8879756927490234, 1.724331021308899, 0.9359978437423706, 0.7728381752967834, 3.214877128601074, -0.11851073801517487, -0.6272141337394714, -1.1166294813156128, -1.1121360063552856, 0.18411636352539062, 0.8565714359283447, 0.37297323346138, 0.2280774563550949, -0.08014239370822906, -1.1548789739608765, -2.5157835483551025, -2.1218576431274414, 2.090181589126587, 2.110766649246216, 0.25221696496009827, 1.3033467531204224, 5.888796806335449, 2.25474214553833, 2.3459842205047607, 2.2046945095062256, 1.7174043655395508, 7.515282154083252, 5.754991054534912, 5.4150590896606445, 5.750059604644775, 5.159801483154297, 4.490351676940918, 4.875675201416016, 4.433055400848389, 5.792463779449463, 4.742518901824951, 3.9737443923950195, 1.6564021110534668, -1.4862838983535767, 2.996591567993164, 3.0679144859313965, 3.0173676013946533, 1.498238205909729, 1.094964623451233, 2.8488383293151855, 3.54923152923584, 3.013619899749756, 0.6003484129905701, 1.4759414196014404, 5.80795431137085, -4.4330058097839355, -1.442448616027832, 6.30916166305542, 0.8557291626930237, -1.2023191452026367, 1.2114955186843872, -2.3411848545074463, -1.9778631925582886, -3.8773550987243652, 3.48359751701355, 1.235430121421814, -0.16218973696231842, 1.0505543947219849, 6.992342472076416, -2.062955856323242, 0.38860073685646057, 0.8495431542396545, 1.4897562265396118, -0.4594704806804657, -0.010513165034353733, 3.9040799140930176, 0.671775221824646, 0.3353697657585144, -0.152586430311203, 0.42900630831718445, -0.6769211888313293, 6.255993843078613, 0.9770820140838623, 0.6344008445739746, -0.29145246744155884, -0.0953483060002327, 0.4649762213230133, 1.3594809770584106, 2.630267858505249, 1.272966980934143, 0.6785493493080139, 0.6704978346824646, 0.1687568873167038, 4.839813709259033, 5.330307960510254, 3.4490129947662354, 3.898158311843872, 0.10544763505458832, 2.700875997543335, 3.4022860527038574, 1.733189582824707, 1.427066445350647, -0.005441879853606224, -0.14965549111366272, 6.34743070602417, 3.063389778137207, 1.6905919313430786, 0.7814001441001892, 0.6579870581626892, 3.2099287509918213, -0.18618665635585785, -0.6988555788993835, 1.2149035930633545, 1.16795015335083, -0.22200945019721985, -0.7959122061729431, -0.41466668248176575, -0.14860273897647858, -0.1382313370704651, 1.0391335487365723, 2.4784133434295654, 2.249746084213257, -2.249352216720581, -2.0874972343444824, -0.4213871955871582, -1.1359636783599854, -6.009669303894043, -2.2226104736328125, -2.303112745285034, -2.1491024494171143, -1.5654852390289307, -7.577459812164307, -5.866010665893555, -5.474373817443848, -5.7755351066589355, -5.3064141273498535, -4.283693313598633, -4.689141750335693, -4.359087944030762, -5.8824143409729, -4.778071403503418, -3.740812301635742, -1.6160691976547241, 1.3038142919540405, -2.953028917312622, -3.0940487384796143, -3.118048667907715, -1.4443928003311157, -1.0324426889419556, -2.952965021133423, -3.6631109714508057, -2.997539758682251, -0.5683349967002869, -1.5038022994995117, -5.759454250335693, 2.8457465171813965, 0.39161112904548645, -6.390697002410889, -0.9834965467453003, 1.1485999822616577, -1.2466212511062622, 2.3544962406158447, 2.1072490215301514, 3.9213242530822754, -3.5204172134399414, -1.122330665588379, 0.06938106566667557, -1.1259019374847412, -6.937899112701416, 2.034280776977539, -0.30871596932411194, -0.8398390412330627, -1.530687928199768, 0.5888699293136597, -0.1530705839395523, -3.8922629356384277, -0.5593338012695312, -0.3847090005874634, 0.1662748008966446, -0.49479353427886963, 0.768643319606781, -6.365362167358398, -1.0220333337783813, -0.3567352294921875, 0.5736306309700012, 0.30605846643447876, -0.5093892812728882, -1.348019003868103, -2.491082191467285, -1.1999591588974, -0.9373847842216492, -0.5462061762809753, -0.07326000928878784, -5.006946563720703, -5.399425506591797, -3.3811516761779785, -3.707012176513672, 0.05647135525941849, -2.717548370361328, -3.4018797874450684, -1.9244493246078491, -1.3546781539916992, 0.024731269106268883, 0.1626574695110321, -6.39082670211792, -2.962495803833008, -1.675119161605835, -0.9574204683303833, -0.6156238913536072, -3.189774513244629, 0.18502198159694672, 0.8421322703361511, -1.0222623348236084, -1.143153190612793, 0.013463378883898258, 0.7491047978401184, 0.40147027373313904, 0.1811993420124054, 0.007847269997000694, -0.9783915281295776, -2.4940969944000244, -2.2550060749053955, 2.1688249111175537, 1.9139608144760132, 1.2336885929107666, 1.1167418956756592, 6.020171642303467, 2.2349677085876465, 2.510181188583374, 2.1606338024139404, 1.6287041902542114, 7.620609760284424, 5.948932647705078, 5.5473527908325195, 5.7792582511901855, 5.19249963760376, 4.373182773590088, 4.7597150802612305, 4.292849063873291, 5.758368015289307, 4.848705291748047, 3.81451678276062, 1.6483118534088135, -1.27611243724823, 3.051095724105835, 3.153315305709839, 3.131603240966797, 1.5296975374221802, 1.1238890886306763, 3.039480209350586, 3.573584794998169, 3.0737369060516357, 0.6491555571556091, 1.5693223476409912, 5.661680698394775, -3.2437689304351807, -0.3457508385181427, 6.303846836090088, 1.008841872215271, -1.1312384605407715, 1.4068719148635864, -2.2654953002929688, -2.0463144779205322, -3.7327847480773926, 3.446826457977295, 1.186560034751892, -0.22988276183605194, 1.141365885734558, 7.072263717651367, -2.0258939266204834, 0.43570128083229065, 1.0452723503112793, 1.3772087097167969, -0.43007585406303406, 0.15063299238681793, 3.836416244506836, 0.5418192148208618, 0.36403244733810425, -0.37238746881484985, 0.5682949423789978, -0.7023680806159973, 6.305296897888184, 0.936163067817688, 0.6358593106269836, -0.5677419304847717, -0.037809114903211594, 0.6699109673500061, 1.1641978025436401, 2.4565916061401367, 1.3862637281417847, 1.0064929723739624, 0.663727343082428, 0.11298004537820816, 4.901421546936035, 5.477721214294434, 3.346855878829956, 3.9012832641601562, 0.09644961357116699, 2.699148654937744, 3.494945526123047, 1.8501867055892944, 1.4628239870071411, 0.038194455206394196, -0.15482884645462036, 6.422201633453369, 3.023418426513672, 1.627535104751587, 0.9708508253097534, 0.6563124656677246, 3.1716485023498535, -0.09765737503767014, -0.7356085181236267, -1.2632811069488525, -0.9757750630378723, 0.1456412822008133, 0.7715763449668884, 0.3869102895259857, 0.27734893560409546, 0.07526598870754242, -0.9762293100357056, -2.561676263809204, -2.1265580654144287, 2.0286896228790283, 2.075723648071289, 1.1403844356536865, 1.2498040199279785, 5.931168556213379, 2.2029151916503906, 2.445253610610962, 2.15519118309021, 1.7489018440246582, 7.525898456573486, 5.800742149353027, 5.486359596252441, 5.953525066375732, 5.093734264373779, 4.458773136138916, 4.86409854888916, 4.24324369430542, 5.968506336212158, 4.754179954528809, 3.927828073501587, 1.6784312725067139, -1.3647832870483398, 3.084916353225708, 3.0687427520751953, 3.021444082260132, 1.5372239351272583, -0.8383357524871826, 3.0406997203826904, 3.5715415477752686, 3.0177345275878906, 0.5319532752037048, 1.7094852924346924, 5.823647499084473, -1.0495877265930176, -0.3313985764980316, 6.320600986480713, 1.0248901844024658, -1.1935510635375977, 1.4299181699752808, -2.140989065170288, -1.9564642906188965, -3.869663715362549, 3.498605489730835, 1.2037980556488037, -0.2191070020198822, 1.031865119934082, 6.947019100189209, -2.052544355392456, 0.2894705533981323, 0.8137699961662292, 1.4521355628967285, -0.5344530344009399, 0.07733277976512909, 3.698293447494507, 0.5997402667999268, 0.4596594274044037, -0.2561136782169342, 0.4026574194431305, -0.23997922241687775, 2.909172296524048, 0.9613901972770691, 0.22444286942481995, -0.5839609503746033, -0.141954243183136, 1.2224074602127075, 1.1505941152572632, 3.029334306716919, 1.3948553800582886, 0.9423107504844666, 0.6071872115135193, 0.23435761034488678, 4.915351390838623, 5.523367881774902, 3.2731335163116455, 3.685584545135498, -0.09336978197097778, 2.7627980709075928, 3.400871753692627, 1.8804012537002563, 1.3919806480407715, -0.04051085561513901, -0.2965579926967621, 6.4938483238220215, 2.8596763610839844, 1.5941591262817383, 0.8535481691360474, 0.8350687623023987, 3.2666754722595215, -0.1337282806634903, -0.7185978293418884, -0.4881719648838043, -2.3726656436920166, -0.1354139745235443, 0.41007015109062195, 0.22356638312339783, -0.11823854595422745, -0.04191459342837334, -0.20573462545871735, -1.1697183847427368, -1.0426634550094604, 0.8915672302246094, 4.2851715087890625, 2.458414077758789, 0.4938039481639862, 2.54923677444458, 0.9368886351585388, 1.120974063873291, 0.9774313569068909, 0.5055680871009827, 0.5286432504653931, 0.3642200827598572, 0.3323996067047119, 0.3324313163757324, 0.3339304029941559, 0.2565600275993347, 0.3400682210922241, 0.2231311798095703, 0.28890615701675415, 0.2303858995437622, 0.34407180547714233, 0.0006176748429425061, -0.3528464138507843, 0.20983506739139557, 0.2752494513988495, 0.1491883099079132, -0.009164920076727867, -0.24076879024505615, 0.07223982363939285, 0.0933871790766716, 0.19664359092712402, -0.020693277940154076, 0.03396375849843025, 0.489976704120636, -0.520698070526123, -0.2676529884338379, 0.385456919670105, -0.014354963786900043, -0.34748488664627075, -0.11984354257583618, -0.23356299102306366, -0.32783278822898865, -0.4992142915725708, 0.13648895919322968, 0.035519491881132126, -0.03337791934609413, 0.037562187761068344, 0.481515109539032, -0.3812156915664673, -0.010612674988806248, -0.018269475549459457, -0.05347813665866852, -0.2457127869129181, -0.04255553334951401, 0.10038922727108002, -0.15478916466236115, -0.17115379869937897, -0.15568377077579498, -0.04182932898402214, -0.15703913569450378, 0.4969960153102875, -0.12685450911521912, -0.12540540099143982, -0.35101842880249023, -0.20803843438625336, 0.39255017042160034, 0.3747952878475189, 0.09777461737394333, -0.2392813116312027, -0.03150489926338196, -0.09006363898515701, -0.23807393014431, 0.2210400551557541, -0.08718837797641754, -0.3871171474456787, 0.321759968996048, -0.281955748796463, 0.03998880833387375, -0.21555903553962708, 0.015326566062867641, -0.292760968208313, -0.024461526423692703, -0.14458686113357544, 0.4250515103340149, -0.07795492559671402, 0.08229611814022064, -0.022558560594916344, -0.18561464548110962, 0.08742937445640564, -0.19600357115268707, -0.17274850606918335, 1.1634411811828613, 1.2061887979507446, -0.19250428676605225, -0.6789903044700623, -0.30788543820381165, -0.20130446553230286, -1.0433489084243774, 1.390351414680481, 2.482160806655884, 2.165520191192627, -2.07529354095459, -2.054067373275757, -0.29039350152015686, -1.236459732055664, -5.964238166809082, -2.2441792488098145, -2.45337176322937, -2.135784864425659, -1.5322444438934326, -7.596198558807373, -5.77870512008667, -5.447120189666748, -5.762230396270752, -5.238992691040039, -4.4324631690979, -4.795217037200928, -4.31515645980835, -5.803284645080566, -4.644556999206543, -3.9494428634643555, -1.653674602508545, 1.3703794479370117, -3.1389079093933105, -3.086665391921997, -3.2554705142974854, -1.569161057472229, -1.0932494401931763, -3.013335943222046, -3.7027854919433594, -3.0392394065856934, -0.46050825715065, -1.3539319038391113, -5.78314733505249, 4.504164218902588, 1.295868992805481, -6.35349178314209, -0.7676976919174194, 1.2128064632415771, -1.447594404220581, 2.352041482925415, 2.1511385440826416, 3.82316255569458, -3.5111002922058105, -1.0806256532669067, 0.28926995396614075, -1.0196740627288818, -7.01775598526001, 2.047482490539551, -0.36901941895484924, -1.0376707315444946, -1.4746229648590088, 0.47547033429145813, -0.032845646142959595, -3.770587682723999, -0.680832028388977, -0.31705182790756226, 0.20884990692138672, -0.43002697825431824, 0.7914168238639832, -6.346975326538086, -1.1404894590377808, -0.27313899993896484, 0.49594825506210327, 0.30991673469543457, -0.6608273983001709, -1.233864665031433, -2.682706594467163, -1.387099266052246, -0.820092499256134, -0.6983631253242493, -0.2783139646053314, -5.068745136260986, -5.402896881103516, -3.325408697128296, -3.7116191387176514, 0.019110050052404404, -2.8012444972991943, -3.5018301010131836, -1.6971172094345093, -1.5141593217849731, -0.02155645191669464, 0.19456034898757935, -6.412229537963867, -2.8730740547180176, -1.7730263471603394, -0.8825761675834656, -0.7100264430046082, -3.229623317718506, 0.111324243247509, 0.7550041079521179, 0.5229239463806152, -0.3934052884578705, 0.4494021236896515, -1.2844314575195312, -1.1461303234100342, -0.9471862316131592, -0.48184508085250854, 1.5868885517120361, -1.0619027614593506, -0.7419309020042419, -2.942476749420166, 0.9977480173110962]}, 'datecode': '2016-10-18 17:04', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (0.8, 1.37)}}, 'et4_eta2': {'discriminator': {'threshold': 0.61499847173690791, 'nodes': [100, 5, 1], 'bias': [0.1416495442390442, 0.0917273536324501, 0.14888767898082733, -0.04687773063778877, 0.033612411469221115, 0.0564887635409832], 'weights': [0.581756591796875, -0.38689595460891724, -1.4645912647247314, -1.4333598613739014, -1.581018090248108, -1.115908145904541, 0.5698398947715759, -1.247531771659851, 0.12504728138446808, 2.482370376586914, 2.431360960006714, 2.273602247238159, 0.37852540612220764, 0.144611194729805, 0.040073834359645844, 0.2846015393733978, -2.8518881797790527, 0.0757441371679306, -0.33886414766311646, -1.1692278385162354, -3.2619733810424805, -4.886256694793701, 0.09398651123046875, -1.1386778354644775, -2.8565423488616943, -1.5504562854766846, -6.6825714111328125, -1.9303826093673706, -18.234264373779297, -2.8824312686920166, -1.2814736366271973, -2.142577648162842, -1.3583049774169922, -0.9495894312858582, -1.7242447137832642, -1.485337257385254, -9.032512664794922, -2.11647629737854, -2.000075578689575, -0.1717694103717804, -1.7989602088928223, -4.064884185791016, -2.4997408390045166, -1.9638032913208008, -1.3527863025665283, -2.530980110168457, -2.6757166385650635, -1.3389031887054443, 0.7322706580162048, -1.6147764921188354, -1.5603357553482056, -1.411029577255249, -4.707601070404053, -2.0605554580688477, -1.182787537574768, 0.3247404396533966, -1.654233455657959, -1.4792747497558594, 1.4332225322723389, -1.4648306369781494, 3.4037587642669678, -0.7914804220199585, -1.3773428201675415, -0.9748098254203796, -1.7981112003326416, -1.2366503477096558, -2.1252827644348145, -1.2274694442749023, -1.133897066116333, -1.336310863494873, -1.3621219396591187, 0.46997955441474915, 0.03448684513568878, 0.2173086404800415, -3.024440288543701, -2.6741464138031006, -2.740393877029419, -2.1167993545532227, -1.9065232276916504, -1.273890733718872, 0.15699931979179382, -0.6674656867980957, -3.8054914474487305, -2.7867767810821533, 0.14551353454589844, 5.9104132652282715, -1.6494784355163574, -1.493892788887024, 0.41633859276771545, -1.3532004356384277, -1.2799110412597656, -1.1865214109420776, -12.882661819458008, -2.708534002304077, -2.3703911304473877, -1.3462586402893066, -0.04463225230574608, 0.0634172260761261, -0.14307387173175812, -0.7493860721588135, 0.624331533908844, -0.3319099545478821, -1.4028029441833496, -1.432462453842163, -1.650894284248352, -1.1406965255737305, 0.6025397181510925, -1.2855747938156128, 0.19959670305252075, 2.4982616901397705, 2.2735466957092285, 2.4246840476989746, 0.4553634226322174, 0.08936864137649536, 0.1311582624912262, 0.39617517590522766, -2.7375380992889404, 0.1265452355146408, -0.4928475022315979, -1.3645174503326416, -3.450955390930176, -5.069662570953369, 6.010491847991943, -1.1299443244934082, -2.9162395000457764, -1.3828439712524414, -6.523721218109131, -1.9435957670211792, -18.175365447998047, -4.8544697761535645, -1.2547545433044434, -2.0425124168395996, -1.295743465423584, -1.1035903692245483, -1.6218727827072144, -1.4932665824890137, -8.968793869018555, -1.9807897806167603, -2.0454328060150146, -0.27600958943367004, -1.8898911476135254, -4.025547504425049, -2.6954073905944824, -1.9785104990005493, -1.3680779933929443, -2.6349480152130127, -2.5782358646392822, -1.4823532104492188, 0.8074877858161926, -1.6718937158584595, -1.6565669775009155, -1.4112842082977295, -4.705615520477295, -2.0217299461364746, -1.1736942529678345, 0.2864823639392853, -1.6903040409088135, -1.5538396835327148, 1.3823657035827637, -1.4413871765136719, 3.3367693424224854, -0.8150039315223694, -1.2524248361587524, -0.9798521399497986, -1.7331271171569824, -1.2518690824508667, -2.1376397609710693, -1.3412749767303467, -1.2559378147125244, -1.1515171527862549, -1.3376590013504028, -0.5129407644271851, 0.4098140299320221, 0.32758745551109314, -3.0089964866638184, -2.708430767059326, -2.7736716270446777, -2.0044891834259033, -1.8417493104934692, -1.360335111618042, -0.03031604364514351, -0.6983081102371216, -3.8915762901306152, -2.7295982837677, 0.15288233757019043, 5.834036350250244, -1.6299433708190918, -1.5219801664352417, 0.507905125617981, -1.1420137882232666, -1.283940315246582, -1.1613298654556274, -12.937507629394531, -2.830153703689575, -2.3496272563934326, -1.3355052471160889, 0.0610378123819828, 0.07120959460735321, -0.24674025177955627, -0.5232481956481934, -0.7768791913986206, -0.04269222542643547, 0.37302982807159424, 0.3743942975997925, 0.5956953167915344, 0.41626232862472534, -0.3297511339187622, 0.22902551293373108, 0.02797701582312584, -1.0573911666870117, -1.0043467283248901, -0.8652474880218506, -0.7001688480377197, 0.22859597206115723, 0.2892363667488098, -0.39173272252082825, 1.0319538116455078, 0.13310158252716064, -0.08140266686677933, 0.29927441477775574, 1.4145119190216064, 2.0886285305023193, -0.22144514322280884, 0.4602801203727722, 1.1516647338867188, 0.565574586391449, 2.883911609649658, 0.7410096526145935, 8.241190910339355, 1.2128138542175293, 0.3351460099220276, 0.8095336556434631, 0.5186111330986023, 0.23221103847026825, 0.6689755916595459, 0.5271771550178528, 4.032434463500977, 0.7397922873497009, 0.7466270923614502, -0.038530126214027405, 0.7031628489494324, 1.7122201919555664, 0.9707109332084656, 0.679175615310669, 0.39778760075569153, 1.142361044883728, 1.1290290355682373, 0.45476406812667847, -0.5605642199516296, 0.7049155235290527, 0.5497601628303528, 0.4192332625389099, 1.94161057472229, 0.9260550737380981, 0.4753219485282898, -0.17405633628368378, 0.6759582161903381, 0.5302416682243347, -0.8510857820510864, 0.5060176253318787, -1.5695650577545166, 0.1299366056919098, 0.3747384548187256, 0.3956664204597473, 0.6052114367485046, 0.5236614942550659, 0.7338953614234924, 0.3463488519191742, 0.3284866511821747, 0.42990943789482117, 0.5080832242965698, -0.29795873165130615, -0.2717497944831848, -0.2828475832939148, 1.294087529182434, 1.086865782737732, 1.210087537765503, 0.8098084926605225, 0.8012542724609375, 0.3895547688007355, 0.33182236552238464, 0.04182581603527069, 1.5352742671966553, 1.1779708862304688, -0.26449793577194214, -2.7262187004089355, 0.5978327393531799, 0.6218563914299011, -0.7817511558532715, 0.48067569732666016, 0.32804039120674133, -0.1880754977464676, 5.819159030914307, 1.0537340641021729, 0.9694578647613525, 0.32649025321006775, -0.0868649110198021, 0.1041400209069252, -0.1043575257062912, 0.1182376891374588, -0.6229959726333618, 0.16744478046894073, 1.3969554901123047, 1.2333827018737793, 1.5443974733352661, 0.947704017162323, -0.42188408970832825, 1.1320701837539673, -0.07529882341623306, -2.5634045600891113, -2.3602521419525146, -2.198295831680298, -0.531038224697113, -0.14220385253429413, -0.14005814492702484, -0.39447101950645447, 2.8902058601379395, 0.010370515286922455, 0.337504506111145, 1.23195219039917, 3.447141170501709, 5.030959606170654, -0.23326095938682556, 1.1086513996124268, 2.8516478538513184, 1.436439037322998, 6.618173599243164, 2.040743827819824, 18.237911224365234, 3.074505567550659, 1.4356138706207275, 2.1096386909484863, 1.1413476467132568, 1.0334633588790894, 1.7350581884384155, 1.4775125980377197, 8.950813293457031, 2.029491901397705, 1.8650645017623901, 0.151828795671463, 1.8766956329345703, 4.003612518310547, 2.552476167678833, 2.1347784996032715, 1.2965524196624756, 2.4863617420196533, 2.491069793701172, 1.459900975227356, -0.8224032521247864, 1.727763295173645, 1.6051439046859741, 1.6376934051513672, 4.719537734985352, 2.2118425369262695, 1.1336716413497925, -0.3403971493244171, 1.6888728141784668, 1.6115145683288574, -1.3358869552612305, 1.505746841430664, -3.32519793510437, 0.7972029447555542, 1.380665898323059, 1.082166314125061, 1.8903379440307617, 1.2481564283370972, 2.227444887161255, 1.2353661060333252, 1.3041725158691406, 1.3060925006866455, 1.3527084589004517, -0.46772220730781555, -0.5223127603530884, -0.2103305160999298, 2.9519202709198, 2.769545316696167, 2.7390973567962646, 2.1053855419158936, 1.9840058088302612, 1.3140904903411865, -0.05805663391947746, 0.5440028309822083, 3.826601982116699, 2.651902437210083, -0.12031984329223633, -5.935788631439209, 1.5015780925750732, 1.5563565492630005, -0.555227518081665, 1.3052659034729004, 1.1375374794006348, 1.1288236379623413, 12.837820053100586, 2.815237045288086, 2.1742961406707764, 1.1478896141052246, -0.08291198313236237, 0.08840353786945343, 0.19835461676120758, 0.5463638305664062, 0.4496197998523712, -0.15365897119045258, -1.303152322769165, -1.4211831092834473, -1.6294633150100708, -1.1218407154083252, 0.513221025466919, -1.0979574918746948, 0.03863683342933655, 2.535245418548584, 2.413844347000122, 2.2838621139526367, 0.3961125910282135, -0.07022036612033844, 0.11505560576915741, 0.38931742310523987, -2.9232537746429443, 0.16309437155723572, -0.2143958956003189, -1.178619384765625, -3.444204807281494, -4.952271938323975, 6.059645175933838, -1.0870082378387451, -2.7587931156158447, -1.5785882472991943, -6.752011299133301, -2.0239031314849854, -18.183874130249023, -3.0692338943481445, -1.4014091491699219, -1.9880406856536865, -1.363227367401123, -0.9414331316947937, -1.560322880744934, -1.5435211658477783, -9.025472640991211, -2.004357099533081, -1.9044069051742554, -0.2705972492694855, -1.8722727298736572, -3.9819154739379883, -2.5931248664855957, -2.024343967437744, -1.0690704584121704, -2.6245663166046143, -2.6267261505126953, -1.3086411952972412, 0.9304255843162537, -1.7328647375106812, -1.5346494913101196, -1.6334125995635986, -4.653397083282471, -2.088351249694824, -1.1151939630508423, 0.23838695883750916, -1.7149772644042969, -1.4859371185302734, 1.2581639289855957, -1.470367431640625, 3.2151098251342773, -0.8481677174568176, -1.4646252393722534, -1.1731973886489868, -1.8418259620666504, -1.3983176946640015, -2.143547296524048, -1.26896071434021, -1.1882612705230713, -1.2540905475616455, -1.2641340494155884, -0.451155424118042, 0.6385239362716675, 0.2657028138637543, -2.9695358276367188, -2.645637035369873, -2.829376220703125, -2.0177202224731445, -1.8429359197616577, -1.4030251502990723, 0.047014832496643066, -0.5733755826950073, -3.9187021255493164, -2.751581907272339, -0.026499062776565552, 5.869612216949463, -1.6958210468292236, -1.4883424043655396, 0.3736911714076996, -1.3362948894500732, -1.2750811576843262, -0.1901623010635376, -12.92725944519043, -2.795802593231201, -2.3234610557556152, -1.1962645053863525, -0.055261313915252686, 0.0872664824128151, -0.27287760376930237, -0.5760724544525146, 1.1626110076904297, 0.5277957320213318, -0.3125312030315399, -3.901346206665039, 2.7279491424560547]}, 'datecode': '2016-10-18 17:04', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (50, 500000), 'etaBin': (1.37, 1.54)}}, 'et2_eta1': {'discriminator': {'threshold': -0.94999999999999996, 'nodes': [100, 5, 1], 'bias': [0.25435444712638855, 0.24932298064231873, 0.1606546938419342, 0.17509008944034576, 0.25274309515953064, -0.1329682171344757], 'weights': [2.34734845161438, 2.2353413105010986, -1.4175097942352295, -2.0679333209991455, -1.7088115215301514, -1.090505599975586, -0.9405161738395691, 0.07812463492155075, 3.223778486251831, 4.487850189208984, -1.621321439743042, -18.826236724853516, -3.515526056289673, -5.319347381591797, -4.333478927612305, -16.02056312561035, -14.881732940673828, -15.005784034729004, -29.321186065673828, -12.3950777053833, -6.208489418029785, -5.976852893829346, -5.684929847717285, -4.873940467834473, -5.227859973907471, -4.900532245635986, -5.202627182006836, -5.217679977416992, -5.026147842407227, -5.188652515411377, -3.006340742111206, -3.6230204105377197, -5.149136543273926, -3.7510833740234375, -3.32551908493042, -3.5563111305236816, -3.6126794815063477, -4.35263729095459, -3.3301844596862793, -3.2909648418426514, -3.1816136837005615, -3.1273691654205322, -5.119664192199707, -2.3374550342559814, -2.3226845264434814, 1.0537031888961792, -2.0353944301605225, -2.8840839862823486, -1.0816434621810913, -1.2895511388778687, -1.4665906429290771, -1.879166603088379, -0.6715376377105713, -0.9060519337654114, -3.2911500930786133, -1.6601240634918213, -1.2586548328399658, 0.7846032381057739, -1.4076411724090576, 2.3761954307556152, -0.0068921297788619995, -0.8526430726051331, -1.4239529371261597, -0.9651980400085449, -0.3084358870983124, -2.6593523025512695, -4.51272439956665, -3.846759080886841, -0.264786958694458, -3.1015594005584717, -1.8586152791976929, 1.2396572828292847, 0.4872204065322876, 0.31810009479522705, -2.1604723930358887, -1.9867172241210938, -3.048135757446289, -2.8708887100219727, -1.8841103315353394, -1.1307868957519531, -8.395145416259766, -8.912646293640137, -6.91707706451416, -4.316050052642822, -3.7324368953704834, -3.8086652755737305, -3.946287155151367, -4.903172016143799, -3.338960647583008, -1.9490082263946533, -0.4464111030101776, -0.01041414961218834, -5.482597351074219, -4.337868690490723, -2.302276849746704, -0.5417815446853638, -5.261777400970459, -3.6287102699279785, -2.8670549392700195, -1.1715818643569946, 2.4082601070404053, 2.3155205249786377, -1.30961275100708, -2.0798983573913574, -1.7543258666992188, -0.8788909912109375, -0.9141046404838562, 0.11732571572065353, 3.244760513305664, 4.5515618324279785, -0.570267915725708, -18.782840728759766, -3.6088829040527344, -5.332759857177734, -4.539529323577881, -16.06619644165039, -14.936424255371094, -15.030831336975098, -29.28931427001953, -13.075589179992676, -6.093319892883301, -5.8231916427612305, -5.667521953582764, -4.899781227111816, -5.190850734710693, -4.793137073516846, -4.966039657592773, -5.124669075012207, -4.944052696228027, -5.175408840179443, -3.154536008834839, -3.728513479232788, -5.0548858642578125, -3.758059501647949, -3.194476842880249, -3.508413553237915, -3.485253095626831, -4.196972370147705, -3.2448697090148926, -3.141759157180786, -3.1605613231658936, -3.1169254779815674, -5.169933795928955, -2.4049296379089355, -2.323885679244995, 1.0402504205703735, -2.150291919708252, -2.9381868839263916, -1.1183582544326782, -1.384813666343689, -1.6520863771438599, -1.8024953603744507, 1.1591219902038574, -0.8256304860115051, -3.2385435104370117, -1.8150010108947754, -1.3193364143371582, 0.8193210363388062, -1.221009373664856, 2.3958117961883545, 0.03928287327289581, -1.0275776386260986, -1.508032202720642, -1.0758867263793945, -0.2418442666530609, -2.61417818069458, -4.577299118041992, -3.6503682136535645, -0.31244587898254395, -3.081012010574341, -1.7621029615402222, 1.1646537780761719, 0.2716709077358246, 0.3604987859725952, -2.0217785835266113, -1.954727053642273, -3.020965814590454, -2.881538152694702, -1.9082502126693726, -1.1385557651519775, -8.499287605285645, -9.120352745056152, -6.841338634490967, -4.365355968475342, -3.611335515975952, -3.687152624130249, -3.9019813537597656, -5.091282367706299, -3.431231737136841, -1.9277317523956299, -0.3656170070171356, -0.05825749784708023, -5.426592826843262, -4.340138912200928, -2.459061861038208, -0.41598108410835266, -5.220657825469971, -3.601567029953003, -2.795365333557129, -1.1763371229171753, 2.811112642288208, 2.5227930545806885, -1.444344401359558, -1.5754635334014893, -1.0973962545394897, -0.7491856813430786, -0.9243454337120056, 0.13079145550727844, 3.151118040084839, 6.790395736694336, 0.32513368129730225, -12.827497482299805, -2.957951307296753, -1.7616462707519531, -4.232787609100342, -1.8743022680282593, -1.7567611932754517, -4.316827774047852, 3.419816017150879, -12.018769264221191, -5.7668023109436035, -5.60882568359375, -5.372860431671143, -5.002426624298096, -5.05574893951416, -4.7270708084106445, -5.024880886077881, -5.097719192504883, -5.005908012390137, -4.997485160827637, -3.166358470916748, -3.670208692550659, -5.238664150238037, -3.728379964828491, -3.17771315574646, -3.393096685409546, -3.891113758087158, -4.192734718322754, -3.3598718643188477, -3.155097246170044, -3.2248013019561768, -2.271979570388794, -5.302158832550049, -2.368779420852661, -2.420971155166626, 0.9169970154762268, -2.1893346309661865, -2.8826770782470703, -1.17876136302948, -1.3448166847229004, -1.0073626041412354, -1.7319085597991943, 1.0225878953933716, -0.9852231740951538, -3.2627015113830566, -1.6896803379058838, -1.3609062433242798, 1.10788893699646, -2.0538289546966553, 2.2444591522216797, 0.12137456238269806, 0.04628625884652138, -1.3568137884140015, -0.4794471263885498, -0.407931923866272, -1.2879277467727661, -4.405134677886963, -3.6737868785858154, -0.03872992843389511, -1.610177755355835, -1.7973215579986572, 1.3261101245880127, 0.4872419834136963, 0.4436241090297699, -1.4046887159347534, -2.079847574234009, -3.0631580352783203, -2.9221057891845703, -1.6201002597808838, -0.9972444176673889, -8.556312561035156, -9.002589225769043, -6.866401672363281, -3.0796523094177246, -3.6062872409820557, -3.7342910766601562, -3.9350335597991943, -4.882983207702637, -3.3224947452545166, -1.918792486190796, -0.5560785531997681, -0.13559351861476898, -5.573633670806885, -4.131962776184082, -2.367072582244873, -0.47103238105773926, -5.332761764526367, -3.6747207641601562, -2.871645450592041, -0.8256722092628479, 2.941892623901367, 2.502934455871582, -1.269112467765808, -1.4101308584213257, -1.1652023792266846, -0.800626277923584, -0.7536101937294006, 0.2163701355457306, 3.268038034439087, 6.86021614074707, 0.5129356980323792, -12.83459758758545, -3.1473758220672607, -1.8621606826782227, -4.232149124145508, -1.869612216949463, -1.7273067235946655, -4.113978385925293, 3.2919187545776367, -12.167437553405762, -5.740009784698486, -5.786488056182861, -5.412658214569092, -5.016499042510986, -5.11262321472168, -4.823041915893555, -5.151134014129639, -4.983872413635254, -4.937246799468994, -5.064393997192383, -3.193347454071045, -3.7103846073150635, -5.0858235359191895, -3.9251208305358887, -3.2472145557403564, -3.500729560852051, -3.899669885635376, -4.331266403198242, -3.426748037338257, -3.2863588333129883, -3.291468620300293, -2.3030073642730713, -5.200867652893066, -2.385159730911255, -2.3903801441192627, 1.0167884826660156, -2.19888973236084, -2.824765205383301, -1.1157466173171997, -1.2426419258117676, -1.1002538204193115, -1.6497070789337158, 1.186728835105896, -0.8782953023910522, -3.1967155933380127, -1.8226830959320068, -1.347823977470398, 0.9099755883216858, -2.451645612716675, 2.3240644931793213, -0.005819007754325867, -0.003381119342520833, -1.3195263147354126, -0.6934226751327515, -0.41471731662750244, -1.31814444065094, -4.533324718475342, -3.6912612915039062, 0.03214214742183685, -1.5663814544677734, -1.7064321041107178, 1.3282749652862549, 0.4978797733783722, 0.36116692423820496, -1.4167730808258057, -2.0364906787872314, -3.0129506587982178, -2.945878505706787, -1.5209360122680664, -1.123647928237915, -8.717535018920898, -8.99514102935791, -6.908481597900391, -4.345072269439697, -3.7309775352478027, -3.7125165462493896, -4.065122604370117, -4.99635648727417, -3.3609871864318848, -2.0716211795806885, -0.5877062082290649, -0.0616493858397007, -5.53644323348999, -4.132359504699707, -2.267481565475464, -0.44276005029678345, -5.357322692871094, -3.701948642730713, -2.858717203140259, -1.1447056531906128, 2.38533878326416, 2.5263023376464844, -1.270406723022461, -1.2259048223495483, -1.5087919235229492, -0.7332354784011841, -0.8843678832054138, 0.2249567210674286, 2.7270829677581787, 6.839478015899658, 0.36457327008247375, -12.985332489013672, -13.488051414489746, -2.212155818939209, -4.179521560668945, -10.305965423583984, -2.2630205154418945, -4.2650322914123535, 3.2165136337280273, -12.161434173583984, -5.455844402313232, -5.790342807769775, -5.330578804016113, -4.849613666534424, -5.01917839050293, -4.6553425788879395, -5.030160903930664, -5.154499053955078, -5.052484035491943, -5.025943279266357, -3.1107544898986816, -3.723585367202759, -5.083714485168457, -3.817638397216797, -3.2068088054656982, -3.535679578781128, -3.960758686065674, -4.185840129852295, -3.404463768005371, -3.181771993637085, -3.163426160812378, -2.4307937622070312, -5.159397602081299, -2.318039655685425, -2.4280123710632324, 1.109175682067871, -2.16939640045166, -2.7949440479278564, -1.0821527242660522, -1.2902882099151611, -1.1317893266677856, -1.7080326080322266, 1.100637435913086, -0.8294426202774048, -3.341434955596924, -1.7753850221633911, -1.189115285873413, 0.8867673873901367, -2.335678815841675, 2.3658251762390137, 0.13740785419940948, -0.8321027755737305, -2.6740853786468506, -0.5717334151268005, -0.34603822231292725, -1.2502217292785645, -4.402581691741943, -3.685314655303955, -0.3322296738624573, -1.413826584815979, -1.8322283029556274, 1.199074149131775, 0.28668448328971863, 0.3135620355606079, -1.1069045066833496, -2.049344778060913, -3.238943576812744, -3.0058977603912354, -1.612861156463623, -1.0803155899047852, -8.562191009521484, -9.116655349731445, -6.687618255615234, -4.475407123565674, -3.567601203918457, -3.872127056121826, -3.9123833179473877, -4.910545349121094, -3.3081064224243164, -2.0348949432373047, -0.45677995681762695, -0.10121360421180725, -5.542350769042969, -4.2080183029174805, -2.418548345565796, -0.37975195050239563, -5.366208076477051, -3.721823215484619, -2.790003776550293, -1.1252593994140625, 0.8020282983779907, 1.1572458744049072, 0.5900255441665649, 0.6378750205039978, 1.1789149045944214]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (0.8, 1.37)}}, 'et2_eta2': {'discriminator': {'threshold': 0.55999852418899532, 'nodes': [100, 8, 1], 'bias': [-0.07655982673168182, 0.04617781937122345, -0.07329944521188736, 0.0852469801902771, -0.049393802881240845, -0.04781743884086609, 0.0020837648771703243, 0.10123120993375778, 0.28863173723220825], 'weights': [0.22343340516090393, -0.14321954548358917, -0.7969184517860413, -0.741295337677002, -0.9789867997169495, -0.9572865962982178, -0.16236446797847748, -0.5906817317008972, -0.16750997304916382, 2.7913169860839844, 2.56168794631958, 1.4937310218811035, 0.24083633720874786, -0.5946738123893738, 0.19848881661891937, 0.04796139523386955, -1.9238426685333252, 0.20910198986530304, 0.1546224057674408, -0.46144625544548035, -3.088106870651245, -1.3108936548233032, -0.6792631149291992, -1.096684455871582, -0.4145166277885437, -2.5957822799682617, -1.6750906705856323, -2.6148037910461426, -4.941394805908203, -1.0071359872817993, -1.1465017795562744, -1.030295491218567, -0.5925990343093872, -1.6988445520401, -1.0531017780303955, -1.020698070526123, -2.7289516925811768, -1.0833101272583008, 1.142014503479004, -0.7882360219955444, -0.7749398350715637, -0.7853214144706726, 2.313577651977539, -2.747591257095337, 1.867350459098816, -0.9817673563957214, -1.086301565170288, -1.2249387502670288, -0.8839070200920105, -0.8902090191841125, -0.580605685710907, -0.7777495980262756, -2.8894705772399902, -0.8431349396705627, -0.789000928401947, -2.120290994644165, -0.07784846425056458, 3.4826533794403076, -0.4669339954853058, -0.29841503500938416, -0.9088532328605652, -1.1546927690505981, 2.0670769214630127, -0.6617923974990845, 4.524196624755859, 3.1855268478393555, 1.2950915098190308, 0.06424147635698318, -0.904999315738678, -0.8628777265548706, -0.8245858550071716, -1.0090689659118652, 0.2747821807861328, 0.10214386880397797, -2.4779117107391357, -0.9773576855659485, -1.8188464641571045, -1.3777896165847778, -1.2273633480072021, -0.7081152200698853, -0.16788071393966675, -1.1654075384140015, -1.259030818939209, -1.1874983310699463, -0.9264681935310364, -0.9186518788337708, -0.8914804458618164, -0.9218055009841919, 0.7837216854095459, -0.8910134434700012, -0.2089620679616928, 0.16324535012245178, -4.087540626525879, -1.0314360857009888, -0.8699924945831299, -1.015000581741333, -0.10263320058584213, 0.07023771852254868, -0.37558451294898987, -0.30881813168525696, 0.2082013189792633, 0.06330819427967072, -0.8568580746650696, -0.8060777187347412, -0.83689284324646, -0.7497181296348572, -0.1738254874944687, -0.4366702139377594, -0.3223575949668884, 2.9135329723358154, 2.4753031730651855, 1.537800908088684, 0.20792335271835327, -0.5464007258415222, 0.046046413481235504, 0.1231943741440773, -1.8414950370788574, 0.16063444316387177, 0.003367061261087656, -1.217653512954712, -3.2840464115142822, -1.2698521614074707, -0.8337908983230591, -0.9966315031051636, -0.35329461097717285, -1.4399248361587524, -1.5452131032943726, -2.6740429401397705, -4.942326068878174, -1.0309700965881348, -1.060135006904602, -1.056551218032837, -0.6609721183776855, -1.6627198457717896, -0.8930734992027283, -0.9364414215087891, -2.73632550239563, -1.1858092546463013, 1.1292157173156738, -0.8602423071861267, -0.7451333999633789, -0.6334381699562073, 2.317405939102173, -2.7447357177734375, 1.8164399862289429, -0.8790375590324402, -1.0266516208648682, -1.2070320844650269, -1.0807114839553833, -0.9633757472038269, -0.3880324363708496, -0.9220374822616577, -2.911503314971924, -0.6549553275108337, -0.8126870393753052, -2.0710089206695557, -0.20544598996639252, 3.5708484649658203, -0.49633222818374634, -0.1758769303560257, -0.8343421816825867, -1.078677773475647, 1.9122920036315918, -0.8494187593460083, 4.3852691650390625, 3.200863838195801, 1.1445114612579346, -0.09215206652879715, -1.0130023956298828, -0.7751897573471069, -0.7957462668418884, -1.0866068601608276, 0.26328665018081665, -0.11597792059183121, -2.54250168800354, -1.0498559474945068, -1.6831717491149902, -1.3642908334732056, -1.2684246301651, -0.7591524124145508, -0.2174561619758606, -4.891088485717773, -1.4618377685546875, -1.0080394744873047, -0.929750382900238, -0.9019274115562439, -0.913806676864624, -0.8016263842582703, 0.6376355886459351, -0.7236019372940063, -0.21736304461956024, 0.3427373468875885, -4.053901672363281, -0.9434950351715088, -0.9492806792259216, -0.8692220449447632, -0.009448030032217503, 0.11537988483905792, -0.3962923586368561, -0.30279508233070374, -0.11674385517835617, 0.0715663805603981, 0.8507844805717468, 0.8731920123100281, 0.7847808599472046, 0.7785347104072571, 0.173873171210289, 0.5018649697303772, 0.4123990833759308, -2.975001096725464, -1.5538098812103271, -1.5466874837875366, -0.28720423579216003, 0.6159036755561829, -0.1280972957611084, -0.2603619694709778, 1.8770792484283447, -0.2359393686056137, -0.07419365644454956, 1.267500400543213, 3.276418924331665, 1.244958519935608, 0.8461859226226807, 1.0035147666931152, 0.4249263405799866, 1.5108433961868286, 1.6834756135940552, 2.677158832550049, 5.054049968719482, 0.9495651721954346, 1.1234631538391113, 1.0083847045898438, 0.4630945026874542, 1.2207255363464355, 0.9218323826789856, 0.9377996921539307, 2.8223962783813477, 1.2048046588897705, -1.0724740028381348, 0.7850067615509033, 0.9540084600448608, 0.7268407940864563, -2.411339044570923, 2.622981548309326, -1.9048823118209839, 0.954401433467865, 1.019078254699707, 1.1443625688552856, 1.070959210395813, 0.8751644492149353, 0.3850209712982178, 0.9144691824913025, 3.0497469902038574, 0.6741500496864319, 0.8218127489089966, 2.290695905685425, 0.2857479751110077, -3.6748085021972656, 0.46778643131256104, 0.3777141273021698, 0.9003259539604187, 1.1232715845108032, -2.00996994972229, 0.9688726663589478, -4.524957656860352, -3.0184340476989746, -0.9719988107681274, 0.02877887897193432, 0.9630817174911499, 0.952743649482727, 0.9084296226501465, 0.9942100048065186, -0.24129773676395416, -0.11661992967128754, 2.579699993133545, 0.9712111353874207, 1.7772858142852783, 1.3841044902801514, 1.3784581422805786, 0.8533254861831665, 0.26534998416900635, 4.9882988929748535, 1.07706618309021, 1.0975077152252197, 0.7948075532913208, 0.9976577162742615, 0.9716132879257202, 0.7567970156669617, -0.6556764841079712, 0.7230876088142395, 0.3645001947879791, -0.28498318791389465, 4.127756118774414, 1.0028256177902222, 0.8751408457756042, 1.0547360181808472, -0.00014002238458488137, -0.06870749592781067, 0.2670288383960724, 0.2527075707912445, -0.23057374358177185, 0.1159537136554718, 0.733686089515686, 0.7673280239105225, 0.8657631278038025, 0.8761321306228638, 0.09439922869205475, 0.4805983603000641, 0.24639520049095154, -2.8465054035186768, -2.4486613273620605, -1.502673864364624, -0.12065938115119934, 0.48617175221443176, -0.11879396438598633, -0.18583029508590698, 1.862165927886963, -0.15171419084072113, 0.062174439430236816, 0.3802166283130646, 3.2006494998931885, 1.21664297580719, 0.7338136434555054, 0.8903597593307495, 0.27823829650878906, 2.5870518684387207, 1.5798734426498413, 2.5969998836517334, 4.420010566711426, 1.0058954954147339, 1.0823618173599243, 1.0875388383865356, 0.556039035320282, 1.3046209812164307, 0.8941696286201477, 0.8771262168884277, 2.489576816558838, 1.0986230373382568, -1.1534610986709595, 0.8150595426559448, 0.9772729277610779, 0.6446929574012756, -2.452162265777588, 2.827893018722534, -1.8742727041244507, 0.9241117835044861, 1.027500033378601, 1.157573938369751, 0.8824051022529602, 0.8059958815574646, 0.5275769829750061, 0.8900220990180969, 2.9532198905944824, 0.8458910584449768, 0.9371623396873474, 2.289970874786377, 0.07063987851142883, -3.671917676925659, -2.1410415172576904, 0.35559019446372986, 0.9562572836875916, 0.9989854097366333, -1.9538923501968384, 0.6736979484558105, -4.322859764099121, -3.2325096130371094, -1.184324860572815, -0.07266504317522049, 0.8745638728141785, 0.9634345173835754, 0.9299636483192444, 0.9387571811676025, -0.10403236001729965, 0.10685780644416809, 2.486668348312378, 0.9303608536720276, 1.7279841899871826, 1.3289790153503418, 1.3552104234695435, 0.8579573035240173, 0.27706554532051086, 0.998016893863678, 1.27894127368927, 1.118223786354065, 1.0036280155181885, 1.087958574295044, 0.99065101146698, 0.7499627470970154, -0.5614715814590454, 0.8232236504554749, 0.335134357213974, -0.13579979538917542, 3.9406707286834717, 1.0299527645111084, 0.908333420753479, 1.0707021951675415, 0.05540156736969948, 0.08010388165712357, 0.18064694106578827, 0.22991688549518585, -0.053718987852334976, 0.03770876303315163, 0.8211138248443604, 0.9251333475112915, 0.9422194361686707, 0.9227993488311768, 0.20368193089962006, 0.4970192313194275, 0.37606605887413025, -2.9752488136291504, -2.5571131706237793, -1.4064146280288696, -0.25167956948280334, 0.6407450437545776, -0.09174489229917526, -0.24206680059432983, 1.794206142425537, -0.13071288168430328, -0.14342865347862244, 1.181628942489624, 3.1931679248809814, 1.161007285118103, 0.6395425796508789, 0.9108783006668091, 0.27959346771240234, 1.3069024085998535, 1.65396249294281, 2.5047287940979004, 4.858447551727295, 1.0527172088623047, 1.1473751068115234, 0.8762071132659912, 0.532788872718811, 1.2153698205947876, 0.8419976234436035, 0.9237966537475586, 2.7201690673828125, 1.1543779373168945, -1.0917235612869263, 0.8875826001167297, 0.9029335975646973, 0.8400679230690002, -2.4096264839172363, 2.6078319549560547, -1.7664130926132202, 0.9920657277107239, 1.0218231678009033, 1.199558138847351, 0.9727138876914978, 0.8082738518714905, 0.5954812169075012, 0.974108874797821, 2.8985040187835693, 0.6783674359321594, 0.7892172336578369, 2.2352566719055176, 0.08562389016151428, -3.4957809448242188, 0.4810532331466675, 0.22312386333942413, 0.9413687586784363, 1.1608532667160034, -2.055600881576538, 0.8384740352630615, -4.492331504821777, -3.1443004608154297, -1.1783127784729004, -0.041278451681137085, 1.0278916358947754, 0.7890925407409668, 0.9406034350395203, 1.008379578590393, -0.05296599864959717, -0.08233290910720825, 2.5783183574676514, 1.0592559576034546, 1.6081008911132812, 1.3850672245025635, 1.2805626392364502, 0.8270314335823059, 0.09334245324134827, 4.859727382659912, 1.1108125448226929, 1.1218739748001099, 0.9115898013114929, 0.9984079003334045, 0.9409406185150146, 0.9145911931991577, -0.7170349359512329, 0.706082284450531, 0.3673035204410553, -0.30489805340766907, 4.147932052612305, 0.9603983163833618, 0.9659633636474609, 0.8664016723632812, 0.07270254194736481, 0.1184486597776413, 0.24982959032058716, 0.3911813795566559, -0.2137686312198639, 0.02675258368253708, 0.7096277475357056, 0.8169723153114319, 0.7832303047180176, 0.9360334873199463, 0.21627460420131683, 0.6310918927192688, 0.3179105818271637, -2.9908299446105957, -1.7069120407104492, -1.3913296461105347, -0.21819917857646942, 0.5974876880645752, -0.16580218076705933, -0.05874728783965111, 1.940727949142456, -0.04484415054321289, -0.11117886751890182, 0.5372625589370728, 3.31087327003479, 1.2650471925735474, 0.7965402603149414, 0.9625160694122314, 0.41458410024642944, 1.501137614250183, 1.4837394952774048, 2.6789937019348145, 4.883045196533203, 1.0389249324798584, 0.951423704624176, 0.979072093963623, 0.5104587078094482, 1.145853042602539, 0.8391197919845581, 0.9807944297790527, 2.9022035598754883, 1.1616744995117188, -1.138969898223877, 0.7731444835662842, 0.8922306299209595, 0.7459601759910583, -2.270662307739258, 2.6330277919769287, -1.9013599157333374, 0.8186554312705994, 0.992020845413208, 1.2087147235870361, 0.8875907063484192, 0.8083035349845886, 0.5574833750724792, 0.7683736681938171, 3.000155448913574, 0.7997855544090271, 0.8734368085861206, 2.233581304550171, 0.1629600077867508, -3.584202766418457, 0.4153255820274353, 0.32263895869255066, 0.8415730595588684, 1.1370948553085327, -2.091538190841675, 0.9546653032302856, -4.3472900390625, -3.1855340003967285, -1.2434409856796265, 0.04753706231713295, 0.98084956407547, 0.9150350093841553, 0.9125065803527832, 0.9637389779090881, -0.25944823026657104, 0.030952535569667816, 2.5564563274383545, 0.9561443328857422, 1.7862932682037354, 1.3309850692749023, 1.1890255212783813, 0.9176821112632751, 0.27760735154151917, 1.2800241708755493, 1.2340452671051025, 1.1694729328155518, 0.9034730792045593, 0.9675430655479431, 0.9892826080322266, 0.9813922643661499, -0.5980042219161987, 0.6911150813102722, 0.29530248045921326, -0.2832447588443756, 4.106788158416748, 1.0907776355743408, 0.865490734577179, 0.9727181792259216, -0.07646874338388443, -0.0495702289044857, 0.20658829808235168, 0.20768584311008453, 0.04429035261273384, -0.0433923676609993, -0.9134440422058105, -0.7716778516769409, -0.9881393313407898, -0.9322150945663452, -0.2140124887228012, -0.4854046702384949, -0.2995252013206482, 2.8478212356567383, 2.529799222946167, 1.3921564817428589, 0.16275128722190857, -0.6251542568206787, 0.19713158905506134, 0.19618692994117737, -1.8141940832138062, 0.2411600649356842, 0.0529620498418808, -0.3727266788482666, -3.198047637939453, -1.2138251066207886, -0.7363572120666504, -1.021730899810791, -0.23983481526374817, -1.2998919486999512, -1.5453191995620728, -2.6852004528045654, -5.03449010848999, -0.9100886583328247, -1.1855742931365967, -1.0559604167938232, -0.6422983407974243, -1.3397839069366455, -0.862576425075531, -1.0735080242156982, -2.848280668258667, -1.1910055875778198, 1.2000806331634521, -0.7991795539855957, -0.8205350637435913, -0.7647427916526794, 2.2373175621032715, -2.6086435317993164, 1.863047480583191, -0.8125342726707458, -1.074232816696167, -1.1286301612854004, -0.9291890263557434, -0.9568683505058289, -0.5568981766700745, -0.9411821365356445, -2.8534626960754395, -0.7308806777000427, -0.8614240884780884, -2.156174421310425, -0.13684506714344025, 3.5264992713928223, -0.32664069533348083, -0.20393343269824982, -0.7623044848442078, -1.0478729009628296, 2.1414926052093506, -0.5593440532684326, 4.486616134643555, 3.203895092010498, 1.0981566905975342, -0.09826714545488358, -0.9999253749847412, -1.007345199584961, -0.7452923655509949, -0.9030133485794067, 0.1564921885728836, 0.11105343699455261, -2.479482889175415, -1.1055493354797363, -1.6463027000427246, -1.3443597555160522, -1.2502096891403198, -0.8274266123771667, -0.19551128149032593, -4.7850728034973145, -1.292590618133545, -1.1847198009490967, -0.8951672911643982, -1.0380836725234985, -0.9189863204956055, -0.955099880695343, 0.7137960195541382, -0.7855178713798523, -0.14217603206634521, 0.23426973819732666, -4.120105743408203, -0.8958330154418945, -0.9430932402610779, -1.0907455682754517, 0.04573884606361389, 0.04677553474903107, -0.36726489663124084, -0.2497732788324356, -0.28974300622940063, 0.054067306220531464, 0.708282470703125, 0.9231085777282715, 0.8193240165710449, 0.8251836895942688, 0.2579769492149353, 0.5626338124275208, 0.3770608603954315, -2.9594309329986572, -2.6156413555145264, -1.4124524593353271, -0.12167993187904358, 0.5273809432983398, -0.17264917492866516, -0.21231192350387573, 1.785294532775879, -0.18236799538135529, 0.052227526903152466, 0.3973369598388672, 3.160827398300171, 1.266247034072876, 0.8668997287750244, 0.9340139627456665, 0.4354833960533142, 2.513948678970337, 1.6737345457077026, 2.6224794387817383, 4.277675628662109, 0.9889689683914185, 1.0266441106796265, 0.8903666734695435, 0.4771876633167267, 1.227838397026062, 0.8484460115432739, 0.999708890914917, 2.6096272468566895, 1.220813512802124, -1.1966242790222168, 0.9037378430366516, 0.7387562394142151, 0.6823309063911438, -2.363344669342041, 2.836137294769287, -1.7910863161087036, 0.9634130597114563, 1.004923939704895, 1.1682276725769043, 0.8867138028144836, 0.7691341042518616, 0.5510122179985046, 0.858849823474884, 2.9702963829040527, 0.7546311020851135, 0.9539784789085388, 2.2165112495422363, 0.15405817329883575, -3.5655791759490967, -2.1933605670928955, 0.3010120093822479, 0.8021878600120544, 1.1387302875518799, -1.9578548669815063, 0.6887824535369873, -4.507678031921387, -3.0344138145446777, -1.2946633100509644, 0.11034775525331497, 0.9470683336257935, 0.8142690658569336, 0.8681297898292542, 1.0205273628234863, -0.17983399331569672, -0.11393976211547852, 2.572343111038208, 0.9020224213600159, 1.794269323348999, 1.3964163064956665, 1.3418643474578857, 0.932891845703125, 0.05985955148935318, 1.003767728805542, 1.3183605670928955, 1.165875792503357, 0.9224570989608765, 0.8964117169380188, 0.9605047702789307, 0.7478715777397156, -0.6423405408859253, 0.7450972199440002, 0.28280380368232727, -0.12295665591955185, 3.997950553894043, 0.9693208932876587, 0.9316984415054321, 0.9475011825561523, -0.05491603910923004, -0.0025306360330432653, 0.23612764477729797, 0.43988505005836487, 1.668373465538025, 1.1371721029281616, -1.097514271736145, -0.5632918477058411, -1.1591737270355225, -0.7539603114128113, 1.0011816024780273, -2.256110906600952]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (1.37, 1.54)}}, 'et2_eta3': {'discriminator': {'threshold': -0.34000080749392508, 'nodes': [100, 5, 1], 'bias': [0.13335025310516357, 0.248552143573761, 0.2607596516609192, 0.23980382084846497, -0.17763327062129974, 0.2343870997428894], 'weights': [-10.756834030151367, -5.154053688049316, -7.0025458335876465, -2.218642473220825, -1.07419753074646, -2.0236716270446777, -0.4742881953716278, -0.03815107047557831, -0.2741263508796692, -3.1508870124816895, 19.5971622467041, 2.403977870941162, -2.0943031311035156, 7.2989888191223145, 3.9618937969207764, -5.566046237945557, 51.05552291870117, 0.37886664271354675, 4.642994403839111, -0.6491299271583557, 11.151782989501953, 0.11410417407751083, 23.86515235900879, -1.9333291053771973, -10.39181137084961, -0.6153316497802734, 42.109947204589844, -0.2110520750284195, 12.593066215515137, -1.1302924156188965, 26.546398162841797, -8.614419937133789, 0.13233278691768646, 0.25577646493911743, 24.940628051757812, -0.20735733211040497, 5.364617824554443, 0.10353343933820724, 3.115074634552002, 0.14641344547271729, 8.40974235534668, 8.625457763671875, 0.09375984966754913, 1.208945393562317, 0.07423337548971176, 0.15145687758922577, 0.46819332242012024, -16.380521774291992, -0.15161031484603882, 21.851728439331055, 12.557600975036621, 0.10420508682727814, -4.14501428604126, 0.21442590653896332, 18.04941177368164, 0.17690162360668182, -0.0108153922483325, 0.04098479449748993, 0.3071639835834503, 0.1312766969203949, 0.4420854449272156, 23.29166030883789, 0.018159044906497, 0.13832451403141022, 0.8246799111366272, -8.584503173828125, 0.05028685927391052, 3.3795101642608643, -0.12710095942020416, 0.23381438851356506, 0.022220849990844727, -30.590267181396484, -0.12401554733514786, 0.1345580667257309, 0.22404614090919495, -8.626749038696289, 0.12128259986639023, 0.2123095840215683, -0.9947080612182617, 0.15545381605625153, -3.0764477252960205, -1.8702014684677124, 0.42185866832733154, 16.13136100769043, -0.6422619223594666, 0.16187888383865356, -0.9172854423522949, 9.631973266601562, -1.1423531770706177, -2.620586395263672, -2.374701738357544, -3.936511278152466, 0.25551971793174744, -0.02190171182155609, -0.04584646224975586, -0.27712079882621765, 0.14468258619308472, 0.030499180778861046, -3.141718864440918, 88.65790557861328, -2.5324573516845703, -4.374341011047363, 0.6859371066093445, 1.9106290340423584, 0.6596091985702515, 1.8849974870681763, -0.674700140953064, 0.660778820514679, -3.480478525161743, -4.1822190284729, -1.4325149059295654, 1.1752970218658447, 1.7581167221069336, -0.5020906329154968, 4.604200839996338, 1.9714369773864746, 2.4581234455108643, 7.138940334320068, 5.738563060760498, 3.129223585128784, 3.9697062969207764, 3.5533447265625, 1.1901803016662598, 5.782238483428955, 8.86247444152832, 0.523585319519043, -0.02157605066895485, 1.1680787801742554, 3.927422046661377, 2.714078903198242, -0.4944123923778534, 3.6332807540893555, 2.709134817123413, 2.9711852073669434, 5.126705646514893, -0.7336161732673645, 0.9812389016151428, 2.3340704441070557, 1.3021881580352783, 1.3694522380828857, 1.2027201652526855, 1.2100907564163208, 1.289125680923462, 4.048458099365234, 2.1643471717834473, 0.35024294257164, 1.4579193592071533, 3.5349833965301514, -0.15462449193000793, -3.88193416595459, 2.7522335052490234, -0.06720936298370361, 3.204317331314087, -0.019455675035715103, 3.507672071456909, 0.4213518500328064, 0.3603975772857666, 2.0518710613250732, 0.5751850008964539, -1.5830974578857422, 3.848586320877075, 0.9717985987663269, 0.44291964173316956, -0.8807228207588196, 2.290783643722534, -0.23605653643608093, 1.227684497833252, -0.003825950436294079, -4.663488388061523, 1.6658002138137817, 5.13378381729126, 6.0269598960876465, -1.0647153854370117, -0.6556851863861084, 1.803419828414917, 2.9657299518585205, 2.5982794761657715, 2.7404441833496094, 1.6974892616271973, 1.6881728172302246, 0.6873123049736023, 6.274681091308594, 8.36557674407959, 4.364907741546631, 1.637835144996643, 1.103344440460205, 2.2714977264404297, 0.7774200439453125, 0.7928032875061035, 1.8765802383422852, 0.5476711988449097, 0.07748151570558548, 6.8607659339904785, 2.732969045639038, 0.3886774480342865, 2.827256679534912, 0.37176939845085144, -0.013558509759604931, -0.3260025382041931, 8.167928695678711, 53.11573028564453, 31.998504638671875, 0.7986357808113098, -7.163128852844238, -0.6253488659858704, 1.1188615560531616, -1.3782844543457031, 0.7688377499580383, 0.42100590467453003, 1.7917190790176392, -15.676565170288086, 12.676505088806152, -0.9360592365264893, -4.500792503356934, -21.410022735595703, 1.1764541864395142, -1.2546459436416626, -11.680105209350586, -23.284387588500977, -4.306753635406494, -19.183818817138672, 6.2244367599487305, -12.680574417114258, -3.5009639263153076, 12.968194961547852, -9.88486099243164, -82.18316650390625, 0.15911909937858582, 0.6369820833206177, 1.7977516651153564, -0.29602837562561035, 1.5609605312347412, 5.279357433319092, -5.59156608581543, -23.88628578186035, -12.71351146697998, -8.801299095153809, 20.297061920166016, 0.021973656490445137, -0.8585444688796997, -2.9222116470336914, 1.2671905755996704, 0.5269664525985718, 8.260369300842285, -3.2834479808807373, 0.6941452026367188, -14.314531326293945, 24.933794021606445, -8.902850151062012, -11.617528915405273, -30.619714736938477, 13.680442810058594, -20.13739585876465, 10.085596084594727, -14.83609390258789, 26.037694931030273, -0.14633238315582275, 1.1378346681594849, 0.3858771026134491, -7.258084297180176, 0.43984153866767883, 10.910409927368164, -17.31711196899414, -1.007501482963562, -27.515432357788086, -0.1505083441734314, -21.593725204467773, 8.039786338806152, -2.401052236557007, 0.6295750737190247, 0.02726588025689125, 13.659438133239746, 0.3220360279083252, -2.358847141265869, 5.056670665740967, 0.7876736521720886, 1.9370248317718506, -0.09462462365627289, -0.18033425509929657, 0.12362048029899597, -8.971482276916504, 2.0015969276428223, 3.0477662086486816, -7.6233625411987305, 1.0016531944274902, 0.3745057284832001, 1.0311485528945923, 0.21755991876125336, 40.135868072509766, 12.324202537536621, 0.6266895532608032, 2.2410624027252197, 2.065934419631958, 0.9237793684005737, 0.18036027252674103, -16.828275680541992, 0.35438159108161926, -0.1555556058883667, 4.154973030090332, -475.23138427734375, -2.502817153930664, -4.302284240722656, -0.6296444535255432, 1.8844630718231201, 0.6088113188743591, 2.2870635986328125, -0.5094284415245056, 0.7945058941841125, -3.447042942047119, -3.647264003753662, -0.6113442778587341, 1.1077313423156738, 2.127782106399536, -0.40056928992271423, 4.655635356903076, 2.178720712661743, 2.7995572090148926, 7.104198455810547, 5.905070781707764, 3.2854087352752686, 3.934929370880127, 3.707108497619629, 1.3646639585494995, 5.755138874053955, 8.847835540771484, 0.8089349269866943, -0.11532001197338104, 1.146803617477417, 2.426882028579712, 2.8990681171417236, -0.38362497091293335, 3.910571336746216, 2.6533946990966797, 2.781461477279663, 5.299633026123047, -0.5826964378356934, 0.9958195686340332, 2.4386825561523438, 1.2550694942474365, 1.4544106721878052, 1.2984797954559326, 1.8875641822814941, 1.4372845888137817, 4.373566627502441, 2.349292278289795, 0.2892161011695862, 2.2028911113739014, 3.612194299697876, -1.7294856309890747, -0.4223075211048126, 2.4665699005126953, -0.20626167953014374, 2.9696385860443115, -0.010548719204962254, 3.3602588176727295, 0.39201220870018005, 0.32493478059768677, 2.06101393699646, 0.6399164199829102, -1.390122652053833, 2.6932859420776367, 0.8907122611999512, 0.553081750869751, -0.7583954930305481, 2.277139902114868, 0.6291739344596863, 2.7604525089263916, -0.005663110874593258, -5.736014366149902, 1.6331316232681274, 1.4976601600646973, 6.064630508422852, -0.925768256187439, -0.5103186964988708, 1.661220908164978, 3.0831050872802734, 2.750983953475952, 2.756680488586426, 1.649301528930664, 1.712792158126831, 0.26813170313835144, 5.1360344886779785, 8.015815734863281, 4.326051712036133, 1.5424004793167114, 1.0750715732574463, 2.370279550552368, 0.7323935031890869, 0.3343536853790283, 2.009101390838623, 0.6932831406593323, -0.03671253100037575, 6.679688930511475, 2.4077558517456055, 0.3968178927898407, 2.891972780227661, 0.2196534425020218, 0.00961389858275652, -0.5204793810844421, 8.124086380004883, 0.4501791000366211, 1.2842708826065063, 1.2731422185897827, 0.6348394751548767, -0.435335248708725, 0.5225095748901367, 0.43921151757240295, -1.3023449182510376, 3.713515281677246, 6.4112348556518555, 0.842943549156189, -10.726643562316895, -8.334908485412598, -0.16133823990821838, -4.632417678833008, -2.0630006790161133, 3.4924919605255127, -7.2158379554748535, -5.91160249710083, -5.372579097747803, -3.8819172382354736, -5.345448017120361, -0.25050151348114014, -5.493337154388428, -7.339334487915039, -5.2933125495910645, 0.12195873260498047, -0.9954842329025269, -1.3830924034118652, -2.6811864376068115, 0.4685163199901581, -3.6322438716888428, -2.5715246200561523, -2.889451742172241, -5.268944263458252, 0.6407426595687866, -0.7952390313148499, -2.078568696975708, -1.1098804473876953, 0.33429673314094543, -1.1769680976867676, -1.0174493789672852, -1.510162353515625, -3.542238473892212, -1.597876787185669, -0.34909144043922424, -1.2422542572021484, -2.7350168228149414, 2.5111312866210938, 2.6181581020355225, -1.2021911144256592, 0.1684180051088333, -3.4331066608428955, -0.26513049006462097, -3.43839955329895, 6.674975395202637, -0.31000077724456787, -1.8686954975128174, -0.5798888802528381, 4.219579219818115, -3.7151522636413574, -0.4743309020996094, -0.43988871574401855, 0.8754767775535583, -2.315849542617798, 6.703108310699463, -1.2990057468414307, 7.061644077301025, 5.463805675506592, -1.585597276687622, -0.7856287956237793, -6.636855125427246, 1.067458987236023, 0.5610536932945251, -1.2216709852218628, -2.821749210357666, -2.791036367416382, -1.9990876913070679, -1.3242096900939941, -1.6728241443634033, -0.34435802698135376, -4.782454013824463, -7.547537803649902, -0.2774135172367096, -0.8089768886566162, -1.030517339706421, -2.8310625553131104, -0.5920827984809875, 0.15740729868412018, -0.825404167175293, -0.5701107382774353, 0.312010794878006, -1.5172830820083618, -0.5282378792762756, -0.1631062626838684, -1.8005297183990479, -0.6700261235237122, 0.043705716729164124, 0.4681946039199829, -10.75798511505127, -0.8759651780128479, -1.5461176633834839, -1.23297119140625, -1.4937539100646973, 1.4530240297317505]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (30, 40), 'etaBin': (1.54, 2.5)}}, 'et2_eta0': {'discriminator': {'threshold': -0.94999999999999996, 'nodes': [100, 7, 1], 'bias': [0.019224368035793304, 0.45628318190574646, -0.12031170725822449, -0.015363171696662903, -0.049233756959438324, 0.045791663229465485, 0.03335244953632355, -0.09124189615249634], 'weights': [2.4329495429992676, 1.4420313835144043, -0.15772387385368347, -0.45292413234710693, 0.3055766224861145, 0.5392810702323914, 0.5628986954689026, 0.07073460519313812, 1.9584318399429321, 1.8563319444656372, -2.371872663497925, -2.354975938796997, -2.7561957836151123, 2.817047119140625, 0.08973520249128342, -3.268537998199463, -1.070982575416565, -1.8271304368972778, -2.4616522789001465, -2.3151986598968506, -1.887192964553833, -1.8527302742004395, -2.3407819271087646, -2.473985433578491, -1.3908601999282837, -1.4299952983856201, -1.5499542951583862, -2.0558488368988037, -1.5325924158096313, -1.394205927848816, -1.5222370624542236, -1.4686172008514404, -1.5534261465072632, -1.4842036962509155, -1.3858249187469482, -1.3416050672531128, -1.531836748123169, -1.428819179534912, -1.4558062553405762, -0.8207655549049377, -0.8782278299331665, -1.0157896280288696, -0.5276156067848206, -0.8581804037094116, -0.6648080945014954, -0.45357322692871094, -0.8857735395431519, -0.8280180096626282, -0.8657222390174866, -0.8005098700523376, -0.6567687392234802, -0.0016746609471738338, -0.6134666800498962, -0.7531946301460266, -0.7140744924545288, -0.4470549523830414, -0.636455774307251, -0.19409911334514618, -0.41761863231658936, 0.07512872666120529, -0.46277540922164917, 1.4176570177078247, -0.8929492831230164, -0.9296699166297913, -0.8491492867469788, -0.9557816386222839, 0.2912381589412689, -0.44588908553123474, 0.19240215420722961, -0.5164107084274292, -0.6210252046585083, -0.9396032691001892, 0.6607837080955505, 0.14490465819835663, -0.6050184965133667, -1.12909734249115, -1.4073784351348877, -0.8343877196311951, -1.138207197189331, -0.5169039368629456, -1.937561273574829, -1.8662525415420532, -1.915310263633728, -2.233858823776245, -1.7492365837097168, -1.3136546611785889, -1.3534401655197144, -1.400665044784546, -2.9078454971313477, -2.20707631111145, -0.9425890445709229, -0.03192368894815445, -2.7494051456451416, -1.704785704612732, -0.6634554862976074, 0.05951673164963722, -4.10584831237793, -2.448336601257324, -0.41072091460227966, -0.27269992232322693, -1.4788968563079834, -0.8261141777038574, -0.05670209601521492, 0.002791410544887185, -0.28939205408096313, -0.3831201195716858, -0.2669445276260376, -0.39940598607063293, -0.8653852343559265, -1.1035109758377075, 5.203746795654297, 4.88874626159668, -0.08087887614965439, -0.29121914505958557, -0.5097947716712952, 0.4677366018295288, 0.7954995632171631, 0.7813175916671753, 1.2717020511627197, 0.9484448432922363, 0.7764231562614441, 0.809074342250824, 0.8015225529670715, 0.9934772849082947, 0.479518324136734, 0.56662517786026, 0.4497523307800293, 0.5770207047462463, 0.579328715801239, 0.5804927945137024, 0.47426074743270874, 0.5920686721801758, 0.5701936483383179, 0.6489295959472656, 0.47899195551872253, 0.40846553444862366, 0.3863874673843384, 0.4638066589832306, 0.40672117471694946, 0.2634744942188263, 0.15485037863254547, 0.026525290682911873, 0.07605506479740143, 0.11399006843566895, 0.3101194500923157, 0.14307749271392822, 0.16039623320102692, 0.23738282918930054, 0.24280521273612976, 0.26603251695632935, 0.14755947887897491, -0.15468497574329376, 0.23101232945919037, 0.1688367873430252, 0.11484790593385696, -0.033109478652477264, 0.0003158295003231615, -0.14705990254878998, 0.13513056933879852, -0.05535063147544861, -0.6226818561553955, -0.831747829914093, 0.17960545420646667, 0.26952144503593445, 0.0686379075050354, 0.16775889694690704, -0.13495196402072906, 0.09117455780506134, -0.32439175248146057, -0.042516350746154785, 0.1461169421672821, 0.3471764624118805, -0.17577430605888367, -2.5552563667297363, 0.15897704660892487, 0.17573589086532593, -0.05086727440357208, -0.13653911650180817, -1.011115312576294, -0.19663439691066742, 0.20274174213409424, 0.7060439586639404, 0.4570104777812958, 0.4854345917701721, 0.4555254578590393, 0.4067375063896179, 0.5382141470909119, 0.3978714942932129, 0.8932828903198242, 0.6028915047645569, -0.05715129151940346, -0.34641629457473755, 1.0517120361328125, 0.578312337398529, -0.71567702293396, -0.18141664564609528, 1.7424260377883911, 0.9161783456802368, -0.5402849912643433, 0.09533532708883286, 2.562138795852661, 1.5500154495239258, -0.24047265946865082, -0.29138559103012085, 0.3148193657398224, 0.47478795051574707, 0.4756316542625427, 0.40536364912986755, 2.0594069957733154, 1.807045817375183, -2.1784279346466064, -2.0940635204315186, -0.9356326460838318, 2.7754881381988525, -1.3487353324890137, -1.4713248014450073, -1.16933012008667, -2.811002254486084, -3.2187931537628174, -2.675110101699829, -2.3073205947875977, -1.9761515855789185, -2.4064102172851562, -2.545433282852173, -1.5459630489349365, -1.544931411743164, -1.481935739517212, -1.8270764350891113, -1.4253467321395874, -1.4545460939407349, -1.3441903591156006, -1.4803478717803955, -1.5137966871261597, -1.3985644578933716, -1.3568552732467651, -1.302380919456482, -1.5009571313858032, -1.4774668216705322, -1.3306632041931152, -0.9371532797813416, -0.7280012965202332, -0.9935320019721985, -0.6516280770301819, -0.8398025631904602, -0.8120349049568176, -0.3519139289855957, -0.9073634147644043, -0.8254354596138, -0.767120361328125, -0.853701651096344, -0.741077184677124, 0.10455520451068878, -0.7997367978096008, -0.6552387475967407, -0.6452860832214355, -0.540259063243866, -0.6437557935714722, -0.22889691591262817, -0.5302101969718933, 0.02918851189315319, 0.7381013035774231, 1.2349488735198975, -0.8047325015068054, -0.8460726141929626, -0.9038191437721252, -1.0867608785629272, 0.1658903807401657, -0.5121541619300842, 0.26093533635139465, -0.5085957646369934, -0.8133324384689331, -0.9956737160682678, 0.4444533586502075, 0.11229830980300903, -0.6257104873657227, -0.8876718878746033, -1.4783036708831787, -1.317688226699829, -0.8321372866630554, -0.44442787766456604, -1.0517348051071167, -1.8077179193496704, -1.3538740873336792, -2.241945743560791, -1.3934167623519897, -1.329193115234375, -1.4903050661087036, -1.2067742347717285, -2.811061382293701, -2.207946300506592, -0.7235689759254456, 0.36650580167770386, -2.5691821575164795, -1.8738287687301636, -0.6872693300247192, 0.04656132310628891, -4.157707214355469, -2.091909170150757, 0.8802509307861328, -0.2656829059123993, -2.426492929458618, -1.3851568698883057, 0.059051163494586945, 0.3478064239025116, -0.33703580498695374, -0.5045357346534729, -0.5599914193153381, -0.019190818071365356, -1.8953324556350708, -2.4973785877227783, 2.232837677001953, 2.252776861190796, 0.9709047675132751, -2.79278564453125, -0.010164869949221611, 1.5122946500778198, 2.172455310821533, 1.7269326448440552, 2.261995315551758, 2.166290521621704, 1.9688866138458252, 1.962256669998169, 2.439129114151001, 2.336719512939453, 1.4186104536056519, 1.4049092531204224, 1.4736586809158325, 1.847051978111267, 1.5520299673080444, 1.3687318563461304, 1.3582417964935303, 1.5198113918304443, 1.5707532167434692, 1.469887375831604, 1.4525644779205322, 1.336944341659546, 1.303916573524475, 1.4890121221542358, 1.4932266473770142, 0.9043020606040955, 0.7885726094245911, 1.162514328956604, 0.5184091925621033, 0.6969605684280396, 0.8452600836753845, 0.47120940685272217, 0.8056679964065552, 0.90936678647995, 0.7736977338790894, 0.769103467464447, 0.835401177406311, 0.0007846203516237438, 0.7544705271720886, 0.7839801907539368, 0.8243162035942078, 0.606340229511261, 0.6326882243156433, 0.006035619415342808, 0.37757769227027893, -0.09361042827367783, -0.8933119177818298, -1.3733415603637695, 0.720933735370636, 0.7511315941810608, 0.8383000493049622, 1.0988450050354004, -0.22380509972572327, 0.486883282661438, -0.2374916970729828, 0.3708416223526001, 0.754981279373169, 0.8724632263183594, -0.6503762602806091, -0.07306433469057083, 0.5668611526489258, 1.3136569261550903, 1.291954517364502, 0.9644765257835388, 1.1525988578796387, 0.5578071475028992, 2.0050060749053955, 1.7692725658416748, 1.9648202657699585, 2.2346577644348145, 1.573161244392395, 1.225036859512329, 1.2651726007461548, 1.3745157718658447, 2.879516124725342, 2.06929874420166, 0.8042070269584656, 0.046606600284576416, 2.626986026763916, 1.7895833253860474, 0.7479560375213623, -0.13244923949241638, 4.086292266845703, 2.3496358394622803, 0.371665358543396, 0.2165805697441101, 2.4569509029388428, 1.4385862350463867, -0.16386932134628296, -0.3167145848274231, 0.3162664473056793, 0.46230649948120117, 0.4655436873435974, 0.07541755586862564, 2.011347770690918, 1.7762595415115356, -2.383378028869629, -2.045424222946167, -0.9808481335639954, 2.7819881439208984, -1.1634764671325684, -1.6215306520462036, -1.2168718576431274, -2.80134916305542, -3.029503345489502, -2.819157838821411, -2.1202502250671387, -1.8975133895874023, -2.366917133331299, -2.5516650676727295, -1.4806523323059082, -1.435504674911499, -1.5217608213424683, -1.9047131538391113, -1.4785221815109253, -1.4539152383804321, -1.306567907333374, -1.391014814376831, -1.3592268228530884, -1.532035231590271, -1.283663272857666, -1.3940602540969849, -1.3992893695831299, -1.423553705215454, -1.5037975311279297, -0.8926613926887512, -0.9525676965713501, -1.1239711046218872, -0.6273049116134644, -0.8618878722190857, -0.8085115551948547, -0.5689142346382141, -0.8319580554962158, -0.8602641224861145, -0.7267711162567139, -0.8367028832435608, -0.6722570657730103, -0.06398558616638184, -0.6949097514152527, -0.7947496175765991, -0.8108732104301453, -0.6094116568565369, -0.6834646463394165, -0.18662497401237488, -0.4377152919769287, -0.05450530722737312, 0.789487898349762, 1.3558756113052368, -0.8082835078239441, -0.8878145813941956, -0.6686668992042542, -1.0263078212738037, 0.2801620662212372, -0.422963947057724, 0.384494811296463, -0.5766454339027405, -0.6704477071762085, -0.8489841818809509, 0.4937117099761963, 0.08810242265462875, -0.49191591143608093, -1.1825255155563354, -1.4684760570526123, -1.356184720993042, -0.8141841292381287, -0.3850608766078949, -1.064042329788208, -1.9686410427093506, -1.8462729454040527, -2.441925048828125, -1.446154236793518, -1.3654451370239258, -1.475347638130188, -1.2900302410125732, -2.795851230621338, -2.0913033485412598, -0.8997092843055725, -0.07227753102779388, -2.5798871517181396, -1.8058234453201294, -0.6624166965484619, 0.023890217766165733, -4.020058631896973, -2.2059144973754883, -0.18558931350708008, -0.2521713078022003, 3.1621625423431396, 1.3985220193862915, -0.09007403999567032, -0.16138528287410736, 0.24604009091854095, 0.5129308700561523, 0.5637645721435547, 0.10085611045360565, 1.305787205696106, 1.8163641691207886, -2.4210641384124756, -2.391801595687866, -28.43486785888672, -23.484031677246094, -0.9793418645858765, -4.18854284286499, -2.1310503482818604, -2.870819568634033, -3.0719714164733887, -2.8416945934295654, -1.785984754562378, -1.8175822496414185, -2.3831961154937744, -2.4582366943359375, -1.5033769607543945, -1.3726886510849, -1.5788654088974, -1.9010940790176392, -1.3715871572494507, -1.3963435888290405, -1.542748212814331, -1.4265767335891724, -1.498540997505188, -1.44312584400177, -1.4168643951416016, -1.3526530265808105, -1.5110632181167603, -1.4531513452529907, -1.4370427131652832, -0.755885899066925, -1.1705522537231445, -1.0521912574768066, -0.5583027601242065, -0.7097495794296265, -0.7271955609321594, -0.5963847637176514, -0.8199965953826904, -0.9824211597442627, -0.7588356137275696, -0.8616625666618347, -0.8250113129615784, -0.01304912194609642, -0.6456601023674011, -0.7116826772689819, -0.7044937610626221, -0.5820220708847046, -0.5252363681793213, -0.11877278983592987, -0.40739378333091736, 0.08936440199613571, -0.4846968352794647, 1.4016880989074707, -0.8306226134300232, -0.8886826038360596, -0.785695493221283, -0.9155530333518982, 0.06494328379631042, -0.40058434009552, 0.19867633283138275, -0.4699579179286957, -0.7626007795333862, -1.004346251487732, 0.4306110143661499, 0.2243686318397522, -0.6151213049888611, -1.2966523170471191, -1.3448292016983032, -1.3667707443237305, -1.0932161808013916, -0.2092115581035614, -2.1191136837005615, -1.7377432584762573, -1.9527406692504883, -2.3827550411224365, -1.39419686794281, -0.8450744152069092, -1.434301733970642, -1.4196327924728394, -2.9662694931030273, -2.2719085216522217, -0.9973747134208679, -0.10633020102977753, -2.559225082397461, -1.7566699981689453, -0.7702963352203369, 0.009006070904433727, -3.9826912879943848, -2.4611897468566895, -0.40986642241477966, -0.39345476031303406, -2.505054235458374, -1.5627460479736328, 0.20679648220539093, 0.21784821152687073, -0.392333060503006, -0.5391677021980286, -0.5631539821624756, -0.11808450520038605, -2.0265042781829834, -1.8561762571334839, 2.326373815536499, 2.1077661514282227, 0.8973670601844788, -2.8357458114624023, 0.18519389629364014, 1.6604644060134888, 1.2396122217178345, 1.7915445566177368, 2.2420578002929688, 2.1091504096984863, 1.8518445491790771, 1.7843892574310303, 2.500272274017334, 2.4845471382141113, 1.415296196937561, 1.437915325164795, 1.563604712486267, 1.9767711162567139, 1.4405521154403687, 1.5654958486557007, 1.4094858169555664, 1.5619754791259766, 1.346497893333435, 1.4208425283432007, 1.3556067943572998, 1.3054238557815552, 1.4682717323303223, 1.3980369567871094, 1.3724548816680908, 0.9466394186019897, 0.8472837209701538, 1.1444425582885742, 0.48658162355422974, 0.6729785203933716, 0.775073230266571, 0.38670814037323, 0.6818282604217529, 0.8494165539741516, 0.7629603147506714, 0.6344732642173767, 0.7261439561843872, 0.10614152252674103, 0.636592447757721, 0.7263050079345703, 0.7870194315910339, 0.48588988184928894, 0.6175801753997803, 0.04768501967191696, 0.38610199093818665, -0.18572714924812317, -0.920181155204773, -1.304421305656433, 0.8753919005393982, 0.747620165348053, 0.8673272728919983, 0.9083234667778015, -0.25196096301078796, 0.4322338104248047, -0.2709597647190094, 0.47382813692092896, 0.7335174083709717, 0.8570857644081116, -0.5762098431587219, -0.117202028632164, 0.5681395530700684, 1.3236256837844849, 1.4113497734069824, 0.8510667681694031, 0.798176109790802, 0.41843101382255554, 2.0457067489624023, 1.8958936929702759, 1.9216493368148804, 2.364807367324829, 1.752082347869873, 1.1599316596984863, 1.2741354703903198, 1.3849525451660156, 2.8652143478393555, 2.095937728881836, 0.9269382953643799, 0.01417516265064478, 2.731696844100952, 1.8187381029129028, 0.7211563587188721, -0.00786273367702961, 4.172025203704834, 2.287806272506714, 0.1911832094192505, 0.2606365382671356, 0.43680086731910706, -0.1364956498146057, 1.7345826625823975, -0.24970099329948425, 1.3585660457611084, 2.0351836681365967, -2.3376505374908447]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_Pd', 'etBin': (30, 40), 'etaBin': (0, 0.8)}}, 'et0_eta1': {'discriminator': {'threshold': -0.25000081881880759, 'nodes': [100, 5, 1], 'bias': [-0.00734415277838707, -0.04007263109087944, 0.01721646450459957, 0.020719019696116447, 0.046631548553705215, -0.18706800043582916], 'weights': [1.7377108335494995, 1.6247806549072266, -0.6348843574523926, -0.967391848564148, -0.6266287565231323, -0.12843042612075806, -0.24559998512268066, 0.6452810764312744, 1.7221064567565918, 4.701451301574707, 1.5039163827896118, -1.7288532257080078, -3.80412220954895, -4.534799575805664, -11.179051399230957, -6.4496870040893555, -8.357569694519043, -6.8953094482421875, -7.319294452667236, -5.33613920211792, -4.331879138946533, -5.6166863441467285, -4.2194905281066895, -2.046111583709717, -2.654541015625, -3.0550479888916016, -2.8370306491851807, -2.8363215923309326, -1.7923264503479004, -1.9503059387207031, -2.1109097003936768, -1.5169703960418701, -3.1434714794158936, -1.9001425504684448, -1.9343191385269165, -1.5400060415267944, -0.9514163732528687, -1.007479190826416, -0.7397158741950989, -1.6267057657241821, -1.0203564167022705, 1.0543880462646484, 0.6386894583702087, -1.2183719873428345, -0.6848020553588867, -0.7528361082077026, -0.6116979122161865, -0.4854795038700104, 2.340702533721924, -0.8718724250793457, -0.9812522530555725, -0.6533620953559875, -0.8048100471496582, -1.6046602725982666, -1.7465568780899048, -0.6194329261779785, -1.1124358177185059, -0.20086267590522766, -0.4949987530708313, -1.9724587202072144, -0.8920513391494751, -0.9077373743057251, -0.7814194560050964, -0.15274149179458618, 2.1128220558166504, -2.2169740200042725, -0.8975223898887634, 0.5442677140235901, -0.5187479257583618, -0.8365760445594788, -0.6088159084320068, -1.0121889114379883, 0.3801363706588745, 0.10336347669363022, -0.5735204815864563, -1.1391230821609497, -1.2338380813598633, -1.2934484481811523, -0.7137042880058289, -0.41635215282440186, -7.322882652282715, -5.276535987854004, -2.771449565887451, -2.0942189693450928, -1.6656136512756348, -1.0785226821899414, -1.6305023431777954, -1.6055757999420166, -1.3450241088867188, -0.5596164464950562, -0.11945312470197678, 0.35502442717552185, -0.8384147882461548, -1.2007514238357544, -0.4678857624530792, 0.039978619664907455, 1.0076828002929688, -0.952568531036377, -1.2570031881332397, -0.23503649234771729, -1.6402820348739624, -1.5127460956573486, 0.4896644949913025, 0.9996862411499023, 0.6316338777542114, -0.05889454483985901, 0.31666478514671326, -0.5924645066261292, -1.5233347415924072, -4.635391712188721, -1.5924246311187744, 1.7247827053070068, 4.796441078186035, 4.448203086853027, 11.463770866394043, 6.490278244018555, 8.44174861907959, 7.014037132263184, 7.2010955810546875, 5.264009952545166, 4.238999366760254, 5.545492649078369, 4.161722660064697, 2.1480047702789307, 2.6515791416168213, 3.1205153465270996, 2.6546432971954346, 2.9718923568725586, 1.9094560146331787, 1.9614886045455933, 2.300384759902954, 1.7265303134918213, 3.0444772243499756, 1.9394394159317017, 1.9208742380142212, 1.4410552978515625, 1.0585501194000244, 1.0687505006790161, 0.6892903447151184, 1.677449345588684, 1.1359859704971313, -1.1883652210235596, -1.6451480388641357, 1.2536815404891968, 0.7193902730941772, 0.6834232211112976, 0.7398744821548462, 0.5992100238800049, -2.2864277362823486, 0.9311156868934631, 0.3724539875984192, 0.6097988486289978, 0.7879002690315247, 1.588571310043335, 1.5497242212295532, 0.603609561920166, 1.1750744581222534, -0.04816123843193054, 0.6257660388946533, 1.8887654542922974, 1.2753300666809082, 0.9734532237052917, 0.9355945587158203, 0.22402648627758026, -2.003486394882202, 2.329573631286621, 0.8748180270195007, -0.5829601883888245, 0.43745458126068115, 1.018608808517456, 0.6258258819580078, 1.0582246780395508, -0.5872433185577393, -0.039680421352386475, 0.7071413397789001, 1.2217668294906616, 1.2330670356750488, 1.3000836372375488, 0.6549936532974243, 0.46489715576171875, 7.133599281311035, 5.509708404541016, 2.7714719772338867, 2.1431872844696045, 1.6275341510772705, 1.1368684768676758, 1.6586905717849731, 1.6267948150634766, 1.5344808101654053, 0.72353595495224, 0.05223165079951286, -0.193617045879364, 0.811058521270752, 1.2553423643112183, 0.3935408890247345, -0.21197541058063507, -1.1687506437301636, 0.795699954032898, 1.3014763593673706, 0.559053361415863, 1.6971548795700073, 1.6421247720718384, -0.6125500202178955, -0.8785212635993958, -0.6199382543563843, 0.013110571540892124, -0.1995123028755188, 0.6310725808143616, 1.6666274070739746, 4.549563884735107, 1.6783168315887451, -1.602736234664917, -3.60491681098938, -4.563404560089111, -11.225308418273926, -6.517359733581543, -8.52653980255127, -6.908738136291504, -7.293144226074219, -5.438269138336182, -4.447637557983398, -5.533753395080566, -4.112213611602783, -2.0517115592956543, -2.710681915283203, -2.9905197620391846, -2.888941526412964, -2.897081136703491, -1.9851126670837402, -1.8915457725524902, -2.130089044570923, -1.4963324069976807, -3.0612261295318604, -1.890846610069275, -1.8185125589370728, -1.4449262619018555, -1.0545589923858643, -1.0982578992843628, -0.6701894402503967, -1.5313478708267212, -1.0022999048233032, 1.0443370342254639, 1.6642746925354004, -1.2045964002609253, -0.7295986413955688, -0.577769935131073, -0.7165750861167908, -0.44526585936546326, 2.248359203338623, -1.001162052154541, -0.14367026090621948, -0.6079222559928894, -0.845024824142456, -1.5592997074127197, -1.7005757093429565, -0.7219295501708984, -1.256527304649353, -0.21293357014656067, -0.4042748808860779, -2.055356740951538, -1.0993387699127197, -0.8300517797470093, -1.1209880113601685, -0.023806476965546608, 1.9458227157592773, -2.1635842323303223, -0.9274901151657104, 0.5281060338020325, -0.5499939918518066, -0.8031582832336426, -0.7835997343063354, -1.0382599830627441, 0.40964436531066895, 0.15005438029766083, -0.6369092464447021, -1.1605530977249146, -1.2648217678070068, -1.2078478336334229, -0.6887795329093933, -0.5347774028778076, -7.112590789794922, -5.313528060913086, -2.8382933139801025, -2.17812180519104, -1.6449476480484009, -1.1055173873901367, -1.562923789024353, -1.7412986755371094, -1.3868542909622192, -0.6552503705024719, -0.08430500328540802, 0.056784000247716904, -0.8490777015686035, -1.2237876653671265, -0.3313363194465637, 0.1151110976934433, 1.1172733306884766, -0.7849849462509155, -1.1281226873397827, -0.4740486741065979, 0.20113703608512878, 0.46706873178482056, 3.3443868160247803, 0.0019720655400305986, 0.13751398026943207, 0.11463986337184906, -0.054993316531181335, 0.0005939880502410233, 0.11016981303691864, 0.6726107597351074, 0.042212970554828644, -0.03931845352053642, -0.3522316515445709, -4.168498516082764, -1.773709774017334, -0.7661309242248535, 2.926222324371338, 15.713441848754883, 0.20957282185554504, -0.12710338830947876, -0.15954293310642242, -0.03282167389988899, -0.20720987021923065, 0.11721758544445038, 0.041065141558647156, -0.032421231269836426, -0.13650856912136078, -0.127809077501297, -0.07367092370986938, 0.06390083581209183, 0.058594707399606705, -0.10104340314865112, -0.10050068795681, 0.012421872466802597, 0.04457055777311325, -0.13037733733654022, 0.33397701382637024, -0.09054571390151978, -0.013086449354887009, 0.09852015972137451, 0.15304064750671387, 0.07057426124811172, -0.02443324215710163, -0.061001006513834, 0.13005077838897705, 0.10313422977924347, 0.091720350086689, 0.0019253441132605076, 0.19575555622577667, -0.08634136617183685, -0.07270817458629608, -0.08559800684452057, -0.10676305741071701, -0.12269830703735352, -0.13107672333717346, 0.12739445269107819, 0.03380059450864792, 0.1581369936466217, -0.03735366091132164, -0.14027100801467896, -0.0697922334074974, -0.062155693769454956, 0.1611591875553131, 0.03714694455265999, -0.009726821444928646, -0.10127469152212143, 0.05225877836346626, 0.03888211399316788, -0.005761187989264727, -0.08715536445379257, -0.01650351844727993, -0.12151829898357391, -0.11404469609260559, 0.26282382011413574, 0.24459707736968994, -0.058049142360687256, 0.04820716381072998, 0.07749176770448685, 0.11551076918840408, 0.043929558247327805, -0.2830004394054413, 3.160240888595581, -0.022538000717759132, -0.06248863413929939, -0.09175369888544083, 0.05565928295254707, -0.1255132406949997, -0.1596456915140152, 0.2763366401195526, 4.071994781494141, -0.05163346603512764, 0.07486403733491898, 0.21910560131072998, 0.008399086073040962, 0.12011364847421646, 0.24441072344779968, 0.465086966753006, 6.567686557769775, -0.01316999550908804, 0.28601378202438354, 1.7071956396102905, 1.5287998914718628, -0.687768280506134, -0.8502946496009827, -0.5942376255989075, -0.0449761301279068, -0.2746228277683258, 0.6345289349555969, 1.5856270790100098, 4.527773857116699, 1.6942353248596191, -1.653761625289917, -3.6029293537139893, -4.643495559692383, -11.113751411437988, -6.479907989501953, -8.507214546203613, -6.84465217590332, -7.141478538513184, -5.221799373626709, -4.4340386390686035, -3.9746246337890625, -3.389453649520874, -2.0051987171173096, -2.6005899906158447, -2.96285343170166, -2.7049834728240967, -2.9300992488861084, -2.0001440048217773, -2.0101425647735596, -2.2492759227752686, -1.501780390739441, -3.0788395404815674, -1.837992548942566, -1.7952581644058228, -1.4362595081329346, -1.0592143535614014, -1.1495295763015747, -0.6406679749488831, -1.6174167394638062, -1.0759459733963013, 1.0903568267822266, 1.5277600288391113, -1.2756751775741577, -0.7636460661888123, -0.6033079624176025, -0.5029428005218506, -0.46109431982040405, 2.2874879837036133, -0.8831217288970947, -0.18936757743358612, -0.5557740330696106, -0.8890725374221802, -1.5411829948425293, -1.6013349294662476, -0.5776059627532959, -1.2101696729660034, -0.1772131621837616, -0.5562077164649963, -2.024610996246338, -1.1759512424468994, -0.8539146184921265, -1.0952142477035522, -0.15724796056747437, 1.9753937721252441, -2.115135908126831, -1.0516853332519531, 0.5524421334266663, -0.5522418022155762, -0.898411750793457, -0.5980734825134277, -1.1147339344024658, 0.3609904646873474, 0.14524613320827484, -0.5372028350830078, -1.24443781375885, -1.2413482666015625, -1.141768455505371, -0.7879902124404907, -0.47159528732299805, -6.6832194328308105, -5.458854675292969, -2.722381114959717, -2.206742525100708, -1.5248979330062866, -1.1376259326934814, -1.6945186853408813, -1.5754711627960205, -1.3838223218917847, -0.6915212273597717, -0.13499073684215546, 0.19182723760604858, -0.9086313247680664, -1.2486023902893066, -0.3303142189979553, 0.08454875648021698, 1.1562718152999878, -0.9075783491134644, -1.134928584098816, -0.4533402621746063, 0.9840611219406128, -0.7687405347824097, 0.7144935131072998, 0.04092424735426903, 1.0375465154647827]}, 'datecode': '2016-10-18 17:03', 'configuration': {'benchmarkName': 'OperationPoint_L2Calo_SP', 'etBin': (0, 20), 'etaBin': (0.8, 1.37)}}} - return signatures diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerCutDefs.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerCutDefs.py deleted file mode 100755 index 4a07d4ed20231489b8fa3215575ea4f6942c7396..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerCutDefs.py +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration - - -class TrigL2CaloRingerCutDefs(): - - _signatureDict = { - 'signature' : ['e','g'], - } - _pidMap = { - 'tight': 'Tight', 'medium':'Medium', 'loose':'Loose', 'vloose':'VeryLoose', - 'lhtight': 'Tight', 'lhmedium': 'Medium', 'lhloose':'Loose', 'lhvloose': 'VeryLoose' - } - - def __init__(self, threshold, IDinfo, trigType): - self._chainPart = dict() - self.Nodes = list() - self.Weights = list() - self.Bias = list() - self.Thresholds = list() - self.EtBins = list() - self.EtaBins = list() - self.NormalisationRings = list() - self.SectionRings = list() - self.NRings = list() - - from AthenaCommon.Logging import logging - logging.getLogger().info("Importing %s",__name__) - logger = logging.getLogger("TrigMultiVarHypo.TrigL2CaloRingerCutDefs") - logger.info(('CutDefs for chain %s')%(trigType)) - - #local variable - discrs = None - - if not (trigType[0] in self._signatureDict['signature']): - raise RuntimeError('Bad signature') - - # Select the correct threshold. - if (float(threshold) < 15): - if self._signatureDict['signature'][0] in trigType: - # ElectronLowEnergyTightConf - # ElectronLowEnergyMediumConf - # ElectronLowEnergyLooseConf - # ElectronLowEnergyVeryLooseConf - key = ('ElectronLowEnergy%sConf')%(IDinfo) - else: - # PhotonLowEnergyTightConf - # PhotonLowEnergyMediumConf - # PhotonLowEnergyLooseConf - # PhotonLowEnergyVeryLooseConf - key = ('PhotonLowEnergy%sConf')%(IDinfo) - else: #(float(threshold) >= 20): - if self._signatureDict['signature'][0] in trigType: - # ElectronHighEnergyTightConf - # ElectronHighEnergyMediumConf - # ElectronHighEnergyLooseConf - # ElectronHighEnergyVeryLooseConf - key = ('ElectronHighEnergy%sConf')%(self._pidMap[IDinfo]) - else: - # PhotonHighEnergyTightConf - # PhotonHighEnergyMediumConf - # PhotonHighEnergyLooseConf - # PhotonHighEnergyVeryLooseConf - key = ('PhotonHighEnergy%sConf')%(self._pidMap[IDinfo]) - - - - try: - #inport all the discriminators - from TrigMultiVarHypo.TrigL2CaloRingerConstants import SignaturesMap - logger.info('discriminator: %s -> key: %s', trigType, key) - discrs = SignaturesMap()[key] - except: - logger.info(('INCORRECT key info: [%s] not configured.')%(key) ) - - - if discrs: - #This is a dep region hypothesis: row is Et bin and col is eta bin - from TrigMultiVarHypo.TrigRingerPreprocessorDefs import Norm1 - - ppList=list(); discrList=list() - for key_, o in discrs.iteritems(): - ppList.append( Norm1() ) - discrList.append( o ) - - logger.info('parser discrimiator with key: [%s]',key) - #prepare the parser to athena phase - self.__parser(discrList, ppList) - - - def __parser(self, discrList, ppList): - - for discr in discrList: - self.Nodes += discr['discriminator']['nodes'] - self.Thresholds.append( discr['discriminator']['threshold'] ) - self.Weights.append( discr['discriminator']['weights'] ) - self.Bias.append( discr['discriminator']['bias'] ) - self.EtBins.append( discr['configuration']['etBin'] ) - self.EtaBins.append( discr['configuration']['etaBin'] ) - - for pp in ppList: - #Prepoc configuration - self.NormalisationRings += pp.NormalisationRings - self.SectionRings += pp.SectionRings - self.NRings += pp.NRings - - - - - - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerFexMTInit.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerFexMTInit.py deleted file mode 100755 index 7cb18851af92a500c2f872c1c35a15047e0d2e19..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerFexMTInit.py +++ /dev/null @@ -1,58 +0,0 @@ -# -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -# - -from TrigMultiVarHypo.TrigL2CaloRingerCutDefs import TrigL2CaloRingerCutDefs -from TrigMultiVarHypo.TrigMultiVarHypoConf import TrigL2CaloRingerFexMT - -def init_ringer(): - - ringer = TrigL2CaloRingerFexMT() - - threshold = 15 - IDinfo = 'loose' - trigType = 'e' - theRingerConfig = TrigL2CaloRingerCutDefs(threshold,IDinfo,trigType) - - #Prepoc configuration - ringer.NRings = theRingerConfig.NRings - ringer.SectionRings = theRingerConfig.SectionRings - ringer.NormalisationRings = theRingerConfig.NormalisationRings - - #MultiLayerPerceptron configuration - ringer.Nodes = theRingerConfig.Nodes - ringer.Threshold = theRingerConfig.Thresholds - ringer.Bias = theRingerConfig.Bias - ringer.Weights = theRingerConfig.Weights - ringer.EtaBins = theRingerConfig.EtaBins - ringer.EtBins = theRingerConfig.EtBins - - ringer = add_monitoring(ringer) - - return ringer - -def add_monitoring(tool): - - - from TriggerJobOpts.TriggerFlags import TriggerFlags - - from AthenaMonitoring.GenericMonitoringTool import GenericMonitoringTool, defineHistogram - monTool = GenericMonitoringTool("RingerFexMon") - - monTool.Histograms = [ defineHistogram('Et', type='TH1F', path='EXPERT', title="E_{T}", xbins=50, xmin=0, xmax=50), - defineHistogram('Eta', type='TH1F', path='EXPERT', title="#eta", xbins=25, xmin=0, xmax=2.5), - defineHistogram('rnnOut', type='TH1F', path='EXPERT', title="NN output", xbins=80, xmin=-1, xmax=1), - defineHistogram('Eta,rnnOut', type='TH2F', path='EXPERT', title="NN output as function of #eta", xbins=15, xmin=0, xmax=2.5, ybins=80, ymin=-1, ymax=1), - defineHistogram('Et,rnnOut', type='TH2F', path='EXPERT', title="NN output as function of E_{T}", xbins=20, xmin=0, xmax=50, ybins=80, ymin=-1, ymax=1), - defineHistogram( "TIME_total", path='EXPERT', title="Total Time;time[ms]", xbins=50, xmin=0, xmax=100 ), - defineHistogram( "TIME_preprocess", path='EXPERT', title="Preprocessing Time;time[ms]", xbins=50, xmin=0, xmax=50 ), - defineHistogram( "TIME_decision", path='EXPERT', title="Decision Time;time[ms]", xbins=50, xmin=0, xmax=50 )] - tool.MonTool = monTool - - monTool.HistPath = 'TrigL2CaloRinger/'+tool.name() - tool.MonTool = monTool - tool += monTool - return tool - - - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoConfig.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoConfig.py index bf701bbe5622f84d472543a6649e1dec953b795e..35a350abe19125ec1ce6de0233037b33158b258e 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoConfig.py +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoConfig.py @@ -1,113 +1,16 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration # Authors: joao victor pinto <jodafons@cern.ch> + from TrigMultiVarHypo.TrigMultiVarHypoConf import TrigL2CaloRingerFex, TrigL2CaloRingerHypo from AthenaCommon.SystemOfUnits import GeV - - - -class TrigL2CaloRingerPidConfs: - - """ - This class will be responsible to build all calib - paths and point the hypo to the ATLAS calib area files. - This will be implemented here for now. To switch between - tuning, you just need add this in your job option - e.g: - from TriggerMenu.egamma.EgammaSliceFlags import EgammaSliceFlags - EgammaSliceFlags.ringerVersion = 'RingerSelectorTools/file_of_your_ringer_confs' - """ - - _signatureDict = { - 'signature' : ['e','g'], - } - - _pidMap = { - 'tight' : 'tight' , - 'medium' :'medium' , - 'loose' :'loose' , - 'vloose' :'vloose' , - 'lhtight' : 'tight' , - 'lhmedium': 'medium', - 'lhloose' :'loose' , - 'lhvloose': 'vloose' - } - - # The default path for ringer selectors. The standard cuts will be the ringer v6 tuning for now. - # Last modification in: 2017/02/21 - # MC15c tuning if pileup corrention using data 2016 (periods A to K) to fix all thresholds values - _default_basepath = 'RingerSelectorTools/TrigL2_20170221_v6' - - def __init__(self): - - from AthenaCommon.Logging import logging - self._logger = logging.getLogger("TrigMultiVarHypo.TrigL2CaloRingerPidConfs") - - #TODO: Use this to configurate the calib path from triggerMenu flags - from TriggerMenu.egamma.EgammaSliceFlags import EgammaSliceFlags - if EgammaSliceFlags.ringerVersion(): - self._basePath = EgammaSliceFlags.ringerVersion() - self._logger.info('TrigMultiVarHypo version: %s',self._basePath) - else: - self._basePath = self._default_basepath - self._logger.info('TrigMultiVarHypo version: %s (default)',self._basePath) - - # Electron files - self._electronConstants = { - 'vloose' : 'TrigL2CaloRingerElectronVeryLooseConstants.root', - 'loose' : 'TrigL2CaloRingerElectronLooseConstants.root', - 'medium' : 'TrigL2CaloRingerElectronMediumConstants.root', - 'tight' : 'TrigL2CaloRingerElectronTightConstants.root', - } - self._electronCutDefs = { - 'vloose' : 'TrigL2CaloRingerElectronVeryLooseThresholds.root', - 'loose' : 'TrigL2CaloRingerElectronLooseThresholds.root', - 'medium' : 'TrigL2CaloRingerElectronMediumThresholds.root', - 'tight' : 'TrigL2CaloRingerElectronTightThresholds.root', - } - - #TODO: photon paths for future - self._photonConstants = { - 'vloose' : 'TrigL2CaloRingerPhotonVeryLooseConstants.root', - 'loose' : 'TrigL2CaloRingerPhotonLooseConstants.root', - 'medium' : 'TrigL2CaloRingerPhotonMediumConstants.root', - 'tight' : 'TrigL2CaloRingerPhotonTightConstants.root', - } - self._photonCutDefs = { - 'vloose' : 'TrigL2CaloRingerPhotonVeryLooseThresholds.root', - 'loose' : 'TrigL2CaloRingerPhotonLooseThresholds.root', - 'medium' : 'TrigL2CaloRingerPhotonMediumThresholds.root', - 'tight' : 'TrigL2CaloRingerPhotonTightThresholds.root', - } - - - def get_constants_path(self, trigType, IDinfo): - if not (trigType[0] in self._signatureDict['signature']): - raise RuntimeError('Bad signature') - # is Electron - if self._signatureDict['signature'][0] in trigType: - return self._basePath + '/' +self._electronConstants[self._pidMap[IDinfo]] - else: #is Photon - #TODO: this will be uncoment when we have photon tuning - #return self._basePath + '/' +self._photonConstants[self._pidMap[IDinfo]] - return str() - - def get_cutDefs_path(self, trigType, IDinfo): - if not (trigType[0] in self._signatureDict['signature']): - raise RuntimeError('Bad signature') - # is Electron - if self._signatureDict['signature'][0] in trigType: - return self._basePath + '/' +self._electronCutDefs[self._pidMap[IDinfo]] - else: #is Photon - #TODO: this will be uncoment when we have photon tuning - #return self._basePath + '/' +self._photonCutDefs[self._pidMap[IDinfo]] - return str() - -# Instance object here! -# For future use this object to call all paths -theRingerConfig = TrigL2CaloRingerPidConfs() - +from TrigMultiVarHypo.TrigL2CaloRingerHypoTool import _GetPath +from TrigMultiVarHypo.TrigL2CaloRingerHypoMonitoring import TrigL2CaloRingerHypoValidationMonitoring, \ + TrigL2CaloRingerHypoOnlineMonitoring,\ + TrigL2CaloRingerHypoTimeMonitoring,\ + TrigL2CaloRingerFexTimeMonitoring + # Call all Trigger Ringer Fast configurations here! class TrigL2CaloRingerFexBase( TrigL2CaloRingerFex ): @@ -117,21 +20,15 @@ class TrigL2CaloRingerFexBase( TrigL2CaloRingerFex ): self.HltFeature = "TrigRingerNeuralFex" self.Feature = "TrigT2CaloEgamma" - from TrigMultiVarHypo.TrigL2CaloRingerHypoMonitoring import TrigL2CaloRingerHypoValidationMonitoring, \ - TrigL2CaloRingerHypoOnlineMonitoring,\ - TrigL2CaloRingerHypoTimeMonitoring - validation = TrigL2CaloRingerHypoValidationMonitoring() - online = TrigL2CaloRingerHypoOnlineMonitoring() - time = TrigL2CaloRingerHypoTimeMonitoring() - self.AthenaMonTools = [ time, validation, online ] - self.doTiming = True - -''' - The multi layer perceptron and preprocessing step is called by - Fex because we store the output network. So to complete the trigger - chain you must uses the Fex and Hypo together. -''' + #time = TrigL2CaloRingerFexTimeMonitoring() + #self.AthenaMonTools = [ time ] + #self.doTiming = True + + +# The multi layer perceptron and preprocessing step is called by +# Fex because we store the output network. So to complete the trigger +# chain you must uses the Fex and Hypo together. class TrigL2CaloRingerFex( TrigL2CaloRingerFexBase ): __slots__ = [] def __init__(self, name, threshold, IDinfo, trigType): @@ -140,16 +37,10 @@ class TrigL2CaloRingerFex( TrigL2CaloRingerFexBase ): from AthenaCommon.AppMgr import ToolSvc from LumiBlockComps.LuminosityToolDefault import LuminosityToolOnline ToolSvc += LuminosityToolOnline() + pconstants,pthresholds=_GetPath(trigType,IDinfo) #if this is empty, the fex will work like EtCut - self.CalibPath = theRingerConfig.get_constants_path(trigType, IDinfo) + self.CalibPath =pconstants - # The standard preproc to normalize the rings - from TrigMultiVarHypo.TrigRingerPreprocessorDefs import Norm1 - preproc = Norm1() - - self.SectionRings = preproc.SectionRings - self.NormalisationRings = preproc.NormalisationRings - self.NRings = preproc.NRings @@ -160,17 +51,16 @@ class TrigL2CaloRingerFex_Empty( TrigL2CaloRingerFexBase ): -''' - Hypothesis group for electron trigger, NoCut step (bypass) and - photons chains for future. Because the neural output store, - you must put the Fex and Hypo together in the same sequence - list. For example: - L2SequenceList = [theT2CaloEgamma_Ringer, - theTrigL2CaloRingerFex, theTrigL2CaloRingerHypo] +# Hypothesis group for electron trigger, NoCut step (bypass) and +# photons chains for future. Because the neural output store, +# you must put the Fex and Hypo together in the same sequence +# list. For example: +# L2SequenceList = [theT2CaloEgamma_Ringer, +# theTrigL2CaloRingerFex, theTrigL2CaloRingerHypo] +# +# the same configuration must be passed to fex and hypo when +# you create the objects. - the same configuration must be passed to fex and hypo when - you create the objects. -''' class TrigL2CaloRingerHypo_e_ID(TrigL2CaloRingerHypo): __slots__ = [] @@ -180,7 +70,13 @@ class TrigL2CaloRingerHypo_e_ID(TrigL2CaloRingerHypo): self.HltFeature = 'TrigRingerNeuralFex' self.AcceptAll = False self.EmEtCut = (float(threshold) - 3)*GeV - self.CalibPath = theRingerConfig.get_cutDefs_path(trigType, IDinfo) + pconstants,pthresholds=_GetPath(trigType,IDinfo) + self.CalibPath = pthresholds + #validation = TrigL2CaloRingerHypoValidationMonitoring() + #online = TrigL2CaloRingerHypoOnlineMonitoring() + #time = TrigL2CaloRingerHypoTimeMonitoring() + #self.AthenaMonTools = [ time, validation, online ] + #self.doTiming = True @@ -193,7 +89,14 @@ class TrigL2CaloRingerHypo_g_ID(TrigL2CaloRingerHypo): self.HltFeature = 'TrigRingerNeuralFex' self.AcceptAll = False self.EmEtCut = (float(threshold) - 3)*GeV - self.CalibPath = theRingerConfig.get_cutDefs_path(trigType, IDinfo) + pconstants,pthresholds=_GetPath(trigType,IDinfo) + self.CalibPath = pthresholds + #validation = TrigL2CaloRingerHypoValidationMonitoring() + #online = TrigL2CaloRingerHypoOnlineMonitoring() + #time = TrigL2CaloRingerHypoTimeMonitoring() + #self.AthenaMonTools = [ time, validation, online ] + #self.doTiming = True + class TrigL2CaloRingerHypo_NoCut(TrigL2CaloRingerHypo): @@ -203,6 +106,12 @@ class TrigL2CaloRingerHypo_NoCut(TrigL2CaloRingerHypo): super( TrigL2CaloRingerHypo_NoCut, self ).__init__( name ) self.HltFeature = 'TrigRingerNeuralFex' self.AcceptAll = True + #validation = TrigL2CaloRingerHypoValidationMonitoring() + #online = TrigL2CaloRingerHypoOnlineMonitoring() + #time = TrigL2CaloRingerHypoTimeMonitoring() + #self.AthenaMonTools = [ time, validation, online ] + #self.doTiming = True + class TrigL2CaloRingerHypo_EtCut(TrigL2CaloRingerHypo): __slots__ = [] @@ -212,6 +121,12 @@ class TrigL2CaloRingerHypo_EtCut(TrigL2CaloRingerHypo): self.HltFeature = 'TrigRingerNeuralFex' self.AcceptAll = False self.EmEtCut = (float(threshold) - 3)*GeV + #validation = TrigL2CaloRingerHypoValidationMonitoring() + #online = TrigL2CaloRingerHypoOnlineMonitoring() + #time = TrigL2CaloRingerHypoTimeMonitoring() + #self.AthenaMonTools = [ time, validation, online ] + #self.doTiming = True + @@ -254,4 +169,3 @@ def TrigL2CaloRingerFexHypo_g_EtCut(threshold): - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoMonitoring.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoMonitoring.py index 0e978485526bd9aebe2582fbb7774c251c363e22..1e1f33299df73c26c9afd667e7fcbab2207691c6 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoMonitoring.py +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoMonitoring.py @@ -1,5 +1,5 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration from TrigMonitorBase.TrigGenericMonitoringToolConfig import defineHistogram, TrigGenericMonitoringToolConfig class TrigL2CaloRingerHypoValidationMonitoring(TrigGenericMonitoringToolConfig): @@ -26,7 +26,7 @@ class TrigL2CaloRingerHypoTimeMonitoring(TrigGenericMonitoringToolConfig): def __init__(self, name = "TrigL2CaloRingerHypoTimeMonitoring"): super(TrigL2CaloRingerHypoTimeMonitoring,self).__init__(name) self.defineTarget("Time") - self.Histograms = [defineHistogram('TotalTime', + self.Histograms = [defineHistogram('Total', type='TH1F',title='TotalTime' ,xbins=220,xmin=0.0,xmax=0.2)] @@ -34,17 +34,25 @@ class TrigL2CaloRingerFexTimeMonitoring(TrigGenericMonitoringToolConfig): __slots__ = [] def __init__(self, name = "TrigL2CaloRingerFexTimeMonitoring"): + super(TrigL2CaloRingerFexTimeMonitoring,self).__init__(name) self.defineTarget("Time") - self.Histograms = [defineHistogram('TotalTime', - type='TH1F',title='TotalTime' - ,xbins=220,xmin=0.0,xmax=0.2)] - self.Histograms += [defineHistogram('Decision', + self.Histograms = [defineHistogram('Total', type='TH1F',title='Decision' - ,xbins=220,xmin=0.0,xmax=0.2)] + ,xbins=50,xmin=0.0,xmax=5.0)] + self.Histograms = [defineHistogram('Decision', + type='TH1F',title='Decision' + ,xbins=50,xmin=0.0,xmax=5.0)] self.Histograms += [defineHistogram('Normalization', type='TH1F',title='Normalization' - ,xbins=220,xmin=0.0,xmax=0.2)] + ,xbins=50,xmin=0.0,xmax=0.3)] + self.Histograms += [defineHistogram('Propagation', + type='TH1F',title='Propagation' + ,xbins=50,xmin=0.0,xmax=0.3)] self.Histograms += [defineHistogram('StoreOutput', type='TH1F',title='StoreOutput' - ,xbins=220,xmin=0.0,xmax=0.2)] + ,xbins=50,xmin=0.0,xmax=5.0)] + + + + diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoTool.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoTool.py new file mode 100644 index 0000000000000000000000000000000000000000..367e58ace837e73aaa89f112314c3093d43c350b --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigL2CaloRingerHypoTool.py @@ -0,0 +1,143 @@ +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration +import re + +_pattern = "(?P<mult>\d*)(e(?P<threshold1>\d+))(e(?P<threshold2>\d+))*" +_cpattern = re.compile( _pattern ) +_possibleSel = { 'tight':'Tight', 'medium':'Medium', 'loose':'Loose', 'vloose':'VeryLoose', + 'lhtight':'Tight', 'lhmedium':'Medium', 'lhloose':'Loose', 'lhvloose':'VeryLoose'} + +from AthenaCommon.SystemOfUnits import GeV + + + + + +def _GetPath( cand, sel, basepath = 'RingerSelectorTools/TrigL2_20170221_v6' ): + + from AthenaCommon.Logging import logging + logger = logging.getLogger("TrigMultiVarHypo.GetPath") + from TriggerMenu.egamma.EgammaSliceFlags import EgammaSliceFlags + if EgammaSliceFlags.ringerVersion(): + basepath = EgammaSliceFlags.ringerVersion() + logger.info('TrigMultiVarHypo version: %s', basepath) + if not sel in _possibleSel.keys(): + raise RuntimeError( "Bad selection name: %s" % sel ) + if 'e' in cand: + constant = basepath+'/'+ 'TrigL2CaloRingerElectron{SEL}Constants.root'.format(SEL=_possibleSel[sel]) + threshold = basepath+'/'+ 'TrigL2CaloRingerElectron{SEL}Thresholds.root'.format(SEL=_possibleSel[sel]) + elif 'g' in cand: + constant = basepath+'/'+ 'TrigL2CaloRingerPhoton{SEL}Constants.root'.format(SEL=_possibleSel[sel]) + threshold = basepath+'/'+ 'TrigL2CaloRingerPhoton{SEL}Thresholds.root'.format(SEL=_possibleSel[sel]) + else: + raise RuntimeError( "Bad signature %s" % cand ) + return constant, threshold + + + + + + + + + + +def _HypoTool(name, cand, threshold, sel): + + from TrigMultiVarHypo.TrigMultiVarHypoConf import TrigL2CaloRingerHypoToolMT + tool = TrigL2CaloRingerHypoToolMT( name ) + tool.AcceptAll = False + tool.MonTool = "" + tool.EtCut = (float(threshold)-3.)*GeV + + from TriggerJobOpts.TriggerFlags import TriggerFlags + if 'Validation' in TriggerFlags.enableMonitoring() or 'Online' in TriggerFlags.enableMonitoring(): + + from AthenaMonitoring.GenericMonitoringTool import GenericMonitoringTool,defineHistogram + monTool = GenericMonitoringTool('MonTool'+name) + monTool.Histograms = [ + defineHistogram( "TIME_total", path='EXPERT',title="Total Time;time[ms]",xbins=50, xmin=0,xmax=5,type='TH1F'), + defineHistogram( "TIME_preproc", path='EXPERT',title="Total Time;time[ms]",xbins=50, xmin=0,xmax=5,type='TH1F'), + defineHistogram( "TIME_propagate",path='EXPERT', title="Total Time;time[ms]",xbins=50, xmin=0,xmax=5,type='TH1F'), + defineHistogram('Eta', type='TH1F', path='EXPERT',title="#eta of Clusters; #eta; number of RoIs", xbins=50,xmin=-2.5,xmax=2.5), + defineHistogram('Phi',type='TH1F', path='EXPERT',title="#phi of Clusters; #phi; number of RoIs", xbins=64,xmin=-3.2,xmax=3.2), + defineHistogram('Et',type='TH1F', path='EXPERT',title="E_{T} of Clusters; E_{T} [MeV]; number of RoIs", xbins=60,xmin=0,xmax=5e4), + defineHistogram('RnnOut',type='TH1F', path='EXPERT',title="E_{T} of Clusters; E_{T} [MeV]; number of RoIs", xbins=100,xmin=-10,xmax=10), + ] + + monTool.HistPath='L2CaloHypo_Ringer/'+monTool.name() + tool.MonTool=monTool + + + + + if sel == 'nocut': + tool.AcceptAll = True + elif sel == "etcut": + tool.EtCut = (float(threshold)-3.)*GeV + elif sel in _possibleSel.keys(): # real selection + pconstants, pthresholds = _GetPath( cand, sel ) + tool.ConstantsCalibPath = pconstants + tool.ThresholdsCalibPath = pthresholds + + return tool + + +def _AlgTool(name): + from TrigMultiVarHypo.TrigMultiVarHypoConf import TrigL2CaloRingerHypoAlgMT + return TrigL2CaloRingerHypoAlgMT( name ) + + +def decodeThreshold( threshold ): + """ decodes the thresholds of the form e10, 2e10, e10e15, ... """ + print "TrigL2CaloHypoToolFromName: decoding threshold ", threshold + if threshold[0].isdigit(): # is if the from NeX, return as list [X,X,X...N times...] + assert threshold[1] == 'e', "Two digit multiplicity not supported" + return [ threshold[2:] ] * int( threshold[0] ) + if threshold.count('e') > 1: # is of the form eXeYeZ, return as [X, Y, Z] + return threshold.strip('e').split('e') + if threshold.count('g') > 1: # us of the form gXgYgZ, return as [X, Y, Z] + return threshold.strip('g').split('g') + # inclusive, return as 1 element list + return [ threshold[1:] ] , threshold[0] + + + + + +def createRingerDecisions( name, chains, ClustersKey="CaloClusters",RingerKey="CaloRings" ): + + # set the name of the HypoTool (name=chain) and figure out the threshold and selection from conf """ + from AthenaCommon.Constants import INFO + tool = _AlgTool(name) + from AthenaCommon.AppMgr import ToolSvc + from LumiBlockComps.LuminosityToolDefault import LuminosityToolOnline + ToolSvc+=LuminosityToolOnline() + + if not type(chains) is list: + chains=[chains] + + hypotools = [] + for c in chains: + #print "Configuring ", name + bname = c.split('_') + threshold = bname[1] + sel = bname[2] + dt, cand = decodeThreshold( threshold ) + hypotools.append(_HypoTool( c, cand, dt[0], sel )) + + for t in tool.HypoTools: + t.OutputLevel=INFO + + tool.HypoTools = hypotools + tool.ClustersKey = ClustersKey + tool.RingerKey = RingerKey + return tool + + + + + + + + + diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigRingerPreprocessorDefs.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigRingerPreprocessorDefs.py deleted file mode 100644 index cbc72921384d38b1073251d41b9a9fe22783f7a4..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/TrigRingerPreprocessorDefs.py +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration - -class Norm1(object): - - def __init__(self): - from TrigT2CaloEgamma.RingerConstants import Section, Normalisation - - # this part config the TrigRingerPrepoc - self.NormalisationRings = [Normalisation.EVENT, - Normalisation.EVENT, - Normalisation.EVENT, - Normalisation.EVENT, - Normalisation.EVENT, - Normalisation.EVENT, - Normalisation.EVENT]; - - self.SectionRings = [Section.EM, - Section.EM, - Section.EM, - Section.EM, - Section.HAD, - Section.HAD, - Section.HAD]; - - # Only change this if you know what you are doing - # default configuration from RingerFex - self.NRings = [8, 64, 8, 8, 4, 4, 4] - - - -class Sequential(object): - - def __init__(self): - from TrigT2CaloEgamma.RingerConstants import Section, Normalisation - - # this part config the TrigRingerPrepoc - self.NormalisationRings = [Normalisation.SEQUENTIAL, - Normalisation.SEQUENTIAL, - Normalisation.SEQUENTIAL, - Normalisation.SEQUENTIAL, - Normalisation.SEQUENTIAL, - Normalisation.SEQUENTIAL, - Normalisation.SEQUENTIAL]; - - self.SectionRings = [Section.EM, - Section.EM, - Section.EM, - Section.EM, - Section.HAD, - Section.HAD, - Section.HAD]; - - # Only change this if you know what you are doing - # default configuration from RingerFex - self.NRings = [8, 64, 8, 8, 4, 4, 4] - - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/__init__.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/__init__.py index d1d85aba34150f46cb1be65cd69d6b974d0dca86..e71879d76577329c549174a81e9d83a7ec811022 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/python/__init__.py +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/python/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration # File: TrigMultiVarHypo/__init__.py diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/share/convert2version1.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/share/convert2version1.py index 97b85ea61d32c2965b3e18b7590dff34351cabc7..bed34abbc6694fdafd488b1862b2fba605ad4653 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/share/convert2version1.py +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/share/convert2version1.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration from RingerCore import Logger, LoggingLevel, retrieve_kw, checkForUnusedVars diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/share/switch_tuning.py b/Trigger/TrigHypothesis/TrigMultiVarHypo/share/switch_tuning.py index 5c041ac43f8304c5db77bd69143689c1b0f29837..ee36d04b0a8a2085cd63d246ebec697879225c67 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/share/switch_tuning.py +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/share/switch_tuning.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration import argparse mainParser = argparse.ArgumentParser() diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFex.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFex.cxx index ead3fd197d4ec64d79b2a881a3518087b25414f4..373d8fec9e93d8565647c77df53c1bbcee642589 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFex.cxx +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFex.cxx @@ -4,42 +4,34 @@ ///Local include(s) #include "TrigMultiVarHypo/TrigL2CaloRingerFex.h" -#include "TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h" -#include "TrigMultiVarHypo/tools/MultiLayerPerceptron.h" - -///xAOD include(s) #include "xAODTrigCalo/TrigEMCluster.h" #include "xAODTrigRinger/TrigRNNOutput.h" #include "xAODTrigRinger/TrigRNNOutputContainer.h" #include "xAODTrigRinger/TrigRingerRings.h" #include "xAODTrigRinger/TrigRingerRingsContainer.h" +#include "TrigMultiVarHypo/tools/procedures/IModel.h" +#include "TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h" +#include "TrigMultiVarHypo/tools/procedures/Norm1.h" + + ///std include(s) #include <new> #include <cmath> - -#define SIZEOF_NODES 3 -#define SIZEOF_RINGSETS 7 - #include <iostream> using namespace std; //!=============================================================================================== TrigL2CaloRingerFex::TrigL2CaloRingerFex(const std::string& name, ISvcLocator* pSvcLocator): - HLT::FexAlgo(name, pSvcLocator), m_lumiBlockMuTool("LumiBlockMuTool/LumiBlockMuTool"), + HLT::FexAlgo(name, pSvcLocator), + m_lumiBlockMuTool("LumiBlockMuTool/LumiBlockMuTool"), m_reader("TrigL2CaloRingerReader") { declareProperty("HltFeature" , m_hlt_feature = "TrigRingerNeuralFex" ); declareProperty("Feature" , m_feature = "TrigT2CaloEgamma" ); - declareProperty("NormalisationRings", m_normRings ); - declareProperty("SectionRings" , m_sectionRings ); - declareProperty("NRings" , m_nRings ); declareProperty("CalibPath" , m_calibPath = "" ); declareProperty("LuminosityTool" , m_lumiBlockMuTool, "Luminosity Tool" ); - declareMonitoredVariable("NeuralNetworkOutput", m_output ); - m_useLumiVar=false; - m_useEtaVar=false; m_key = ""; } @@ -49,77 +41,44 @@ HLT::ErrorCode TrigL2CaloRingerFex::hltInitialize() // Retrieve the NeuralNetwork list if(!m_calibPath.empty()){ if(!m_reader.retrieve(m_calibPath, m_discriminators)){ - msg() << MSG::ERROR << "Can not retrieve all information from " << m_calibPath << endmsg; + ATH_MSG_ERROR("Can not retrieve all information from " << m_calibPath); return HLT::BAD_JOB_SETUP; } - m_useLumiVar = m_reader.useLumiVar(); - m_useEtaVar = m_reader.useEtaVar(); - } - - if(m_nRings.size() != m_normRings.size()){ - msg() << MSG::ERROR << "Preproc nRings list dont match with the number of discriminators found" << endmsg; - return HLT::BAD_JOB_SETUP; - } - - if(m_sectionRings.size() != m_normRings.size()){ - msg() << MSG::ERROR << "Preproc section rings list dont match with the number of discriminators found" << endmsg; - return HLT::BAD_JOB_SETUP; } - ///TODO: This is default for now, apply this into the conf file for future - ///Initialize all discriminators - for(unsigned i=0; i<m_discriminators.size(); ++i) - { - TrigRingerPreprocessor *preproc; - try{ - preproc = new TrigRingerPreprocessor(m_nRings,m_normRings,m_sectionRings); - }catch(const std::bad_alloc& xa){ - msg() << MSG::ERROR << "Bad alloc for TrigRingerPrepoc." << endmsg; - return HLT::BAD_JOB_SETUP; - } - ///Hold the pointer configuration - m_preproc.push_back(preproc); - }///Loop over discriminators - - ///Monitoring hitograms if(doTiming()){ + m_totalTimer = addTimer("Total"); m_normTimer = addTimer("Normalization"); - m_decisionTimer = addTimer("Decision"); + m_propagateTimer= addTimer("Propagation"); m_storeTimer = addTimer("StoreOutput"); }///Only if time is set on python config m_useLumiTool=false; if (m_lumiBlockMuTool.retrieve().isFailure()) { - msg() << MSG::WARNING << "Unable to retrieve Luminosity Tool" << endmsg; + ATH_MSG_WARNING("Unable to retrieve Luminosity Tool"); } else { m_useLumiTool=true; // Tell to the execute that the LumiTool is available... - msg() << MSG::INFO << "Successfully retrieved Luminosity Tool" << endmsg; + ATH_MSG_INFO("Successfully retrieved Luminosity Tool"); } - - msg() << MSG::INFO << "Using the Luminosity tool? " << (m_useLumiTool ? "Yes":"No") << endmsg; - msg() << MSG::INFO << "Using lumiVar? " << (m_useLumiVar ? "Yes":"No") << endmsg; - msg() << MSG::INFO << "Using etaVar? " << (m_useEtaVar ? "Yes":"No") << endmsg; - - msg() << MSG::INFO << "TrigL2CaloRingerHypo initialization completed successfully." << endmsg; - msg() << MSG::INFO << "TrigL2CaloRingerHypo initialization completed successfully." << endmsg; + + // NOTE: Norm1 standard normalization used for Run2 (only for ringer shape) + m_preproc.push_back( std::make_shared<Ringer::Norm1>(-999.,999.,-999,999,-999,999.,true) ); + + ATH_MSG_INFO("Using the Luminosity tool? " << (m_useLumiTool ? "Yes":"No") ); + ATH_MSG_INFO( "TrigL2CaloRingerHypo initialization completed successfully." ); return HLT::OK; } //!=============================================================================================== HLT::ErrorCode TrigL2CaloRingerFex::hltFinalize() { - ///release memory - for(unsigned i=0; i<m_discriminators.size();++i){ - if(m_preproc.at(i)) delete m_preproc.at(i); - if(m_discriminators.at(i)) delete m_discriminators.at(i); - }///Loop over all discriminators and prepoc objects - msg() << MSG::INFO << "TrigL2CaloRingerHypo finalization completed successfully." << endmsg; - + ATH_MSG_INFO( "TrigL2CaloRingerHypo finalization completed successfully." ); return HLT::OK; } //!=============================================================================================== HLT::ErrorCode TrigL2CaloRingerFex::hltExecute(const HLT::TriggerElement* /*inputTE*/, HLT::TriggerElement* outputTE){ + if(doTiming()) m_totalTimer->start(); // For now, this must be [avgmu, rnnOutputWithTansig, rnnOutputWithoutTansig] m_output=-999; std::vector<float> output; @@ -127,7 +86,8 @@ HLT::ErrorCode TrigL2CaloRingerFex::hltExecute(const HLT::TriggerElement* /*inpu ///Retrieve rings pattern information const xAOD::TrigRingerRings *ringerShape = get_rings(outputTE); if(!ringerShape){ - msg() << MSG::WARNING << "Can not retrieve xADO::TrigRingerRings from storegate." << endmsg; + ATH_MSG_WARNING( "Can not retrieve xADO::TrigRingerRings from storegate." ); + if(doTiming()) m_totalTimer->stop(); return HLT::OK; }///protection @@ -136,16 +96,16 @@ HLT::ErrorCode TrigL2CaloRingerFex::hltExecute(const HLT::TriggerElement* /*inpu ///Check if emCluster link exist if(!emCluster){ - msg() << MSG::WARNING << "Can not found the xAOD::TrigEMCluster link" << endmsg; + ATH_MSG_WARNING( "Can not found the xAOD::TrigEMCluster link" ); + if(doTiming()) m_totalTimer->stop(); return HLT::OK; }///protection - msg() << MSG::DEBUG << "Event with roiword: 0x" << std::hex << emCluster->RoIword() << std::dec << endmsg; + ATH_MSG_DEBUG( "Event with roiword: 0x" << std::hex << emCluster->RoIword() << std::dec ); + - ///It's ready to select the correct eta/et bin - MultiLayerPerceptron *discr = nullptr; - TrigRingerPreprocessor *preproc = nullptr; + std::shared_ptr<Ringer::IModel> discr; float eta = std::fabs(emCluster->eta()); float et = emCluster->et()*1e-3; ///in GeV @@ -155,8 +115,8 @@ HLT::ErrorCode TrigL2CaloRingerFex::hltExecute(const HLT::TriggerElement* /*inpu if(m_lumiBlockMuTool){ mu = m_lumiBlockMuTool->actualInteractionsPerCrossing(); // (retrieve mu for the current BCID) avgmu = m_lumiBlockMuTool->averageInteractionsPerCrossing(); - msg() << MSG::DEBUG << "Retrieved Mu Value : " << mu<< endmsg; - msg() << MSG::DEBUG << "Average Mu Value : " << avgmu<< endmsg; + ATH_MSG_DEBUG("Retrieved Mu Value : " << mu); + ATH_MSG_DEBUG("Average Mu Value : " << avgmu); } } @@ -165,7 +125,7 @@ HLT::ErrorCode TrigL2CaloRingerFex::hltExecute(const HLT::TriggerElement* /*inpu // Add avgmu! output.push_back(avgmu); - if(doTiming()) m_decisionTimer->start(); + if(m_discriminators.size() > 0){ @@ -174,57 +134,37 @@ HLT::ErrorCode TrigL2CaloRingerFex::hltExecute(const HLT::TriggerElement* /*inpu if(et > m_discriminators[i]->etmin() && et <= m_discriminators[i]->etmax()){ if(eta > m_discriminators[i]->etamin() && eta <= m_discriminators[i]->etamax()){ discr = m_discriminators[i]; - preproc = m_preproc[i]; break; }// mu conditions }///eta conditions }///Et conditions }///Loop over discriminators - msg() << MSG::DEBUG << "Et = " << et << " GeV, |eta| = " << eta << endmsg; + ATH_MSG_DEBUG( "Et = " << et << " GeV, |eta| = " << eta ); ///Apply the discriminator if(discr){ - const std::vector<float> rings = ringerShape->rings(); std::vector<float> refRings(rings.size()); refRings.assign(rings.begin(), rings.end()); ///pre-processing ringer shape (default is Norm1...) if(doTiming()) m_normTimer->start(); - if(preproc) preproc->ppExecute(refRings); - if(doTiming()) m_normTimer->stop(); - - - float eta_norm=0.0; - float avgmu_norm=0.0; - - // Add extra variables in this order! Do not change this!!! - if(m_useEtaVar){ - if(preproc){ - eta_norm = preproc->normalize_eta(emCluster->eta(), discr->etamin(), discr->etamax()); - refRings.push_back(eta_norm); - } - } - - if(m_useLumiVar){ - if(preproc){ - avgmu_norm = preproc->normalize_mu(avgmu, m_lumiCut); - refRings.push_back(avgmu_norm); - } - } - - m_output=discr->propagate(refRings); - output.push_back(m_output); - output.push_back(discr->getOutputBeforeTheActivationFunction()); + m_preproc.at(0)->execute(refRings); + if(doTiming()) m_normTimer->stop(); + if(doTiming()) m_propagateTimer->start(); + auto answer = discr->propagate(refRings); + if(doTiming()) m_propagateTimer->stop(); + output.push_back(answer.output); + output.push_back(answer.outputBeforeTheActivationFunction); }// has discr? }else{ - msg() << MSG::DEBUG << "There is no discriminator into this Fex." << endmsg; + ATH_MSG_DEBUG( "There is no discriminator into this Fex." ); } - if(doTiming()) m_decisionTimer->stop(); - msg() << MSG::DEBUG << "Et = " << et << " GeV, |eta| = " << eta << " and rnnoutput = " << m_output << endmsg; + + ATH_MSG_DEBUG( "Et = " << et << " GeV, |eta| = " << eta << " and rnnoutput = " << m_output ); if(doTiming()) m_storeTimer->start(); ///Store outout information for monitoring and studys @@ -238,15 +178,17 @@ HLT::ErrorCode TrigL2CaloRingerFex::hltExecute(const HLT::TriggerElement* /*inpu hltStatus = getFeatureLink<xAOD::TrigRingerRingsContainer,xAOD::TrigRingerRings>(outputTE, ringer_link); if( (hltStatus != HLT::OK) || (!ringer_link.isValid())){ - msg() << MSG::WARNING << "Failed to access ElementLink to TrigRingerRings" << endmsg; + ATH_MSG_WARNING( "Failed to access ElementLink to TrigRingerRings" ); }else{ rnnOutput->setRingerLink( ringer_link ); } hltStatus = recordAndAttachFeature<xAOD::TrigRNNOutput>(outputTE, rnnOutput, m_key, m_hlt_feature); - if(doTiming()) m_storeTimer->stop(); - + if(doTiming()){ + m_storeTimer->stop(); + m_totalTimer->stop(); + } if (hltStatus != HLT::OK) { - msg() << MSG::WARNING << "Failed to record xAOD::TrigRNNOutput to StoreGate." << endmsg; + ATH_MSG_WARNING( "Failed to record xAOD::TrigRNNOutput to StoreGate." ); return HLT::OK; } diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFexMT.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFexMT.cxx deleted file mode 100644 index 3b0bbb061961415596250676b92d4524cb3f2870..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFexMT.cxx +++ /dev/null @@ -1,253 +0,0 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - -#include "CLHEP/Units/SystemOfUnits.h" -#include "AthenaMonitoring/Monitored.h" - -#include "xAODTrigCalo/TrigEMClusterContainer.h" -#include "xAODTrigCalo/TrigEMClusterAuxContainer.h" -#include "AthenaMonitoring/Monitored.h" - -#include "TrigL2CaloRingerFexMT.h" -#include "TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h" -#include "TrigMultiVarHypo/tools/MultiLayerPerceptron.h" - -///xAOD include(s) -#include "xAODTrigCalo/TrigEMCluster.h" -#include "xAODTrigRinger/TrigRNNOutput.h" -#include "xAODTrigRinger/TrigRNNOutputContainer.h" -#include "xAODTrigRinger/TrigRingerRings.h" -#include "xAODTrigRinger/TrigRingerRingsContainer.h" - - - -static const size_t SIZEOF_NODES = 3; -static const size_t SIZEOF_RINGSETS = 7; - - -TrigL2CaloRingerFexMT:: TrigL2CaloRingerFexMT(const std::string & name, ISvcLocator* pSvcLocator) - :AthAlgorithm(name, pSvcLocator){ - ATH_MSG_DEBUG( "start RingerMT const:" ); -} - -TrigL2CaloRingerFexMT:: ~TrigL2CaloRingerFexMT(){} - - -StatusCode TrigL2CaloRingerFexMT::initialize(){ - - ATH_MSG_DEBUG( "start RingerMT init:" ); - - ///What is the number of discriminators? - m_nDiscr = m_nodes.size()/SIZEOF_NODES; - m_nPreproc = m_normRings.size()/SIZEOF_RINGSETS; - - ATH_CHECK( m_ringsKey.initialize()); - ATH_CHECK( m_clustersKey.initialize()); - ATH_CHECK( m_outputKey.initialize()); - - if(configurationInvalid()){ - return StatusCode::FAILURE; - } - ///Initialize all discriminators - for(unsigned i=0; i<m_nDiscr; ++i) { - MultiLayerPerceptron *discr = nullptr; - TrigRingerPreprocessor *preproc = nullptr; - - ATH_MSG_INFO( "Create multi layer perceptron discriminator using configuration:"); - ATH_MSG_INFO( " Input layer : " << m_nodes[i*SIZEOF_NODES+0] ); - ATH_MSG_INFO( " Output layer : " << m_nodes[i*SIZEOF_NODES+2] ); - ATH_MSG_INFO( " Eta range : " << m_etaBins[i][0] << " < |eta| <=" << m_etaBins[i][1] ); - ATH_MSG_INFO( " Et range : " << m_etBins[i][0] << " < Et[GeV] <=" << m_etBins[i][1] ); - - - try { - ///Alloc discriminator - ///TODO: find best way to parse this vector. The athena don't accept vector<vector<unsigned int>> - std::vector<unsigned int> nodes(SIZEOF_NODES); - for(unsigned k=0; k<SIZEOF_NODES;++k) nodes[k]= m_nodes[i*SIZEOF_NODES+k]; ///Parser - - discr = new MultiLayerPerceptron(nodes, m_weights[i], m_bias[i], - m_etBins[i][0], m_etBins[i][1], m_etaBins[i][0], - m_etaBins[i][1], -999, 999); - } catch(const std::bad_alloc& ) { - ATH_MSG_ERROR( "Weight vector size is not compatible with nodes vector." ); - return StatusCode::FAILURE; - } catch(int e){ - if (e == BAD_WEIGHT_SIZE) { - ATH_MSG_ERROR( "Weight vector size is not compatible with nodes vector." ); - return StatusCode::FAILURE; - } - else if (e == BAD_BIAS_SIZE) { - ATH_MSG_ERROR( "Bias vector size is not compatible with nodes vector." ); - return StatusCode::FAILURE; - } - }///try and catch alloc protection - - ///hold the pointer configuration - m_discriminators.push_back(discr); - - try{ - ///TODO: find best way to parse this vector. The athena don't accept vector<vector<unsigned int>> - std::vector<unsigned int> nrings(SIZEOF_RINGSETS), normrings(SIZEOF_RINGSETS), sectionrings(SIZEOF_RINGSETS); - - for(unsigned rs = 0; rs < SIZEOF_RINGSETS; ++rs ){ - nrings[rs] = m_nRings[rs+i*SIZEOF_RINGSETS]; - normrings[rs] = m_normRings[rs+i*SIZEOF_RINGSETS]; - sectionrings[rs] = m_sectionRings[rs+i*SIZEOF_RINGSETS]; - } ///parser - - preproc = new TrigRingerPreprocessor( nrings, normrings, sectionrings ); - } catch(const std::bad_alloc& ){ - ATH_MSG_ERROR( "Bad alloc for TrigRingerPrepoc." ); - return StatusCode::FAILURE; - } - - ///Hold the pointer configuration - m_preproc.push_back(preproc); - }///Loop over discriminators - - ATH_MSG_DEBUG( "TrigL2CaloRingerHypo initialization completed successful" ); - - return StatusCode::SUCCESS; -} - - -StatusCode TrigL2CaloRingerFexMT::finalize(){ - ///release memory - for(unsigned i=0; i<m_nDiscr;++i){ - if(m_preproc.at(i)) delete m_preproc.at(i); - if(m_discriminators.at(i)) delete m_discriminators.at(i); - }///Loop over all discriminators and prepoc objects - - ATH_MSG_DEBUG( "TrigL2CaloRingerHypo finalization completed successfully." ); - return StatusCode::SUCCESS; -} - -StatusCode TrigL2CaloRingerFexMT::execute(){ - - ATH_MSG_DEBUG("start RingerMT"); - auto etMon = Monitored::Scalar( "Et", -100. ); - auto etaMon = Monitored::Scalar( "Eta", -100. ); - auto rnnOutMon = Monitored::Scalar( "rnnOut", -100. ); - auto monitorIt = Monitored::Group( m_monTool, etMon, etaMon, rnnOutMon ); - - auto totalTime = Monitored::Timer("TIME_total"); - totalTime.start(); - ATH_MSG_DEBUG( "start RingerMT" ); - - m_output = 999; - auto context = getContext(); - - ///Retrieve rings pattern information - auto ringerShapeHandle = SG::makeHandle( m_ringsKey, context ); - const xAOD::TrigRingerRings* ringerRings = ringerShapeHandle.cptr(); - - - auto clustersHandle = SG::makeHandle( m_clustersKey, context ); - const xAOD::TrigEMClusterContainer* clusters = clustersHandle.cptr(); - CHECK( clusters->size() == 1 ); - - //It's ready to select the correct eta/et bin - ATH_MSG_DEBUG("executing"); - - MultiLayerPerceptron *discr = nullptr; - TrigRingerPreprocessor *preproc = nullptr; - - - float eta = std::fabs(clusters->front()->eta()); - if(eta>2.50) eta=2.50;///fix for events out of the ranger - float et = clusters->front()->et() / CLHEP::GeV; // in GeV - - - if(m_discriminators.size() > 0){ - for(unsigned i=0; i<m_discriminators.size(); ++i){ - if(et > m_discriminators[i]->etmin() && et <= m_discriminators[i]->etmax()){ - if(eta > m_discriminators[i]->etamin() && eta <= m_discriminators[i]->etamax()){ - discr = m_discriminators[i]; - preproc = m_preproc[i]; - break; - }///eta conditions - }///Et conditions - }///Loop over discriminators - - ///get shape - const std::vector<float> rings = ringerRings->rings(); - - ATH_MSG_DEBUG( "rings->rings().size() is: " <<rings.size() ); - - std::vector<float> refRings(rings.size()); - refRings.assign(rings.begin(), rings.end()); - - - ATH_MSG_DEBUG( "Et = " << et << " GeV, |eta| = " << eta ); - auto preprocessTime = Monitored::Timer("TIME_preprocess"); - ///pre-processing shape - preprocessTime.start(); - if(preproc) preproc->ppExecute(refRings); - preprocessTime.stop(); - - ATH_MSG_DEBUG( "after preproc refRings.size() is: " << rings.size() ); - auto decisionTime = Monitored::Timer("TIME_decision"); - ///Apply the discriminator - decisionTime.start(); - if(discr) m_output = discr->propagate(refRings); - decisionTime.stop(); - auto scope = Monitored::Group( m_monTool, preprocessTime, decisionTime ); - - }else{ - ATH_MSG_DEBUG("There is no discriminator into this Fex."); - } - - - ATH_MSG_DEBUG( "Et = " << et << " GeV, |eta| = " << eta << " and rnnoutput = " << m_output ); - ///Store outout information for monitoring and studys - etMon = et; - etaMon = eta; - rnnOutMon = m_output; - - std::unique_ptr<xAOD::TrigRNNOutput> rnnOutput( new xAOD::TrigRNNOutput()); - rnnOutput->makePrivateStore(); - rnnOutput->setRnnDecision(m_output); - - - auto outputHandle = SG::makeHandle (m_outputKey, context); - ATH_CHECK( outputHandle.record(std::move(rnnOutput)) ); - - totalTime.stop(); - auto scope = Monitored::Group( m_monTool, totalTime ); - - return StatusCode::SUCCESS; -} - -bool TrigL2CaloRingerFexMT::configurationInvalid(){ - - if(m_weights.size() != m_nDiscr){ - ATH_MSG_ERROR( "Weight list dont match with the number of discriminators found" ); - return true; - } - - if(m_bias.size() != m_nDiscr){ - ATH_MSG_ERROR( "Bias list dont match with the number of discriminators found" ); - return true; - } - - if((m_etaBins.size() != m_nDiscr) || (m_etBins.size() != m_nDiscr)){ - ATH_MSG_ERROR( "Eta/Et list dont match with the number of discriminators found" ); - return true; - } - - - if(m_nRings.size() != m_normRings.size()){ - ATH_MSG_ERROR( "Preproc nRings list dont match with the number of discriminators found" ); - return true; - } - - if(m_sectionRings.size() != m_normRings.size()){ - ATH_MSG_ERROR("Preproc section rings list dont match with the number of discriminators found"); - return true; - } - - return false; - -} diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFexMT.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFexMT.h deleted file mode 100644 index b86c1bd3a4ca25b8893ab93961a51c6152d54692..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerFexMT.h +++ /dev/null @@ -1,106 +0,0 @@ -/* - Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration -*/ - - -// standard stuff -#include <vector> -#include <cmath> - -// general athena stuff -#include "GaudiKernel/IToolSvc.h" - -//Gaudi -#include "GaudiKernel/ToolHandle.h" -#include "GaudiKernel/ServiceHandle.h" - -#include "AthenaMonitoring/GenericMonitoringTool.h" -#include "AthenaBaseComps/AthAlgorithm.h" -///Local include(s) -#include "TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h" -#include "TrigMultiVarHypo/tools/MultiLayerPerceptron.h" - -///xAOD include(s) -#include "xAODTrigCalo/TrigEMClusterContainer.h" -#include "xAODTrigRinger/TrigRNNOutput.h" -#include "xAODTrigRinger/TrigRNNOutputContainer.h" -#include "xAODTrigRinger/TrigRingerRings.h" -#include "xAODTrigRinger/TrigRingerRingsContainer.h" - -#include "TrigTimeAlgs/TrigTimer.h" -#include "AthenaMonitoring/GenericMonitoringTool.h" - - -class TrigL2CaloRingerFexMT : public AthAlgorithm { - - public: - TrigL2CaloRingerFexMT(const std::string & name, ISvcLocator* pSvcLocator); - ~TrigL2CaloRingerFexMT(); - - StatusCode initialize(); - StatusCode finalize(); - StatusCode execute(); - - protected: - TrigTimer* m_storeTimer; - TrigTimer* m_normTimer; - TrigTimer* m_decisionTimer; - - - - private: - - //feature keys - Gaudi::Property<std::string> m_hlt_feature {this, "HltFeature", "TrigRingerNeuralFex", "..."}; - Gaudi::Property<std::string> m_feature {this, "Feature", "TrigRingerNeuralFex", "..."}; - - //Prepoc configuration - Gaudi::Property<std::vector<unsigned int>> m_normRings {this, "NormalisationRings", std::vector<unsigned int>(), "..." }; - Gaudi::Property<std::vector<unsigned int>> m_sectionRings {this, "SectionRings", std::vector<unsigned int>(), "..."}; - Gaudi::Property<std::vector<unsigned int>> m_nRings {this, "NRings", std::vector<unsigned int>(), "..." }; - - //Disriminator configuration - Gaudi::Property<std::vector<unsigned int>> m_nodes {this, "Nodes", std::vector<unsigned int>(), "..."}; - Gaudi::Property<std::vector<std::vector<double>>> m_weights {this, "Weights", std::vector<std::vector<double>>(), "..."}; - Gaudi::Property<std::vector<std::vector<double>>> m_bias {this, "Bias", std::vector<std::vector<double>>(), "..." }; - Gaudi::Property<std::vector<double>> m_threshold {this, "Threshold", std::vector<double>(), "..."}; - Gaudi::Property<std::vector<std::vector<double>>> m_etaBins {this, "EtaBins", std::vector<std::vector<double>>(), "..." }; - Gaudi::Property<std::vector<std::vector<double>>> m_etBins {this, "EtBins", std::vector<std::vector<double>>(), "..."}; - - bool configurationInvalid(); - - //Discriminator holder - std::vector<MultiLayerPerceptron*> m_discriminators; - //Pre-processing holder - std::vector<TrigRingerPreprocessor*> m_preproc; - - - unsigned m_nDiscr; - unsigned m_nPreproc; - float m_output; - - SG::ReadHandleKey<xAOD::TrigRingerRings> m_ringsKey { - this, - "CaloRingsKey", - "CaloRings", - "" - }; - - SG::ReadHandleKey<xAOD::TrigEMClusterContainer> m_clustersKey { - this, - "ClustersKey", - "CaloClusters", - "" - }; - - SG::WriteHandleKey<xAOD::TrigRNNOutput> m_outputKey { - this, - "RNNOutputKey", - "CaloRNNOutput", - "" - }; - - ToolHandle<GenericMonitoringTool> m_monTool { this, "MonTool", "GenericMonitoringTool/RingerFexMon", "Monitoring" }; - -}; - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypo.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypo.cxx index 7be8014552a19b16b80a3a856ccfa6dda03c80f2..2e5495a138493ebe8ae90d913fdd83c5e2eab2ea 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypo.cxx +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypo.cxx @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ ///Local include(s) #include "TrigMultiVarHypo/TrigL2CaloRingerHypo.h" @@ -11,6 +11,7 @@ #include "xAODTrigRinger/TrigRingerRings.h" #include "xAODTrigRinger/TrigRingerRingsContainer.h" +#include "TrigMultiVarHypo/tools/procedures/Thresholds.h" ///std include(s) #include <new> #include <cmath> @@ -25,7 +26,7 @@ TrigL2CaloRingerHypo::TrigL2CaloRingerHypo(const std::string& name, ISvcLocator* declareProperty("CalibPath" , m_calibPath = "" ); declareProperty("HltFeature" , m_hlt_feature = "TrigRingerNeuralFex" ); - m_useNoActivationFunctionInTheLastLayer=false; + m_removeOutputTansigTF=false; m_doPileupCorrection=false; m_lumiCut=50; } @@ -34,29 +35,31 @@ HLT::ErrorCode TrigL2CaloRingerHypo::hltInitialize() { if(!m_calibPath.empty()){ if(!m_reader.retrieve(m_calibPath, m_cutDefs)){ - msg() << MSG::ERROR << "Can not retrieve the information from " << m_calibPath << endmsg; + ATH_MSG_ERROR("Can not retrieve the information from " << m_calibPath); return HLT::BAD_JOB_SETUP; } // retrieve metadata - m_useNoActivationFunctionInTheLastLayer = m_reader.useNoActivationFunctionInTheLastLayer(); + m_removeOutputTansigTF = m_reader.removeOutputTansigTF(); m_doPileupCorrection = m_reader.doPileupCorrection(); m_lumiCut = m_reader.lumiCut(); } - msg() << MSG::INFO << "Using the activation function in the last layer? " << (m_useNoActivationFunctionInTheLastLayer ? "No":"Yes") << endmsg; - msg() << MSG::INFO << "Using pileup correction? " << (m_doPileupCorrection ? "Yes":"No") << endmsg; - msg() << MSG::INFO << "Using lumi threshold equal: " << m_lumiCut << endmsg; + ATH_MSG_INFO("Using the activation function in the last layer? " << (!m_removeOutputTansigTF ? "Yes":"No") ); + ATH_MSG_INFO("Using pileup correction? " << (m_doPileupCorrection ? "Yes":"No") ); + ATH_MSG_INFO("Using lumi threshold equal: " << m_lumiCut); + ATH_MSG_INFO( "TrigL2CaloRingerHypo initialization completed successfully." ); - msg() << MSG::INFO << "TrigL2CaloRingerHypo initialization completed successfully." << endmsg; + ///Monitoring hitograms + if(doTiming()){ + m_totalTimer = addTimer("Total"); + }///Only if time is set on python config + return HLT::OK; } //!=============================================================================================== HLT::ErrorCode TrigL2CaloRingerHypo::hltFinalize() { - for(unsigned i=0; i<m_cutDefs.size();++i){ - if(m_cutDefs[i]) delete m_cutDefs[i]; - } - msg() << MSG::INFO << "TrigL2CaloRingerHypo finalization completed successfully." << endmsg; + ATH_MSG_INFO( "TrigL2CaloRingerHypo finalization completed successfully." ); return HLT::OK; } //!=============================================================================================== @@ -65,15 +68,19 @@ HLT::ErrorCode TrigL2CaloRingerHypo::hltExecute(const HLT::TriggerElement* outpu pass = false; + if(doTiming()) m_totalTimer->start(); + if (m_acceptAll){ pass = true; - msg() << MSG::DEBUG << "AcceptAll property is set: taking all events" << endmsg; + ATH_MSG_DEBUG( "AcceptAll property is set: taking all events" ); + if(doTiming()) m_totalTimer->stop(); return HLT::OK; } const xAOD::TrigRNNOutput* rnnOutput = get_rnnOutput(outputTE); if(!rnnOutput){ - msg() << MSG::WARNING << "There is no xAO::TrigRNNOutput into the TriggerElement." << endmsg; + ATH_MSG_WARNING( "There is no xAO::TrigRNNOutput into the TriggerElement." ); + if(doTiming()) m_totalTimer->stop(); return HLT::OK; } @@ -83,11 +90,13 @@ HLT::ErrorCode TrigL2CaloRingerHypo::hltExecute(const HLT::TriggerElement* outpu if(ringerShape){ emCluster = ringerShape->emCluster(); if(!emCluster){ - msg() << MSG::WARNING << "There is no link to xAOD::TrigEMCluster into the Ringer object." << endmsg; + ATH_MSG_WARNING( "There is no link to xAOD::TrigEMCluster into the Ringer object." ); + if(doTiming()) m_totalTimer->stop(); return HLT::OK; } }else{ - msg() << MSG::WARNING << "There is no xAOD::TrigRingerRings link into the rnnOutput object." << endmsg; + ATH_MSG_WARNING( "There is no xAOD::TrigRingerRings link into the rnnOutput object." ); + if(doTiming()) m_totalTimer->stop(); return HLT::OK; } @@ -97,7 +106,8 @@ HLT::ErrorCode TrigL2CaloRingerHypo::hltExecute(const HLT::TriggerElement* outpu ///Et threshold if(et < m_emEtCut*1e-3){ - msg() << MSG::DEBUG << "Event reproved by Et threshold. Et = " << et << ", EtCut = " << m_emEtCut*1e-3 << endmsg; + ATH_MSG_DEBUG( "Event reproved by Et threshold. Et = " << et << ", EtCut = " << m_emEtCut*1e-3 ); + if(doTiming()) m_totalTimer->stop(); return HLT::OK; } @@ -106,7 +116,8 @@ HLT::ErrorCode TrigL2CaloRingerHypo::hltExecute(const HLT::TriggerElement* outpu // TODO: Maybe this will expanded for future... // This was define as [avgmu, rnnOtput, rnnOutputWithoutTansig] if(rnnOutput->rnnDecision().size() != 3){ - msg() << MSG::INFO << "Event reproved because we can not retrieve the completed information from RnnOutput to run this hypo!" << endmsg; + ATH_MSG_INFO( "Event reproved because we can not retrieve the completed information from RnnOutput to run this hypo!" ); + if(doTiming()) m_totalTimer->stop(); return HLT::OK; } @@ -133,20 +144,20 @@ HLT::ErrorCode TrigL2CaloRingerHypo::hltExecute(const HLT::TriggerElement* outpu threshold = m_cutDefs[i]->threshold(); } - if(m_useNoActivationFunctionInTheLastLayer) + if(m_removeOutputTansigTF) output=rnnOutput->rnnDecision().at(2); else output=rnnOutput->rnnDecision().at(1); if(output >= threshold){ - msg() << MSG::DEBUG << "Event information:" << endmsg; - msg() << MSG::DEBUG << " " << m_cutDefs[i]->etmin() << "< Et ("<<et<<") GeV" << " <=" << m_cutDefs[i]->etmax() << endmsg; - msg() << MSG::DEBUG << " " << m_cutDefs[i]->etamin() << "< |Eta| ("<<eta<<") " << " <=" << m_cutDefs[i]->etamax() << endmsg; - msg() << MSG::DEBUG << " " << m_cutDefs[i]->mumin() << "< Mu ("<<avgmu<<") " << " <=" << m_cutDefs[i]->mumax() << endmsg; - msg() << MSG::DEBUG << " rnnOutput: " << output << " and threshold: " << m_cutDefs[i]->threshold() << endmsg; + ATH_MSG_DEBUG( "Event information:" ); + ATH_MSG_DEBUG( " " << m_cutDefs[i]->etmin() << " < Et ("<<et<<") GeV " << " <=" << m_cutDefs[i]->etmax() ); + ATH_MSG_DEBUG( " " << m_cutDefs[i]->etamin() << " < |Eta| ("<<eta<<") " << " <=" << m_cutDefs[i]->etamax() ); + ATH_MSG_DEBUG( " " << m_cutDefs[i]->mumin() << " < Mu ("<<avgmu<<") " << " <=" << m_cutDefs[i]->mumax() ); + ATH_MSG_DEBUG( " rnnOutput: " << output << " and threshold: " << m_cutDefs[i]->threshold() ); pass=true; }else{ - msg() << MSG::DEBUG << "Event reproved by discriminator threshold" << endmsg; + ATH_MSG_DEBUG( "Event reproved by discriminator threshold" ); }///Threshold condition break; @@ -155,11 +166,12 @@ HLT::ErrorCode TrigL2CaloRingerHypo::hltExecute(const HLT::TriggerElement* outpu }///Loop over mu }///Loop over cutDefs }else{ - msg() << MSG::DEBUG << "There is no discriminator. Event approved by Et threshold." << endmsg; + ATH_MSG_DEBUG( "There is no discriminator. Event approved by Et threshold." ); ///Only for EtCut pass=true; }///protection + if(doTiming()) m_totalTimer->stop(); return HLT::OK; } //!=============================================================================================== diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoAlgMT.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoAlgMT.cxx index 5e2a85c76c9cb8fea45de1a47af2b19d8e715545..2f11af3c5b590915b17347c90aae4b711e554297 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoAlgMT.cxx +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoAlgMT.cxx @@ -4,6 +4,11 @@ #include <map> #include "GaudiKernel/Property.h" #include "TrigL2CaloRingerHypoAlgMT.h" +#include "AthViews/ViewHelper.h" +#include "DecisionHandling/HLTIdentifier.h" +#include "DecisionHandling/TrigCompositeUtils.h" +#include "AthViews/ViewHelper.h" + using TrigCompositeUtils::DecisionContainer; using TrigCompositeUtils::DecisionAuxContainer; @@ -11,65 +16,91 @@ using TrigCompositeUtils::DecisionIDContainer; using TrigCompositeUtils::decisionIDs; using TrigCompositeUtils::newDecisionIn; using TrigCompositeUtils::linkToPrevious; - +using TrigCompositeUtils::createAndStore; TrigL2CaloRingerHypoAlgMT::TrigL2CaloRingerHypoAlgMT( const std::string& name, ISvcLocator* pSvcLocator ) : ::HypoBase( name, pSvcLocator ) {} + TrigL2CaloRingerHypoAlgMT::~TrigL2CaloRingerHypoAlgMT() {} + StatusCode TrigL2CaloRingerHypoAlgMT::initialize() { - ATH_MSG_INFO ( "Initializing " << name() << "..." ); - ATH_CHECK( m_hypoTools.retrieve() ); - - ATH_CHECK( m_views.initialize() ); - ATH_CHECK( m_decisionsKey.initialize() ); - renounce( m_outputKey ); - ATH_CHECK( m_outputKey.initialize() ); - + ATH_MSG_INFO ( "Initializing " << name() << "..." ); + ATH_CHECK( m_hypoTools.retrieve() ); + ATH_CHECK( m_ringsKey.initialize()); + ATH_CHECK( m_clustersKey.initialize()); + renounce(m_clustersKey); + renounce(m_ringsKey); return StatusCode::SUCCESS; } +StatusCode TrigL2CaloRingerHypoAlgMT::finalize() { + return StatusCode::SUCCESS; +} StatusCode TrigL2CaloRingerHypoAlgMT::execute( const EventContext& context ) const { + ATH_MSG_DEBUG ( "Executing " << name() << "..." ); + auto previousDecisionsHandle = SG::makeHandle( decisionInput(), context ); + if( not previousDecisionsHandle.isValid() ) {//implicit + ATH_MSG_DEBUG( "No implicit RH for previous decisions "<< decisionInput().key()<<": is this expected?" ); + return StatusCode::SUCCESS; + } - // prepare decisions container and link back to the clusters, and decision on clusters - auto decisions = std::make_unique<DecisionContainer>(); - auto aux = std::make_unique<DecisionAuxContainer>(); - decisions->setStore( aux.get() ); - - - //ATH_MSG_DEBUG( "RNNOutput ptr to decision map has size " << clusterToIndexMap.size() ); - - // prepare imput for tools - std::vector<TrigL2CaloRingerHypoToolMT::RNNOutInfo> hypoToolInput; + ATH_MSG_DEBUG( "Running with "<< previousDecisionsHandle->size() <<" implicit ReadHandles for previous decisions"); + // new decisions + // new output decisions + SG::WriteHandle<DecisionContainer> outputHandle = createAndStore(decisionOutput(), context ); + auto decisions = outputHandle.ptr(); + // input for decision + std::vector<TrigL2CaloRingerHypoToolMT::RingerInfo> hypoToolInput; - auto viewsHandle = SG::makeHandle( m_views, context ); - for ( auto view: *viewsHandle ) { - size_t counter = 0; - auto rnnOutHandle = SG::makeHandle( m_outputKey, context ); - //CHECK( electronsHandle.setProxyDict( view ) ); - //CHECK( electronsHandle.isValid() ); - - for ( auto rnnOutIter = rnnOutHandle->begin(); rnnOutIter != rnnOutHandle->end(); ++rnnOutIter, counter++ ) { - auto d = newDecisionIn( decisions.get() ); - d->setObjectLink( "feature", ElementLink<xAOD::TrigRNNOutputContainer>( view->name()+"_"+m_outputKey.key(), counter ) ); - hypoToolInput.emplace_back( TrigL2CaloRingerHypoToolMT::RNNOutInfo{ d, *rnnOutIter } ); + // loop over previous decisions + size_t counter=0; + for ( auto previousDecision: *previousDecisionsHandle ) { + + // get View + auto view = TrigCompositeUtils::findLink< ViewContainer >( previousDecision, "view" ); + ATH_CHECK( view.isValid() ); + auto ringerShapeHandle = ViewHelper::makeHandle( *(view.link), m_ringsKey, context); + ATH_CHECK( ringerShapeHandle.isValid() ); + ATH_MSG_DEBUG ( "Ringer handle size: " << ringerShapeHandle->size() << "..." ); + // create new decision + auto d = newDecisionIn( decisions, name() ); + hypoToolInput.emplace_back( TrigL2CaloRingerHypoToolMT::RingerInfo{ d, ringerShapeHandle.cptr()->at(0) } ); + + { + auto el = ViewHelper::makeLink( *(view.link), ringerShapeHandle, 0 ); + ATH_CHECK( el.isValid() ); + d->setObjectLink( "feature", el ); } + + TrigCompositeUtils::linkToPrevious( d, decisionInput().key(), counter ); + counter++; } - for ( auto & tool: m_hypoTools ) { + ATH_MSG_DEBUG( "Found "<<hypoToolInput.size()<<" inputs to tools"); + + for ( auto& tool: m_hypoTools ) { ATH_CHECK( tool->decide( hypoToolInput ) ); - - } - - { - auto handle = SG::makeHandle( m_decisionsKey, context ); - CHECK( handle.record( std::move( decisions ), std::move( aux ) ) ); + } + + + {// make output handle and debug + ATH_MSG_DEBUG ( "Exit with "<<outputHandle->size() <<" decisions"); + TrigCompositeUtils::DecisionIDContainer allPassingIDs; + if ( outputHandle.isValid() ) { + for ( auto decisionObject: *outputHandle ) { + TrigCompositeUtils::decisionIDs( decisionObject, allPassingIDs ); + } + for ( TrigCompositeUtils::DecisionID id : allPassingIDs ) { + ATH_MSG_DEBUG( " +++ " << HLT::Identifier( id ) ); + } + } } return StatusCode::SUCCESS; diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoAlgMT.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoAlgMT.h index 2163e6e2840f9efadb5a976f97b7ee8cf739ca67..554b0a23a80f2213f8bd3761f93ee20958e6ddf2 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoAlgMT.h +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoAlgMT.h @@ -1,14 +1,14 @@ /* Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration */ -#ifndef MULTIVARHYPO_TRIGL2CALORINGERHYPOALG_H -#define MULTIVARHYPO_TRIGL2CALORINGERHYPOALG_H 1 +#ifndef TRIGL2CALORINGERHYPOALGMT_H +#define TRIGL2CALORINGERHYPOALGMT_H 1 #include <string> #include "AthenaBaseComps/AthReentrantAlgorithm.h" -#include "xAODTrigRinger/TrigRNNOutput.h" -#include "xAODTrigRinger/TrigRNNOutputContainer.h" +#include "xAODTrigRinger/TrigRingerRings.h" +#include "xAODTrigRinger/TrigRingerRingsContainer.h" #include "DecisionHandling/TrigCompositeUtils.h" #include "DecisionHandling/HypoBase.h" #include "AthViews/View.h" @@ -23,28 +23,17 @@ class TrigL2CaloRingerHypoAlgMT public: TrigL2CaloRingerHypoAlgMT( const std::string& name, ISvcLocator* pSvcLocator ); - virtual ~TrigL2CaloRingerHypoAlgMT(); - virtual StatusCode initialize() override; + virtual StatusCode finalize() override; virtual StatusCode execute(const EventContext& context) const override; private: TrigL2CaloRingerHypoAlgMT(); ToolHandleArray< TrigL2CaloRingerHypoToolMT > m_hypoTools {this, "HypoTools", {}, "Tools to perfrom selection"}; - - - SG::ReadHandleKey< ViewContainer > m_views {this, "Views", "Unspecified", "Views to read electrons from" }; - SG::WriteHandleKey< TrigCompositeUtils::DecisionContainer > m_decisionsKey {this, "RNNOutDecisions", "RNNOutDecisions", "Output decisions"}; - //SG::WriteHandleKey< TrigCompositeUtils::DecisionContainer > m_RNNOutdecisionsKey {this, "RNNOutDecisions", "RNNOutDecisions", "Output decisions"}; - - SG::ReadHandleKey<xAOD::TrigRNNOutputContainer> m_outputKey { - this, - "RNNOutputContainer", - "CaloRNNOutput", - "" - }; + SG::ReadHandleKey<xAOD::TrigRingerRingsContainer> m_ringsKey { this, "RingerKey","CaloRings",""}; + SG::ReadHandleKey<xAOD::TrigEMClusterContainer> m_clustersKey { this,"ClustersKey","CaloClusters",""}; diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoToolMT.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoToolMT.cxx index 7b6b8c736fe46ceba3a4a0db9d9e231e9e1282f3..4e59ecef61ee20b369bc25c7423c3a62314f6e51 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoToolMT.cxx +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoToolMT.cxx @@ -8,64 +8,88 @@ #include "AthenaMonitoring/Monitored.h" #include "GaudiKernel/SystemOfUnits.h" #include "TrigL2CaloRingerHypoToolMT.h" +#include "AthenaMonitoring/GenericMonitoringTool.h" +#include "AthenaMonitoring/Monitored.h" +using namespace Monitored; using namespace TrigCompositeUtils; +using namespace Ringer; TrigL2CaloRingerHypoToolMT::TrigL2CaloRingerHypoToolMT( const std::string& type, - const std::string& name, - const IInterface* parent ) + const std::string& name, + const IInterface* parent ) + : AthAlgTool( type, name, parent ), - m_decisionId( HLT::Identifier::fromToolName( name ) ) {} + m_selectorTool(), + m_lumiBlockMuTool("LumiBlockMuTool/LumiBlockMuTool"), + m_decisionId( HLT::Identifier::fromToolName( name ) ) +{ + declareProperty("LumiBlockMuTool", m_lumiBlockMuTool, "Luminosity Tool" ); +} + + StatusCode TrigL2CaloRingerHypoToolMT::initialize() { - ///What is the number of discriminators? - m_nThresholds = m_thresholds.size(); + m_selectorTool.setConstantsCalibPath( m_constantsCalibPath ); + m_selectorTool.setThresholdsCalibPath( m_thresholdsCalibPath ); - if((m_etaBins.size() != m_nThresholds) && (m_etBins.size() != m_nThresholds)){ - ATH_MSG_ERROR("Eta/Et list dont match with the number of thesholds found"); + if(m_selectorTool.initialize().isFailure()) + return StatusCode::FAILURE; + + if (m_lumiBlockMuTool.retrieve().isFailure()) return StatusCode::FAILURE; - } - - ///Initialize all discriminators - for(unsigned i=0; i<m_nThresholds; ++i) - { - ///Hold the pointer configuration - try{ - m_cutDefs.push_back(new TrigL2CaloRingerHypoToolMT::CutDefsHelper(m_thresholds[i],m_etaBins[i][0], - m_etaBins[i][1], m_etBins[i][0],m_etBins[i][1])); - }catch(const std::bad_alloc& xa){ - ATH_MSG_ERROR("Can not alloc cutDefs on memory."); - return StatusCode::FAILURE; - } - }///Loop over discriminators ATH_MSG_INFO("TrigL2CaloRingerHypo initialization completed successfully."); + return StatusCode::SUCCESS; +} + +StatusCode TrigL2CaloRingerHypoToolMT::finalize() { + + if (!m_monTool.empty()){ + ATH_MSG_DEBUG("Retrieving monTool"); + ATH_CHECK(m_monTool.retrieve()); + }else{ + ATH_MSG_INFO("No monTool configured. NO MONITORING"); + } + + if(m_selectorTool.finalize().isFailure()) + return StatusCode::FAILURE; + ATH_MSG_INFO("TrigL2CaloRingerHypo finalization completed successfully."); return StatusCode::SUCCESS; } - TrigL2CaloRingerHypoToolMT::~TrigL2CaloRingerHypoToolMT() {} -bool TrigL2CaloRingerHypoToolMT::decideOnSingleObject( const xAOD::TrigRNNOutput* rnnOutput) const { - +bool TrigL2CaloRingerHypoToolMT::decideOnSingleObject( const xAOD::TrigRingerRings* ringerShape) const { + + auto etMon = Monitored::Scalar("Et",-100); + auto etaMon = Monitored::Scalar("Eta",-100); + auto phiMon = Monitored::Scalar("Phi",-100); + auto rnnOutMon = Monitored::Scalar("RnnOut",-100); + + + auto total_time = Monitored::Timer("TIME_total"); + auto propagate_time = Monitored::Timer("TIME_propagate"); + auto preproc_time = Monitored::Timer("TIME_preproc"); + auto decide_time = Monitored::Timer("TIME_decide"); + auto mon = Monitored::Group(m_monTool,etMon,etaMon,phiMon,rnnOutMon,total_time,propagate_time,preproc_time,decide_time); + + total_time.start(); + + if(m_acceptAll){ ATH_MSG_DEBUG("AcceptAll property is set: taking all events"); return true; } - if(!rnnOutput){ - ATH_MSG_WARNING("There is no xAO::TrigRNNOutput into the TriggerElement."); - return false; - } const xAOD::TrigEMCluster *emCluster = 0; - const xAOD::TrigRingerRings *ringerShape = rnnOutput->ringer(); if(ringerShape){ emCluster = ringerShape->emCluster(); if(!emCluster){ @@ -79,51 +103,47 @@ bool TrigL2CaloRingerHypoToolMT::decideOnSingleObject( const xAOD::TrigRNNOutput float eta = std::fabs(emCluster->eta()); float et = emCluster->et() / Gaudi::Units::GeV; - if(eta>2.50) eta=2.50;///fix for events out of the ranger - float output = rnnOutput->rnnDecision().at(0); + float avgmu = m_lumiBlockMuTool->averageInteractionsPerCrossing(); + + etaMon = emCluster->eta(); + etMon = emCluster->et(); + phiMon = emCluster->phi(); + if(eta>2.50) eta=2.50;///fix for events out of the ranger ///Et threshold - if(et < m_emEtCut){ - ATH_MSG_DEBUG( "Event reproved by Et threshold. Et = " << et << ", EtCut = " << m_emEtCut); + if(et < m_emEtCut/Gaudi::Units::GeV){ + ATH_MSG_DEBUG( "Event reproved by Et threshold. Et = " << et << ", EtCut = " << m_emEtCut/Gaudi::Units::GeV); return false; } + const std::vector<float> rings = ringerShape->rings(); + std::vector<float> refRings(rings.size()); + refRings.assign(rings.begin(), rings.end()); - if(m_nThresholds > 0){ - ///Select the correct threshold for each eta/Et region - for(unsigned i=0; i<m_nThresholds;++i){ - if((et > m_cutDefs[i]->etmin()) && (et <= m_cutDefs[i]->etmax())){ - if((eta > m_cutDefs[i]->etamin()) && (eta <= m_cutDefs[i]->etamax())){ - if(output >= m_cutDefs[i]->threshold()){ - ATH_MSG_DEBUG( "Event information:" ); - //ATH_MSG_DEBUG( " " << m_cutDefs[i]->etmin() << "< Et ("<<et<<") GeV" << " <=" << m_cutDefs[i]->etmax() ); - //ATH_MSG_DEBUG( " " << m_cutDefs[i]->etamin() << "< |Eta| ("<<eta<<") " << " <=" << m_cutDefs[i]->etamax() ); - //ATH_MSG_DEBUG( " rnnOutput: " << output << " and threshold: " << m_cutDefs[i]->threshold()); - return true; - }else{ - ATH_MSG_DEBUG( "Event reproved by discriminator threshold" ); - }///Threshold condition - break; - }///Loop over eta - }///Loop over et - }///Loop over cutDefs - }else{ - ATH_MSG_DEBUG( "There is no discriminator. Event approved by Et threshold."); - return true; - }///protection - return false; -} + ATH_MSG_DEBUG("Et = "<< et << " Eta = "<<eta << " mu = " << avgmu << "rsize = "<< refRings.size()); + auto output = m_selectorTool.calculate( refRings, et, eta, avgmu, propagate_time, preproc_time ); + rnnOutMon = output; + ATH_MSG_DEBUG(name()<< " generate as NN output " << output ); + + decide_time.start(); + bool accept = m_selectorTool.accept(output, et,eta,avgmu); + decide_time.stop(); + + total_time.stop(); + return accept; + +} -StatusCode TrigL2CaloRingerHypoToolMT::decide( std::vector<RNNOutInfo>& input ) const { +StatusCode TrigL2CaloRingerHypoToolMT::decide( std::vector<RingerInfo>& input ) const { for ( auto i: input ) { - auto objDecision = decideOnSingleObject( i.rnnOut ); - if ( objDecision == true ) { - addDecisionID( m_decisionId.numeric(), i.decision ); - } + auto objDecision = decideOnSingleObject( i.ringerShape ); + if ( objDecision == true ) { + addDecisionID( m_decisionId.numeric(), i.decision ); + } } return StatusCode::SUCCESS; } diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoToolMT.h b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoToolMT.h index fb50c43d5da1ce3ce29094b7f8828c9b8bbaacc1..802a1d8c216919428534c236c959899d136cb0a7 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoToolMT.h +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/TrigL2CaloRingerHypoToolMT.h @@ -1,8 +1,9 @@ /* Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration */ -#ifndef TRIGL2CALORINGERTOOL_H -#define TRIGL2CALORINGERTOOL_H 1 + +#ifndef TRIGL2CALORINGERHYPOTOOLMT_H +#define TRIGL2CALORINGERHYPOTOOLMT_H 1 #include "GaudiKernel/Property.h" #include "CLHEP/Units/SystemOfUnits.h" @@ -10,75 +11,45 @@ #include "AthenaMonitoring/GenericMonitoringTool.h" #include "DecisionHandling/HLTIdentifier.h" #include "DecisionHandling/TrigCompositeUtils.h" - -#include "xAODTrigRinger/TrigRNNOutput.h" - - - - +#include "xAODTrigRinger/TrigRingerRings.h" +#include "TrigMultiVarHypo/tools/RingerSelectorTool.h" +#include "LumiBlockComps/ILumiBlockMuTool.h" class TrigL2CaloRingerHypoToolMT : virtual public ::AthAlgTool { - public: - TrigL2CaloRingerHypoToolMT( const std::string& type, - const std::string& name, - const IInterface* parent ); - - virtual ~TrigL2CaloRingerHypoToolMT(); - virtual StatusCode initialize() override; - - - - struct RNNOutInfo { - TrigCompositeUtils::Decision* decision; - const xAOD::TrigRNNOutput* rnnOut; - }; - - StatusCode decide( std::vector<RNNOutInfo>& decisions ) const; - bool decideOnSingleObject( const xAOD::TrigRNNOutput* rnnOut ) const; - - - ///Helper class - class CutDefsHelper{ - private: - double m_etamin; - double m_etamax; - double m_etmin; - double m_etmax; - double m_threshold; + public: + TrigL2CaloRingerHypoToolMT( const std::string& type, + const std::string& name, + const IInterface* parent ); - public: - CutDefsHelper(double th, double etamin, double etamax, - double etmin, double etmax):m_etamin(etamin), - m_etamax(etamax),m_etmin(etmin),m_etmax(etmax), - m_threshold(th) - {;} + virtual ~TrigL2CaloRingerHypoToolMT(); + + virtual StatusCode initialize() override; + virtual StatusCode finalize() override; - ~CutDefsHelper() - {;} - double threshold(){return m_threshold;}; - double etamin(){return m_etamin;}; - double etamax(){return m_etamax;}; - double etmin(){return m_etmin;}; - double etmax(){return m_etmax;}; - };///end of configuration + + bool decideOnSingleObject( const xAOD::TrigRingerRings* ringerShape ) const; - std::vector<TrigL2CaloRingerHypoToolMT::CutDefsHelper*> m_cutDefs; + struct RingerInfo { + TrigCompositeUtils::Decision* decision; + const xAOD::TrigRingerRings* ringerShape; + }; + StatusCode decide( std::vector<RingerInfo>& decisions ) const; - private: - HLT::Identifier m_decisionId; - Gaudi::Property<bool> m_acceptAll{ this, "AcceptAll", false, "Ignore selection" }; - Gaudi::Property<std::vector<double>> m_thresholds; - Gaudi::Property<std::vector<std::vector<double>>> m_etaBins; - Gaudi::Property<std::vector<std::vector<double>>> m_etBins; - Gaudi::Property<double> m_nThresholds; - Gaudi::Property<double> m_emEtCut; + private: + + Ringer::RingerSelectorTool m_selectorTool; + ToolHandle<ILumiBlockMuTool> m_lumiBlockMuTool; + ToolHandle<GenericMonitoringTool> m_monTool{ this, "MonTool", "", "Monitoring tool" }; + HLT::Identifier m_decisionId; + Gaudi::Property<bool> m_acceptAll{ this, "AcceptAll", false, "Ignore selection" }; + Gaudi::Property<double> m_emEtCut{this,"EtCut", 0.0, "Et threshold"}; + Gaudi::Property<std::string> m_constantsCalibPath{this, "ConstantsCalibPath", "", "Constants Calib Path"}; + Gaudi::Property<std::string> m_thresholdsCalibPath{this, "ThresholdsCalibPath", "", "Thresholds Calib Path"}; - - //ToolHandle<GenericMonitoringTool> m_monTool{ this, "MonTool", "", "Monitoring tool" }; }; //:DECLARE_TOOL_FACTORY( TrigL2CaloRingerHypoToolMT ) diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/components/TrigMultiVarHypo_entries.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/components/TrigMultiVarHypo_entries.cxx old mode 100644 new mode 100755 index 4eb9c6f1c7bc1fbeef755001fecb16b196a0273a..124b9c4d6e3175ed27e99c42c029deeb6bf2db03 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/components/TrigMultiVarHypo_entries.cxx +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/components/TrigMultiVarHypo_entries.cxx @@ -1,13 +1,17 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ + + #include "TrigMultiVarHypo/TrigL2CaloRingerFex.h" #include "TrigMultiVarHypo/TrigL2CaloRingerHypo.h" -#include "../TrigL2CaloRingerFexMT.h" +#include "../TrigL2CaloRingerHypoToolMT.h" +#include "../TrigL2CaloRingerHypoAlgMT.h" DECLARE_COMPONENT( TrigL2CaloRingerFex ) DECLARE_COMPONENT( TrigL2CaloRingerHypo ) -DECLARE_COMPONENT( TrigL2CaloRingerFexMT ) +DECLARE_COMPONENT( TrigL2CaloRingerHypoToolMT ) +DECLARE_COMPONENT( TrigL2CaloRingerHypoAlgMT ) diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/preproc/TrigRingerPreprocessor.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/preproc/TrigRingerPreprocessor.cxx deleted file mode 100644 index bfc343700ea61965af616686d83a6e24ffd52a8d..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/preproc/TrigRingerPreprocessor.cxx +++ /dev/null @@ -1,213 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ - -///Local include(s) -#include "TrigMultiVarHypo/preproc/TrigRingerPreprocessor.h" -#include "TrigMultiVarHypo/tools/TrigRingerHelper.h" -///std library(s) -#include <numeric> -#include <cmath> - -#include <iostream> -using namespace std; - -using TrigCaloRingsHelper::RingSet; - -//!====================================================================================== -TrigRingerPreprocessor::TrigRingerPreprocessor(std::vector<unsigned int> &nRings, - std::vector<unsigned int> &normRings, - std::vector<unsigned int> §ionRings) -{ - // For each configured ring set, create an ordered RingSet, placing them into a vector. - for (unsigned int i = 0; i < nRings.size(); ++i) { - m_ringsSet.push_back(new RingSet(nRings[i], (RingSet::Normalisation) normRings[i], (RingSet::Section) sectionRings[i])); - } - - m_energyThreshold = -9999; - m_maxRingsAccumulated = std::accumulate(nRings.begin(), nRings.end(), 0); -} -//!====================================================================================== -TrigRingerPreprocessor::~TrigRingerPreprocessor(){ - for(unsigned rs=0; rs<m_ringsSet.size(); ++rs){ - if(m_ringsSet.at(rs)) delete m_ringsSet.at(rs); - } -} -//!====================================================================================== -void TrigRingerPreprocessor::sequential(Pattern& rings, const Feature& stop_energy) { - - //if the energyThreshold is greater than `stop', use stop instead. - Feature stop = stop_energy; - if (m_energyThreshold > stop) { - stop = m_energyThreshold; - } - - Pattern norm(rings.size(), 0); - Feature sum = 0; - - for (unsigned i = 0; i < rings.size(); ++i) - sum += rings[i]; - - norm[0] = std::fabs(sum); - - //if the sum is less than stop, apply layer normalisation to all rings - if (norm[0] < stop) { - //if the normalization factor is smaller than stop, I have to verify if it - //is still too small. A small value will make things go bad... So, I - //verify if the sum is smaller than the layer maxima, if that is the case, - //I have to reconsider the normalization factor to a more reasonable - //value, e.g. the layer absolute maximum - Feature max = -999e30; - Feature min = 999e30; - for (unsigned i = 0; i < rings.size(); ++i) { - if (rings[i] < min) - min = rings[i]; - if (rings[i] > max) - max = rings[i]; - } - if (norm[0] < max) { - Feature new_norm = std::fabs(max); - if (std::fabs(min) > new_norm) new_norm = std::fabs(min); - norm[0] = new_norm; - } - - //if the sum is even less than the threshold, do not apply any - //normalisation at all here! - if (norm[0] < m_energyThreshold) { - return; - } - - for (unsigned i = 0; i < rings.size(); i++) { - rings[i] /= norm[0]; - } - return; - } - - //I'm ok to proceed with the calculations - bool fixed = false; //shall I stop to apply a variant normalisation factor? - for (unsigned int i=1; i<rings.size(); ++i) { - norm[i] = std::fabs(norm[i-1] - rings[i-1]); - //if the normalization factor is less than `stop', just apply a fixed, - //known to be great enough, value instead of that. Otherwise, the noise - //will get too amplified. - if (fixed || norm[i] < stop) { - norm[i] = norm[0]; - if (!fixed) { - fixed = true; - } - } - } - for (unsigned i = 0; i < rings.size(); ++i) { - rings[i] /= norm[i]; - } -} -//!====================================================================================== -void TrigRingerPreprocessor::normalize_rings(std::vector<RingSet*> &rset) { - - //at this point, I have all ring sets, separated - double emsection = 0; // energy at e.m. section - double hadsection = 0; // energy at hadronic section - - //for each RingSet (first iteration) -- apply set dependent norms. - for (auto &jt : rset) - { - //calculate the relevant energies - double setenergy = 0; - for (unsigned i=0; i<jt->pattern().size(); ++i) setenergy += jt->pattern()[i]; - if (jt->section() == RingSet::EM) emsection += setenergy; - else hadsection += setenergy; - - //what is the normalisation strategy here? Can I do something already? - switch(jt->normalisation()) - { - case RingSet::SET: - if (setenergy > m_energyThreshold) { - for (unsigned i = 0; i < jt->pattern().size(); ++i) - jt->pattern()[i] /= fabs(setenergy); - } - break; - case RingSet::SEQUENTIAL: - sequential(jt->pattern()); - break; - default: //do nothing - break; - } - } //for each RingSet (first iteration) - - double event = emsection + hadsection; // event energy - //for each RingSet (third iteration) -- now accumulate and store - for (auto &jt : rset) - { - //what is the normalisation strategy here? Do the rest of options - switch(jt->normalisation()) - { - case RingSet::EVENT: - if (event > m_energyThreshold) { - for (unsigned i = 0; i < jt->pattern().size(); ++i) - jt->pattern()[i] /= fabs(event); - } - break; - case RingSet::SECTION: - if (jt->section() == RingSet::EM) - { - if (emsection > m_energyThreshold) { - for (unsigned i = 0; i < jt->pattern().size(); ++i) - jt->pattern()[i] /= fabs(emsection); - } - }else - { - if (hadsection > m_energyThreshold) { - for (unsigned i = 0; i < jt->pattern().size(); ++i) - jt->pattern()[i] /= fabs(hadsection); - } - } - break; - - default: //do nothing - break; - } - } -} -//!====================================================================================== -bool TrigRingerPreprocessor::ppExecute( Pattern& rings) { - // vector rings 2 RingSets - unsigned ridx = 0; - for (auto& jt : m_ringsSet){ - jt->reset(); //reset this ringset - for (unsigned j = 0; j < jt->max(); j++){ - jt->add( rings.at(ridx) ); - ridx++; - } //for each ring of the RingSet - } //for each RingSet - - // Normalize - normalize_rings(m_ringsSet); - - // RingSets 2 vector rings - rings.clear(); - rings.reserve( m_maxRingsAccumulated ); - for (auto& jt : m_ringsSet) rings.insert(rings.end(), jt->pattern().begin(), jt->pattern().end()); - return true; -} -//!====================================================================================== -float TrigRingerPreprocessor::normalize_eta( float eta, float etamin, float etamax ){ - int s = eta >= 0 ? 1 : -1; - return ((std::abs(eta)-etamin) * s)/(etamax-etamin); -} -//!====================================================================================== -float TrigRingerPreprocessor::normalize_mu(float mu, float mumax ){ - if(mu>mumax) - mu=mumax; - return (mu/mumax); -} - - - - - - - - - - - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/MultiLayerPerceptron.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/MultiLayerPerceptron.cxx deleted file mode 100644 index 838382379ed857674bc2454911366186170a598e..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/MultiLayerPerceptron.cxx +++ /dev/null @@ -1,267 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ - -/* - * Neural Network Implementation v3.0 - * Developed by: Dhiana Deva Cavalcanti Rocha - * Contact: dhiana.deva@gmail.com - * Laboratorio de Processamento de Sinais - * Universidade Federal do Rio de Janeiro - */ - - -///Local include(s) -#include "TrigMultiVarHypo/tools/MultiLayerPerceptron.h" - -///std library(s) -#include <cstddef> -#include <vector> -#include <cmath> - -MultiLayerPerceptron::MultiLayerPerceptron(std::vector<unsigned int> &n, - std::vector<REAL> &w, - std::vector<REAL> &b, - REAL etmin, - REAL etmax, - REAL etamin, - REAL etamax, - REAL mumin, - REAL mumax) - : m_nodes(n), - m_weights(0), - m_bias(0), - m_layerOutputs(0), - m_neuronOutputs(0), - m_etmin(etmin), - m_etmax(etmax), - m_etamin(etamin), - m_etamax(etamax), - m_mumin(mumin), - m_mumax(mumax) -{ - if ( !n.size() ) throw BAD_BIAS_SIZE; //Nothing to do - - //Verifying weight vector size - unsigned wSize=0; - for (unsigned k=0; k<n.size()-1; ++k) wSize+=n[k]*n[k+1]; - try{ - if (wSize != w.size() || !w.size() ) throw BAD_WEIGHT_SIZE; - //Verifying bias vector size - unsigned bSize=0; - for (unsigned k=1; k<n.size(); ++k)bSize+=n[k]; - if(bSize != b.size() || !b.size() ) throw BAD_BIAS_SIZE; - }catch(int i){ - throw; - } - //First weight dimension - try{ - m_weights = new REAL **[n.size()-1]; //number of layers excluding input - }catch (const std::bad_alloc& xa){ - m_weights = nullptr; - throw; - } - //First bias dimension - try{ - m_bias = new REAL *[n.size()-1]; //number of layers excluding input - }catch (const std::bad_alloc& xa){ - m_bias = nullptr; - throw; - } - - //First multiplication dimension - try{ - m_neuronOutputs = new REAL *[n.size()]; - m_layerOutputs = new REAL *[n.size()]; //number of layers including input - } catch (const std::bad_alloc& xa){ - m_layerOutputs = nullptr; - m_neuronOutputs = nullptr; - throw; - } - - for (unsigned l = 0; l<n.size(); ++l){ - //Checks if no bad_alloc happened to layerOutputs - if(m_layerOutputs){ - try{ - //Second and last dimension of layerOutputs - m_layerOutputs[l] = new REAL[n[l]]; //number of nodes in current layer - } catch (const std::bad_alloc& xa){ - m_layerOutputs[l] = nullptr; - throw; - } - } - - //Checks if no bad_alloc happened to layerOutputs - if(m_neuronOutputs){ - try{ - //Second and last dimension of layerOutputs - m_neuronOutputs[l] = new REAL[n[l]]; //number of nodes in current layer - } catch (const std::bad_alloc& xa){ - m_neuronOutputs[l] = nullptr; - throw; - } - } - } - - std::vector<REAL>::const_iterator itrB = b.begin(); - std::vector<REAL>::const_iterator itrW = w.begin(); - for (unsigned l = 0; l < n.size()-1; ++l){ - //Checks if no bad_alloc happened to bias - if(m_bias){ - try{ - //Second and last dimension of bias - m_bias[l] = new REAL[n[l+1]]; //number of nodes in next layer - } catch (const std::bad_alloc& xa){ - m_bias[l] = nullptr; - throw; - } - } - //Checks if no bad_alloc happened to m_weights - if(m_weights){ - try{ - //Second dimension of weights - m_weights[l] = new REAL*[n[l+1]]; //number of nodes in next layer - } catch (const std::bad_alloc& xa){ - m_weights[l] = nullptr; - throw; - } - } - for (unsigned i=0; i<n[l+1]; i++){ - //Checks if no bad_alloc happened to weights[l] - if(m_weights){ - if(m_weights[l]){ - try{ - //Third and last dimension of weights - m_weights[l][i]=new REAL [n[l]]; //number of nodes in current layer - } catch (const std::bad_alloc& xa){ - m_weights[l][i] = nullptr; - throw; - } - } - } - //Populating bias matrix - if (m_bias){ - //Checks if no bad_alloc happened to bias[l] - if (m_bias[l]){ - m_bias[l][i]=(*itrB++); - } - } - //Populating weight matrix - for (unsigned j=0; j<n[l]; j++){ - if (m_weights){ - if (m_weights[l]){ - if(m_weights[l][i]){ - m_weights[l][i][j]=(*itrW++); - } - } - } - } - } - - //Populating multiplication matrix so that starting sum equals zero - for (unsigned i=0; i<n[l]; i++){ - //Checks if no bad_alloc happened to layerOutputs[L] - if (m_layerOutputs){ - if (m_layerOutputs[l]){ - m_layerOutputs[l][i]=0; - } - } - if (m_neuronOutputs){ - if (m_neuronOutputs[l]){ - m_neuronOutputs[l][i]=0; - } - } - } - } - -} - -MultiLayerPerceptron::~MultiLayerPerceptron(){ - - for (unsigned l=0; l<m_nodes.size()-1; l++){ - if (m_bias){ - if (m_bias[l]==nullptr){ - delete m_bias[l]; //Deletes null pointer - }else{ - delete[] m_bias[l]; //Deletes array of values at second dimension of bias - } - } - for (unsigned i=0; i<m_nodes[l+1]; i++){ - if (m_weights){ - if(m_weights[l]){ - if (m_weights[l][i]==nullptr){ - delete m_weights[l][i]; //Deletes null pointer - }else{ - delete[] m_weights[l][i]; //Deletes array of values at third dimension of weights - } - } - } - } - if (m_weights){ - if (m_weights[l]==nullptr){ - delete m_weights[l]; //Deletes null pointer - }else{ - delete[] m_weights[l]; //Deletes array of pointers at second dimension of weights - } - } - }//Layers - - for (unsigned l=0; l<m_nodes.size(); l++){ - if(m_layerOutputs){ - if (m_layerOutputs[l]==nullptr){ - delete m_layerOutputs[l]; //Deletes null pointer - } - }else{ - delete[] m_layerOutputs[l]; //Deletes array of values at second dimension of layerOutputs - } - } - - if (m_weights==nullptr){ - delete m_weights; //Deletes null pointer - }else{ - delete[] m_weights; //Deletes array of pointers at first dimension of weights - } - - if (m_bias==nullptr){ - delete m_bias; //Deletes null pointer - }else{ - delete[] m_bias; //Deletes array of pointers at first dimension of bias - } - - if (m_layerOutputs==nullptr){ - delete m_layerOutputs; //Deletes null pointer - }else{ - delete[] m_layerOutputs; //Deletes array of pointers at first dimension of layerOutputs - } -} - -float MultiLayerPerceptron::propagate(std::vector<float> &input){ - - for(unsigned i=0; i<input.size();i++){ - m_layerOutputs[0][i]=(REAL)input[i]; - } - - for(unsigned l=0; l<m_nodes.size()-1;l++){ - for(unsigned i=0; i<m_nodes[l+1]; i++){ - m_layerOutputs[l+1][i]=m_bias[l][i]; - for (unsigned j=0;j<m_nodes[l]; j++) m_layerOutputs[l+1][i]+=m_layerOutputs[l][j]*m_weights[l][i][j]; - m_neuronOutputs[l+1][i] = m_layerOutputs[l+1][i]; // Hold the sum neuron output before apply the activation function - m_layerOutputs[l+1][i] = tanh(m_layerOutputs[l+1][i]); - } - } - return (float)(m_layerOutputs[m_nodes.size()-1][0]); -} - -float MultiLayerPerceptron::getOutput(){ - return (float)(m_layerOutputs[m_nodes.size()-1][0]); -} - -float MultiLayerPerceptron::getOutputBeforeTheActivationFunction(){ - return (float)(m_neuronOutputs[m_nodes.size()-1][0]); -} - - - - - - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/RingerSelectorTool.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/RingerSelectorTool.cxx new file mode 100644 index 0000000000000000000000000000000000000000..ed84774ad6280ff678f6a9f2b26cf3c7ae41039c --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/RingerSelectorTool.cxx @@ -0,0 +1,412 @@ + +/* + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration +*/ + + +// Use this tool as base to asg or alg mt +#include "TrigMultiVarHypo/tools/RingerSelectorTool.h" +#include "TrigMultiVarHypo/tools/procedures/Norm1.h" +#include "TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h" + +using namespace Monitored; +using namespace Ringer; + +RingerSelectorTool::RingerSelectorTool(): + asg::AsgMessaging("RingerSelectorTool"), + m_reader("RingerReader"), + m_useTrack(false), + m_useCaloRings(true), + m_useShowerShape(false), + m_useTileCal(true) +{;} + + +RingerSelectorTool::~RingerSelectorTool() +{ + ATH_MSG_INFO("Finalizing this tool...."); +} + + +StatusCode RingerSelectorTool::initialize() +{ + if(!m_thresholdsCalibPath.empty()){ + if(!m_reader.retrieve(m_thresholdsCalibPath, m_cutDefs)){ + ATH_MSG_ERROR("Can not retrieve the information from " << m_thresholdsCalibPath ); + return StatusCode::FAILURE; + } + // retrieve metadata + m_doPileupCorrection = m_reader.doPileupCorrection(); + + m_lumiCut = m_reader.lumiCut(); + } + + // Retrieve the NeuralNetwork list + if(!m_constantsCalibPath.empty()){ + if(!m_reader.retrieve(m_constantsCalibPath, m_discriminators)){ + ATH_MSG_ERROR("Can not retrieve all information from " << m_constantsCalibPath ); + return StatusCode::FAILURE; + } + + m_useShowerShape=m_reader.useShowerShape(); + m_useTrack=m_reader.useTrack(); + m_useCaloRings=m_reader.useCaloRings(); + m_useTileCal=m_reader.useTileCal(); + m_removeOutputTansigTF=m_reader.removeOutputTansigTF(); + + } + + + // Use Norm1 as default for rings normalization only! + for(unsigned i=0; i<m_discriminators.size();++i) m_preprocs.push_back( std::make_shared< Ringer::Norm1 > (-999.,999.,-999.,999.,-999.,999.,true)); + + + + ATH_MSG_INFO("Using the activation function in the last layer? " << (m_removeOutputTansigTF ? "No":"Yes") ); + ATH_MSG_INFO("Using the Correction? " << (m_doPileupCorrection ? "Yes":"No") ); + ATH_MSG_INFO("Using lumi threshold equal: " << m_lumiCut ); + ATH_MSG_INFO("Initialization completed successfully." ); + return StatusCode::SUCCESS; + +} + + +StatusCode RingerSelectorTool::finalize(){ + return StatusCode::SUCCESS; +} + + +double RingerSelectorTool::calculate( std::vector<float>& rings, double et, double eta, double mu, + double eratio, double reta, double rphi, double rhad, double weta2, + double f1, double f3 ) +const { + + float output = -999; + // It's ready to select the correct eta/et bin + std::shared_ptr<Ringer::IModel> discr; + std::shared_ptr<Ringer::INormalization> preproc; + + // Apply the discriminator + if(retrieve(et,eta,mu,discr,preproc)){ + + //ATH_MSG_DEBUG(( "ringer->rings().size() is: " <<rings.size()); + std::vector<float> refRings(rings.size()); + refRings.assign(rings.begin(), rings.end()); + + // norm1 calo rings + if(preproc) preproc->execute(refRings); + + // standards calo variables + refRings.push_back(eratio/1.0); + refRings.push_back(reta/1.0); + refRings.push_back(rphi/1.0); + refRings.push_back(rhad/0.1); + refRings.push_back(weta2/0.02); + refRings.push_back(f1/0.6); + refRings.push_back(f3/0.04); + auto answer = discr->propagate(refRings); + + if(m_removeOutputTansigTF){ + output = answer.outputBeforeTheActivationFunction; + }else{ + output = answer.output; + } + + + }else{ + ATH_MSG_DEBUG("There is no discriminator into this Fex." ); + }// + return output; +} + + + + + +double RingerSelectorTool::calculate( std::vector<float>& rings, double et, double eta, double mu, + double eratio, double reta, double rphi, double rhad, double weta2, + double f1, double f3, double deltaeta1, double deltaPoverP, + double deltaPhiReescaled, double d0significance, double d0pvunbiased, + double eProbabilityHT) +const { + + float output = -999; + ///It's ready to select the correct eta/et bin + std::shared_ptr<Ringer::IModel> discr; + std::shared_ptr<Ringer::INormalization> preproc; + + + ///Apply the discriminator + if(retrieve(et,eta,mu,discr,preproc)){ + + //ATH_MSG_DEBUG(( "ringer->rings().size() is: " <<rings.size()); + std::vector<float> refRings(rings.size()); + refRings.assign(rings.begin(), rings.end()); + + // norm1 calo rings + if(preproc) preproc->execute(refRings); + // standards calo variables + refRings.push_back(eratio/1.0); + refRings.push_back(reta/1.0); + refRings.push_back(rphi/1.0); + refRings.push_back(rhad/0.1); + refRings.push_back(weta2/0.02); + refRings.push_back(f1/0.6); + refRings.push_back(f3/0.04); + // track variables + refRings.push_back(deltaeta1/0.05); + refRings.push_back(deltaPoverP/1.0); + refRings.push_back(deltaPhiReescaled/0.05); + refRings.push_back(d0significance/6.0); + refRings.push_back(d0pvunbiased/0.2); + refRings.push_back(eProbabilityHT/1.0); + // Add extra variables in this order! Do not change this!!! + + auto answer = discr->propagate(refRings); + + if(m_removeOutputTansigTF){ + output = answer.outputBeforeTheActivationFunction; + }else{ + output = answer.output; + } + + + }else{ + ATH_MSG_DEBUG( "There is no discriminator into this Fex." ); + }// + return output; +} + + + + +double RingerSelectorTool::calculate( std::vector<float>& rings, double et, double eta, double mu, + double deltaeta1, double deltaPoverP, double deltaPhiReescaled, + double d0significance, double d0pvunbiased, double eProbabilityHT) + +const { + + float output=-999.; + + // It's ready to select the correct eta/et bin + std::shared_ptr<Ringer::IModel> discr; + std::shared_ptr<Ringer::INormalization> preproc; + + + // Apply the discriminator + if(retrieve(et,eta,mu,discr,preproc)){ + + //ATH_MSG_DEBUG(( "ringer->rings().size() is: " <<rings.size()); + std::vector<float> refRings(rings.size()); + refRings.assign(rings.begin(), rings.end()); + if(preproc) preproc->execute(refRings); + refRings.push_back(deltaeta1/0.05); + refRings.push_back(deltaPoverP/1.0); + refRings.push_back(deltaPhiReescaled/0.05); + refRings.push_back(d0significance/6.0); + refRings.push_back(d0pvunbiased/0.2); + refRings.push_back(eProbabilityHT/1.0); + // Add extra variables in this order! Do not change this!!! + + auto answer = discr->propagate(refRings); + + if(m_removeOutputTansigTF){ + output = answer.outputBeforeTheActivationFunction; + }else{ + output = answer.output; + } + + + + }else{ + ATH_MSG_DEBUG( "There is no discriminator into this Fex." ); + }// + return output; +} + +double RingerSelectorTool::calculate( std::vector<float>& rings, double et, double eta, double mu) + +const { + + float output = -999; + ///It's ready to select the correct eta/et bin + std::shared_ptr<Ringer::IModel> discr; + std::shared_ptr<Ringer::INormalization> preproc; + + + ///Apply the discriminator + if(retrieve(et,eta,mu,discr,preproc)){ + //ATH_MSG_DEBUG(( "ringer->rings().size() is: " <<rings.size()); + std::vector<float> refRings(rings.size()); + refRings.assign(rings.begin(), rings.end()); + // Apply preprocessor + if(preproc) preproc->execute(refRings); + auto answer = discr->propagate(refRings); + + if(m_removeOutputTansigTF){ + output = answer.outputBeforeTheActivationFunction; + }else{ + output = answer.output; + } + + + + }else{ + ATH_MSG_DEBUG( "There is no discriminator into this Fex." ); + }// + + return output; +} + + + +double RingerSelectorTool::calculate( std::vector<float>& rings, double et, double eta, double mu, + Monitored::Timer &propagate_time, + Monitored::Timer &preproc_time) + +const { + + float output = -999; + ///It's ready to select the correct eta/et bin + std::shared_ptr<Ringer::IModel> discr; + std::shared_ptr<Ringer::INormalization> preproc; + + + ///Apply the discriminator + if(retrieve(et,eta,mu,discr,preproc)){ + //ATH_MSG_DEBUG(( "ringer->rings().size() is: " <<rings.size()); + std::vector<float> refRings(rings.size()); + refRings.assign(rings.begin(), rings.end()); + // Apply preprocessor + preproc_time.start(); + if(preproc) preproc->execute(refRings); + preproc_time.stop(); + propagate_time.start(); + auto answer = discr->propagate(refRings); + propagate_time.stop(); + + if(m_removeOutputTansigTF){ + output = answer.outputBeforeTheActivationFunction; + }else{ + output = answer.output; + } + + + + }else{ + ATH_MSG_DEBUG( "There is no discriminator into this Fex." ); + }// + + return output; +} + + +double RingerSelectorTool::calculate( double et, double eta, double mu, + double deltaeta1, double deltaPoverP, double deltaPhiReescaled, + double d0significance, double d0pvunbiased, double eProbabilityHT) +const { + + ///It's ready to select the correct eta/et bin + std::shared_ptr<Ringer::IModel> discr; + std::shared_ptr<Ringer::INormalization> preproc; + + float output = -999; + ///Apply the discriminator + if(retrieve(et,eta,mu,discr,preproc)){ + std::vector<float> refRings; + refRings.push_back(deltaeta1/0.05); + refRings.push_back(deltaPoverP/1.0); + refRings.push_back(deltaPhiReescaled/0.05); + refRings.push_back(d0significance/6.0); + refRings.push_back(d0pvunbiased/0.2); + refRings.push_back(eProbabilityHT/1.0); + // Add extra variables in this order! Do not change this!!! + auto answer = discr->propagate(refRings); + + if(m_removeOutputTansigTF){ + output = answer.outputBeforeTheActivationFunction; + }else{ + output = answer.output; + } + + }else{ + ATH_MSG_DEBUG( "There is no discriminator into this Fex." ); + }// + return output; +} + + +bool RingerSelectorTool::accept( double discriminant, double et, double eta, double mu) + +const { + + eta = std::fabs(eta); + if(eta>2.50) eta=2.50;///fix for events out of the ranger + et = et*1e-3; ///in GeV + double threshold = 0.0; + double avgmu = mu; + //m_doPileupCorrection=false; + //Apply cut + for(unsigned i=0; i < m_cutDefs.size(); ++i){ + if((avgmu > m_cutDefs[i]->mumin()) && (avgmu <= m_cutDefs[i]->mumax())){ + if((et > m_cutDefs[i]->etmin()) && (et <= m_cutDefs[i]->etmax())){ + if((eta > m_cutDefs[i]->etamin()) && (eta <= m_cutDefs[i]->etamax())){ + + if(m_doPileupCorrection){ + // Limited Pileup + if(avgmu>m_lumiCut) + avgmu=m_lumiCut; + //ATH_MSG_DEBUG(("Apply avgmu == " << avgmu); + threshold = m_cutDefs[i]->threshold(avgmu); + //ATH_MSG_DEBUG(("With correction, thr = "<<threshold); + }else{ + threshold = m_cutDefs[i]->threshold(); + //ATH_MSG_DEBUG( "Without correction, thr = "<<threshold ); + } + } + } + } + }// Loop over cutDefs + + if(discriminant >= threshold){ + //ATH_MSG_DEBUG( "Event approved by discriminator." ); + return true; + //m_accept.setCutResult("NeuralCut", true); + } + + //return m_accept; + return false; +} + + + + +bool RingerSelectorTool::retrieve(double et, double eta, double mu, std::shared_ptr<Ringer::IModel> &discr, std::shared_ptr<Ringer::INormalization> &preproc) + +const { + + eta = std::fabs(eta); + if(eta>2.50) eta=2.50;///fix for events out of the ranger + //et = et*1e-3; ///in GeV + + if(m_discriminators.size() > 0){ + for(unsigned i=0; i<m_discriminators.size(); ++i){ + //ATH_MSG_INFO(m_discriminators[i]->etmin()<<"<Et(" <<et<< ")<="<<m_discriminators[i]->etmax()); + //ATH_MSG_INFO(m_discriminators[i]->etamin()<<"<Eta(" <<eta<< ")<="<<m_discriminators[i]->etamax()); + if(mu > m_discriminators[i]->mumin() && mu <= m_discriminators[i]->mumax()){ + if(et > m_discriminators[i]->etmin() && et <= m_discriminators[i]->etmax()){ + if(eta > m_discriminators[i]->etamin() && eta <= m_discriminators[i]->etamax()){ + discr = m_discriminators[i]; + preproc = m_preprocs[i]; + return true; + }///eta conditions + }///Et conditions + }///Mu conditions + }///Loop over discriminators + } + return false; +} + + + + diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/TrigL2CaloRingerReader.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/TrigL2CaloRingerReader.cxx deleted file mode 100644 index 7df0907ad7cfba591107d7a246aea44807a0f6f0..0000000000000000000000000000000000000000 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/TrigL2CaloRingerReader.cxx +++ /dev/null @@ -1,216 +0,0 @@ -/* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration -*/ -#include <iostream> -#include "TrigMultiVarHypo/tools/TrigL2CaloRingerReader.h" -#include "TTree.h" -//#include "TFile.h" -#include "TParameter.h" -#include <vector> -// Use this to find the absoluty path -#include "PathResolver/PathResolver.h" - -TrigL2CaloRingerReader::TrigL2CaloRingerReader(const std::string& name) : - asg::AsgMessaging(name), - m_name(name) -{ - m_etaBins=nullptr; - m_etBins=nullptr; - m_thresholds=nullptr; - m_weights=nullptr; - m_bias=nullptr; - // current version - m_version = 3; -} - - -// ======================================================================== - -TrigL2CaloRingerReader::~TrigL2CaloRingerReader() -{;} - -// ======================================================================== -template <class T> -void TrigL2CaloRingerReader::InitBranch(TTree* fChain, std::string branch_name, T* param){ - bool message=true; - std::string bname = branch_name; - if (fChain->GetAlias(bname.c_str())) - bname = std::string(fChain->GetAlias(bname.c_str())); - - if (!fChain->FindBranch(bname.c_str()) && message) { - msg() << MSG::WARNING << " unknown branch " << bname << endmsg; - return; - } - fChain->SetBranchStatus(bname.c_str(), 1.); - fChain->SetBranchAddress(bname.c_str(), param); -} -// ======================================================================== - -bool TrigL2CaloRingerReader::retrieve( std::string &calibPath, std::vector<MultiLayerPerceptron*> &discriminators ) -{ - m_etaBins=nullptr; - m_etBins=nullptr; - m_muBins=nullptr; - m_weights=nullptr; - m_bias=nullptr; - m_nodes=nullptr; - discriminators.clear(); - - // Retrive the - msg() << MSG::INFO << "Checking discriminators CalibPath: "<< calibPath<< endmsg; - auto fullpath = PathResolverFindCalibFile(calibPath); - TFile file(fullpath.c_str(),"READ"); - auto version = ((TParameter<int>*)file.Get("__version__"))->GetVal(); - TTree *t = (TTree*)file.Get("tuning/discriminators"); - - if(version == 2){ - // Link all branches - InitBranch(t, "weights", &m_weights); - InitBranch(t, "bias" , &m_bias ); - InitBranch(t, "nodes" , &m_nodes ); - InitBranch(t, "etaBin" , &m_etaBins ); - InitBranch(t, "etBin" , &m_etBins ); - - for(Long64_t d=0; d<t->GetEntries();++d){ - t->GetEntry(d); - // Create the discriminator object - try{ - discriminators.push_back(new MultiLayerPerceptron(*m_nodes,*m_weights,*m_bias,m_etBins->at(0), - m_etBins->at(1),m_etaBins->at(0),m_etaBins->at(1), -999, 999) ); - //msg() << MSG::INFO << "Added new discriminator into the list." << endmsg; - }catch(const std::bad_alloc& xa){ - msg() << MSG::ERROR << "Can not alloc cutDefs on memory." << endmsg; - return false; - } - } // Loop over ttree events - - // retrieve metadata - m_useEtaVar = ((TParameter<bool>*)file.Get("metadata/UseEtaVar"))->GetVal(); - m_useLumiVar = ((TParameter<bool>*)file.Get("metadata/UseLumiVar"))->GetVal(); - - - // After version 2, the neural networks include mu bins - }else if ( version == m_version ){ // version 3 - // Link all branches - InitBranch(t, "weights", &m_weights); - InitBranch(t, "bias" , &m_bias ); - InitBranch(t, "nodes" , &m_nodes ); - InitBranch(t, "etaBin" , &m_etaBins ); - InitBranch(t, "etBin" , &m_etBins ); - InitBranch(t, "muBin" , &m_muBins ); - - for(Long64_t d=0; d<t->GetEntries();++d){ - t->GetEntry(d); - // Create the discriminator object - try{ - discriminators.push_back(new MultiLayerPerceptron(*m_nodes,*m_weights,*m_bias,m_etBins->at(0), - m_etBins->at(1),m_etaBins->at(0),m_etaBins->at(1), m_muBins->at(0), m_muBins->at(1) ) ); - //msg() << MSG::INFO << "Added new discriminator into the list." << endmsg; - }catch(const std::bad_alloc& xa){ - msg() << MSG::ERROR << "Can not alloc cutDefs on memory." << endmsg; - return false; - } - } // Loop over ttree events - - // retrieve metadata - m_useEtaVar = ((TParameter<bool>*)file.Get("metadata/UseEtaVar"))->GetVal(); - m_useLumiVar = ((TParameter<bool>*)file.Get("metadata/UseLumiVar"))->GetVal(); - - }else{ - msg() << MSG::WARNING << "version not supported" << endmsg; - return false; - } - - msg() << MSG::INFO << "Config file version : " << version << endmsg; - msg() << MSG::INFO << "Total of discriminators retrievied is : " << discriminators.size() << endmsg; - msg() << MSG::INFO << "Using eta variable : " << (m_useEtaVar?"Yes":"No") << endmsg; - msg() << MSG::INFO << "Using lumi variable : " << (m_useLumiVar?"Yes":"No") << endmsg; - file.Close(); - - return true; -} - -// ======================================================================== - -bool TrigL2CaloRingerReader::retrieve( std::string &calibPath, std::vector<TrigCaloRingsHelper::CutDefsHelper*> &cutDefs ) -{ - m_etaBins=nullptr; - m_etBins=nullptr; - m_muBins=nullptr; - m_thresholds=nullptr; - - cutDefs.clear(); - msg() << MSG::INFO <<"Checking thresholds CalibPath: "<< calibPath << endmsg; - auto fullpath = PathResolverFindCalibFile(calibPath); - TFile file(fullpath.c_str(),"READ"); - auto version = ((TParameter<int>*)file.Get("__version__"))->GetVal(); - TTree *t = (TTree*)file.Get("tuning/thresholds"); - - if(version == 2){ - InitBranch(t, "thresholds", &m_thresholds); - InitBranch(t, "etBin" , &m_etBins ); - InitBranch(t, "etaBin" , &m_etaBins ); - - for(Long64_t d=0; d<t->GetEntries();++d){ - t->GetEntry(d); - // Create the discriminator object - try{ - cutDefs.push_back(new TrigCaloRingsHelper::CutDefsHelper(*m_thresholds,m_etaBins->at(0), - m_etaBins->at(1), m_etBins->at(0),m_etBins->at(1),-999 , 999)); - //msg() << MSG::INFO << "Added new cutDef into the list." << endmsg; - }catch(const std::bad_alloc& xa){ - msg() << MSG::ERROR << "Can not alloc cutDefs on memory." << endmsg; - return false; - } - } // Loop over ttree events - - // retrieve metadata - m_useNoActivationFunctionInTheLastLayer = ((TParameter<bool>*)file.Get("metadata/UseNoActivationFunctionInTheLastLayer"))->GetVal(); - m_lumiCut = ((TParameter<int>*)file.Get("metadata/LumiCut"))->GetVal(); - m_doPileupCorrection = ((TParameter<bool>*)file.Get("metadata/DoPileupCorrection"))->GetVal(); - - }else if(version == m_version){ // version 3 - - InitBranch(t, "thresholds", &m_thresholds); - InitBranch(t, "etBin" , &m_etBins ); - InitBranch(t, "etaBin" , &m_etaBins ); - InitBranch(t, "muBin" , &m_muBins ); - - for(Long64_t d=0; d<t->GetEntries();++d){ - t->GetEntry(d); - // Create the discriminator object - try{ - cutDefs.push_back(new TrigCaloRingsHelper::CutDefsHelper(*m_thresholds,m_etaBins->at(0), - m_etaBins->at(1), m_etBins->at(0),m_etBins->at(1), - m_muBins->at(0), m_muBins->at(1)) ); - //msg() << MSG::INFO << "Added new cutDef into the list." << endmsg; - }catch(const std::bad_alloc& xa){ - msg() << MSG::ERROR << "Can not alloc cutDefs on memory." << endmsg; - return false; - } - } // Loop over ttree events - - // retrieve metadata - m_useNoActivationFunctionInTheLastLayer = ((TParameter<bool>*)file.Get("metadata/UseNoActivationFunctionInTheLastLayer"))->GetVal(); - m_lumiCut = ((TParameter<int>*)file.Get("metadata/LumiCut"))->GetVal(); - m_doPileupCorrection = ((TParameter<bool>*)file.Get("metadata/DoPileupCorrection"))->GetVal(); - - }else{ - msg() << MSG::WARNING << "version not supported" << endmsg; - return false; - } - - file.Close(); - - msg() << MSG::INFO << "Config file version : " << version << endmsg; - msg() << MSG::INFO << "Total of cutDefs retrievied is : " << cutDefs.size() << endmsg; - msg() << MSG::INFO << "Using pileup correction : " << (m_doPileupCorrection?"Yes":"No") << endmsg; - msg() << MSG::INFO << "Using useNoActivationFunctionInTheLastLayer : " << (m_useNoActivationFunctionInTheLastLayer?"Yes":"No") << endmsg; - msg() << MSG::INFO << "Using lumi cut : " << (m_lumiCut) << endmsg; - return true; -} - - - - - diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/TrigRingerHelper.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/common/RingerHelper.cxx similarity index 81% rename from Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/TrigRingerHelper.cxx rename to Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/common/RingerHelper.cxx index 3b5dc826e4c7861e840a26b330650402452bf66c..30d10ad0ee8bd1fd1f6021c7f190ab64ff26efb5 100644 --- a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/TrigRingerHelper.cxx +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/common/RingerHelper.cxx @@ -1,8 +1,8 @@ /* - Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ -#include "TrigMultiVarHypo/tools/TrigRingerHelper.h" -using namespace TrigCaloRingsHelper; +#include "TrigMultiVarHypo/tools/common/RingerHelper.h" +using namespace Ringer; void parseTrigCaloRingsLayers( unsigned layer, unsigned &minRing, unsigned &maxRing, std::string &caloLayerName) diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/common/RingerReader.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/common/RingerReader.cxx new file mode 100644 index 0000000000000000000000000000000000000000..95a3b7925353c421907f356afc0c2a6662c2a17c --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/common/RingerReader.cxx @@ -0,0 +1,318 @@ +/* + Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +*/ + +#include <vector> +#include "TTree.h" +#include <iostream> +#include "TParameter.h" +#include "PathResolver/PathResolver.h" + +// ringer file reader +#include "TrigMultiVarHypo/tools/common/RingerReader.h" +// interfaces +#include "TrigMultiVarHypo/tools/procedures/IModel.h" +#include "TrigMultiVarHypo/tools/procedures/IThresholds.h" +// models +#include "TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h" +#include "TrigMultiVarHypo/tools/procedures/Thresholds.h" +#include "GaudiKernel/StatusCode.h" + +using namespace Ringer; + +RingerReader::RingerReader(std::string name): + asg::AsgMessaging(name), + m_name(name) +{ + m_etaBins=nullptr; + m_etBins=nullptr; + m_thresholds=nullptr; + m_weights=nullptr; + m_bias=nullptr; + m_conv_kernel=nullptr; + m_conv_nodes=nullptr; + m_conv_kernel_i=nullptr; + m_conv_kernel_j=nullptr; + + + // current version + //m_version = 2; // Used for v6 and v8 tuning for Run 2 + m_version = 3; // Should be used for future in Run 3 + m_useCaloRings=true; + m_useTileCal=true; + m_useTrack=false; + m_useShowerShape=false; + +} + + +// ======================================================================== + +RingerReader::~RingerReader() +{;} + +// ======================================================================== +template <class T> +void RingerReader::InitBranch(TTree* fChain, std::string branch_name, T* param){ + bool message=true; + std::string bname = branch_name; + if (fChain->GetAlias(bname.c_str())) + bname = std::string(fChain->GetAlias(bname.c_str())); + + if (!fChain->FindBranch(bname.c_str()) && message) { + ATH_MSG_WARNING( " unknown branch " << bname ); + return; + } + fChain->SetBranchStatus(bname.c_str(), 1.); + fChain->SetBranchAddress(bname.c_str(), param); +} +// ======================================================================== + + +bool RingerReader::retrieve( std::string &calibPath, std::vector< std::shared_ptr<IModel> > &discriminators ) +{ + m_etaBins=nullptr; + m_etBins=nullptr; + m_muBins=nullptr; + m_weights=nullptr; + m_bias=nullptr; + m_nodes=nullptr; + m_tfnames=nullptr; + m_conv_kernel=nullptr; + m_conv_bias=nullptr;; + m_conv_nodes=nullptr; + m_conv_kernel_i=nullptr; + m_conv_kernel_j=nullptr; + m_conv_input_i=nullptr; + m_conv_input_j=nullptr; + m_conv_tfnames=nullptr; + m_useConvLayer=nullptr; + discriminators.clear(); + + ATH_MSG_INFO( "Checking discriminators CalibPath: "<< calibPath ); + + auto fullpath = PathResolverFindCalibFile(calibPath); + TFile file(fullpath.c_str(),"READ"); + auto version = ((TParameter<int>*)file.Get("__version__"))->GetVal(); + TTree *t = (TTree*)file.Get("tuning/discriminators"); + + if(version == 2){ + // Link all branches + InitBranch(t, "weights", &m_weights); + InitBranch(t, "bias" , &m_bias ); + InitBranch(t, "nodes" , &m_nodes ); + InitBranch(t, "etaBin" , &m_etaBins ); + InitBranch(t, "etBin" , &m_etBins ); + + for(Long64_t d=0; d<t->GetEntries();++d){ + t->GetEntry(d); + // Create the discriminator object + try{ + std::vector<std::string> tfnames; + for(unsigned l=0; l<m_nodes->size(); l++) tfnames.push_back("tanh"); // This is default for this version + discriminators.push_back( std::make_shared<MultiLayerPerceptron>(*m_nodes,*m_weights,*m_bias,tfnames,m_etBins->at(0), + m_etBins->at(1),m_etaBins->at(0),m_etaBins->at(1), -999., 999.) ); + ATH_MSG_INFO( "Added new discriminator into the list." ); + }catch(std::bad_alloc &){ + ATH_MSG_ERROR("Can not alloc cutDefs on memory." ); + return false; + } + } // Loop over ttree events + + // retrieve metadata + m_useCaloRings=true; + + + + }else if ( version == m_version ){ // version 3 (development version for Run 3) + + // Dense configuration + InitBranch(t, "dense_weights", &m_weights ); + InitBranch(t, "dense_bias" , &m_bias ); + InitBranch(t, "dense_nodes" , &m_nodes ); + InitBranch(t, "dense_tfnames", &m_tfnames ); + + + // Need to attach the convolutional layer? + InitBranch(t, "useConvLayer" , &m_useConvLayer ); + + if(m_useConvLayer->at(0)){ + InitBranch(t, "conv_kernel_i" , &m_conv_kernel_i ); + InitBranch(t, "conv_kernel_j" , &m_conv_kernel_j ); + InitBranch(t, "conv_input_i" , &m_conv_input_i ); + InitBranch(t, "conv_input_j" , &m_conv_input_j ); + InitBranch(t, "conv_tfnames" , &m_conv_tfnames ); + InitBranch(t, "conv_nodes" , &m_conv_nodes ); + InitBranch(t, "conv_bias" , &m_conv_bias ); + InitBranch(t, "conv_kernel" , &m_conv_kernel ); + InitBranch(t, "conv_frame" , &m_conv_frame ); + } + + // Model params + InitBranch(t, "etaBin" , &m_etaBins ); + InitBranch(t, "etBin" , &m_etBins ); + InitBranch(t, "muBin" , &m_muBins ); + + for(Long64_t d=0; d<t->GetEntries();++d){ + + t->GetEntry(d); + + // Create the discriminator object + try{ + + if(m_useConvLayer->at(0)){ + ATH_MSG_INFO( "Alloc Convolutional Neural Object into the stack..." ); + /* To be include in the future + discriminators.push_back(new ConvMultiLayerPerceptron( + // Dense layers + *m_nodes, *m_weights, *m_bias, *m_tfnames, + // Convolutional layers + *m_conv_frame, + m_conv_input_i->at(0), m_conv_input_j->at(0), *m_conv_nodes, *m_conv_kernel_i, + *m_conv_kernel_j, *m_conv_kernel, *m_conv_bias ,*m_conv_tfnames, + // Model params + m_etBins->at(0),m_etBins->at(1),m_etaBins->at(0),m_etaBins->at(1), m_muBins->at(0), m_muBins->at(1) + ) + ); + */ + }else{ + discriminators.push_back(std::make_shared< MultiLayerPerceptron >( + // Dense layer + *m_nodes,*m_weights,*m_bias,*m_tfnames, + // Model params + m_etBins->at(0),m_etBins->at(1),m_etaBins->at(0),m_etaBins->at(1), m_muBins->at(0), m_muBins->at(1) + ) + ); + + + + } + + ATH_MSG_INFO( "Added new discriminator into the list." ); + }catch(std::bad_alloc &){ + ATH_MSG_ERROR( "Can not alloc cutDefs on memory." ); + return false; + } + + } // Loop over ttree events + + // retrieve metadata + m_useTrack = ((TParameter<bool>*)file.Get("metadata/UseTrack"))->GetVal(); + m_useCaloRings = ((TParameter<bool>*)file.Get("metadata/UseCaloRings"))->GetVal(); + m_useShowerShape = ((TParameter<bool>*)file.Get("metadata/UseShowerShape"))->GetVal(); + m_useTileCal = ((TParameter<bool>*)file.Get("metadata/UseTileCal"))->GetVal(); + + } + else{ + ATH_MSG_WARNING("version not supported" ); + return false; + } + + ATH_MSG_INFO( "Config file version : " << version ); + ATH_MSG_INFO( "RemoveOutputTansigTF? : " << (m_removeOutputTansigTF?"Yes":"No") ); + ATH_MSG_INFO( "Total of discriminators retrievied is : " << discriminators.size() ); + ATH_MSG_INFO( "UseCaloRings? : " << m_useCaloRings ); + ATH_MSG_INFO( "UseShowerShape? : " << m_useShowerShape ); + ATH_MSG_INFO( "UseTrack? : " << m_useTrack ); + ATH_MSG_INFO( "UseTileCal? : " << m_useTileCal ); + file.Close(); + + return true; +} + +// ======================================================================== + + + +bool RingerReader::retrieve( std::string &calibPath, std::vector< std::shared_ptr<IThresholds> > &cutDefs ) +{ + m_etaBins=nullptr; + m_etBins=nullptr; + m_muBins=nullptr; + m_thresholds=nullptr; + + cutDefs.clear(); + ATH_MSG_INFO("Checking thresholds CalibPath: "<< calibPath ); + auto fullpath = PathResolverFindCalibFile(calibPath); + TFile file(fullpath.c_str(),"READ"); + auto version = ((TParameter<int>*)file.Get("__version__"))->GetVal(); + TTree *t = (TTree*)file.Get("tuning/thresholds"); + + if(version == 2){ + InitBranch(t, "thresholds", &m_thresholds); + InitBranch(t, "etBin" , &m_etBins ); + InitBranch(t, "etaBin" , &m_etaBins ); + + for(Long64_t d=0; d<t->GetEntries();++d){ + t->GetEntry(d); + // Create the discriminator object + try{ + cutDefs.push_back( std::make_shared< Thresholds >(*m_thresholds,m_etaBins->at(0), + m_etaBins->at(1), + m_etBins->at(0), + m_etBins->at(1), + -999. , + 999.)); + }catch(std::bad_alloc &){ + ATH_MSG_ERROR( "Can not alloc cutDefs on memory." ); + return false; + } + } // Loop over ttree events + + // retrieve metadata + + m_lumiCut = ((TParameter<int>*)file.Get("metadata/LumiCut"))->GetVal(); + m_doPileupCorrection = ((TParameter<bool>*)file.Get("metadata/DoPileupCorrection"))->GetVal(); + m_removeOutputTansigTF = ((TParameter<bool>*)file.Get("metadata/UseNoActivationFunctionInTheLastLayer"))->GetVal(); + + + }else if ( version == m_version ){ // version 3 (current) + + InitBranch(t, "thresholds", &m_thresholds); + InitBranch(t, "etBin" , &m_etBins ); + InitBranch(t, "etaBin" , &m_etaBins ); + InitBranch(t, "muBin" , &m_muBins ); + + for(Long64_t d=0; d<t->GetEntries();++d){ + t->GetEntry(d); + // Create the discriminator object + try{ + cutDefs.push_back(std::make_shared< Thresholds >( *m_thresholds, + m_etaBins->at(0), + m_etaBins->at(1), + m_etBins->at(0), + m_etBins->at(1), + m_muBins->at(0), + m_muBins->at(1)) ); + + }catch(std::bad_alloc &){ + ATH_MSG_ERROR( "Can not alloc cutDefs on memory." ); + return false; + } + } // Loop over ttree events + + // retrieve metadata + m_lumiCut = ((TParameter<int>*)file.Get("metadata/LumiCut"))->GetVal(); + m_doPileupCorrection = ((TParameter<bool>*)file.Get("metadata/DoPileupCorrection"))->GetVal(); + m_removeOutputTansigTF = ((TParameter<bool>*)file.Get("metadata/RemoveOutputTansigTF"))->GetVal(); + + }else{ + ATH_MSG_WARNING("version not supported" ); + return false; + } + + file.Close(); + ATH_MSG_INFO( "Config file version : " << version ); + ATH_MSG_INFO( "Total of cutDefs retrievied is : " << cutDefs.size() ); + ATH_MSG_INFO( "Using pileup correction : " << (m_doPileupCorrection?"Yes":"No") ); + ATH_MSG_INFO( "Using lumi cut : " << (m_lumiCut) ); + return true; +} + + + + + + + + diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/procedures/MultiLayerPerceptron.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/procedures/MultiLayerPerceptron.cxx new file mode 100644 index 0000000000000000000000000000000000000000..98baca25a981244e619a07262bf8b50dd5a4f183 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/procedures/MultiLayerPerceptron.cxx @@ -0,0 +1,266 @@ +/* + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration +*/ + + +#include "TrigMultiVarHypo/tools/procedures/MultiLayerPerceptron.h" + +#include <cstddef> +#include <vector> +#include <cmath> +#include <iostream> +using namespace std; +using namespace Ringer; + +MultiLayerPerceptron::MultiLayerPerceptron(std::vector<unsigned int> &n, + std::vector<double> &w, + std::vector<double> &b, + std::vector<std::string> &TF, + double etmin, + double etmax, + double etamin, + double etamax, + double mumin, + double mumax) + : + IModel(etmin,etmax,etamin,etamax,mumin,mumax), + m_nodes(n), + m_weights(0), + m_bias(0), + m_tfnames(TF) +{ + + if ( !n.size() ) throw BAD_BIAS_SIZE; //Nothing to do + + //Verifying weight vector size + unsigned wSize=0; + for (unsigned k=0; k<n.size()-1; ++k) wSize+=n[k]*n[k+1]; + try{ + if (wSize != w.size() || !w.size() ) throw BAD_WEIGHT_SIZE; + //Verifying bias vector size + unsigned bSize=0; + for (unsigned k=1; k<n.size(); ++k)bSize+=n[k]; + if(bSize != b.size() || !b.size() ) throw BAD_BIAS_SIZE; + }catch(int i){ + throw; + } + //First weight dimension + try{ + m_weights = new double **[n.size()-1]; //number of layers excluding input + }catch (const std::bad_alloc &){ + m_weights = nullptr; + throw; + } + //First bias dimension + try{ + m_bias = new double *[n.size()-1]; //number of layers excluding input + }catch (const std::bad_alloc &){ + m_bias = nullptr; + throw; + } + + + std::vector<double>::const_iterator itrB = b.begin(); + std::vector<double>::const_iterator itrW = w.begin(); + for (unsigned l = 0; l < n.size()-1; ++l){ + //Checks if no bad_alloc happened to bias + if(m_bias){ + try{ + //Second and last dimension of bias + m_bias[l] = new double[n[l+1]]; //number of nodes in next layer + } catch (const std::bad_alloc &){ + m_bias[l] = nullptr; + throw; + } + } + //Checks if no bad_alloc happened to m_weights + if(m_weights){ + try{ + //Second dimension of weights + m_weights[l] = new double*[n[l+1]]; //number of nodes in next layer + } catch ( const std::bad_alloc &){ + m_weights[l] = nullptr; + throw; + } + } + for (unsigned i=0; i<n[l+1]; i++){ + //Checks if no bad_alloc happened to weights[l] + if(m_weights){ + if(m_weights[l]){ + try{ + //Third and last dimension of weights + m_weights[l][i]=new double [n[l]]; //number of nodes in current layer + } catch (const std::bad_alloc &){ + m_weights[l][i] = nullptr; + throw; + } + } + } + //Populating bias matrix + if (m_bias){ + //Checks if no bad_alloc happened to bias[l] + if (m_bias[l]){ + m_bias[l][i]=(*itrB++); + } + } + //Populating weight matrix + for (unsigned j=0; j<n[l]; j++){ + if (m_weights){ + if (m_weights[l]){ + if(m_weights[l][i]){ + m_weights[l][i][j]=(*itrW++); + } + } + } + } + } + } +} + + +void MultiLayerPerceptron::release(double** neuronOutputs, double** layerOutputs) const +{ + + for (unsigned l=0; l<m_nodes.size(); l++){ + if(layerOutputs){ + if (layerOutputs[l]==nullptr){ + delete layerOutputs[l]; //Deletes null pointer + } + }else{ + delete[] layerOutputs[l]; //Deletes array of values at second dimension of layerOutputs + } + if(neuronOutputs){ + if (neuronOutputs[l]==nullptr){ + delete neuronOutputs[l]; //Deletes null pointer + } + }else{ + delete[] neuronOutputs[l]; //Deletes array of values at second dimension of layerOutputs + } + } + + if(layerOutputs==nullptr) + delete layerOutputs; + else + delete[] layerOutputs; + + if(neuronOutputs==nullptr) + delete neuronOutputs; + else + delete[] neuronOutputs; + + +} + + + + +MultiLayerPerceptron::~MultiLayerPerceptron(){ + + for (unsigned l=0; l<m_nodes.size()-1; l++){ + if (m_bias){ + if (m_bias[l]==nullptr){ + delete m_bias[l]; //Deletes null pointer + }else{ + delete[] m_bias[l]; //Deletes array of values at second dimension of bias + } + } + for (unsigned i=0; i<m_nodes[l+1]; i++){ + if (m_weights){ + if(m_weights[l]){ + if (m_weights[l][i]==nullptr){ + delete m_weights[l][i]; //Deletes null pointer + }else{ + delete[] m_weights[l][i]; //Deletes array of values at third dimension of weights + } + } + } + } + if (m_weights){ + if (m_weights[l]==nullptr){ + delete m_weights[l]; //Deletes null pointer + }else{ + delete[] m_weights[l]; //Deletes array of pointers at second dimension of weights + } + } + }//Layers + + + if (m_weights==nullptr){ + delete m_weights; //Deletes null pointer + }else{ + delete[] m_weights; //Deletes array of pointers at first dimension of weights + } + + if (m_bias==nullptr){ + delete m_bias; //Deletes null pointer + }else{ + delete[] m_bias; //Deletes array of pointers at first dimension of bias + } +} + + + +Ringer::RnnOutInfo MultiLayerPerceptron::propagate(std::vector<float> &input ) const +{ + double **layerOutputs; + double **neuronOutputs; + //this->malloc(neuronOutputs, layerOutputs); + + //First multiplication dimension + neuronOutputs = new double *[m_nodes.size()]; + layerOutputs = new double *[m_nodes.size()]; //number of layers including input + + for (unsigned l = 0; l<m_nodes.size(); ++l){ + //Second and last dimension of layerOutputs + layerOutputs[l] = new double[m_nodes[l]]; //number of nodes in current layer + //Second and last dimension of layerOutputs + neuronOutputs[l] = new double[m_nodes[l]]; //number of nodes in current layer + } + + + for (unsigned l = 0; l<m_nodes.size()-1; ++l){ + for (unsigned i=0; i<m_nodes[l]; i++){ + //Populating multiplication matrix so that starting sum equals zero + if(l==0) + layerOutputs[0][i]=(double)input.at(i); + else + layerOutputs[l][i]=0; + neuronOutputs[l][i]=0; + } + } + + // Propagate + for(unsigned l=0; l<m_nodes.size()-1;l++){ + for(unsigned i=0; i<m_nodes[l+1]; i++){ + layerOutputs[l+1][i]=m_bias[l][i]; + for (unsigned j=0;j<m_nodes[l]; j++) layerOutputs[l+1][i]+=layerOutputs[l][j]*m_weights[l][i][j]; + neuronOutputs[l+1][i] = layerOutputs[l+1][i]; // Hold the sum neuron output before apply the activation function + //layerOutputs[l+1][i] = this->activation(layerOutputs[l+1][i], m_tfnames[l]); + layerOutputs[l+1][i] = tanh(layerOutputs[l+1][i]); + } + } + + Ringer::RnnOutInfo answer; + answer.output=(float)(layerOutputs[m_nodes.size()-1][0]); + answer.outputBeforeTheActivationFunction=(float)(neuronOutputs[m_nodes.size()-1][0]); + this->release(neuronOutputs,layerOutputs); + return answer; +} + +/* +double MultiLayerPerceptron::activation( double value, std::string &tfname ){ + + // Apply the hiperbolic tangent + if(tfname=="tanh"){ + return tanh(value); + // Applyt the RELU transfer function + }else if(tfname=="relu"){ + return (value > 0) ? value : 0; + }else if(tfname=="linear"){ + return value; + }else{ // Bypass the TF + return value; + } +} +*/ + diff --git a/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/procedures/Norm1.cxx b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/procedures/Norm1.cxx new file mode 100644 index 0000000000000000000000000000000000000000..fe393d414aaf83d39d2159c6d8f263a085e777e2 --- /dev/null +++ b/Trigger/TrigHypothesis/TrigMultiVarHypo/src/tools/procedures/Norm1.cxx @@ -0,0 +1,36 @@ +/* + Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration +*/ + +///Local include(s) +#include "TrigMultiVarHypo/tools/procedures/Norm1.h" +///std library(s) +#include <cmath> +using namespace std; +using namespace Ringer; + + + + +Norm1::Norm1( double etmin, double etmax, double etamin, double etamax, double mumin, double mumax, bool usetilecal): + INormalization(etmin,etmax,etamin,etamax,mumin,mumax), + m_useTileCal(usetilecal) +{;} + + + +void Norm1::execute( std::vector<float> &rings ) const { + + if(!m_useTileCal){ + if(rings.size() == 100){ + // remove the last 12 rings (tilecal) + rings.erase(rings.begin()+88,rings.end()); + } + } + float energy=0.0; + for(unsigned i=0; i<rings.size(); ++i) energy+=rings.at(i); + for(unsigned i=0; i<rings.size(); ++i) rings.at(i)=rings.at(i)/std::fabs(energy); +} + + +