Skip to content

Commit 8c5c6b8

Browse files
committed
Documentation and clarity updates
1 parent b208d05 commit 8c5c6b8

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

.github/workflows/python-examples.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ jobs:
6060
- name: "Example: 05_conditions_dataframe_last_runs"
6161
run: python $GITHUB_WORKSPACE/python/examples/05_conditions_dataframe_last_runs.py
6262

63+
- name: "Example: 06_files_dataframe_last_runs"
64+
run: python $GITHUB_WORKSPACE/python/examples/06_files_dataframe_last_runs.py
65+
6366
- name: "Example: 10_create_conditions_basic"
6467
run: python $GITHUB_WORKSPACE/python/examples/10_create_conditions_basic.py
6568

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
[![C++ examples](https://github.com/JeffersonLab/rcdb/actions/workflows/cpp-examples.yml/badge.svg)](https://github.com/JeffersonLab/rcdb/actions/workflows/cpp-examples.yml)
77
[![Documentation](https://github.com/JeffersonLab/rcdb/actions/workflows/documentation.yml/badge.svg)](https://github.com/JeffersonLab/rcdb/actions/workflows/documentation.yml)
88

9-
Run Configuration/Conditions Database (RCDB) stores run related information and conditions. It uses MySQL or SQLite databases to store information about runs and provides interfaces to search runs, manage data, automatic CODA integration, etc.
9+
Run Configuration/Conditions Database (RCDB) stores run related information and conditions.
10+
It uses MySQL or SQLite databases to store information about runs and provides interfaces to search runs, manage data, automatic CODA integration, etc.
1011

1112
The interfaces available are:
12-
- Web site
13+
- Web
1314
- Command line interface (CLI)
1415
- Python API
1516
- C++ API
@@ -26,4 +27,4 @@ https://halldweb.jlab.org/rcdb/
2627

2728
#### SQLite db:
2829
Daily updated SQLite database is available here:
29-
https://halldweb.jlab.org/dist/rcdb2.sqlite
30+
https://halldweb.jlab.org/dist/rcdb.sqlite

python/daq/update.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ def get_usage():
6161
--modules=<module1,module2,...> - adds modules to call (example: --modules=update_epics)
6262
--udl=<udl> - sets UDL link to sent warnings to
6363
64+
--update flag:"
65+
coda - information from coda file (file is required anyway to get run)
66+
config - run configuration file in HallD format
67+
roc - roc configuration files (taken from run configuration file)
68+
this option is run only if config is given
69+
epics - epics variables
70+
Update of everything looks like: --update=coda,config,roc,epics
6471
6572
<db_connection_string> - is optional. But if it is not set, RCDB_CONNECTION environment variable should be set
6673

0 commit comments

Comments
 (0)