/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/PatAlgos/src/BaseIsolator.cc
17 строк
594 B
Cms Build
Clang-Format
11 июн 2019, 11:28
11 июн 2019, 11:28
c32a387
Код
Авторство
О чём код?
#include "PhysicsTools/PatAlgos/interface/BaseIsolator.h" #include <sstream> #include <iomanip> using pat::helper::BaseIsolator; BaseIsolator::BaseIsolator(const edm::ParameterSet &conf, edm::ConsumesCollector &iC, bool withCut) : input_(conf.getParameter<edm::InputTag>("src")), inputToken_(iC.consumes<Isolation>(input_)), cut_(withCut ? conf.getParameter<double>("cut") : -2.0), try_(0), fail_(0) {} void BaseIsolator::print(std::ostream &out) const { using namespace std; out << description() << " < " << cut_ << ": try " << try_ << ", fail " << fail_; }