Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
hep
===

[![GitHub release](https://img.shields.io/github/release/go-hep/hep.svg)](https://github.com/go-hep/hep/releases)
[![Release](https://img.shields.io/gitea/v/release/go-hep/hep?gitea_url=https%3A%2F%2Fcodeberg.org&display_name=tag)](https://codeberg.org/go-hep/hep/releases)
[![go.dev reference](https://pkg.go.dev/badge/go-hep.org/x/hep)](https://pkg.go.dev/go-hep.org/x/hep)
[![CI](https://github.com/go-hep/hep/workflows/CI/badge.svg)](https://github.com/go-hep/hep/actions)
[![CI](https://ci.codeberg.org/api/badges/14299/status.svg)](https://ci.codeberg.org/repos/14299)
[![codecov](https://codecov.io/gh/go-hep/hep/branch/main/graph/badge.svg)](https://codecov.io/gh/go-hep/hep)
[![Go Report Card](https://goreportcard.com/badge/go-hep.org/x/hep)](https://goreportcard.com/report/go-hep.org/x/hep)
[![License](https://img.shields.io/badge/License-BSD--3-blue.svg)](https://go-hep.org/license)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.597940.svg)](https://doi.org/10.5281/zenodo.597940)
[![JOSS Paper](http://joss.theoj.org/papers/0b007c81073186f7c61f95ea26ad7971/status.svg)](http://joss.theoj.org/papers/0b007c81073186f7c61f95ea26ad7971)
[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/go-hep/binder/master)
[![TODOs](https://badgen.net/https/api.tickgit.com/badgen/github.com/go-hep/hep)](https://www.tickgit.com/browse?repo=github.com/go-hep/hep)

`hep` is a set of libraries and tools to perform High Energy Physics analyses with ease and [Go](https://golang.org)

Expand All @@ -27,7 +25,7 @@ Drop an email at [~sbinet/[email protected]](mailto:~sbinet/[email protected])

## Documentation

Documentation for `hep` is served by [GoDoc](https://godoc.org/go-hep.org/x/hep).
Documentation for `hep` is served by [GoDoc](https://pkg.go.dev/go-hep.org/x/hep).

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion fads/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ A test application is available over there:

https://go-hep.org/x/hep/fads/blob/main/cmd/fads-app/main.go

A more in-depth tutorial is available at [go-hep/tutos](https://github.com/go-hep/tutos) but, in a nutshell:
A more in-depth tutorial is available at [go-hep/tutos](https://codeberg.org/go-hep/tutos) but, in a nutshell:

```sh
$ fads-app -help
Expand Down
2 changes: 1 addition & 1 deletion fwk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The documentation is available on `godoc`:

### `fwk` tuto examples

The [examples](https://github.com/go-hep/hep/blob/main/fwk/examples)
The [examples](https://codeberg.org/go-hep/hep/src/branch/main/fwk/examples)
directory contains a few simple applications which exercize the `fwk`
toolkit.

Expand Down
2 changes: 1 addition & 1 deletion groot/rhist/hist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void rootls(const char *fname, const char *kname) {
}

func TestROOT4Hist(t *testing.T) {
f, err := groot.Open("https://github.com/scikit-hep/uproot/raw/master/tests/samples/from-geant4.root")
f, err := groot.Open("../testdata/g4-hist.root")
if err != nil {
t.Fatalf("could not open uproot geant4 test file: %+v", err)
}
Expand Down
2 changes: 1 addition & 1 deletion groot/riofs/gendata/gen-small-evnt-tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package main
import (
"fmt"

"github.com/go-hep/croot"
"codeberg.org/go-hep/croot"
)

const ARRAYSZ = 10
Expand Down
Binary file added groot/testdata/g4-hist.root
Binary file not shown.
2 changes: 1 addition & 1 deletion hbook/ntup/ntcsv/ntcsv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func TestOpen(t *testing.T) {
ntcsv.Comment('#'),
},
},
{"http://github.com/go-hep/hep/raw/main/hbook/ntup/ntcsv/testdata/simple-with-comment.csv", `v1, v2, v3`,
{"https://codeberg.org/go-hep/hep/raw/branch/main/hbook/ntup/ntcsv/testdata/simple-with-comment.csv", `v1, v2, v3`,
[]ntcsv.Option{
ntcsv.Comma(';'),
ntcsv.Comment('#'),
Expand Down
Loading