20 using namespace boost;
36 calibHF_eta_step = iConfig.
getParameter<std::vector<double> >(
"calibHF_eta_step");
37 calibHF_a_EMonly = iConfig.
getParameter<std::vector<double> >(
"calibHF_a_EMonly");
38 calibHF_b_HADonly = iConfig.
getParameter<std::vector<double> >(
"calibHF_b_HADonly");
39 calibHF_a_EMHAD = iConfig.
getParameter<std::vector<double> >(
"calibHF_a_EMHAD");
40 calibHF_b_EMHAD = iConfig.
getParameter<std::vector<double> >(
"calibHF_b_EMHAD");
41 boost::shared_ptr<PFEnergyCalibrationHF>
42 thepfEnergyCalibrationHF (
new PFEnergyCalibrationHF(calibHF_use,calibHF_eta_step,calibHF_a_EMonly,calibHF_b_HADonly,calibHF_a_EMHAD,calibHF_b_EMHAD) ) ;
52 if( iConfig.
existsAs<
bool>(
"useEGammaFilters") ) {
53 use_EGammaFilters_ = iConfig.
getParameter<
bool>(
"useEGammaFilters");
55 use_EGammaFilters_ =
false;
69 if(use_EGammaFilters_) {
70 usePFElectrons_ =
false;
71 usePFPhotons_ =
false;
79 = (usePFPhotons_) ? iConfig.
getParameter<
bool>(
"useRegressionFromDB") :
false;
84 if( useEGammaElectrons_) {
96 usePFSCEleCalib = iConfig.
getParameter<
bool>(
"usePFSCEleCalib");
97 calibPFSCEle_Fbrem_barrel = iConfig.
getParameter<std::vector<double> >(
"calibPFSCEle_Fbrem_barrel");
98 calibPFSCEle_Fbrem_endcap = iConfig.
getParameter<std::vector<double> >(
"calibPFSCEle_Fbrem_endcap");
99 calibPFSCEle_barrel = iConfig.
getParameter<std::vector<double> >(
"calibPFSCEle_barrel");
100 calibPFSCEle_endcap = iConfig.
getParameter<std::vector<double> >(
"calibPFSCEle_endcap");
101 boost::shared_ptr<PFSCEnergyCalibration>
102 thePFSCEnergyCalibration (
new PFSCEnergyCalibration(calibPFSCEle_Fbrem_barrel,calibPFSCEle_Fbrem_endcap,
103 calibPFSCEle_barrel,calibPFSCEle_endcap ));
116 produces<reco::PFCandidateCollection>();
117 produces<reco::PFCandidateCollection>(
"CleanedHF");
118 produces<reco::PFCandidateCollection>(
"CleanedCosmicsMuons");
119 produces<reco::PFCandidateCollection>(
"CleanedTrackerAndGlobalMuons");
120 produces<reco::PFCandidateCollection>(
"CleanedFakeMuons");
121 produces<reco::PFCandidateCollection>(
"CleanedPunchThroughMuons");
122 produces<reco::PFCandidateCollection>(
"CleanedPunchThroughNeutralHadrons");
123 produces<reco::PFCandidateCollection>(
"AddedMuonsAndHadrons");
126 if (usePFElectrons_) {
127 produces<reco::PFCandidateCollection>(electronOutputCol_);
128 produces<reco::PFCandidateElectronExtraCollection>(electronExtraOutputCol_);
132 produces<reco::PFCandidatePhotonExtraCollection>(photonExtraOutputCol_);
146 string mvaWeightFileEleID
147 = iConfig.
getParameter<
string>(
"pf_electronID_mvaWeightFile");
149 bool applyCrackCorrectionsForElectrons
150 = iConfig.
getParameter<
bool>(
"pf_electronID_crackCorrection");
152 string path_mvaWeightFileEleID;
155 path_mvaWeightFileEleID =
edm::FileInPath ( mvaWeightFileEleID.c_str() ).fullPath();
160 string path_mvaWeightFileConvID;
161 string mvaWeightFileConvID;
162 string path_mvaWeightFileGCorr;
163 string path_mvaWeightFileLCorr;
165 string path_mvaWeightFileRes;
166 double mvaConvCut=-99.;
172 mvaWeightFileConvID =iConfig.
getParameter<
string>(
"pf_convID_mvaWeightFile");
173 mvaConvCut = iConfig.
getParameter<
double>(
"pf_conv_mvaCut");
174 path_mvaWeightFileConvID =
edm::FileInPath ( mvaWeightFileConvID.c_str() ).fullPath();
175 sumPtTrackIsoForPhoton = iConfig.
getParameter<
double>(
"sumPtTrackIsoForPhoton");
176 sumPtTrackIsoSlopeForPhoton = iConfig.
getParameter<
double>(
"sumPtTrackIsoSlopeForPhoton");
181 if(!useRegressionFromDB_) {
182 string mvaWeightFileLCorr=iConfig.
getParameter<
string>(
"pf_locC_mvaWeightFile");
183 path_mvaWeightFileLCorr =
edm::FileInPath( mvaWeightFileLCorr.c_str() ).fullPath();
184 string mvaWeightFileGCorr=iConfig.
getParameter<
string>(
"pf_GlobC_mvaWeightFile");
185 path_mvaWeightFileGCorr =
edm::FileInPath( mvaWeightFileGCorr.c_str() ).fullPath();
186 string mvaWeightFileRes=iConfig.
getParameter<
string>(
"pf_Res_mvaWeightFile");
187 path_mvaWeightFileRes=
edm::FileInPath(mvaWeightFileRes.c_str()).fullPath();
189 TFile *fgbr =
new TFile(path_mvaWeightFileGCorr.c_str(),
"READ");
190 ReaderGC_ =(
const GBRForest*)fgbr->Get(
"GBRForest");
191 TFile *fgbr2 =
new TFile(path_mvaWeightFileLCorr.c_str(),
"READ");
192 ReaderLC_ = (
const GBRForest*)fgbr2->Get(
"GBRForest");
193 TFile *fgbr3 =
new TFile(path_mvaWeightFileRes.c_str(),
"READ");
194 ReaderRes_ = (
const GBRForest*)fgbr3->Get(
"GBRForest");
195 LogDebug(
"PFProducer")<<
"Will set regressions from binary files " <<endl;
203 double ele_iso_pt(0.0), ele_iso_mva_barrel(0.0), ele_iso_mva_endcap(0.0),
204 ele_iso_combIso_barrel(0.0), ele_iso_combIso_endcap(0.0),
206 unsigned int ele_missinghits(0);
207 double ph_MinEt(0.0), ph_combIso(0.0), ph_HoE(0.0),
208 ph_sietaieta_eb(0.0),ph_sietaieta_ee(0.0);
209 string ele_iso_mvaWeightFile(
""), ele_iso_path_mvaWeightFile(
"");
213 if(use_EGammaFilters_) {
214 ele_iso_mvaWeightFile = iConfig.
getParameter<
string>(
"isolatedElectronID_mvaWeightFile");
215 ele_iso_path_mvaWeightFile =
edm::FileInPath ( ele_iso_mvaWeightFile.c_str() ).fullPath();
216 inputTagPFEGammaCandidates_ = consumes<edm::View<reco::PFCandidate> >((iConfig.
getParameter<
edm::InputTag>(
"PFEGammaCandidates")));
217 inputTagValueMapGedElectrons_ = consumes<edm::ValueMap<reco::GsfElectronRef>>(iConfig.
getParameter<
edm::InputTag>(
"GedElectronValueMap"));
218 inputTagValueMapGedPhotons_ = consumes<edm::ValueMap<reco::PhotonRef> >(iConfig.
getParameter<
edm::InputTag>(
"GedPhotonValueMap"));
219 ele_iso_pt = iConfig.
getParameter<
double>(
"electron_iso_pt");
220 ele_iso_mva_barrel = iConfig.
getParameter<
double>(
"electron_iso_mva_barrel");
221 ele_iso_mva_endcap = iConfig.
getParameter<
double>(
"electron_iso_mva_endcap");
222 ele_iso_combIso_barrel = iConfig.
getParameter<
double>(
"electron_iso_combIso_barrel");
223 ele_iso_combIso_endcap = iConfig.
getParameter<
double>(
"electron_iso_combIso_endcap");
224 ele_noniso_mva = iConfig.
getParameter<
double>(
"electron_noniso_mvaCut");
225 ele_missinghits = iConfig.
getParameter<
unsigned int>(
"electron_missinghits");
226 ph_MinEt = iConfig.
getParameter<
double>(
"photon_MinEt");
227 ph_combIso = iConfig.
getParameter<
double>(
"photon_combIso");
229 ph_sietaieta_eb = iConfig.
getParameter<
double>(
"photon_SigmaiEtaiEta_barrel");
230 ph_sietaieta_ee = iConfig.
getParameter<
double>(
"photon_SigmaiEtaiEta_endcap");
231 useProtectionsForJetMET =
233 ele_protectionsForJetMET =
235 ph_protectionsForJetMET =
248 = iConfig.
getParameter<
bool>(
"usePFNuclearInteractions");
265 useCalibrationsFromDB_
268 if (useCalibrationsFromDB_)
271 boost::shared_ptr<PFEnergyCalibration>
279 pfAlgo_.reset(
new PFAlgo);
285 pfAlgo_->setParameters( nSigmaECAL,
288 thepfEnergyCalibrationHF);
291 pfAlgo_->setPFEleParameters(mvaEleCut,
292 path_mvaWeightFileEleID,
294 thePFSCEnergyCalibration,
296 sumEtEcalIsoForEgammaSC_barrel,
297 sumEtEcalIsoForEgammaSC_endcap,
298 coneEcalIsoForEgammaSC,
299 sumPtTrackIsoForEgammaSC_barrel,
300 sumPtTrackIsoForEgammaSC_endcap,
301 nTrackIsoForEgammaSC,
302 coneTrackIsoForEgammaSC,
303 applyCrackCorrectionsForElectrons,
306 useEGammaSupercluster);
311 pfAlgo_->setPFPhotonParameters(usePFPhotons_,
312 path_mvaWeightFileConvID,
317 sumPtTrackIsoForPhoton,
318 sumPtTrackIsoSlopeForPhoton);
322 pfAlgo_->setEGammaParameters(use_EGammaFilters_,
323 ele_iso_path_mvaWeightFile,
327 ele_iso_combIso_barrel,
328 ele_iso_combIso_endcap,
331 useProtectionsForJetMET,
332 ele_protectionsForJetMET,
338 ph_protectionsForJetMET);
342 pfAlgo_->setDisplacedVerticesParameters(rejectTracks_Bad,
344 usePFNuclearInteractions,
349 if (usePFNuclearInteractions)
350 pfAlgo_->setCandConnectorParameters( iCfgCandConnector );
355 pfAlgo_->setPFMuonAndFakeParameters(iConfig);
367 = iConfig.
getParameter<
double>(
"minSignificanceReduction");
374 pfAlgo_->setPostHFCleaningParameters(postHFCleaning_,
378 minSignificanceReduction,
383 std::vector<edm::InputTag> tags =iConfig.
getParameter< std::vector<edm::InputTag> >(
"cleanedHF");
384 for (
unsigned int i=0;
i<tags.size();++
i)
385 inputTagCleanedHF_.push_back(consumes<reco::PFRecHitCollection>(tags[
i]));
388 useVerticesForNeutral_ = iConfig.
getParameter<
bool>(
"useVerticesForNeutral");
392 pfAlgo_->setHOTag(useHO_);
400 pfAlgo_->setDebug( debug_ );
429 if ( useCalibrationsFromDB_ ) {
436 pfAlgo_->thePFEnergyCalibration()->setCalibrationFunctions(pfCalibrations);
460 if(usePFPhotons_ && useRegressionFromDB_) {
468 ReaderLCEB_=readerPFLCEB.
product();
470 ReaderLCEE_=readerPFLCEE.
product();
472 ReaderGCBarrel_=readerPFGCEB.
product();
474 ReaderGCEndCapHighr9_=readerPFGCEEHR9.
product();
476 ReaderGCEndCapLowr9_=readerPFGCEELR9.
product();
478 ReaderEcalRes_=readerPFRes.
product();
487 pfAlgo_->setPFPhotonRegWeights(ReaderLCEB_,ReaderLCEE_,ReaderGCBarrel_,ReaderGCEndCapHighr9_, ReaderGCEndCapLowr9_, ReaderEcalRes_ );
496 LogDebug(
"PFProducer")<<
"START event: " 498 <<
" in run "<<iEvent.
id().
run()<<endl;
504 bool gotVertices = iEvent.
getByToken(vertices_,vertices);
507 err<<
"Cannot find vertices for this event.Continuing Without them ";
508 LogError(
"PFProducer")<<err.str()<<endl;
512 pfAlgo_->setPFVertexParameters(useVerticesForNeutral_,vertices.
product());
524 if ( postMuonCleaning_ ) {
527 pfAlgo_->setMuonHandle(muons);
530 if (useEGammaElectrons_) {
532 iEvent.
getByToken( inputTagEgammaElectrons_, egelectrons );
533 pfAlgo_->setEGElectronCollection(*egelectrons);
536 if(use_EGammaFilters_) {
541 iEvent.
getByToken(inputTagPFEGammaCandidates_,pfEgammaCandidates);
546 iEvent.
getByToken(inputTagValueMapGedElectrons_,valueMapGedElectrons);
549 iEvent.
getByToken(inputTagValueMapGedPhotons_,valueMapGedPhotons);
551 pfAlgo_->setEGammaCollections(*pfEgammaCandidates,
552 *valueMapGedElectrons,
553 *valueMapGedPhotons);
558 LogDebug(
"PFProducer")<<
"particle flow is starting"<<endl;
562 pfAlgo_->reconstructParticles( blocks );
566 str<<(*pfAlgo_)<<endl;
568 LogInfo(
"PFProducer") <<str.str()<<endl;
574 if(usePFElectrons_) {
575 std::unique_ptr<reco::PFCandidateElectronExtraCollection> pOutputElectronCandidateExtraCollection( pfAlgo_->transferElectronExtra() );
578 iEvent.
put(
std::move(pOutputElectronCandidateExtraCollection),electronExtraOutputCol_);
579 pfAlgo_->setElectronExtraRef(electronExtraProd);
585 std::unique_ptr<reco::PFCandidatePhotonExtraCollection> pOutputPhotonCandidateExtraCollection( pfAlgo_->transferPhotonExtra() );
588 iEvent.
put(
std::move(pOutputPhotonCandidateExtraCollection),photonExtraOutputCol_);
589 pfAlgo_->setPhotonExtraRef(photonExtraProd);
593 std::unique_ptr<reco::PFCandidateCollection>
594 pCosmicsMuonCleanedCandidateCollection( pfAlgo_->getPFMuonAlgo()->transferCleanedCosmicCandidates() );
596 std::unique_ptr<reco::PFCandidateCollection>
597 pTrackerAndGlobalCleanedMuonCandidateCollection( pfAlgo_->getPFMuonAlgo()->transferCleanedTrackerAndGlobalCandidates() );
599 std::unique_ptr<reco::PFCandidateCollection>
600 pFakeCleanedMuonCandidateCollection( pfAlgo_->getPFMuonAlgo()->transferCleanedFakeCandidates() );
602 std::unique_ptr<reco::PFCandidateCollection>
603 pPunchThroughMuonCleanedCandidateCollection( pfAlgo_->getPFMuonAlgo()->transferPunchThroughCleanedMuonCandidates() );
605 std::unique_ptr<reco::PFCandidateCollection>
606 pPunchThroughHadronCleanedCandidateCollection( pfAlgo_->getPFMuonAlgo()->transferPunchThroughCleanedHadronCandidates() );
608 std::unique_ptr<reco::PFCandidateCollection>
609 pAddedMuonCandidateCollection( pfAlgo_->getPFMuonAlgo()->transferAddedMuonCandidates() );
613 for (
unsigned ihf=0;
ihf<inputTagCleanedHF_.size(); ++
ihf ) {
615 bool foundHF = iEvent.
getByToken( inputTagCleanedHF_[
ihf], hfCleaned );
616 if (!foundHF)
continue;
617 for (
unsigned jhf=0; jhf<(*hfCleaned).size(); ++jhf ) {
618 hfCopy.push_back( (*hfCleaned)[jhf] );
623 pfAlgo_->checkCleaning( hfCopy );
626 std::unique_ptr<reco::PFCandidateCollection> pCleanedCandidateCollection( pfAlgo_->transferCleanedCandidates() );
630 std::unique_ptr<reco::PFCandidateCollection> pOutputCandidateCollection( pfAlgo_->transferCandidates() );
634 LogDebug(
"PFProducer")<<
"particle flow: putting products in the event"<<endl;
635 if ( verbose_ )
std::cout <<
"particle flow: putting products in the event. Here the full list"<<endl;
637 for( reco::PFCandidateCollection::const_iterator itCand = (*pOutputCandidateCollection).begin(); itCand != (*pOutputCandidateCollection).end(); itCand++) {
639 if (verbose_ )
std::cout << nC <<
")" << (*itCand).particleId() << std::endl;
647 iEvent.
put(
std::move(pCleanedCandidateCollection),
"CleanedHF");
649 if ( postMuonCleaning_ ) {
650 iEvent.
put(
std::move(pCosmicsMuonCleanedCandidateCollection),
"CleanedCosmicsMuons");
651 iEvent.
put(
std::move(pTrackerAndGlobalCleanedMuonCandidateCollection),
"CleanedTrackerAndGlobalMuons");
652 iEvent.
put(
std::move(pFakeCleanedMuonCandidateCollection),
"CleanedFakeMuons");
653 iEvent.
put(
std::move(pPunchThroughMuonCleanedCandidateCollection),
"CleanedPunchThroughMuons");
654 iEvent.
put(
std::move(pPunchThroughHadronCleanedCandidateCollection),
"CleanedPunchThroughNeutralHadrons");
655 iEvent.
put(
std::move(pAddedMuonCandidateCollection),
"AddedMuonsAndHadrons");
660 std::unique_ptr<reco::PFCandidateCollection>
661 pOutputElectronCandidateCollection( pfAlgo_->transferElectronCandidates() );
662 iEvent.
put(
std::move(pOutputElectronCandidateCollection),electronOutputCol_);
sumPtTrackIsoForEgammaSC_barrel
T getParameter(std::string const &) const
EventNumber_t event() const
T getUntrackedParameter(std::string const &, T const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
bool existsAs(std::string const ¶meterName, bool trackiness=true) const
checks if a parameter exists as a given type
sumPtTrackIsoForEgammaSC_endcap
bool getByToken(EDGetToken token, Handle< PROD > &result) const
std::vector< PFRecHit > PFRecHitCollection
collection of PFRecHit objects
sumEtEcalIsoForEgammaSC_endcap
virtual void produce(edm::Event &, const edm::EventSetup &) override
PFProducer(const edm::ParameterSet &)
calibPFSCEle_Fbrem_endcap
sumEtEcalIsoForEgammaSC_barrel
virtual void beginRun(const edm::Run &, const edm::EventSetup &) override
T const * product() const
sumPtTrackIsoSlopeForPhoton
calibPFSCEle_Fbrem_barrel
T const * product() const