7 #ifndef LHAPDF_Reweighting_H 8 #define LHAPDF_Reweighting_H 10 #include "LHAPDF/PDF.h" 11 #include "LHAPDF/PDFSet.h" 20 inline bool _checkAlphasQ2(
double Q2,
const PDF& pdfa,
const PDF& pdfb,
double aschk) {
21 if (aschk < 0)
return true;
22 const double as_a = pdfa.alphasQ2(Q2);
23 const double as_b = pdfb.alphasQ2(Q2);
24 if (2 * std::abs(as_a - as_b) / (std::abs(as_a) + std::abs(as_b)) < aschk)
return true;
25 std::cerr <<
"WARNING: alpha_s(Q2) mismatch in PDF reweighting " 26 <<
"at Q2 = " << Q2 <<
" GeV2:\n " 27 << as_a <<
" for " << pdfa.set().name() <<
"/" << pdfa.memberID() <<
" vs. " 28 << as_b <<
" for " << pdfb.set().name() <<
"/" << pdfb.memberID()
41 inline double weightxQ2(
int id,
double x,
double Q2,
const PDF& basepdf,
const PDF& newpdf,
double aschk=5e-2) {
42 if (aschk >= 0) _checkAlphasQ2(Q2, basepdf, newpdf, aschk);
43 const double xf_base = basepdf.
xfxQ2(
id, x, Q2);
44 const double xf_new = newpdf.
xfxQ2(
id, x, Q2);
45 return xf_new / xf_base;
51 template <
typename PDFPTR>
52 inline double weightxQ2(
int id,
double x,
double Q2,
const PDFPTR basepdf,
const PDFPTR newpdf,
double aschk=5e-2) {
53 return weightxQ2(
id, x, Q2, *basepdf, *newpdf, aschk);
59 inline double weightxQ(
int id,
double x,
double Q,
const PDF& basepdf,
const PDF& newpdf,
double aschk=5e-2) {
66 template <
typename PDFPTR>
67 inline double weightxQ(
int id,
double x,
double Q,
const PDFPTR basepdf,
const PDFPTR newpdf,
double aschk=5e-2) {
68 return weightxQ(
id, x, Q, *basepdf, *newpdf, aschk);
80 inline double weightxxQ2(
int id1,
int id2,
double x1,
double x2,
double Q2,
const PDF& basepdf,
const PDF& newpdf,
double aschk=5e-2) {
81 if (aschk >= 0) _checkAlphasQ2(Q2, basepdf, newpdf, aschk);
82 const double w1 =
weightxQ2(id1, x1, Q2, basepdf, newpdf, -1);
83 const double w2 =
weightxQ2(id2, x2, Q2, basepdf, newpdf, -1);
90 template <
typename PDFPTR>
91 inline double weightxxQ2(
int id1,
int id2,
double x1,
double x2,
double Q2,
const PDFPTR basepdf,
const PDFPTR newpdf,
double aschk=5e-2) {
92 return weightxxQ2(id1, id2, x1, x2, Q2, *basepdf, *newpdf, aschk);
98 inline double weightxxQ(
int id1,
int id2,
double x1,
double x2,
double Q,
const PDF& basepdf,
const PDF& newpdf,
double aschk=5e-2) {
99 return weightxxQ2(id1, id2, x1, x2,
sqr(Q), basepdf, newpdf, aschk);
105 template <
typename PDFPTR>
106 inline double weightxxQ(
int id1,
int id2,
double x1,
double x2,
double Q,
const PDFPTR basepdf,
const PDFPTR newpdf,
double aschk=5e-2) {
107 return weightxxQ(id1, id2, x1, x2, Q, *basepdf, *newpdf, aschk);
N sqr(const N &x)
Convenience function for squaring (of any type)
Definition: Utils.h:208
PDF is the general interface for access to parton density information.
Definition: PDF.h:40
double weightxxQ2(int id1, int id2, double x1, double x2, double Q2, const PDF &basepdf, const PDF &newpdf, double aschk=5e-2)
Definition: Reweighting.h:80
double weightxxQ(int id1, int id2, double x1, double x2, double Q, const PDF &basepdf, const PDF &newpdf, double aschk=5e-2)
Definition: Reweighting.h:98
double weightxQ(int id, double x, double Q, const PDF &basepdf, const PDF &newpdf, double aschk=5e-2)
Definition: Reweighting.h:59
double xfxQ2(int id, double x, double q2) const
Get the PDF xf(x) value at (x,q2) for the given PID.
Namespace for all LHAPDF functions and classes.
Definition: AlphaS.h:14
double weightxQ2(int id, double x, double Q2, const PDF &basepdf, const PDF &newpdf, double aschk=5e-2)
Definition: Reweighting.h:41