ok scusami…
ecco:
`
\documentclass{minimal}
\usepackage{tikz}\usepackage{tikz}
\usetikzlibrary{positioning,shapes,shadows,arrows}
\begin{document}
\centering
\tikzset{normale/.style={rectangle, text centered, rounded corners, text width=2.5cm, fill=white, drop shadow}}
\tikzset{cerchio/.style={circle, text centered, rounded corners, text width=2cm, fill=white, drop shadow}}
\begin{tikzpicture}[node distance=1.2cm, >=stealth, auto]
\node (inizio) [cerchio]
{Possibilità di applicare criteri statistici};
\node (livello1) [below=of inizio] {};
\node (si) [normale, left=of livello1]
{Selezione della distribuzione di probabilità};
\node (no) [normale, right=of livello1]
{\textbf{$C_S$=$C_{MAX}$}};
\node (uclsi) [normale, below=of si]
{Calcolo \textbf{$UCL$} con precise procedure statistiche};
\node (uclno) [cerchio, below=of no]
{$UCL$ \textgreater $C_{MAX}$ ?};
\node (fine) [normale, below=of uclno]
{$C_S$=$UCL$};
\draw[->] (inizio.west) — ++ (0,0) -| node [swap] {Si} (si.north);
\draw[->] (inizio.east) — ++ (0,0) -| node [swap] {No} (no.north);
\draw[->] (si.south) — (uclsi.north);
\draw[->] (uclno.south) — node [swap] {No} (fine.north);
\draw[->] (uclno.north) — node [swap] {Si} (no.south);
\end{tikzpicture}
\end{document}
`
grazie!