4 #include "KVNamedParameter.h"
38 : TNamed(nom,
""), fNumber(0.0)
48 : TNamed(nom, val), fNumber(0.0)
59 SetNameTitle(name, val);
80 : TNamed(nom,
"Double_t"), fNumber(val)
91 SetNameTitle(name,
"Double_t");
102 SetTitle(
"Double_t");
112 : TNamed(nom,
"Int_t"), fNumber(val)
122 : TNamed(nom,
"Bool_t"), fNumber(val)
133 : TNamed(nom, p.GetTitle()), fNumber(p.fNumber)
145 SetNameTitle(name,
"Int_t");
156 SetNameTitle(name,
"Bool_t");
169 SetNameTitle(nom, p.GetTitle());
188 Warning(
"Add",
"Parameters are not same type: this->name=%s (type=%d) other->name=%s (type=%d)",
193 TString w = Get<TString>() +
",";
194 w += p.
Get<TString>();
246 if (name !=
"") name.Append(
".");
262 SetNameTitle(
"",
"");
281 static TString convert =
"";
285 convert = (
GetBool() ?
"true" :
"false");
287 convert.Form(
"%d", (Int_t)
fNumber);
288 return convert.Data();
307 convert = (
GetBool() ?
"true" :
"false");
309 convert.Form(
"%d", (Int_t)
fNumber);
325 return fTitle.Atof();
342 return fTitle.Atoi();
359 return fTitle.Atoi();
375 if (!obj->InheritsFrom(
"KVNamedParameter"))
return kFALSE;
377 return ((*
this) == (*_obj));
391 if ((other.fName != fName))
return kFALSE;
408 if (fTitle == other.fTitle)
return kTRUE;
436 Info(
"Print",
"Name = %s type = string value = %s", GetName(), GetTitle());
439 Info(
"Print",
"Name = %s type = %s value = %s", GetName(), GetTitle(),
GetString());
463 Bool_t can_print = kTRUE;
464 if (strcmp(option,
"")) {
467 if (opt ==
"int" && !
IsInt()) can_print = kFALSE;
468 else if (opt ==
"bool" && !
IsBool()) can_print = kFALSE;
469 else if (opt ==
"double" && !
IsDouble()) can_print = kFALSE;
470 else if (opt ==
"string" && !
IsString()) can_print = kFALSE;
472 TROOT::IndentLevel();
474 if (can_print) cout <<
"<" << GetName() <<
"=" << GetTitle() <<
">" << endl;
479 if (can_print) cout <<
"<" << GetName() <<
"=" << dec <<
GetInt() <<
">" << endl;
483 if (can_print) cout <<
"<" << GetName() <<
"=" <<
GetString() <<
">" << endl;
487 if (can_print) cout <<
"<" << GetName() <<
"=" <<
GetDouble() <<
">" << endl;
506 if (!other || !other->
IsNumber())
return 0;
508 if ((*other) == (*this))
return 0;
522 if (name !=
"") name.Append(
".");
540 static TString sql_type;
550 sql_type =
"INTEGER";
552 return sql_type.Data();
static Bool_t AreEqual(Double_t x, Double_t y, Long64_t maxdif=1)
Comparison between two 64-bit floating-point values.
A generic named parameter storing values of different types.
Bool_t IsEqual(const TObject *obj) const
Bool_t HasSameValueAs(const KVNamedParameter &) const
const Char_t * GetString() const
KVNamedParameter()
Default constructor.
void Set(const char *, const char *)
virtual void Print(Option_t *opt="") const
void Add(const KVNamedParameter &p)
Bool_t operator==(const KVNamedParameter &) const
const Char_t * GetSQLType() const
Double_t GetDouble() const
virtual void Clear(Option_t *="")
Removes the name and any assigned value.
virtual void ls(Option_t *opt="") const
Int_t Compare(const TObject *obj) const
Compares numerical parameters for sorting lists (such as KVNameValueList)
void WriteToEnv(TEnv *, const TString &p="")
Write parameter in TEnv, using optional prefix p as "p.[name]".
Double_t fNumber
used to store numerical (integer or floating-point) values
TString GetTString() const
virtual ~KVNamedParameter()
Destructor.