[root] / trunk / hist / hist / inc / TGraph2DErrors.h Repository:
ViewVC logotype

Log of /trunk/hist/hist/inc/TGraph2DErrors.h

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 36165 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 7 15:46:32 2010 UTC (4 years, 3 months ago) by couet
File length: 2599 byte(s)
Diff to previous 35862
- reactivate the option ERR for TGraph2D.

Revision 35862 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 29 16:43:06 2010 UTC (4 years, 3 months ago) by couet
File length: 2600 byte(s)
Diff to previous 22694
- New option ERR to draw the TGraph2DErrors with error bars.

Revision 22694 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Mar 17 20:23:21 2008 UTC (6 years, 10 months ago) by rdm
File length: 2381 byte(s)
Diff to previous 22428
move hist, histpainter, spectrum and spectrumpainter in the hist package.

Revision 22428 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Mar 3 18:17:03 2008 UTC (6 years, 10 months ago) by brun
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2381 byte(s)
Diff to previous 20882
From Federico:
Changes to support the gcc -weffc++ compiler option.

Revision 20882 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:31:26 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2236 byte(s)
Diff to previous 20448
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 20448 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 23 12:53:45 2007 UTC (7 years, 3 months ago) by couet
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2236 byte(s)
Diff to previous 19826
- Implement the Set(n) method as requested here: 
  https://savannah.cern.ch/bugs/?29007

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2203 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2203 byte(s)
Diff to previous 15065
remove :$ from tag line

Revision 15065 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 16:50:02 2006 UTC (8 years, 8 months ago) by couet
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2213 byte(s)
Diff to previous 13399
- Coding conventions (indentation)

Revision 13399 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Nov 29 14:43:59 2005 UTC (9 years, 1 month ago) by brun
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2295 byte(s)
Diff to previous 11022
From Anna:
Implement new functions in the TVirtualFitter and corresponding
implementations to compute the confidence intervals.
Two kinds of interfaces are implemented, eg

void TFitter::GetConfidenceIntervals(Int_t n, Int_t ndim, Double_t *x, Double_t *ci, Double_t cl)
//Computes point-by-point confidence intervals for the fitted function
//Parameters:
//n - number of points
//ndim - dimensions of points
//x - points, at which to compute the intervals, for ndim > 1
//    should be in order: (x0,y0, x1, y1, ... xn, yn)
//ci - computed intervals are returned in this array
//cl - confidence level, default=0.95
//NOTE, that the intervals are approximate for nonlinear(in parameters) models


void TFitter::GetConfidenceIntervals(TObject *obj, Double_t cl)
//Computes confidence intervals at level cl. Default is 0.95
//The TObject parameter can be a TGraphErrors, a TGraph2DErrors or a TH1,2,3.
//For Graphs, confidence intervals are computed for each point,
//the value of the graph at that point is set to the function value at that
//point, and the graph y-errors (or z-errors) are set to the value of
//the confidence interval at that point.
//For Histograms, confidence intervals are computed for each bin center
//The bin content of this bin is then set to the function value at the bin
//center, and the bin error is set to the confidence interval value.
//NOTE: confidence intervals are approximate for nonlinear models!
//
//Allowed combinations:
//Fitted object               Passed object
//TGraph                      TGraphErrors, TH1
//TGraphErrors, AsymmErrors   TGraphErrors, TH1
//TH1                         TGraphErrors, TH1
//TGraph2D                    TGraph2DErrors, TH2
//TGraph2DErrors              TGraph2DErrors, TH2
//TH2                         TGraph2DErrors, TH2
//TH3                         TH3

Revision 11022 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Feb 2 18:24:28 2005 UTC (9 years, 11 months ago) by brun
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2292 byte(s)
Diff to previous 8048
Fix a typo in GetZ. (was returning fEy instead of fEZ)

Revision 8048 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jan 27 13:28:23 2004 UTC (10 years, 11 months ago) by brun
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2292 byte(s)
Diff to previous 7998
Cleanup of many files havind trailing CR/LF

Restrustruring of TGraph2D::GetContourList with the algorithm in histpainter (by Olivier)

Revision 7998 - (view) (download) (as text) (annotate) - [select for diffs]
Added Fri Jan 23 23:30:31 2004 UTC (11 years ago) by brun
Original Path: trunk/hist/inc/TGraph2DErrors.h
File length: 2347 byte(s)
From Olivier:
TGraph2D is now split into 3 classes:

- TGraph2D (now in hist) to handle the basic graph 2d data
- TGraphDelaunay (in hist) to generate a Delaunay triangulation of a TGraph2D.
- TGraphPainter (in histpainter) to paint a TGraphDelaunay (used via
  THistPainter)
- New function GetContourList in TGraph2D
- New option CONT5: draws a TGraph2D as a contour (using Delaunay
  triangles).
- New TGraph2D constructor (from a TH2).

The class TSpectrum2 has been removed (still waiting for fixes from Miroslav)

NOTE: it is recommended to make distclean  make
or at least
 rm hist/src/G*  graph/src/G*

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9