34 template <
typename TYPE>
83 std::vector<edm::InputTag>
tags = iConfig.
getParameter<std::vector<edm::InputTag>>(
"PFCandidate");
84 for (
unsigned int i = 0;
i < tags.size(); ++
i)
112 <<
" cannot read several collections of PFCandidates and produce a new collection at the same time. "
116 if (producePFCandidates_) {
123 produces<edm::ValueMap<reco::PFCandidatePtr>>(
muonTag_.
label());
129 auto pfCandidates_p = std::make_unique<reco::PFCandidateCollection>();
133 std::map<reco::GsfElectronRef, reco::PFCandidatePtr> electronCandidateMap;
136 std::map<reco::PhotonRef, reco::PFCandidatePtr> photonCandidateMap;
141 std::map<reco::MuonRef, reco::PFCandidatePtr> muonCandidateMap;
145 for (
unsigned icol = 0; icol < nColPF; ++icol) {
149 for (
unsigned i = 0;
i < ncand; ++
i) {
159 if (!(isphoton || iselectron || hasNonNullMuonRef)) {
160 pfCandidates_p->push_back(cand);
164 if (hasNonNullMuonRef) {
167 muonCandidateMap[muRef] = candPtr;
173 auto itcheck = find_if(gsfElectrons->begin(), gsfElectrons->end(), [&gsfTrackRef](
const auto& ele) {
174 return (ele.gsfTrack() == gsfTrackRef);
176 if (itcheck == gsfElectrons->end()) {
178 std::ostringstream
err;
179 err <<
" Problem in PFLinker: no GsfElectron " << std::endl;
182 LogDebug(
"PFLinker") <<
"Forcing an electron pfCandidate at: " << cand.
eta() <<
" in HGCAL" << std::endl;
183 pfCandidates_p->push_back(cand);
191 cand.
setEcalEnergy(electronRef->superCluster()->rawEnergy(), electronRef->ecalEnergy());
194 electronCandidateMap[electronRef] = candPtr;
200 auto itcheck = find_if(
201 photons->begin(),
photons->end(), [&scRef](
const auto& photon) {
return photon.superCluster() == scRef; });
202 if (itcheck ==
photons->end()) {
203 std::ostringstream
err;
204 err <<
" Problem in PFLinker: no Photon " << std::endl;
216 photonCandidateMap[photonRef] = candPtr;
219 pfCandidates_p->push_back(cand);
244 auto pfMapMerged = std::make_unique<edm::ValueMap<reco::PFCandidatePtr>>();
247 *pfMapMerged += pfMapGsfElectrons;
248 *pfMapMerged += pfMapPhotons;
250 *pfMapMerged += pfMapMuons;
255 template <
typename TYPE>
262 auto pfMap_p = std::make_unique<edm::ValueMap<reco::PFCandidatePtr>>();
267 unsigned nObj = inputObjCollection->size();
268 std::vector<reco::PFCandidatePtr>
values(nObj);
270 for (
unsigned iobj = 0; iobj < nObj; ++iobj) {
272 MapTYPE_it itcheck = mapToTheCandidate.find(objRef);
276 if (itcheck != mapToTheCandidate.end())
279 values[iobj] = candPtr;
282 filler.insert(inputObjCollection, values.begin(), values.end());
edm::InputTag muonTag_
Input Muons.
void setDeltaP(double dp)
set uncertainty on momentum
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
bool isNonnull() const
Checks for non-null.
void setGsfElectronRef(const reco::GsfElectronRef &ref)
set GsfElectronRef
edm::EDGetTokenT< reco::MuonCollection > inputTagMuons_
float mva_nothing_gamma() const
mva for gamma detection
#define DEFINE_FWK_MODULE(type)
void produce(edm::Event &, const edm::EventSetup &) override
bool producePFCandidates_
Flags - if true: References will be towards new collection ; if false to the original one...
Log< level::Error, false > LogError
edm::EDGetTokenT< reco::PhotonCollection > inputTagPhotons_
Input Photons.
PFLinker(const edm::ParameterSet &)
edm::ValueMap< reco::PFCandidatePtr > fillValueMap(edm::Event &event, std::string label, edm::Handle< TYPE > &inputObjCollection, const std::map< edm::Ref< TYPE >, reco::PFCandidatePtr > &mapToTheCandidate, const edm::OrphanHandle< reco::PFCandidateCollection > &newPFCandColl) const
edm::EDGetTokenT< reco::MuonToMuonMap > inputTagMuonMap_
Handle< PROD > getHandle(EDGetTokenT< PROD > token) const
std::string nameOutputElectronsPF_
name of output ValueMap electrons
std::string nameOutputPhotonsPF_
name of output ValueMap photons
std::string nameOutputPF_
name of output collection of PFCandidate
reco::MuonRef muonRef() const
void setEcalEnergy(float eeRaw, float eeCorr)
set corrected Ecal energy
bool fillMuonRefs_
Set muon refs and produce the value map?
void setPhotonRef(const reco::PhotonRef &phRef)
set ref to the corresponding reco::Photon if any
T getParameter(std::string const &) const
Particle reconstructed by the particle flow algorithm.
void setMuonRef(const reco::MuonRef &ref)
set muon reference
bool forceElectronsInHGCAL_
Put Electrons within HGCAL coming from SimPFProducer.
reco::GsfTrackRef gsfTrackRef() const
void setSuperClusterRef(const reco::SuperClusterRef &scRef)
virtual ParticleType particleId() const
edm::EDGetTokenT< reco::GsfElectronCollection > inputTagGsfElectrons_
Input GsfElectrons.
void setP4(const LorentzVector &p4) final
set 4-momentum
std::vector< edm::EDGetTokenT< reco::PFCandidateCollection > > inputTagPFCandidates_
Input PFCandidates.
std::string nameOutputMergedPF_
name of output merged ValueMap
reco::SuperClusterRef superClusterRef() const
return a reference to the corresponding SuperCluster if any
double eta() const final
momentum pseudorapidity