"""
The constraint module include functions to impose the momentum sum rules on the PDFs
"""
import logging
from typing import Callable, Optional
import numpy as np
from n3fit.backends import Input, Lambda, MetaModel
from n3fit.backends import operations as op
from n3fit.layers import MSR_Normalization, xDivide, xIntegrator
log = logging.getLogger(__name__)
[docs]
def generate_msr_model_and_grid(
output_dim: int = 14,
fitbasis: str = "NN31IC",
mode: str = "ALL",
nx: int = int(2e3),
scaler: Optional[Callable] = None,
replica_seeds: Optional[list] = None,
) -> MetaModel:
"""
Generates a model that applies the sum rules to the PDF.
Parameters
----------
output_dim: int
Number of flavours of the output PDF
mode: str
Mode of sum rules to apply. It can be:
- "ALL": applies both the momentum and valence sum rules
- "MSR": applies only the momentum sum rule
- "VSR": applies only the valence sum rule
nx: int
Number of points of the integration grid
scaler: Scaler
Scaler to be applied to the PDF before applying the sum rules
Returns
-------
model: MetaModel
Model that applies the sum rules to the PDF
It takes as inputs:
- pdf_x: the PDF output of the model
- pdf_xgrid_integration: the PDF output of the model evaluated at the integration grid
- xgrid_integration: the integration grid
- photon_integral: the integrated photon contribution
It returns the PDF with the sum rules applied
xgrid_integration: dict
Dictionary with the integration grid, with:
- values: the integration grid
- input: the input layer of the integration grid
"""
replicas = len(replica_seeds)
# 0. Prepare input layers to MSR model
pdf_x = Input(shape=(replicas, None, output_dim), batch_size=1, name="pdf_x")
pdf_xgrid_integration = Input(
shape=(replicas, nx, output_dim), batch_size=1, name="pdf_xgrid_integration"
)
# 1. Generate the grid and weights that will be used to integrate
xgrid_integration, weights_array = gen_integration_input(nx)
# 1b If a scaler is provided, scale the input xgrid
if scaler:
xgrid_integration = scaler(xgrid_integration)
# Turn into input layer.
xgrid_integration = op.numpy_to_input(xgrid_integration, name="xgrid_integration")
# 1c Get the original grid
if scaler:
get_original = Lambda(
lambda x: op.op_gather_keep_dims(x, -1, axis=-1), name="x_original_integ"
)
else:
get_original = lambda x: x
x_original = get_original(xgrid_integration)
# 2. Divide the grid by x depending on the flavour
x_divided = xDivide(fitbasis=fitbasis)(x_original)
# 3. Prepare the pdf for integration by dividing by x
pdf_integrand = Lambda(
lambda x_pdf: op.batchit(x_pdf[0], batch_dimension=1) * x_pdf[1], name="pdf_integrand"
)([x_divided, pdf_xgrid_integration])
# 4. Integrate the pdf
pdf_integrated = xIntegrator(weights_array)(pdf_integrand)
# 5. THe input for the photon integral, will be set to 0 if no photons
photon_integral = Input(shape=(replicas, 1), batch_size=1, name='photon_integral')
# 6. Compute the normalization factor
normalization_factor = MSR_Normalization(mode, replica_seeds, name="msr_weights")(
pdf_integrated, photon_integral
)
# 7. Apply the normalization factor to the pdf
pdf_normalized = Lambda(lambda pdf_norm: pdf_norm[0] * pdf_norm[1], name="pdf_normalized")(
[pdf_x, normalization_factor]
)
inputs = {
"pdf_x": pdf_x,
"pdf_xgrid_integration": pdf_xgrid_integration,
"xgrid_integration": xgrid_integration,
"photon_integral": photon_integral,
}
model = MetaModel(inputs, pdf_normalized, name="impose_msr")
return model, xgrid_integration