Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TSpectrum.h
Go to the documentation of this file.
1 // @(#)root/spectrum:$Id$
2 // Author: Miroslav Morhac 27/05/99
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2006, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 #ifndef ROOT_TSpectrum
12 #define ROOT_TSpectrum
13 
14 #include "TNamed.h"
15 
16 class TH1;
17 
18 class TSpectrum : public TNamed {
19 private:
20 
21  TSpectrum(const TSpectrum&); // Not implemented
22  TSpectrum& operator=(const TSpectrum&); // Not implemented
23 
24 protected:
25  Int_t fMaxPeaks; ///< Maximum number of peaks to be found
26  Int_t fNPeaks; ///< number of peaks found
27  Double_t *fPosition; ///< [fNPeaks] array of current peak positions
28  Double_t *fPositionX; ///< [fNPeaks] X position of peaks
29  Double_t *fPositionY; ///< [fNPeaks] Y position of peaks
30  Double_t fResolution; ///< *NOT USED* resolution of the neighboring peaks
31  TH1 *fHistogram; ///< resulting histogram
32 static Int_t fgAverageWindow; ///< Average window of searched peaks
33 static Int_t fgIterations; ///< Maximum number of decon iterations (default=3)
34 
35 public:
36  enum {
37  kBackOrder2 =0,
38  kBackOrder4 =1,
39  kBackOrder6 =2,
40  kBackOrder8 =3,
41  kBackIncreasingWindow =0,
42  kBackDecreasingWindow =1,
43  kBackSmoothing3 =3,
44  kBackSmoothing5 =5,
45  kBackSmoothing7 =7,
46  kBackSmoothing9 =9,
47  kBackSmoothing11 =11,
48  kBackSmoothing13 =13,
49  kBackSmoothing15 =15
50  };
51 
52  TSpectrum();
53  TSpectrum(Int_t maxpositions, Double_t resolution=1); // resolution is *NOT USED*
54  virtual ~TSpectrum();
55  virtual TH1 *Background(const TH1 *hist,Int_t niter=20, Option_t *option="");
56  TH1 *GetHistogram() const {return fHistogram;}
57  Int_t GetNPeaks() const {return fNPeaks;}
58  Double_t *GetPositionX() const {return fPositionX;}
59  Double_t *GetPositionY() const {return fPositionY;}
60  virtual void Print(Option_t *option="") const;
61  virtual Int_t Search(const TH1 *hist, Double_t sigma=2, Option_t *option="", Double_t threshold=0.05);
62  static void SetAverageWindow(Int_t w=3); //set average window
63  static void SetDeconIterations(Int_t n=3); //set max number of decon iterations
64  void SetResolution(Double_t resolution=1); // *NOT USED*
65 
66  //new functions January 2006
67  const char *Background(Double_t *spectrum, Int_t ssize,Int_t numberIterations,Int_t direction, Int_t filterOrder,bool smoothing,Int_t smoothWindow,bool compton);
68  const char *SmoothMarkov(Double_t *source, Int_t ssize, Int_t averWindow);
69  const char *Deconvolution(Double_t *source, const Double_t *response,Int_t ssize, Int_t numberIterations,Int_t numberRepetitions, Double_t boost );
70  const char *DeconvolutionRL(Double_t *source, const Double_t *response,Int_t ssize, Int_t numberIterations,Int_t numberRepetitions, Double_t boost );
71  const char *Unfolding(Double_t *source,const Double_t **respMatrix,Int_t ssizex, Int_t ssizey,Int_t numberIterations,Int_t numberRepetitions, Double_t boost);
72  Int_t SearchHighRes(Double_t *source,Double_t *destVector, Int_t ssize,Double_t sigma, Double_t threshold,bool backgroundRemove,Int_t deconIterations,bool markov, Int_t averWindow);
73  Int_t Search1HighRes(Double_t *source,Double_t *destVector, Int_t ssize,Double_t sigma, Double_t threshold,bool backgroundRemove,Int_t deconIterations,bool markov, Int_t averWindow);
74 
75  static Int_t StaticSearch(const TH1 *hist, Double_t sigma=2, Option_t *option="goff", Double_t threshold=0.05);
76  static TH1 *StaticBackground(const TH1 *hist,Int_t niter=20, Option_t *option="");
77 
78  ClassDef(TSpectrum,3) //Peak Finder, background estimator, Deconvolution
79 };
80 
81 #endif
82