51 iConfig.getParameter<
edm::
InputTag>(
"packedGenParticles"))),
54 nLoose_(iConfig.getParameter<unsigned>(
"nLoose")),
57 produces<std::vector<reco::GenJet> >();
58 produces<edm::Association<std::vector<reco::GenJet> > >(
"slimmedGenJetAssociation");
68 auto out = std::make_unique<vector<reco::GenJet> >();
69 out->reserve(src->size());
74 auto genJetSlimmedGenJetAssociation = make_unique<edm::Association<std::vector<reco::GenJet> > >();
76 auto mapping = std::make_unique<std::vector<int> >();
77 mapping->reserve(src->size());
81 bool selectedLoose =
false;
87 bool pass =
cut_(*it) || selectedLoose;
89 mapping->push_back(-1);
96 mapping->push_back(it - src->begin());
105 std::map<unsigned int, reco::CandidatePtr> ptrs;
106 for (
unsigned int i = 0;
i < old.size();
i++) {
110 ptrs[((*gp2pgp)[old[
i]]).
key()] =
refToPtr((*gp2pgp)[old[
i]]);
112 for (std::map<unsigned int, reco::CandidatePtr>::iterator itp = ptrs.begin(); itp != ptrs.end();
125 auto asso = std::make_unique<edm::Association<std::vector<reco::GenJet> > >(orphanHandle);
127 slimmedAssoFiller.insert(src, mapping->begin(), mapping->end());
128 slimmedAssoFiller.fill();
130 iEvent.
put(
std::move(asso),
"slimmedGenJetAssociation");
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
Ptr< typename C::value_type > refToPtr(Ref< C, typename C::value_type, refhelper::FindUsingAdvance< C, typename C::value_type > > const &ref)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
~PATGenJetSlimmer() override
const StringCutObjectSelector< reco::GenJet > cutLoose_
virtual const daughters & daughterPtrVector() const
references to daughtes
#define DEFINE_FWK_MODULE(type)
const bool clearDaughters_
reset daughters to an empty vector
Matcher of reconstructed objects to L1 Muons.
const StringCutObjectSelector< reco::GenJet > cut_
const edm::EDGetTokenT< edm::Association< std::vector< pat::PackedGenParticle > > > gp2pgp_
const bool dropSpecific_
drop the specific
Jets made from MC generator particles.
virtual void clearDaughters()
clear daughter references
std::vector< CandidatePtr > daughters
collection of references to daughters
const edm::EDGetTokenT< edm::View< reco::GenJet > > src_
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
void setSpecific(const Specific &spec)
set the specific (note: responsibility of keeping it consistent with the jet daughers belongs to the ...
void addDaughter(const CandidatePtr &)
add a daughter via a reference
PATGenJetSlimmer(const edm::ParameterSet &iConfig)