3 using namespace ROOT::Experimental;
4 namespace REX = ROOT::Experimental;
13 bool REX::operator==(
const TString& t,
const std::string& s)
14 {
return (s == t.Data()); }
16 bool REX::operator==(
const std::string& s,
const TString& t)
17 {
return (s == t.Data()); }
21 REveException REX::operator+(
const REveException &s1,
const std::string &s2)
22 { REveException r(s1); r.append(s2);
return r; }
24 REveException REX::operator+(
const REveException &s1,
const TString &s2)
25 { REveException r(s1); r.append(s2.Data());
return r; }
27 REveException REX::operator+(
const REveException &s1,
const char *s2)
28 { REveException r(s1); r.append(s2);
return r; }
30 REveException REX::operator+(
const REveException &s1, ElementId_t x)
31 { REveException r(s1); r.append(std::to_string(x));
return r; }