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

fix: respect rename clasqaDB -> clas12-qadb #29

Merged
merged 1 commit into from
Aug 7, 2023
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ Classes in both C++ and Groovy are provided, for access to the QADB within analy
* needs [`rapidjson`](https://github.com/Tencent/rapidjson/) libary;
it is a submodule of this repository and can be obtained by
```
git clone --recurse-submodules https://github.com/JeffersonLab/clasqaDB.git
git clone --recurse-submodules https://github.com/JeffersonLab/clas12-qadb.git
```
* first set environment variables by running `source env.sh`
* alternatively, set environment variable `$QADB` to the path to this
`clasqaDB` repository
`clas12-qadb` repository
* `bash` is recommended, though if you choose to use `tcsh`, run
instead `source env.csh`
* then proceed following `srcC/README.md`
Expand Down
2 changes: 1 addition & 1 deletion bin/makeTables.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# convert json files into human-readable tables
# run this from top-level directory of `clasqaDB`
# run this from top-level directory of `clas12-qadb`
if [ -z "$QADB" ]; then
echo "ERROR: you must source env.sh first"; exit
fi
Expand Down
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Groovy access to clasqaDB
# Groovy access to QADB

this directory contains the Groovy source code to access the QA database

Expand Down
6 changes: 3 additions & 3 deletions srcC/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# C++ access to clasqaDB
# C++ access to QADB

this directory contains the C++ source code to access the QA database

- first, make sure you have the
[`rapidjson`](https://github.com/Tencent/rapidjson/) libary;
it is a submodule of this repository and can be obtained by
```
git clone --recurse-submodules https://github.com/JeffersonLab/clasqaDB.git
git clone --recurse-submodules https://github.com/JeffersonLab/clas12-qadb.git
```
- be sure the `$QADB` environment variable points to the `clasqaDB` repository
- be sure the `$QADB` environment variable points to the `clas12-qadb` repository
- this can be done with `source ../env.sh`
- in your analysis code, add the following directories to your project's include path:
- `srcC/include`
Expand Down