/// \file /// \ingroup tutorial_spectrum /// \notebook /// Example to illustrate the Markov smoothing (class TSpectrum2). /// /// \macro_image /// \macro_code /// /// \authors Miroslav Morhac, Olivier Couet #include void Smooth() { Int_t i, j; const Int_t nbinsx = 256; const Int_t nbinsy = 256; Double_t xmin = 0; Double_t xmax = (Double_t)nbinsx; Double_t ymin = 0; Double_t ymax = (Double_t)nbinsy; Double_t** source = new Double_t*[nbinsx]; for (i=0;iGetTutorialDir(); TString file = dir+"/spectrum/TSpectrum2.root"; TFile *f = new TFile(file.Data()); auto smooth = (TH2F*) f->Get("smooth1"); gStyle->SetOptStat(0); auto *s = new TSpectrum2(); for (i = 0; i < nbinsx; i++){ for (j = 0; j < nbinsy; j++){ source[i][j] = smooth->GetBinContent(i + 1,j + 1); } } s->SmoothMarkov(source,nbinsx,nbinsx,3); //5,7 for (i = 0; i < nbinsx; i++){ for (j = 0; j < nbinsy; j++) smooth->SetBinContent(i + 1,j + 1, source[i][j]); } smooth->Draw("SURF2"); }