143 if (exl)
fEXlow[i] = exl[i];
147 if (eyl)
fEYlow[i] = eyl[i];
166 if(exl) { memcpy(
fEXlow, exl, n);
167 }
else { memset(
fEXlow, 0, n); }
168 if(exh) { memcpy(
fEXhigh, exh, n);
169 }
else { memset(
fEXhigh, 0, n); }
170 if(eyl) { memcpy(
fEYlow, eyl, n);
171 }
else { memset(
fEYlow, 0, n); }
172 if(eyh) { memcpy(
fEYhigh, eyh, n);
173 }
else { memset(
fEYhigh, 0, n); }
197 fX[i] = vx(i+ivxlow);
198 fY[i] = vy(i+ivylow);
199 fEXlow[i] = vexl(i+ivexllow);
200 fEYlow[i] = veyl(i+iveyllow);
227 fX[i] = vx(i+ivxlow);
228 fY[i] = vy(i+ivylow);
229 fEXlow[i] = vexl(i+ivexllow);
230 fEYlow[i] = veyl(i+iveyllow);
260 :
TGraph((pass)?pass->GetNbinsX():0)
262 if (!pass || !total) {
263 Error(
"TGraphAsymmErrors",
"Invalid histogram pointers");
268 std::string sname =
"divide_" + std::string(pass->
GetName()) +
"_by_" +
274 pass->TAttLine::Copy(*
this);
275 pass->TAttFill::Copy(*
this);
276 pass->TAttMarker::Copy(*
this);
278 Divide(pass, total, option);
305 std::ifstream infile(fname.
Data());
306 if (!infile.good()) {
308 Error(
"TGraphErrors",
"Cannot open file: %s, TGraphErrors is Zombie", filename);
315 if (strcmp(option,
"") == 0) {
319 while (std::getline(infile, line,
'\n')) {
320 exl = exh = eyl = eyh = 0;
322 res = sscanf(line.c_str(), format, &
x, &
y);
323 }
else if (ncol < 5) {
324 res = sscanf(line.c_str(), format, &
x, &
y, &eyl, &eyh);
326 res = sscanf(line.c_str(), format, &
x, &
y, &exl, &exh, &eyl, &eyh);
348 Error(
"TGraphAsymmErrors",
"Incorrect input format! Allowed format tags are {\"%%lg\",\"%%*lg\" or \"%%*s\"}");
353 Error(
"TGraphAsymmErrors",
"Incorrect input format! Only %d tag(s) in format whereas at least 2 \"%%lg\" tags are expected!", ntokens);
356 Int_t ntokensToBeSaved = 0 ;
358 for (
Int_t idx = 0; idx < ntokens; idx++) {
360 if (isTokenToBeSaved[idx] == 1) {
364 if (ntokens >= 2 && (ntokensToBeSaved < 2 || ntokensToBeSaved > 4)) {
365 Error(
"TGraphAsymmErrors",
"Incorrect input format! There are %d \"%%lg\" tag(s) in format whereas 2,3 or 4 are expected!", ntokensToBeSaved);
366 delete [] isTokenToBeSaved ;
372 char * token = NULL ;
374 Int_t token_idx = 0 ;
376 for (
Int_t k = 0; k < 6; k++) {
379 Int_t value_idx = 0 ;
382 while (std::getline(infile, line,
'\n')) {
384 if (line[line.size() - 1] == char(13)) {
385 line.erase(line.end() - 1, line.end()) ;
387 token = strtok(const_cast<char*>(line.c_str()), option) ;
388 while (token != NULL && value_idx < ntokensToBeSaved) {
389 if (isTokenToBeSaved[token_idx]) {
393 isLineToBeSkipped =
kTRUE ;
396 value[value_idx] = token_str.
Atof() ;
400 token = strtok(NULL, option) ;
403 if (!isLineToBeSkipped && value_idx > 1) {
415 isLineToBeSkipped =
kFALSE ;
423 delete [] isTokenToBeSaved ;
454 Double_t x,
y,exl,exh,eyl,eyh,eyl_new,eyh_new,fxy;
472 if (f->
Eval(x,y-eyl)<f->
Eval(x,y+eyh)) {
495 Divide(pass,total,
"cl=0.683 b(1,1) mode");
576 if(!pass || !total) {
577 Error(
"Divide",
"one of the passed pointers is zero");
583 Error(
"Divide",
"passed histograms are not one-dimensional");
589 Bool_t bEffective =
false;
595 for (
int i = 0; i < pass->
GetNcells(); ++i) {
610 for (
int i = 0; i < total->
GetNcells(); ++i) {
639 Double_t conf = 0.682689492137;
641 Bool_t bIsBayesian =
false;
650 Info(
"Divide",
"weight will be considered in the Histogram Ratio");
658 sscanf(strstr(option.
Data(),
"cl="),
"cl=%lf",&level);
659 if((level > 0) && (level < 1))
662 Warning(
"Divide",
"given confidence level %.3lf is invalid",level);
704 sscanf(strstr(option.
Data(),
"b("),
"b(%lf,%lf)",&a,&b);
708 Warning(
"Divide",
"given shape parameter for alpha %.2lf is invalid",a);
712 Warning(
"Divide",
"given shape parameter for beta %.2lf is invalid",b);
718 Bool_t usePosteriorMode =
false;
719 if(bIsBayesian && option.
Contains(
"mode") ) {
720 usePosteriorMode =
true;
730 Bool_t useShortestInterval =
false;
731 if (bIsBayesian && ( option.
Contains(
"sh") || (usePosteriorMode && !option.
Contains(
"cen") ) ) ) {
732 useShortestInterval =
true;
736 Bool_t bPoissonRatio =
false;
738 bPoissonRatio =
true;
745 Warning(
"Divide",
"Histograms have weights: only Normal or Bayesian error calculation is supported");
746 Info(
"Divide",
"Using now the Normal approximation for weighted histograms");
752 Error(
"Divide",
"passed histograms are not of the same dimension");
757 Error(
"Divide",
"passed histograms are not consistent");
765 Error(
"Divide",
"passed histograms are not consistent");
780 double eff, low, upper;
784 Double_t t = 0 , p = 0;
785 Double_t tw = 0, tw2 = 0, pw = 0, pw2 = 0, wratio = 1;
808 if (pw == 0 && pw2 == 0)
813 if (tw == 0 && tw2 == 0)
818 if (pw > 0 && tw > 0)
820 wratio = (pw*t)/(p * tw);
821 else if (pw == 0 && tw > 0)
824 wratio = (psumw2 * t) /(psumw * tw );
825 else if (tw == 0 && pw > 0)
828 wratio = (pw * tsumw) /(p * tsumw2 );
833 if (!plot0Bins)
continue;
840 if (tw <= 0 && !plot0Bins)
continue;
852 if(bPoissonRatio) t += p;
854 if (!t && !plot0Bins)
continue;
862 if ((bEffective && !bPoissonRatio) && tw2 <= 0) {
865 low = eff; upper = eff;
869 if (bEffective && !bPoissonRatio) {
871 double norm = tw/tw2;
872 aa = pw * norm + alpha;
873 bb = (tw - pw) * norm + beta;
876 aa = double(p) + alpha;
877 bb = double(t-p) +
beta;
879 if (usePosteriorMode)
884 if (useShortestInterval) {
895 if (bEffective && !bPoissonRatio) {
904 double variance = ( pw2 * (1. - 2 * eff) + tw2 * eff *eff ) / ( tw * tw) ;
907 double prob = 0.5 * (1.-conf);
911 if (low < 0) low = 0;
912 if (upper > 1) upper = 1.;
920 low = pBound(t,p,conf,
false);
921 upper = pBound(t,p,conf,
true);
927 Double_t ratio = eff/(1 - eff);
929 low = low/(1. - low);
930 upper = upper/(1.-upper);
952 Warning(
"Divide",
"Number of graph points is different than histogram bins - %d points have been skipped",nbins-npoint);
956 Info(
"Divide",
"made a graph with %d points from %d bins",npoint,nbins);
957 Info(
"Divide",
"used confidence level: %.2lf\n",conf);
959 Info(
"Divide",
"used prior probability ~ beta(%.2lf,%.2lf)",alpha,beta);
1029 memmove(&arrays[0][obegin], &
fEXlow[ibegin], n);
1030 memmove(&arrays[1][obegin], &
fEXhigh[ibegin], n);
1031 memmove(&arrays[2][obegin], &
fEYlow[ibegin], n);
1032 memmove(&arrays[3][obegin], &
fEYhigh[ibegin], n);
1075 if (exl == 0 || exh == 0 || eyl == 0 || eyh == 0) {
1077 Warning(
"DoMerge",
"Merging a %s is not compatible with a TGraphAsymmErrors - errors will be ignored",g->IsA()->
GetName());
1080 for (
Int_t i = 0 ; i < g->
GetN(); i++) {
1101 memset(
fEXlow + begin, 0, n);
1102 memset(
fEXhigh + begin, 0, n);
1103 memset(
fEYlow + begin, 0, n);
1104 memset(
fEYhigh + begin, 0, n);
1114 if (i < 0 || i >=
fNpoints)
return -1;
1119 return TMath::Sqrt(0.5*(elow*elow + ehigh*ehigh));
1129 if (i < 0 || i >=
fNpoints)
return -1;
1134 return TMath::Sqrt(0.5*(elow*elow + ehigh*ehigh));
1193 "Cannot merge - an object which doesn't inherit from TGraph found in the list");
1197 int n1 = n0+g->
GetN();
1205 for (
Int_t i = 0 ; i < g->
GetN(); i++) {
1207 if (exlow)
fEXlow[n0+i] = exlow[i];
1208 if (exhigh)
fEXhigh[n0+i] = exhigh[i];
1209 if (eylow)
fEYlow[n0+i] = eylow[i];
1210 if (eyhigh)
fEYhigh[n0+i] = eyhigh[i];
1222 printf(
"x[%d]=%g, y[%d]=%g, exl[%d]=%g, exh[%d]=%g, eyl[%d]=%g, eyh[%d]=%g\n" 1223 ,i,
fX[i],i,
fY[i],i,
fEXlow[i],i,
fEXhigh[i],i,
fEYlow[i],i,
fEYhigh[i]);
1234 out <<
" " << std::endl;
1235 static Int_t frameNumber = 3000;
1245 out <<
" Double_t " << fXName <<
"[" <<
fNpoints <<
"] = {" << std::endl;
1246 for (i = 0; i <
fNpoints-1; i++) out <<
" " <<
fX[i] <<
"," << std::endl;
1247 out <<
" " <<
fX[fNpoints-1] <<
"};" << std::endl;
1248 out <<
" Double_t " << fYName <<
"[" << fNpoints <<
"] = {" << std::endl;
1249 for (i = 0; i < fNpoints-1; i++) out <<
" " <<
fY[i] <<
"," << std::endl;
1250 out <<
" " <<
fY[fNpoints-1] <<
"};" << std::endl;
1251 out <<
" Double_t " << fElXName <<
"[" << fNpoints <<
"] = {" << std::endl;
1252 for (i = 0; i < fNpoints-1; i++) out <<
" " <<
fEXlow[i] <<
"," << std::endl;
1253 out <<
" " <<
fEXlow[fNpoints-1] <<
"};" << std::endl;
1254 out <<
" Double_t " << fElYName <<
"[" << fNpoints <<
"] = {" << std::endl;
1255 for (i = 0; i < fNpoints-1; i++) out <<
" " <<
fEYlow[i] <<
"," << std::endl;
1256 out <<
" " <<
fEYlow[fNpoints-1] <<
"};" << std::endl;
1257 out <<
" Double_t " << fEhXName <<
"[" << fNpoints <<
"] = {" << std::endl;
1258 for (i = 0; i < fNpoints-1; i++) out <<
" " <<
fEXhigh[i] <<
"," << std::endl;
1259 out <<
" " <<
fEXhigh[fNpoints-1] <<
"};" << std::endl;
1260 out <<
" Double_t " << fEhYName <<
"[" << fNpoints <<
"] = {" << std::endl;
1261 for (i = 0; i < fNpoints-1; i++) out <<
" " <<
fEYhigh[i] <<
"," << std::endl;
1262 out <<
" " <<
fEYhigh[fNpoints-1] <<
"};" << std::endl;
1265 else out <<
" TGraphAsymmErrors *";
1266 out <<
"grae = new TGraphAsymmErrors("<< fNpoints <<
"," 1267 << fXName <<
"," << fYName <<
"," 1268 << fElXName <<
"," << fEhXName <<
"," 1269 << fElYName <<
"," << fEhYName <<
");" 1272 out <<
" grae->SetName(" << quote <<
GetName() << quote <<
");" << std::endl;
1273 out <<
" grae->SetTitle(" << quote <<
GetTitle() << quote <<
");" << std::endl;
1281 hname += frameNumber;
1285 out<<
" "<<std::endl;
1291 while ((obj = next())) {
1294 out <<
" grae->GetListOfFunctions()->Add(ptstats);" << std::endl;
1295 out <<
" ptstats->SetParent(grae->GetListOfFunctions());" << std::endl;
1300 out <<
" " << objname <<
"->SetParent(grae);\n";
1302 out <<
" grae->GetListOfFunctions()->Add(" 1303 << objname <<
");" << std::endl;
1307 const char *
l = strstr(option,
"multigraph");
1309 out<<
" multigraph->Add(grae,"<<quote<<l+10<<quote<<
");"<<std::endl;
1311 out<<
" grae->Draw("<<quote<<option<<quote<<
");"<<std::endl;
1330 if (dpx*dpx+dpy*dpy < 25) {ipoint = i;
break;}
1332 if (ipoint == -2)
return;
1418 void TGraphAsymmErrors::Streamer(
TBuffer &
b)
1428 TGraph::Streamer(b);
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Int_t fNpoints
Number of points <= fMaxSize.
virtual const char * GetName() const
Returns name of object.
virtual Int_t GetNcells() const
virtual Bool_t CopyPoints(Double_t **arrays, Int_t ibegin, Int_t iend, Int_t obegin)
Copy errors from fE*** to arrays[] or to f Copy points.
Double_t * fX
[fNpoints] array of X points
virtual Int_t WriteClassBuffer(const TClass *cl, void *pointer)=0
virtual Double_t GetBinCenter(Int_t bin) const
Return bin center for 1D histogram.
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
virtual void ComputeRange(Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) const
Compute Range.
Double_t GetErrorY(Int_t bin) const
This function is called by GraphFitChisquare.
static Double_t BetaCentralInterval(Double_t level, Double_t alpha, Double_t beta, Bool_t bUpper)
Calculates the boundaries for a central confidence interval for a Beta distribution.
Double_t GetErrorX(Int_t bin) const
This function is called by GraphFitChisquare.
double normal_quantile_c(double z, double sigma)
Inverse ( ) of the cumulative distribution function of the upper tail of the normal (Gaussian) distri...
virtual Double_t * GetEYlow() const
Double_t GetErrorYlow(Int_t i) const
Get low error on Y.
Double_t * fEXhigh
[fNpoints] array of X high errors
TString & ReplaceAll(const TString &s1, const TString &s2)
virtual void CopyAndRelease(Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin)
Copy and release.
R__EXTERN TStyle * gStyle
static Bool_t CheckBinning(const TH1 &pass, const TH1 &total)
Checks binning for each axis.
virtual Double_t GetSumOfWeights() const
Return the sum of weights excluding under/overflows.
Bool_t IsFloat() const
Returns kTRUE if string contains a floating point or integer number.
virtual Double_t GetBinContent(Int_t bin) const
Return content of bin number bin.
Double_t GetErrorYhigh(Int_t i) const
Get high error on Y.
Buffer base class used for serializing objects.
virtual Int_t Merge(TCollection *list)
Adds all graphs with asymmetric errors from the collection to this graph.
virtual Int_t CheckByteCount(UInt_t startpos, UInt_t bcnt, const TClass *clss)=0
Short_t Min(Short_t a, Short_t b)
void ToLower()
Change string to lower-case.
TList * fFunctions
Pointer to list of functions (fits and user)
virtual void SetTitle(const char *title="")
Set graph title.
Bool_t CtorAllocate()
Should be called from ctors after fNpoints has been set Note: This function should be called only fro...
TH1F * fHistogram
Pointer to histogram used for drawing axis.
virtual Double_t GetBinLowEdge(Int_t bin) const
Return bin lower edge for 1D histogram.
double beta(double x, double y)
Calculates the beta function.
virtual Bool_t CopyPoints(Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin)
Copy points from fX and fY to arrays[0] and arrays[1] or to fX and fY if arrays == 0 and ibegin != ie...
virtual Int_t GetDimension() const
Double_t GetErrorXhigh(Int_t i) const
Get high error on X.
TGraph with asymmetric error bars.
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString...
TGraph & operator=(const TGraph &)
Equal operator for this graph.
virtual void SetName(const char *name="")
Set graph name.
static Double_t AgrestiCoull(Double_t total, Double_t passed, Double_t level, Bool_t bUpper)
Calculates the boundaries for the frequentist Agresti-Coull interval.
virtual void SaveLineAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t widdef=1)
Save line attributes as C++ statement(s) on output stream out.
virtual void SetPointEXhigh(Int_t i, Double_t exh)
Set EXhigh for point i.
virtual void SetPointEYlow(Int_t i, Double_t eyl)
Set EYlow for point i.
virtual Bool_t DoMerge(const TGraph *g)
protected function to perform the merge operation of a graph with asymmetric errors ...
Int_t Finite(Double_t x)
Check if it is finite with a mask in order to be consistent in presence of fast math.
virtual void SaveMarkerAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t sizdef=1)
Save line attributes as C++ statement(s) on output stream out.
virtual void Apply(TF1 *f)
Apply a function to all data points y = f(x,y)
virtual TArrayD * GetSumw2()
virtual ~TGraphAsymmErrors()
TGraphAsymmErrors default destructor.
static Double_t BetaMean(Double_t alpha, Double_t beta)
Compute the mean (average) of the beta distribution.
static Double_t MidPInterval(Double_t total, Double_t passed, Double_t level, Bool_t bUpper)
Calculates the boundaries using the mid-P binomial interval (Lancaster method) from B...
Bool_t CtorAllocate()
In constructors set fNpoints than call this method.
virtual void BayesDivide(const TH1 *pass, const TH1 *total, Option_t *opt="")
This function is only kept for backward compatibility.
Float_t GetErrorX() const
virtual Int_t GetPoint(Int_t i, Double_t &x, Double_t &y) const
Get x and y values for point number i.
virtual void SwapPoints(Int_t pos1, Int_t pos2)
Swap points.
R__EXTERN TSystem * gSystem
virtual void SwapPoints(Int_t pos1, Int_t pos2)
Swap points.
static Double_t Normal(Double_t total, Double_t passed, Double_t level, Bool_t bUpper)
Returns the confidence limits for the efficiency supposing that the efficiency follows a normal distr...
static void SwapValues(Double_t *arr, Int_t pos1, Int_t pos2)
Swap values.
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
Collection abstract base class.
virtual Bool_t DoMerge(const TGraph *g)
protected function to perform the merge operation of a graph
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
virtual void SaveFillAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1001)
Save fill attributes as C++ statement(s) on output stream out.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
char * Form(const char *fmt,...)
virtual void Divide(const TH1 *pass, const TH1 *total, Option_t *opt="cp")
Fill this TGraphAsymmErrors by dividing two 1-dimensional histograms pass/total.
Double_t * fEYlow
[fNpoints] array of Y low errors
virtual void ReadFastArray(Bool_t *b, Int_t n)=0
Double_t GetErrorXlow(Int_t i) const
Get low error on X.
virtual void SetName(const char *name)
Change the name of this histogram.
Double_t At(Int_t i) const
static unsigned int total
virtual Int_t ReadClassBuffer(const TClass *cl, void *pointer, const TClass *onfile_class=0)=0
virtual Double_t Eval(Double_t x, Double_t y=0, Double_t z=0, Double_t t=0) const
Evaluate this function.
virtual Double_t GetBinWidth(Int_t bin) const
Return bin width for 1D histogram.
virtual void FillZero(Int_t begin, Int_t end, Bool_t from_ctor=kTRUE)
Set zero values for point arrays in the range [begin, end)
TGraphAsymmErrors & operator=(const TGraphAsymmErrors &gr)
TGraphAsymmErrors assignment operator.
TGraphAsymmErrors()
TGraphAsymmErrors default constructor.
virtual Double_t GetBinErrorLow(Int_t bin) const
Return lower error associated to bin number bin.
virtual Double_t * GetEXlow() const
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
you should not use this method at all Int_t Int_t Double_t Double_t Double_t e
virtual void SetPointEXlow(Int_t i, Double_t exl)
Set EXlow for point i.
static Double_t FeldmanCousins(Double_t total, Double_t passed, Double_t level, Bool_t bUpper)
Calculates the boundaries for the frequentist Feldman-Cousins interval.
Mother of all ROOT objects.
virtual void FillZero(Int_t begin, Int_t end, Bool_t from_ctor=kTRUE)
Set zero values for point arrays in the range [begin, end) Should be redefined in descendant classes...
virtual void SetPoint(Int_t i, Double_t x, Double_t y)
Set x and y values for point number i.
Double_t * fY
[fNpoints] array of Y points
static Bool_t BetaShortestInterval(Double_t level, Double_t alpha, Double_t beta, Double_t &lower, Double_t &upper)
Calculates the boundaries for a shortest confidence interval for a Beta distribution.
static Double_t ClopperPearson(Double_t total, Double_t passed, Double_t level, Bool_t bUpper)
Calculates the boundaries for the frequentist Clopper-Pearson interval.
A Graph is a graphics object made of two arrays X and Y with npoints each.
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Int_t Atoi() const
Return integer value of string.
virtual Double_t GetBinErrorUp(Int_t bin) const
Return upper error associated to bin number bin.
static Int_t CalculateScanfFields(const char *fmt)
Calculate scan fields.
Double_t Atof() const
Return floating-point value contained in string.
Bool_t IsDigit() const
Returns true if all characters in string are digits (0-9) or white spaces, i.e.
virtual Bool_t ExpandPathName(TString &path)
Expand a pathname getting rid of special shell characters like ~.
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Int_t fMaxSize
!Current dimension of arrays fX and fY
virtual Int_t GetNbinsX() const
Double_t Sqrt(Double_t x)
virtual Double_t * GetEYhigh() const
virtual void ComputeRange(Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) const
Compute the x/y range of the points in this graph.
virtual const char * GetName() const
Returns name of object.
virtual void Set(Int_t n)
Set number of points in the graph Existing coordinates are preserved New coordinates above fNpoints a...
virtual void Print(Option_t *chopt="") const
Print graph and errors values.
Double_t * fEXlow
[fNpoints] array of X low errors
virtual void SetPointEYhigh(Int_t i, Double_t eyh)
Set EYhigh for point i.
virtual Double_t * GetEXhigh() const
static Double_t BetaMode(Double_t alpha, Double_t beta)
Compute the mode of the beta distribution.
Double_t * fEYhigh
[fNpoints] array of Y high errors
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
static Double_t Wilson(Double_t total, Double_t passed, Double_t level, Bool_t bUpper)
Calculates the boundaries for the frequentist Wilson interval.
virtual Version_t ReadVersion(UInt_t *start=0, UInt_t *bcnt=0, const TClass *cl=0)=0
static Bool_t CheckConsistency(const TH1 &pass, const TH1 &total, Option_t *opt="")
Checks the consistence of the given histograms.
virtual const char * GetTitle() const
Returns title of object.
const char * Data() const
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a primitive as a C++ statement(s) on output stream "out".
virtual void SetPointError(Double_t exl, Double_t exh, Double_t eyl, Double_t eyh)
Set ex and ey values for point pointed by the mouse.