47 #include <CLHEP/Random/RandFlat.h> 48 #include <CLHEP/Random/RandGauss.h> 54 produces<std::vector<reco::PFCandidate> >();
62 std::vector<double> defEtaEdges;
63 defEtaEdges.push_back(-999999.);
64 defEtaEdges.push_back(999999.);
69 std::vector<double> defDistortion;
70 defDistortion.push_back(0.);
93 std::vector<double> defEfficiencyRatio;
94 defEfficiencyRatio.push_back(1.);
106 if ( effWrong and momWrong) {
107 edm::LogError(
"") <<
"WARNING: DistortedPFCandProducer : Size of some parameters do not match the EtaBinEdges vector!!";
132 edm::LogError(
"") <<
">>> Muon collection does not exist !!!";
138 edm::LogError(
"") <<
">>> Muon-GenParticle match map does not exist !!!";
146 edm::LogError(
"") <<
">>> PFCandidate collection does not exist !!!";
150 unsigned int muonCollectionSize = muonCollection->size();
151 unsigned int pfCollectionSize = pfCollection->size();
153 if (pfCollectionSize<1)
return;
157 bool pfMuonFound =
false;
165 for (
unsigned int j=0; j<pfCollectionSize; j++) {
170 double ptmu = pf->
pt();
173 for (
unsigned int i=0;
i<muonCollectionSize;
i++) {
181 if (muref.
key()==mu.
key()) {
194 else {pfMuonFound =
false; }
202 if ( !pfMuonFound)
continue;
204 double ptgen = pf->
pt();
205 double etagen = pf->
eta();
212 LogTrace(
"") <<
">>> Muon-GenParticle match found; ptmu= " << pf->
pt() <<
", ptgen= " << ptgen;
214 LogTrace(
"") <<
">>> MUON-GENPARTICLE MATCH NOT FOUND!!!";
219 double effRatio = 0.;
229 for (
unsigned int j=1; j<=
nbins; ++j) {
236 LogTrace(
"") <<
">>> etaBin: " << etaBin <<
", for etagen =" << etagen;
239 LogTrace(
"") <<
">>> Muon outside eta range: reject it; etagen = " << etagen;
244 if (!pfMuonFound)
continue;
249 LogTrace(
"") <<
"\tshiftOnOneOverPt= " << shift1*100 <<
" [%]";
250 LogTrace(
"") <<
"\trelativeShiftOnPt= " << shift2*100 <<
" [%]";
255 LogTrace(
"") <<
"\tuncertaintyOnOneOverPt= " << sigma1 <<
" [1/GeV]";
256 LogTrace(
"") <<
"\trelativeUncertaintyOnPt= " << sigma2*100 <<
" [%]";
260 LogTrace(
"") <<
"\tefficiencyRatioOverMC= " << effRatio;
263 double rndf = CLHEP::RandFlat::shoot();
264 if (rndf>effRatio)
continue;
267 double rndg1 = CLHEP::RandGauss::shoot();
268 double rndg2 = CLHEP::RandGauss::shoot();
273 ptmu += ptgen * ( shift1*ptgen + shift2 + sigma1*rndg1*ptgen + sigma2*rndg2);
274 pfMuonFound =
false ;
285 newmuons->push_back(*newmu);
T getUntrackedParameter(std::string const &, T const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
TrackRef track() const override
reference to a Track
bool isNonnull() const
Checks for non-null.
double eta() const final
momentum pseudorapidity
bool isStandAloneMuon() const override
std::vector< double > relativeUncertaintyOnPt_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
#define DEFINE_FWK_MODULE(type)
edm::EDGetTokenT< edm::View< reco::PFCandidate > > pfToken_
double pt() const final
transverse momentum
key_type key() const
Accessor for product key.
bool isTrackerMuon() const override
edm::EDGetTokenT< reco::GenParticleMatch > genMatchMapToken_
bool isGlobalMuon() const override
std::vector< double > uncertaintyOnOneOverPt_
bool isNull() const
Checks for null.
reco::MuonRef muonRef() const
PFCandidate * clone() const override
return a clone
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
edm::EDGetTokenT< edm::View< reco::Muon > > muonToken_
std::vector< double > efficiencyRatioOverMC_
void produce(edm::Event &, const edm::EventSetup &) override
Particle reconstructed by the particle flow algorithm.
math::PtEtaPhiMLorentzVector PolarLorentzVector
Lorentz vector.
virtual ParticleType particleId() const
std::vector< double > relativeShiftOnPt_
std::vector< double > shiftOnOneOverPt_
double phi() const final
momentum azimuthal angle
~DistortedPFCandProducer() override
void setP4(const LorentzVector &p4) final
set 4-momentum
std::vector< double > etaBinEdges_
double mass() const final
mass
DistortedPFCandProducer(const edm::ParameterSet &)