Skip to content

Commit

Permalink
FIx figures in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
taehyounpark committed Mar 25, 2024
1 parent af91cc6 commit e0e1ede
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/pages/conceptual.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

A `dataflow` consists of a directed, acyclic graph of tasks performed for each entry.

![dataflow](./dataflow.png)
@image html dataflow.png

An action falls into one of three types that reflect the nature of the task and are uniquely associated with a set of applicable methods.
Each type forms a sub-graphs of tasks, which receive actions of the previous types as inputs:
Expand Down Expand Up @@ -81,11 +81,11 @@ Two common workflows exist in associating queries with selections:

- Running a single query at multiple selections:

![agg_book_sels](./query_1.png)
@image html query_1.png

- Running multiple queries at a selection:

![sel_book_aggs](./query_2.png)
@image html query_2.png

@section conceptual-variations Systematic variations

Expand All @@ -104,4 +104,4 @@ The propagation proceeds in the following fashion:
- **Lockstep.** If two actions each have a variation of the same name, they are in effect together.
- **Transparent.** If only one action has a given variation, then the nominal is in effect for the other.

![variation](./variation.png)
@image html variation.png
6 changes: 3 additions & 3 deletions docs/pages/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ auto mll_vars = df.get<Hist<1,float>>("mll",50,0,100).fill(mll).book(cut_2los);
mll_vars.nominal()->Draw();
mll_vars["lp4_up"]->Draw("same");
```
![mll_varied](.//mll_varied.png)
@image html mll_varied.png

@section example-phys DAOD_PHYS

Expand Down Expand Up @@ -267,7 +267,7 @@ int main() {
}
@endcpp

![muons_pt](.//muons_pt.png)
@image html muons_pt.png

@section example-task7 IRIS-HEP ADL benchmark

Expand Down Expand Up @@ -412,4 +412,4 @@ int main(int argc, char **argv) {
<< std::endl;
}
@endcpp
![task_7](.//task_7.png)
@image html task_7.png

0 comments on commit e0e1ede

Please sign in to comment.