Update Flow charts authored by Andrew Matas's avatar Andrew Matas
...@@ -8,24 +8,23 @@ ...@@ -8,24 +8,23 @@
classDef function fill:#f00; classDef function fill:#f00;
classDef data fill:#0f0; classDef data fill:#0f0;
graph TD graph TD ;
h1[(Channel 1)]-->A(Preprocessing) h1[(Channel 1)]-->A(Preprocessing);
h2[(Channel 2)]-->A h2[(Channel 2)]-->A;
A-->B(Cross Correlation) A-->B(Cross Correlation);
B-->C1[ft map with Y] B-->C1[ft map with Y];
B-->C2[ft map with PSD1] B-->C2[ft map with PSD1];
B-->C3[ft map with PSD2] B-->C3[ft map with PSD2];
C1-->D(Post-processing) C1-->D(Post-processing);
C2-->D C2-->D;
C3-->D C3-->D;
C1-->D2(Other searches) C1-->D2(Other searches);
C2-->D2 C2-->D2;
C3-->D2 C3-->D2;
D-->E[f series: Y and sigma] D-->E[f series: Y and sigma];
E-->F(Parameter estimation) E-->F(Parameter estimation);
class A,B,D,D2,F function; class A function;
class h1,h2,C1,C2,C3,E data;
``` ```
### Preprocessing ### Preprocessing
... ...
......