You can start with:
\documentclass[tikz,border=2mm]{standalone}
\usepackage{lmodern}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[%
dot/.style={circle, fill, inner sep=1pt}
]
\node[dot, label={$\Sigma_c^{++}$}] (11) {};
\node[dot, label={$\Sigma_c^{+}$}, right=of 11] (12) {}; \node[dot, label={$\Sigma_c^{0}$}, right=of 12] (13) {};
\draw (11)--(13);
\node[above=.75cm of 12] {$(6,\frac{1}{2}^+)$};
\node[dot, label={$\Sigma_c^{++}$}, right=of 13] (14) {};
\node[dot, label={$\Sigma_c^{+}$}, right=of 14] (15) {}; \node[dot, label={$\Sigma_c^{0}$}, right=of 15] (16) {};
\draw (14)--(16);
\node[above=.75cm of 15] {$(6,\frac{3}{2}^+)$};
\node[dot, label={$\Xi_c^{+'}$}, below right= 1cm and 5mm of 11] (21) {};
\node[dot, label={$\Xi_c^{0'}$}, right=of 21] (22) {};
\draw (21)--(22);
\node[dot, label={$\Xi_c^{+}$}, below right= 1cm and 5mm of 14] (23) {};
\node[dot, label={$\Xi_c^{0}$}, right=of 23] (24) {};
\draw (23)--(24);
\node[dot, label={$\Omega_c^{0}$}, below right= 1cm and 5mm of 21] (31) {};
\node[dot, label={$\Omega_c^{0}$}, below right= 1cm and 5mm of 23] (33) {};
\path (31) -- node[dot, label={$\Lambda_c^{+}$}] (32) {} (33);
\node[above=.75cm of 32] {$(\overline{3},\frac{1}{2}^+)$};
\node[dot, label={$\Xi_c^{+}$}, below left= 1cm and 5mm of 32] (41) {};
\node[dot, label={$\Xi_c^{0}$}, below right= 1cm and 5mm of 32] (42) {};
\draw (41)--(42);
\node[left= 3mm of 11] (1) {$I=1$};
\node at (1|-21) {$I=\frac{1}{2}$};
\node at (1|-31) {$I=0$};
\node at (1|-41) {$I=\frac{1}{2}$};
\end{tikzpicture}
\end{document}
