Draw a line

Hi,

I have a histogram defined with marker style:

histo[l]->SetMarkerStyle(l+22);
histo[l]->SetMarkerColor(l+2);

Now I would like to draw a simple line through the points.

The command ‘histo[l]->Draw(“L”)’ does not work…

Cheers,
Gordon

The only reason I can think of, would be that your histogram has some error bars. In that case do:

h->Draw(“HIST L”);

(see the plotting option here: root.cern.ch/root/html/THistPainter.html)