forked from vvolkl/glossary
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from kjvbrt/update-ci
Update CI
- Loading branch information
Showing
8 changed files
with
70 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: 'Publish' | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout action | ||
uses: actions/checkout@v4 | ||
- name: Prepare summary | ||
run: python3 .ci/prepare.py | ||
- name: Gitbook Action | ||
uses: ZanderZhao/gitbook-action@master | ||
with: | ||
source_branch: main | ||
token: ${{ secrets.FCC_GLOSSARY_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,27 @@ | ||
# D | ||
|
||
## DAQ {#DAQ} | ||
|
||
Acronym for Data Acquisition system. See the | ||
[Wikipedia introduction](https://en.wikipedia.org/wiki/Data_acquisition). | ||
|
||
## DIRAC: Distributed Infrastructure with Remote Agent Control {#DIRAC} | ||
|
||
DIRAC is the software framework for distributed computing used in LHCb. | ||
Official [DIRAC website](http://diracgrid.org/). | ||
|
||
## DC: Drift chamber | ||
|
||
|
||
## DCA: Distance Of Closest Approach {#DOCA} | ||
|
||
The shortest distance between a pair of tracks. | ||
|
||
|
||
## Delphes {#Delphes} | ||
|
||
A fully parametric fast simulation technique where not only the detector | ||
response, but also the reconstruction, is parametrized. See more in these | ||
[CHEP 2018 proceedings](https://www.epj-conferences.org/articles/epjconf/pdf/2019/19/epjconf_chep2018_02024.pdf). | ||
|
||
|
||
## DIRAC: Distributed Infrastructure with Remote Agent Control {#DIRAC} | ||
|
||
DIRAC is the software framework for distributed computing used in LHCb. | ||
Official [DIRAC website](http://diracgrid.org/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# N | ||
|
||
## Ntuple {#Ntuple} | ||
|
||
A columnar dataset in [ROOT](https://root.cern/) consisting of a list of | ||
independent columns, or *branches*. The branches typically contain variables | ||
representing fundamental types, simple classes/structures or list of variables. | ||
In ROOT, ntuples are represented with the | ||
[TTree](https://root.cern/doc/master/classTTree.html) class (a simpler | ||
[TNtuple](https://root.cern/doc/master/classTNtuple.html) class is provided for | ||
ntuples restricted to a list of float variables). |