Skip to content
This repository has been archived by the owner on Mar 23, 2021. It is now read-only.

Latest commit

 

History

History
74 lines (64 loc) · 1.66 KB

diagramme.org

File metadata and controls

74 lines (64 loc) · 1.66 KB
@startuml
title Algorithme d'orientation COVID19

start

if (IF moins de 15 ans) then (moins de 15 ans)
   :FIN1;
   stop

elseif (IF >=1 facteur de gravité majeurs) then (oui)
   :FIN5;
   stop

elseif (IF fièvre AND toux) then (oui)
       if (IF 0 facteur pronostique) then 
          :FIN6;
          stop
       else (Plus de facteurs pronostiques)
          if (IF 0 OR 1 facteur de gravité mineur) then (oui)
             :FIN7;
             stop
          else (non)
             :FIN4;
             stop
          endif
       endif

elseif (IF fièvre OR (diarrhée OR (toux AND douleurs) OR (toux AND anosmie) OR (douleurs AND anosmie)) then (oui))
       if (IF 0 facteur pronostique) then (oui)
           if (IF 0 facteur de gravité mineur) then (oui)
              if (IF moins de 50 ans) then (oui)
                 :FIN6;
                 stop;
              else (non)
                 :FIN3;
                 stop;
              endif
           else (non)
              :FIN3;
              stop;
           endif
        else (non)
           if (IF 0 OR 1 facteur de gravité mineur) then (oui)
              :FIN3;
              stop
           else (non)
              :FIN4;
              stop
           endif
        endif

elseif (IF toux XOR douleurs XOR anosmie) then (oui)
       if (IF 0 facteur pronostique) then (oui)
          :FIN6;
          stop
       else (non)
          :FIN7;
          stop
       endif

elseif (NOT toux AND NOT douleurs AND NOT anosmie)
     :FIN8;
     stop
endif

:FIN8;
stop

@enduml