Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
da1eb89
Make fastNLO convert part of the CLI
cschwan Feb 19, 2022
29aa3c5
Rename feature `import-fastnlo` to `fastnlo`
cschwan Feb 19, 2022
7cba204
Fix unit test
cschwan Feb 19, 2022
589bd38
Add missing `build.rs`
cschwan Feb 19, 2022
43298dc
Add preliminary fastNLO bindings
cschwan Feb 19, 2022
15a91fe
Add help messages
cschwan Feb 20, 2022
6478f84
Trim newlines from output
cschwan Mar 1, 2022
b712d44
Remove superfluous line
cschwan Mar 1, 2022
0144ee5
Link fastNLO dynamically
cschwan Mar 1, 2022
305f40d
Move C++ code to new crate and migrate code
cschwan Mar 8, 2022
059491d
Fix bug in conversion
cschwan Mar 12, 2022
2f1bf92
Streamline code a bit
cschwan Mar 12, 2022
b8c68a4
Allow setting the exponent of alpha
cschwan Mar 12, 2022
c43977a
Disable normalization if not needed
cschwan Mar 12, 2022
7a4b51c
Remove `fnlo2pine` from examples
cschwan Mar 12, 2022
e8eb621
Make code more idiomatic
cschwan Mar 14, 2022
fc93e17
Enable conversion of flexible-scale fastNLO grids
cschwan Mar 14, 2022
e8a0523
Fix help message
cschwan Mar 14, 2022
354c41c
Update changelog
cschwan Mar 14, 2022
9b3de8f
Make `alpha` a switch instead of a parameter
cschwan Mar 14, 2022
4723c7d
Move code and use tables to print output
cschwan Mar 14, 2022
4c398e7
Make accuracy parameter writable from the CLI
cschwan Mar 14, 2022
618c018
Enable silencing of fastNLO
cschwan Mar 14, 2022
2d2c504
Test more macros
cschwan Mar 15, 2022
0452104
Shuffle around helper routines
cschwan Mar 15, 2022
f236fdc
Show relative differences with sign
cschwan Mar 16, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- added new subcommand `import`, which at this stage converts fastNLO tables to
PineAPPL grids. This program was previously an example and written in C++ and
now has been removed.

### Changed

- when running `pineappl convolute ... -s 1` the scale-variation columns are no
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"pineappl",
"pineappl_capi",
"pineappl_cli",
"pineappl_fastnlo",
]
exclude = ["pineappl_py"]

Expand Down
Loading