Skip to content

Commit

Permalink
Add if
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaurenti committed Apr 25, 2024
1 parent 32b7617 commit b14bc92
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions output/output_grid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ int main(int argc, char **argv) {
inputQ >> Qtmp;
}

// clang-format off
cout << " " << endl;
cout << " 888 888 888 " << endl;
cout << " 888 o 888 888 " << endl;
Expand Down Expand Up @@ -116,6 +117,7 @@ int main(int argc, char **argv) {
cout << " @@@@@@@@@@@@@@ .+- =@@@@@@@ " << endl;
cout << endl;
cout << endl;
// clang-format on

cout << "Computation of the grid for the coefficient function C" << channel
<< " for m = " << m << " GeV, nf = " << nf << " and µ/Q = " << mufrac
Expand Down
4 changes: 3 additions & 1 deletion src/ExactCoefficientFunction.cc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ ExactCoefficientFunction::ExactCoefficientFunction(
Pgg1_ = new SplittingFunction(1, 'g', 'g');
Pqg0_ = new SplittingFunction(0, 'q', 'g');
Pgq0Pqg0_ = new ConvolutedSplittingFunctions(0, 'g', 'q', 0, 'q', 'g');
Pgg0Pgg0_ = new ConvolutedSplittingFunctions(0, 'g', 'g', 0, 'g', 'g');
if (double_int_method == "analytical")
Pgg0Pgg0_ =
new ConvolutedSplittingFunctions(0, 'g', 'g', 0, 'g', 'g');
}

if (GetOrder() == 2) {
Expand Down

0 comments on commit b14bc92

Please sign in to comment.