diff --git a/DataFormats/L1TParticleFlow/interface/jets.h b/DataFormats/L1TParticleFlow/interface/jets.h index 4ade0a5f3682d..01491e7ca3f2a 100644 --- a/DataFormats/L1TParticleFlow/interface/jets.h +++ b/DataFormats/L1TParticleFlow/interface/jets.h @@ -5,7 +5,6 @@ #include "DataFormats/L1TParticleFlow/interface/gt_datatypes.h" #include "DataFormats/L1TParticleFlow/interface/bit_encoding.h" #include -#include #include #include #include @@ -34,15 +33,6 @@ namespace l1ct { JetTagClassValue value_; static const std::unordered_map labels_; - friend std::ostream &operator<<(std::ostream &ost, const l1ct::JetTagClass &jtc) { - auto it = std::find_if( - std::begin(jtc.labels_), std::end(jtc.labels_), [&jtc](auto &&p) { return p.second == jtc.value_; }); - if (it != std::end(jtc.labels_)) { - ost << it->first; - } - return ost; - } - }; // JetTagClass // Define a separate class/struct for jet tag handling diff --git a/L1Trigger/Phase2L1ParticleFlow/src/L1TSC4NGJet.cc b/L1Trigger/Phase2L1ParticleFlow/src/L1TSC4NGJet.cc index 3ec0656b7ce3e..89404cd278051 100644 --- a/L1Trigger/Phase2L1ParticleFlow/src/L1TSC4NGJet.cc +++ b/L1Trigger/Phase2L1ParticleFlow/src/L1TSC4NGJet.cc @@ -147,6 +147,9 @@ std::vector L1TSC4NGJetID::EvaluateNNFixed() { if (isDebugEnabled_) { LogDebug("L1TSC4NGJetID") << l1ct::JetTagClassHandler::tagClassesDefault_[i] << " : " << modelResult_[i] << std::endl; + #ifdef EDM_ML_DEBUG + #error TEST + #endif } } modelResult_.push_back(modelResult.first[0].to_float());