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. " 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) {
153 if (!(
cand.energy() > 0))
162 if (!(isphoton || iselectron || hasNonNullMuonRef)) {
163 pfCandidates_p->push_back(
cand);
167 if (hasNonNullMuonRef) {
169 cand.setMuonRef(muRef);
170 muonCandidateMap[muRef] = candPtr;
177 return (ele.gsfTrack() == gsfTrackRef);
181 std::ostringstream
err;
182 err <<
" Problem in PFLinker: no GsfElectron " << std::endl;
185 LogDebug(
"PFLinker") <<
"Forcing an electron pfCandidate at: " <<
cand.eta() <<
" in HGCAL" << std::endl;
186 pfCandidates_p->push_back(
cand);
191 cand.setGsfElectronRef(electronRef);
192 cand.setSuperClusterRef(electronRef->superCluster());
194 cand.setEcalEnergy(electronRef->superCluster()->rawEnergy(), electronRef->ecalEnergy());
197 electronCandidateMap[electronRef] = candPtr;
203 auto itcheck = find_if(
205 if (itcheck ==
photons->end()) {
206 std::ostringstream
err;
207 err <<
" Problem in PFLinker: no Photon " << std::endl;
212 cand.setPhotonRef(photonRef);
213 cand.setSuperClusterRef(photonRef->superCluster());
215 cand.setEcalEnergy(photonRef->superCluster()->rawEnergy(),
219 photonCandidateMap[photonRef] = candPtr;
222 pfCandidates_p->push_back(
cand);
247 auto pfMapMerged = std::make_unique<edm::ValueMap<reco::PFCandidatePtr>>();
250 *pfMapMerged += pfMapGsfElectrons;
251 *pfMapMerged += pfMapPhotons;
253 *pfMapMerged += pfMapMuons;
258 template <
typename TYPE>
265 auto pfMap_p = std::make_unique<edm::ValueMap<reco::PFCandidatePtr>>();
270 unsigned nObj = inputObjCollection->size();
271 std::vector<reco::PFCandidatePtr>
values(nObj);
273 for (
unsigned iobj = 0; iobj < nObj; ++iobj) {
275 MapTYPE_it itcheck = mapToTheCandidate.find(objRef);
279 if (itcheck != mapToTheCandidate.end())
edm::InputTag muonTag_
Input Muons.
T getParameter(std::string const &) const
edm::EDGetTokenT< reco::MuonCollection > inputTagMuons_
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::EDGetTokenT< reco::MuonToMuonMap > inputTagMuonMap_
std::string nameOutputElectronsPF_
name of output ValueMap electrons
std::string nameOutputPhotonsPF_
name of output ValueMap photons
#define DEFINE_FWK_MODULE(type)
std::string nameOutputPF_
name of output collection of PFCandidate
bool fillMuonRefs_
Set muon refs and produce the value map?
Particle reconstructed by the particle flow algorithm.
bool forceElectronsInHGCAL_
Put Electrons within HGCAL coming from SimPFProducer.
edm::EDGetTokenT< reco::GsfElectronCollection > inputTagGsfElectrons_
Input GsfElectrons.
std::vector< edm::EDGetTokenT< reco::PFCandidateCollection > > inputTagPFCandidates_
Input PFCandidates.
std::string nameOutputMergedPF_
name of output merged ValueMap
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