Skip to content

Commit b461105

Browse files
authored
Update 02-rucio_usage.md
Formatting updates and fixes.
1 parent 6b69a6e commit b461105

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

_episodes/02-rucio_usage.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To use Rucio further, we will need to briefly look at how Rucio organises data.
4444

4545
Typically, we want to analyse data contained within specific files. Files can be grouped together into datasets which can themselves, be grouped into containers. All three refer to "data". As such, the term "data identifier` or **DID** is used in Rucio. A DID is just the name of a single file, dataset or container.
4646

47-
In Rucio, all DIDs follow a naming scheme which is composed of two strings - a **scope** and a **name**, formatted as -
47+
In Rucio, all DIDs follow a naming scheme which is composed of two strings - a **scope** and a **name**, formatted as:
4848

4949
``scope:name``
5050

@@ -69,16 +69,16 @@ The `name` here - `/RECO/26.02.0/epic_craterlake/EXCLUSIVE/DEMP/DEMPgen-1.2.4/10
6969
- `EXCLSUIVE`
7070
- The DID is for a dataset of exclusive physics events
7171
- `DEMP`
72-
- This is the specific exclusive process simulated in the dataset, **D**eeply **E**xclusive **M**eson **P**roduction, DEMP
72+
- This is the specific exclusive process simulated in the dataset, **D**eeply **E**xclusive **M**eson **P**roduction, DEMP
7373
- `DEMPgen-1.2.4`
7474
- The simulation in this dataset is based upon input generated by the `DEMPgen-1.2.4` event generator
7575
- `10x130`
76-
- The files in this dataset were simulated with 10 GeV electrons on 130 GeV ions (in this case protons, if the ion species is not specified, it is likely to be an ep simulation)
77-
- The AAxBBB format, where AA is the electron energy and BBB is the ion energy, is typical for quoting beam energies in EIC files. This may be written as AAonBBB too.
76+
- The files in this dataset were simulated with 10 GeV electrons on 130 GeV ions (in this case protons, if the ion species is not specified, it is likely to be an ep simulation)
77+
- The AAxBBB format, where AA is the electron energy and BBB is the ion energy, is typical for quoting beam energies in EIC files. This may be written as AAonBBB too.
7878
- `q2_10_20`
7979
- The files in this dataset are from a simulation input containing events in the 10 to 20 GeV2 Q2 range
8080
- `pi+`
81-
- Pi+ are generated in this output - this is specific to this DEMP reaction and signifies that it is Deeply Exclusive Pion Production
81+
- Pi+ are generated in this output - this is specific to this DEMP reaction and signifies that it is Deeply Exclusive Pion Production
8282

8383
> ## `Warning - Not a filepath!`
8484
> The `name` of our DID here looks a lot like a filepath, however it is a flat object and does **not** have any hierarchy as we will see in the next section.
@@ -90,27 +90,27 @@ Other names may not necessarily contain all of the same information, but as a ba
9090

9191
Now that we know what a DID looks like, how can we find the DID corresponding to the file or dataset that we're interested in?
9292

93-
Well, we can list DIDs using -
93+
Well, we can list DIDs using:
9494

9595
```bash
9696
rucio did list scope:name
9797
```
9898

99-
To begin though, let's try -
99+
To begin though, let's try:
100100

101101
```bash
102102
rucio did list --help
103103
```
104104

105-
As we can see, we can apply filters to our list request if we want. We can also apply wildcards, but we need to be a bit careful due to the warning above. Whilst our DIDs *look* like a unix file path, they are not. The structure is flat. We can quickly see this if we try -
105+
As we can see, we can apply filters to our list request if we want. We can also apply wildcards, but we need to be a bit careful due to the warning above. Whilst our DIDs *look* like a unix file path, they are not. The structure is flat. We can quickly see this if we try:
106106

107107
```bash
108108
rucio did list epic:/RECO/\*
109109
```
110110

111111
We get an enormous number of DIDs returned! This is every reconstruction related DID available to access right now.
112112

113-
Working backwards from the full DID we had earlier, we could combine in the software release, detector configuration, process and generator to narrow down the list of DIDs
113+
Working backwards from the full DID we had earlier, we could combine in the software release, detector configuration, process and generator to narrow down the list of DIDs:
114114

115115
```bash
116116
rucio did list epic:/RECO/26.02.0/epic_craterlake/EXCLUSIVE/DEMP/DEMPgen-1.2.4/\*

0 commit comments

Comments
 (0)