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") ) {
71 usePFPhotons_ =
false;
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");
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");
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");
191 TFile *fgbr2 =
new TFile(path_mvaWeightFileLCorr.c_str(),
"READ");
193 TFile *fgbr3 =
new TFile(path_mvaWeightFileRes.c_str(),
"READ");
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(
"");
210 edm::ParameterSet ele_protectionsForJetMET,ele_protectionsForBadHcal,ph_protectionsForJetMET,ph_protectionsForBadHcal;
213 ele_iso_mvaWeightFile = iConfig.
getParameter<
string>(
"isolatedElectronID_mvaWeightFile");
214 ele_iso_path_mvaWeightFile =
edm::FileInPath ( ele_iso_mvaWeightFile.c_str() ).fullPath();
218 ele_iso_pt = iConfig.
getParameter<
double>(
"electron_iso_pt");
219 ele_iso_mva_barrel = iConfig.
getParameter<
double>(
"electron_iso_mva_barrel");
220 ele_iso_mva_endcap = iConfig.
getParameter<
double>(
"electron_iso_mva_endcap");
221 ele_iso_combIso_barrel = iConfig.
getParameter<
double>(
"electron_iso_combIso_barrel");
222 ele_iso_combIso_endcap = iConfig.
getParameter<
double>(
"electron_iso_combIso_endcap");
223 ele_noniso_mva = iConfig.
getParameter<
double>(
"electron_noniso_mvaCut");
224 ele_missinghits = iConfig.
getParameter<
unsigned int>(
"electron_missinghits");
225 ph_MinEt = iConfig.
getParameter<
double>(
"photon_MinEt");
226 ph_combIso = iConfig.
getParameter<
double>(
"photon_combIso");
228 ph_sietaieta_eb = iConfig.
getParameter<
double>(
"photon_SigmaiEtaiEta_barrel");
229 ph_sietaieta_ee = iConfig.
getParameter<
double>(
"photon_SigmaiEtaiEta_endcap");
232 ele_protectionsForJetMET =
234 ele_protectionsForBadHcal =
236 ph_protectionsForJetMET =
238 ph_protectionsForBadHcal =
251 = iConfig.
getParameter<
bool>(
"usePFNuclearInteractions");
271 if (useCalibrationsFromDB_)
274 boost::shared_ptr<PFEnergyCalibration>
288 pfAlgo_->setParameters( nSigmaECAL,
291 thepfEnergyCalibrationHF);
294 pfAlgo_->setPFEleParameters(mvaEleCut,
295 path_mvaWeightFileEleID,
297 thePFSCEnergyCalibration,
299 sumEtEcalIsoForEgammaSC_barrel,
300 sumEtEcalIsoForEgammaSC_endcap,
301 coneEcalIsoForEgammaSC,
302 sumPtTrackIsoForEgammaSC_barrel,
303 sumPtTrackIsoForEgammaSC_endcap,
304 nTrackIsoForEgammaSC,
305 coneTrackIsoForEgammaSC,
306 applyCrackCorrectionsForElectrons,
309 useEGammaSupercluster);
314 pfAlgo_->setPFPhotonParameters(usePFPhotons_,
315 path_mvaWeightFileConvID,
320 sumPtTrackIsoForPhoton,
321 sumPtTrackIsoSlopeForPhoton);
326 ele_iso_path_mvaWeightFile,
330 ele_iso_combIso_barrel,
331 ele_iso_combIso_endcap,
335 ele_protectionsForJetMET,
336 ele_protectionsForBadHcal,
342 ph_protectionsForJetMET,
343 ph_protectionsForBadHcal);
347 pfAlgo_->setDisplacedVerticesParameters(rejectTracks_Bad,
349 usePFNuclearInteractions,
354 if (usePFNuclearInteractions)
355 pfAlgo_->setCandConnectorParameters( iCfgCandConnector );
360 pfAlgo_->setPFMuonAndFakeParameters(iConfig);
361 pfAlgo_->setBadHcalTrackParams(iConfig);
373 = iConfig.
getParameter<
double>(
"minSignificanceReduction");
384 minSignificanceReduction,
389 std::vector<edm::InputTag> tags =iConfig.
getParameter< std::vector<edm::InputTag> >(
"cleanedHF");
390 for (
unsigned int i=0;
i<tags.size();++
i)
std::vector< edm::EDGetTokenT< reco::PFRecHitCollection > > inputTagCleanedHF_
sumPtTrackIsoForEgammaSC_barrel
const GBRForest * ReaderRes_
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
std::string photonExtraOutputCol_
edm::EDGetTokenT< reco::MuonCollection > inputTagMuons_
bool existsAs(std::string const ¶meterName, bool trackiness=true) const
checks if a parameter exists as a given type
sumPtTrackIsoForEgammaSC_endcap
std::auto_ptr< PFAlgo > pfAlgo_
particle flow algorithm
std::string calibrationsLabel_
const GBRForest * ReaderLC_
sumEtEcalIsoForEgammaSC_endcap
bool useCalibrationsFromDB_
edm::EDGetTokenT< reco::VertexCollection > vertices_
bool useVerticesForNeutral_
calibPFSCEle_Fbrem_endcap
sumEtEcalIsoForEgammaSC_barrel
edm::EDGetTokenT< edm::View< reco::PFCandidate > > inputTagPFEGammaCandidates_
edm::EDGetTokenT< reco::PFBlockCollection > inputTagBlocks_
bool useRegressionFromDB_
std::string electronOutputCol_
std::string electronExtraOutputCol_
edm::EDGetTokenT< edm::ValueMap< reco::PhotonRef > > inputTagValueMapGedPhotons_
sumPtTrackIsoSlopeForPhoton
calibPFSCEle_Fbrem_barrel
edm::EDGetTokenT< reco::GsfElectronCollection > inputTagEgammaElectrons_
edm::EDGetTokenT< edm::ValueMap< reco::GsfElectronRef > > inputTagValueMapGedElectrons_
const GBRForest * ReaderGC_