18 Bool_t fIsFixed {kFALSE};
19 Bool_t fIsDiscrete {kFALSE};
20 Bool_t fIsMapSet {kFALSE};
35 Bool_t IsDiscrete()
const {
return fIsDiscrete; };
36 Bool_t IsFixed()
const {
return fIsFixed; };
37 Bool_t IsMapSet()
const {
return fIsMapSet; }
39 void SetMapRange(Double_t min, Double_t max, Int_t points);
40 void SetRange(Double_t min, Double_t max);
41 void SetStartVal(Double_t val) { fStart = val; };
42 void SetIsDiscrete(Bool_t isDiscrete) { fIsDiscrete = isDiscrete; }
43 void SetIsFixed(Bool_t isFixed) { fIsFixed = isFixed; }
44 void SetMapMax(Double_t mapMax) { fMapMax = mapMax; }
45 void SetMapMin(Double_t mapMin) { fMapMin = mapMin; }
46 void SetMax(Double_t max) { fMax = max; }
47 void SetMin(Double_t min) { fMin = min; }
48 void SetParName(
const TString& name) { fName = name; }
49 void SetFittedValue(Double_t val) { fFitted = val; };
50 void SetError(Double_t error) { fError = error; };
51 Int_t GetNPoints()
const {
return fNPoint; };
52 Double_t GetDParam()
const {
return fDParam; };
53 Double_t GetMapMax()
const {
return fMapMax; }
54 Double_t GetMapMin()
const {
return fMapMin; }
55 Double_t GetMax()
const {
return fMax; }
56 Double_t GetMin()
const {
return fMin; }
57 Double_t GetStartVal()
const {
return fStart; };
58 Double_t GetFittedValue()
const {
return fFitted; };
59 Double_t GetError()
const {
return fError; };
61 TString GetParName()
const {
return fName; }
62 const std::vector<Double_t> GetValuesArray()
const;
63 virtual void Print(Option_t* option =
"")
const;