Skip to content

Commit

Permalink
add more logging to matching
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomomagni committed Dec 27, 2023
1 parent 7ad9234 commit 1262877
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/eko/evolution_operator/operator_matrix_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,5 +324,12 @@ def compute(self):
if self.order[0] == 0:
logger.info("%s: no need to compute matching at LO", self.log_label)
return
logger.info(
"%s: order: (%d, %d), backward method: %s",
self.log_label,
self.order[0],
self.order[1],
self.backward_method,
)

self.integrate()

0 comments on commit 1262877

Please sign in to comment.