11 std::vector<edm::InputTag> tags = iConfig.
getParameter<std::vector<edm::InputTag> >(
"PFCandidate");
12 for (
unsigned int i=0;
i<tags.size();++
i)
49 edm::LogError(
"PFLinker") <<
" cannot read several collections of PFCandidates and produce a new collection at the same time. " << std::endl;
52 if(producePFCandidates_) {
58 if(fillMuonRefs_) produces<edm::ValueMap<reco::PFCandidatePtr> > (
muonTag_.
label());
66 auto pfCandidates_p = std::make_unique<reco::PFCandidateCollection>();
70 std::map<reco::GsfElectronRef,reco::PFCandidatePtr> electronCandidateMap;
74 std::map<reco::PhotonRef,reco::PFCandidatePtr> photonCandidateMap;
80 std::map<reco::MuonRef,reco::PFCandidatePtr> muonCandidateMap;
84 for(
unsigned icol=0;icol<nColPF;++icol) {
88 for(
unsigned i=0;
i<ncand; ++
i) {
98 if ( !(isphoton || iselectron || hasNonNullMuonRef)){pfCandidates_p->push_back(cand);
continue;}
101 if (hasNonNullMuonRef) {
104 muonCandidateMap[muRef] = candPtr;
111 auto itcheck = find_if( gsfElectrons->begin(),gsfElectrons->end(),
112 [&gsfTrackRef](
const auto& ele) {
return (ele.gsfTrack()==gsfTrackRef);} );
113 if(itcheck==gsfElectrons->end()) {
115 std::ostringstream err;
116 err <<
" Problem in PFLinker: no GsfElectron " << std::endl;
120 <<
"Forcing an electron pfCandidate at: " << cand.
eta()
121 <<
" in HGCAL" << std::endl;
122 pfCandidates_p->push_back(cand);
130 cand.
setEcalEnergy(electronRef->superCluster()->rawEnergy(),electronRef->ecalEnergy());
133 electronCandidateMap[electronRef] = candPtr;
140 [&scRef](
const auto&
photon) {
return photon.superCluster() == scRef;} );
142 std::ostringstream err;
143 err <<
" Problem in PFLinker: no Photon " << std::endl;
155 photonCandidateMap[photonRef] = candPtr;
158 pfCandidates_p->push_back(cand);
171 electronCandidateMap,
186 pfMapMuons = fillValueMap<reco::MuonCollection>(
iEvent,
193 auto pfMapMerged = std::make_unique<edm::ValueMap<reco::PFCandidatePtr>>();
196 *pfMapMerged += pfMapGsfElectrons;
197 *pfMapMerged += pfMapPhotons;
205 template<
typename TYPE>
212 auto pfMap_p = std::make_unique<edm::ValueMap<reco::PFCandidatePtr>>();
217 unsigned nObj=inputObjCollection->size();
218 std::vector<reco::PFCandidatePtr>
values(nObj);
220 for(
unsigned iobj=0; iobj < nObj; ++iobj) {
223 MapTYPE_it itcheck = mapToTheCandidate.find(objRef);
227 if(itcheck != mapToTheCandidate.end())
230 values[iobj] = candPtr;
233 filler.insert(inputObjCollection,values.begin(),values.end());
T getParameter(std::string const &) const
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.
double eta() const final
momentum pseudorapidity
void setGsfElectronRef(const reco::GsfElectronRef &ref)
set GsfElectronRef
edm::EDGetTokenT< reco::MuonCollection > inputTagMuons_
float mva_nothing_gamma() const
mva for gamma detection
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...
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
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