Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v491 - final release candidate #282

Merged
merged 2 commits into from
Nov 26, 2024
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
- id: isort
args: ["--profile", "black", "--filter-files"]
- repo: https://github.com/psf/black
rev: 24.8.0
rev: 24.10.0
hooks:
- id: black
args: ["--line-length=100"]
Expand All @@ -18,7 +18,7 @@ repos:
args: ["--max-line-length=100", "--extend-ignore=E203,E712"]
# https://github.com/pre-commit/pre-commit-hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
cff-version: 1.2.0
message: If you use this software, please cite it using these metadata.
title: "Eventdisplay: an Analysis and Reconstruction Package for VERITAS"
# doi: 10.5281/zenodo.3559075
doi: 10.5281/zenodo.6827832
version: 4.91.0
date-released: 2024-10-31
date-released: 2024-11-30
keywords:
- "gamma-ray astronomy"
- "astronomy software"
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ You are very welcome to contribute to Eventdisplay!
Please try to be as concise as possible when reporting issue. Whenever possible add a small code example and a clear description of the problem.

Report your system configuration by pasting the output of the following command to the issue:
```

```console
make config
```

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ The package consists of several analysis steps and tools:

## Releases


Check the [release pages](https://github.com/VERITAS-Observatory/EventDisplay_v4/releases) for the most recent versions to be used for VERITAS publications.
For older versions of Eventdisplay, see the release pages on the [VERITAS wiki (internal pages)](https://veritas.sao.arizona.edu/wiki/index.php/Eventdisplay_Manual#Versions_of_eventdisplay).

Expand Down Expand Up @@ -81,13 +80,14 @@ http://astyle.sourceforge.net/
Usage:

do either
```

```console
make formatSourceCode
```

or

```
```console
astyle --options=./.astylerc <.cpp, .h or .C file>
```

Expand Down
6 changes: 3 additions & 3 deletions dockerfiles/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ Prepared for each release.

## Using the docker image

```
$ docker run --rm -it -v "$(pwd):/data" vts-image bash
```console
docker run --rm -it -v "$(pwd):/data" vts-image bash
```

Or to execute directly an Eventdisplay executable:

```
```console
docker run --rm -it -v "$(pwd):/data" vts-test /opt/Eventdisplay/bin/printRunParameter
```

Expand Down
8 changes: 4 additions & 4 deletions install_sofa.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
#
#
# install the sofa package into the $EVNDISPSYS directory
#
# see https://www.iausofa.org for a description
Expand All @@ -11,10 +11,10 @@ echo "Installation of sofa into $EVNDISPSYS "

[[ "$1" ]] && DOWNL=$1 || DOWNL=""

CURDIR=`pwd`
CURDIR=$(pwd)
cd "$EVNDISPSYS"

echo "Checking for existing sofa installation "
echo "Checking for existing sofa installation "

if [ -d "sofa" ] && [ -d "sofa/lib" ]
then
Expand Down Expand Up @@ -50,7 +50,7 @@ rm -f ${SOFA}
cd sofa/${SOFAD}/c/src/
sed -i -- "s/\$(HOME)/\$(EVNDISPSYS)\/sofa/" makefile
# use clang on OSX
OS=`uname -s`
OS=$(uname -s)
echo "$OS"
if [ "$OS" = "Darwin" ]
then
Expand Down