17 "MultiIsolator: you can't specify both 'calo' isolation and 'ecal'/'hcal', " <<
18 "as the 'calo' isolation flag is just the logical OR of 'ecal' and 'hcal'.\n";
26 std::vector<edm::ParameterSet> psets = conf.
getParameter<std::vector<edm::ParameterSet> >(
"user");
27 if (psets.size() > 5) {
29 "MultiIsolator: you can specify at most 5 user isolation collections.\n";
32 for (std::vector<edm::ParameterSet>::const_iterator it = psets.begin(), ed = psets.end(); it != ed; ++it, bit <<= 1) {
48 if (conf.
empty())
return nullptr;
49 if (conf.
exists(
"placeholder") && conf.
getParameter<
bool>(
"placeholder"))
return nullptr;
50 if (conf.
exists(
"deltaR")) {
67 for (boost::ptr_vector<BaseIsolator>::iterator it =
isolators_.begin(), ed =
isolators_.end(); it != ed; ++it) {
68 it->beginEvent(event, eventSetup);
74 for (boost::ptr_vector<BaseIsolator>::iterator it =
isolators_.begin(), ed =
isolators_.end(); it != ed; ++it) {
81 for (boost::ptr_vector<BaseIsolator>::const_iterator it =
isolators_.begin(), ed =
isolators_.end(); it != ed; ++it) {
91 std::ostringstream isoSumm;
T getParameter(std::string const &) const
std::vector< uint32_t > masks_
boost::ptr_vector< BaseIsolator > isolators_
static const std::string & bitToString(uint32_t bit)
bool exists(std::string const ¶meterName) const
checks if a parameter exists
void print(std::ostream &out) const
IsolationKeys
Enum defining isolation keys.
void beginEvent(const edm::Event &event, const edm::EventSetup &eventSetup)
std::string printSummary() const
static BaseIsolator * make(const edm::ParameterSet &conf, edm::ConsumesCollector &iC, bool withCut)
std::vector< pat::IsolationKeys > keys_
Flags used in PAT, and static translator from flags to strings.
void addIsolator(BaseIsolator *iso, uint32_t mask, pat::IsolationKeys key)