Int_t i, j; const Int_t nbinsx = 64; const Int_t nbinsy = 64; 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 decon=(TH2F*) f->Get("decon2"); Double_t** response = new Double_t*[nbinsx]; for (i=0;iGet("resp2"); gStyle->SetOptStat(0); auto *s = new TSpectrum2(); for (i = 0; i < nbinsx; i++){ for (j = 0; j < nbinsy; j++){ source[i][j] = decon->GetBinContent(i + 1,j + 1); } } for (i = 0; i < nbinsx; i++){ for (j = 0; j < nbinsy; j++){ response[i][j] = resp->GetBinContent(i + 1,j + 1); } } s->Deconvolution(source,response,nbinsx,nbinsy,1000,1,1); for (i = 0; i < nbinsx; i++){ for (j = 0; j < nbinsy; j++) decon->SetBinContent(i + 1,j + 1, source[i][j]); } decon->Draw("SURF2"); gROOT->GetListOfCanvases()->Draw()