TProfile without error bars

Hi All,
I have simple question: how one can remove error bars in TProfile histograms? I need only
the mean values to be shown without rms. I tried to find the answer, but what I found was only suggestion to use other histos like TH1 etc. Thanks for any ideas.

Try

prof.Draw("hist"); or

prof.Draw("hist p");
Rene

Thank you! Sorry, I had to read the manual, where there is very nice summary of drawing options.