Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
SearchHR1.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_spectrum
3 /// \notebook
4 /// Example to illustrate high resolution peak searching function (class TSpectrum).
5 ///
6 /// \macro_output
7 /// \macro_image
8 /// \macro_code
9 ///
10 /// \authors Miroslav Morhac, Olivier Couet
11 
12 void SearchHR1() {
13  Double_t fPositionX[100];
14  Double_t fPositionY[100];
15  Int_t fNPeaks = 0;
16  Int_t i,nfound,bin;
17  const Int_t nbins = 1024;
18  Double_t xmin = 0;
19  Double_t xmax = nbins;
20  Double_t a;
21  Double_t source[nbins], dest[nbins];
22  gROOT->ForceStyle();
23 
24  TString dir = gROOT->GetTutorialDir();
25  TString file = dir+"/spectrum/TSpectrum.root";
26  TFile *f = new TFile(file.Data());
27  TH1F *h = (TH1F*) f->Get("back2");
28  h->SetTitle("High resolution peak searching, number of iterations = 3");
29  h->GetXaxis()->SetRange(1,nbins);
30  TH1F *d = new TH1F("d","",nbins,xmin,xmax);
31  h->Draw("L");
32 
33  for (i = 0; i < nbins; i++) source[i]=h->GetBinContent(i + 1);
34 
35  h->Draw("L");
36 
37  TSpectrum *s = new TSpectrum();
38 
39  nfound = s->SearchHighRes(source, dest, nbins, 8, 2, kTRUE, 3, kTRUE, 3);
40  Double_t *xpeaks = s->GetPositionX();
41  for (i = 0; i < nfound; i++) {
42  a=xpeaks[i];
43  bin = 1 + Int_t(a + 0.5);
44  fPositionX[i] = h->GetBinCenter(bin);
45  fPositionY[i] = h->GetBinContent(bin);
46  }
47 
48  TPolyMarker * pm = (TPolyMarker*)h->GetListOfFunctions()->FindObject("TPolyMarker");
49  if (pm) {
50  h->GetListOfFunctions()->Remove(pm);
51  delete pm;
52  }
53  pm = new TPolyMarker(nfound, fPositionX, fPositionY);
54  h->GetListOfFunctions()->Add(pm);
55  pm->SetMarkerStyle(23);
56  pm->SetMarkerColor(kRed);
57  pm->SetMarkerSize(1.3);
58 
59  for (i = 0; i < nbins; i++) d->SetBinContent(i + 1,dest[i]);
60  d->SetLineColor(kRed);
61  d->Draw("SAME");
62 
63  printf("Found %d candidate peaks\n",nfound);
64  for( i=0;i<nfound;i++) printf("posx= %f, posy= %f\n",fPositionX[i], fPositionY[i]);
65 }