TH1F->Draw()

Hi,

If I do this:

TH1F * myHist= new TH1F(“myHist”,“myHist”,100,0,100);

and then fill the histogram with stuff and then want to view the histogram for only a 0 to 50, can I give “Draw()” some argument so that it will do that? Is this discussed somewhere in the root manual?

Thanks.

Andrew

myHist->SetAxisRange(0,50);
myHist->Draw();