GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4FitPeakFinder.h
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#ifndef TGO4FITPEAKFINDER_H
15#define TGO4FITPEAKFINDER_H
16
17#include "TGo4FitterAction.h"
18
19#include "TArrayD.h"
20
21class TGo4Fitter;
22class TGo4FitData;
23
30 public:
31
36
41 TGo4FitPeakFinder(const char *Name, const char *DataName = nullptr, Bool_t ClearModels = kFALSE, Int_t PolOrder = -1);
42
46 virtual ~TGo4FitPeakFinder();
47
48 void SetDataName(const char *name) { fxDataName = name; }
49 const char *GetDataName() const { return fxDataName.Data(); }
50 void SetClearModels(Bool_t clear) { fbClearModels = clear; }
51 Bool_t GetClearModels() const { return fbClearModels; }
52
53 void SetupPolynomialBackground(Int_t PolynomOrder);
54
55 void SetupForFirst(Double_t MaxAmplFactor, Double_t MinWidth, Double_t MaxWidth);
56
57 void SetupForSecond(Double_t LineWidth);
58
59 void SetupForThird(Double_t NoiseFactor, Double_t NoiseMinimum, Int_t ChannelSum);
60
61 void DoAction(TGo4FitterAbstract *Fitter) override;
62
63 Bool_t CanChangeFitter() const override { return kTRUE; }
64
65 // Following functions directly changes single parameters of peakfinders.
66 // Normally you should not use them, because some or all of them can be changed later on
67 // You should use Setup... routines to configure specific peakfinder
68
69 void SetUsePolynom(Bool_t use) { fbUsePolynom = use; }
70 Bool_t GetUsePolynom() const { return fbUsePolynom; }
71 void SetPolynomOrder(Int_t order) { fiPolynomOrder = order; }
72 Int_t GetPolynomOrder() const { return fiPolynomOrder; }
73
74 void SetPeakFinderType(Int_t typ) { fiPeakFinderType = typ; }
75 Int_t GetPeakFinderType() const { return fiPeakFinderType; }
76
77 void Set0MaxAmplFactor(Double_t factor) { fd0MaxAmplFactor = factor; }
78 Double_t Get0MaxAmplFactor() const { return fd0MaxAmplFactor; }
79 void Set0MinWidth(Double_t min) { fd0MinWidth = min; }
80 Double_t Get0MinWidth() const { return fd0MinWidth; }
81 void Set0MaxWidth(Double_t max) { fd0MaxWidth = max; }
82 Double_t Get0MaxWidth() const { return fd0MaxWidth; }
83
84 void Set1LineWidth(Double_t width) { fd1LineWidth = width; }
85 Double_t Get1LineWidth() const { return fd1LineWidth; }
86
87 void Set2NoiseFactor(Double_t factor) { fd2NoiseFactor = factor; }
88 Double_t Get2NoiseFactor() const { return fd2NoiseFactor; }
89 void Set2NoiseMinimum(Double_t min) { fd2NoiseMinimum = min; }
90 Double_t Get2NoiseMinimum() const { return fd2NoiseMinimum; }
91 void Set2ChannelSum(Int_t sum) { fi2ChannelSum = sum; }
92 Int_t Get2ChannelSum() const { return fi2ChannelSum; }
93
97 void Print(Option_t *option = "") const override;
98
99 private:
100
101 void ROOTPeakFinder(TGo4Fitter *fitter,
102 TGo4FitData *data,
103 Int_t PolynomOrder,
104 Double_t Sigma);
105
114 TGo4FitData *data,
115 Int_t PolOrder,
116 Double_t AmplThreshold,
117 Double_t MinWidth,
118 Double_t MaxWidth);
119
124 void HansEsselPeakFinder(TGo4Fitter *fitter,
125 TGo4FitData *data,
126 Int_t MaxNumPeaks = 50,
127 Int_t ChannelSum = 1,
128 Double_t NoiseFactor = 2.,
129 Double_t NoiseMinimum = 10.,
130 Int_t MinimasOrder = -1);
131
132 static void DefinePolynom(Int_t size, // number of experimental points
133 Double_t *bins, // array of bins
134 Double_t *scales, // array of scale values
135 TArrayD &Coef, // array of polynomial coefficients
136 Double_t *weight = nullptr, // statistical weight of each bin
137 Double_t *backgr = nullptr, // background values
138 Char_t *use = nullptr); // usage of each points
139
140 static void DefinePolynomEx(Int_t size, Double_t *bins, Double_t *scales, Double_t *weight, Double_t *backgr,
141 Int_t lbound, Int_t rbound, TArrayD& Coef);
142
143 static Double_t CalcPolynom(const TArrayD &Coef, Double_t x);
144
145
146 Int_t fiPeakFinderType{0}; // 0 - by S.Linev, 1 - ROOT TSpectrum, 2 - by H.Essel
147
148 TString fxDataName;
149
150 Bool_t fbClearModels{kFALSE};
151
152 Bool_t fbUsePolynom{kFALSE};
154
155 Double_t fd0MinWidth{0};
156 Double_t fd0MaxWidth{0};
157 Double_t fd0MaxAmplFactor{0};
158
159 Double_t fd1LineWidth{0};
160
161 Double_t fd2NoiseFactor{0};
162 Double_t fd2NoiseMinimum{0};
164
165 ClassDefOverride(TGo4FitPeakFinder,1)
166};
167
168#endif // TGO4FITPEAKFINDER_H
Basic abstract class for representing data, which should be fitted.
Definition TGo4FitData.h:39
Peak finder action.
void Set0MinWidth(Double_t min)
Double_t Get0MaxAmplFactor() const
Double_t Get1LineWidth() const
virtual ~TGo4FitPeakFinder()
Destroys TGo4FitPeakFinder object.
void SetupForThird(Double_t NoiseFactor, Double_t NoiseMinimum, Int_t ChannelSum)
const char * GetDataName() const
void Print(Option_t *option="") const override
Print information on standard output.
void ROOTPeakFinder(TGo4Fitter *fitter, TGo4FitData *data, Int_t PolynomOrder, Double_t Sigma)
void DoAction(TGo4FitterAbstract *Fitter) override
Bool_t GetUsePolynom() const
static void DefinePolynomEx(Int_t size, Double_t *bins, Double_t *scales, Double_t *weight, Double_t *backgr, Int_t lbound, Int_t rbound, TArrayD &Coef)
Int_t GetPeakFinderType() const
void SetPolynomOrder(Int_t order)
Bool_t CanChangeFitter() const override
void SetupForSecond(Double_t LineWidth)
Bool_t GetClearModels() const
Double_t Get2NoiseFactor() const
void SergeyLinevPeakFinder(TGo4Fitter *fitter, TGo4FitData *data, Int_t PolOrder, Double_t AmplThreshold, Double_t MinWidth, Double_t MaxWidth)
Perform simple peak finder algorithm.
void Set0MaxWidth(Double_t max)
Double_t Get0MaxWidth() const
void Set0MaxAmplFactor(Double_t factor)
static Double_t CalcPolynom(const TArrayD &Coef, Double_t x)
void SetPeakFinderType(Int_t typ)
void HansEsselPeakFinder(TGo4Fitter *fitter, TGo4FitData *data, Int_t MaxNumPeaks=50, Int_t ChannelSum=1, Double_t NoiseFactor=2., Double_t NoiseMinimum=10., Int_t MinimasOrder=-1)
Hans Essel (c) peak finder.
Int_t Get2ChannelSum() const
void Set2NoiseFactor(Double_t factor)
Double_t Get2NoiseMinimum() const
void SetDataName(const char *name)
void SetClearModels(Bool_t clear)
TGo4FitPeakFinder()
Default constructor.
void Set1LineWidth(Double_t width)
void Set2ChannelSum(Int_t sum)
void SetUsePolynom(Bool_t use)
void SetupPolynomialBackground(Int_t PolynomOrder)
Double_t Get0MinWidth() const
void Set2NoiseMinimum(Double_t min)
Int_t GetPolynomOrder() const
static void DefinePolynom(Int_t size, Double_t *bins, Double_t *scales, TArrayD &Coef, Double_t *weight=nullptr, Double_t *backgr=nullptr, Char_t *use=nullptr)
void SetupForFirst(Double_t MaxAmplFactor, Double_t MinWidth, Double_t MaxWidth)
Abstract fitter class.
TGo4FitterAction()
Default constructor.
Central class of Go4Fit package.
Definition TGo4Fitter.h:38