I would like to have a decoration for math symbols that is a \bar - only with parenthesis around it. Consider this example:
\documentclass{standalone}
\usepackage{amsmath}
\begin{document}
\newcommand\barparen[1]{\overset{(-)}{#1}}
$p\bar{p}\barparen{p}$
\end{document}
Here's how it looks:
Clearly, this is not very nice - the spacing is very different to the standard \bar command. Of course, I can try to fiddle with \raisebox and \scalebox until it looks about right, but isn't there some nicer way to do this?



