Skip to content

Commit ba9855a

Browse files
committed
Removing debugging info
1 parent e78db3b commit ba9855a

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

n3fit/runcards/examples/Basic_runcard_pc_covmat.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ theorycovmatconfig:
4545
H2j_ystar: {yshift: [2.0, 2.0, 2.0, 2.0, 2.0, 2.0], nodes: [0.25, 0.75, 1.25, 1.75, 2.25, 2.75]}
4646
H2j_yb: {yshift: [2.0, 2.0, 2.0, 2.0, 2.0], nodes: [0.25, 0.75, 1.25, 1.75, 2.25]}
4747
pc_included_procs: ["DIJET"]
48-
pc_excluded_exps: [HERA_NC_318GEV_EAVG_CHARM-SIGMARED,
49-
HERA_NC_318GEV_EAVG_BOTTOM-SIGMARED,]
48+
pc_excluded_exps: []
5049
pdf: 260202-jk-nnpdf41-mhou
5150
use_thcovmat_in_fitting: true
5251
use_thcovmat_in_sampling: true

validphys2/src/validphys/theorycovariance/higher_twist_functions.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"""
2323

2424
from collections import defaultdict
25-
import logging
2625
import operator
2726
from typing import Optional, Tuple, Union
2827

@@ -32,8 +31,6 @@
3231
from validphys.convolution import central_fk_predictions
3332
from validphys.core import PDF, DataSetSpec
3433

35-
log = logging.getLogger(__name__)
36-
3734
# ---------------------------------------------------------------------------
3835
# Dataset name constants
3936
# ---------------------------------------------------------------------------
@@ -485,7 +482,6 @@ def mult_dijet_pc(
485482

486483
def func(ystar_shifts, y_b_shifts):
487484
if distrb == '3D':
488-
log.info(f" Using dijet3D_pc_func.")
489485
if len(ystar) == 0 or len(yb) == 0:
490486
raise ValueError("For 3D distributions, ystar and yb must be provided.")
491487
result = dijet3D_pc_func(
@@ -498,7 +494,6 @@ def func(ystar_shifts, y_b_shifts):
498494
m_jj=m_jj,
499495
)
500496
elif distrb == "ystar":
501-
log.info(f" Using dijet_ystar_pc_func.")
502497
if len(ystar) == 0:
503498
raise ValueError("For ystar distributions, ystar must be provided.")
504499
result = dijet_ystar_pc_func(
@@ -510,7 +505,6 @@ def func(ystar_shifts, y_b_shifts):
510505
ystar=ystar,
511506
)
512507
elif distrb == "ydiff":
513-
log.info(f" Using dijet_ymax_pc_func.")
514508
if len(ymax) == 0:
515509
raise ValueError("For ymax distributions, ymax must be provided.")
516510
result = dijet_ymax_pc_func(

0 commit comments

Comments
 (0)