1 #ifndef PFProducer_PFCandConnector_H_ 2 #define PFProducer_PFCandConnector_H_ 42 bCorrect = iCfgCandConnector.
getParameter<
bool>(
"bCorrect");
44 bCalibPrimary = iCfgCandConnector.
getParameter<
bool>(
"bCalibPrimary");
46 if(iCfgCandConnector.
exists(
"dptRel_PrimaryTrack")) dptRel_PrimaryTrack = iCfgCandConnector.
getParameter<
double>(
"dptRel_PrimaryTrack");
47 else {
edm::LogWarning(
"PFCandConnector") <<
"dptRel_PrimaryTrack doesn't exist. Setting a default safe value 0" << std::endl; dptRel_PrimaryTrack = 0;}
49 if(iCfgCandConnector.
exists(
"dptRel_MergedTrack")) dptRel_MergedTrack = iCfgCandConnector.
getParameter<
double>(
"dptRel_MergedTrack");
50 else {
edm::LogWarning(
"PFCandConnector") <<
"dptRel_MergedTrack doesn't exist. Setting a default safe value 0" << std::endl; dptRel_MergedTrack = 0;}
52 if(iCfgCandConnector.
exists(
"ptErrorSecondary")) ptErrorSecondary = iCfgCandConnector.
getParameter<
double>(
"ptErrorSecondary");
53 else {
edm::LogWarning(
"PFCandConnector") <<
"ptErrorSecondary doesn't exist. Setting a default safe value 0" << std::endl; ptErrorSecondary = 0;}
55 if(iCfgCandConnector.
exists(
"nuclCalibFactors")) nuclCalibFactors = iCfgCandConnector.
getParameter<std::vector<double> >(
"nuclCalibFactors");
56 else {
edm::LogWarning(
"PFCandConnector") <<
"nuclear calib factors doesn't exist the factor would not be applyed" << std::endl; }
58 setParameters(bCorrect, bCalibPrimary, dptRel_PrimaryTrack, dptRel_MergedTrack, ptErrorSecondary, nuclCalibFactors);
std::vector< double > fConst_
T getParameter(std::string const &) const
PFCandConnector(bool debug=false)
bool isPrimaryNucl(const reco::PFCandidate &pf) const
bool isSecondaryNucl(const reco::PFCandidate &pf) const
void analyseNuclearWSec(reco::PFCandidateCollection &, std::vector< bool > &, unsigned int) const
Analyse nuclear interactions where a secondary track is present.
double rescaleFactor(const double pt, const double cFrac) const
Return a calibration factor for a reconstructed nuclear interaction.
bool exists(std::string const ¶meterName) const
checks if a parameter exists
static const reco::PFCandidate::Flags fT_FROM_DISP_
std::vector< double > fNorm_
static const reco::PFCandidate::Flags fT_TO_DISP_
std::vector< double > fExp_
Based on a class from : V. Roberfroid, February 2008.
reco::PFCandidateCollection connect(reco::PFCandidateCollection &pfCand) const
void analyseNuclearWPrim(reco::PFCandidateCollection &, std::vector< bool > &, unsigned int) const
Analyse nuclear interactions where a primary or merged track is present.
static const double pion_mass2
Useful constants.
const bool debug_
Parameters.
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
double dptRel_PrimaryTrack_
bool bCalibPrimary_
Calibration parameters for the reconstructed nuclear interactions.
Particle reconstructed by the particle flow algorithm.
void setParameters(const edm::ParameterSet &iCfgCandConnector)
double dptRel_MergedTrack_