I would like to mark a ray in a picture. The symbol I need is the \vdash placed over AB (see first picture and MWE). Unfortunately, the symbol is quite short, so I want it to be as wide as AB itself (see second picture).
Any thoughts? Thank you very much for your effort!
MWE:
\documentclass{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{pst-all}
\usepackage{amsmath}
\begin{document}
\begin{pspicture}[showgrid=false](0,0)(5,5)
\psdot[dotstyle=Mul,dotsize=4pt](1,1)
\psdot[dotstyle=Mul,dotsize=4pt](3,3)
\psline(1,1)(5,5)
\uput{0.1cm}[-90](1,1){$A$}
\uput{0.1cm}[-75](3,3){$B$}
\rput[l](4,3.7){$\stackrel{\vdash}{AB}$}
\end{pspicture}
\end{document}



