CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
BaseIsolator.cc
Go to the documentation of this file.
2 #include <sstream>
3 #include <iomanip>
4 
6 
7 BaseIsolator::BaseIsolator(const edm::ParameterSet &conf, bool withCut) :
8  input_(conf.getParameter<edm::InputTag>("src")),
9  cut_(withCut ? conf.getParameter<double>("cut") : -2.0),
10  try_(0), fail_(0)
11 {
12 }
13 
14 void
15 BaseIsolator::print(std::ostream &out) const {
16  using namespace std;
17  out << description() << " < " << cut_ << ": try " << try_ << ", fail " << fail_;
18 }
19 
void print(std::ostream &out) const
Definition: BaseIsolator.cc:15
tuple conf
Definition: dbtoconf.py:185
virtual std::string description() const =0
tuple out
Definition: dbtoconf.py:99