Update Flow charts authored by Andrew Matas's avatar Andrew Matas
......@@ -38,8 +38,8 @@ graph TD
BaselineIsoSpectrum-->FinalIsoSpectrum
FinalIsoSpectrum-->PE(Parameter estimation)
PE-->Posterior[Posterior samples]
Baseline[Baseline parameters]-->ORF
SearchType[Search type]-->ORF
Baseline((Baseline parameters))-->ORF
SearchType((Search type))-->ORF
ORF(ORF)-->DQ
ORF-->Postproc
ORF-->Other
......@@ -51,6 +51,8 @@ graph TD
style Postproc fill:#bbf,stroke:#bbf
style PE fill:#bbf,stroke:#bbf
style ORF fill:#bbf,stroke:#bbf
style Baseline fill:#fbf,stroke:#bbb
style SearchType fill:#fbf,stroke:#bbb
```
### Preprocessing
......@@ -126,6 +128,18 @@ graph TD
```
### ORF
```mermaid
graph TD
Baseline((Baseline parameters))-->CalcORF(Calculate ORF)
SearchType((Search type))-->CalcORF
CalcORF-->ORF[ORF]
style CalcORF fill:#ffb,stroke:#bbb
style Baseline fill:#fbf,stroke:#bbb
style SearchType fill:#fbf,stroke:#bbb
```
### Data quality
```mermaid
......@@ -143,6 +157,8 @@ We also want this module to
* Be flexible so that we can implement other kinds of cuts
### Simulate data
```mermaid
......
......