TProfile Error of RMS for each bin

Hello experts!

I was wondering if there is a way to access the error of the RMS calculated with TProfile. For example:
I have a TProfile:

TProfile *tExample = new TProfile(“tExample”, “Some title; x axis; y axis”, nBins, 1, range, -range, range, “S”);

I can then access the RMS of a particular bin by just calling tExample->GetBinError(bin);
but is there a way to access the error of the RMS?

I know that when a I do something like:

hist->Fit(“gauss”);

I can access the RMS error through the fit values but I guess I am hoping that the information for the RMS error in each bin of a TProfile is also saved. Is this the case?

Thanks,

Derek


Please read tips for efficient and successful posting and posting code

ROOT Version: Not Provided
Platform: Not Provided
Compiler: Not Provided


I guess @moneta can help you with this

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.