Skip to content

Commit

Permalink
Small bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
janw20 committed Nov 15, 2024
1 parent af78cb4 commit daefaee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/cpp/convolve-grid-v1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <vector>

int main(int argc, char* argv[]) {
std::string filename = "drell-yan-rap-ll.pineappl.lz4";
std::string filename = "drell-yan-rap-ll-v1.pineappl.lz4";
std::string pdfset = "NNPDF31_nlo_as_0118_luxqed";

switch (argc) {
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/fill-grid-v1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void fill_grid(pineappl_grid* grid, std::size_t calls) {
std::size_t channel = 0;

// Values of the kinematic variables
std::vector<double> ntuples = {x1, x2, q2};
std::vector<double> ntuples = {q2, x1, x2};

// fill the LO `weight` into `grid` for parton fractions `x1` and `x2`, and the (squared)
// renormalization/factorization scale `q2`. The parameters `order` and `channel` are
Expand Down

0 comments on commit daefaee

Please sign in to comment.