Plot several fitted histograms on same plot

dear rooters,
h1->Draw();
h2->Draw(“same”);//now h1,h2 on same plot
h1->Fit(“gaus”);//only h1
h2->Fit(“gaus”);//only h2
is there any option to let fitted historgrams on same plot?
i did not find it in user guide
thanks in advance!

h2->Fit(“gaus”,"",“same”);
see doc of TH1::Fit at root.cern.ch/root/html/TH1.html#TH1:Fit

Rene

thanks a lot!