Skip to content
Snippets Groups Projects
  1. Feb 07, 2004
  2. Jan 23, 2004
    • Rene Brun's avatar
      From Olivier: · ed318182
      Rene Brun authored
      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*
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7998 27541ba8-7e3a-0410-8455-c3a389f83636
      ed318182
  3. Jan 16, 2004
  4. Jan 12, 2004
  5. Jan 08, 2004
  6. Jan 06, 2004
  7. Dec 15, 2003
  8. Dec 13, 2003
  9. Dec 12, 2003
  10. Dec 08, 2003
  11. Dec 05, 2003
    • Rene Brun's avatar
      From Olivier: · 113d8010
      Rene Brun authored
      - New plotting options:
         "TRI1" : The Delaunay triangles are painted with color levels. The
                  edges of each triangles are painted with the current line
                  color.
         "TRI2" : the Delaunay triangles are painted with color levels.
      - New method: PaintPolyMarker0. Used in PaintTriangles.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7699 27541ba8-7e3a-0410-8455-c3a389f83636
      113d8010
  12. Nov 27, 2003
    • Rene Brun's avatar
      · 573f2152
      Rene Brun authored
      From Damir and Olivier:
      
      Correct a few remaining problems for time axis. Now, the time stored in
      the format is always expressed in UTC. The local time is calculated
      only at display time if the "gmt" option of SetTimeOffset is not used.
      This allows to send a plot to someone in another time zone without
      discrepancies on the time displayed.
      If the plot uses "gmt", it will always show the same, whatever time
      zone. If not, the time displayed will be the one local to the
      displaying machine.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7668 27541ba8-7e3a-0410-8455-c3a389f83636
      573f2152
    • Rene Brun's avatar
      set Class version to 1 instead of 3 · a1014866
      Rene Brun authored
      git-svn-id: http://root.cern.ch/svn/root/trunk@7665 27541ba8-7e3a-0410-8455-c3a389f83636
      a1014866
  13. Nov 26, 2003
    • Rene Brun's avatar
      From Olivier: · db3b810a
      Rene Brun authored
      New class TGraph2DErrors, deriving from TGraph2D and implementing
      errors in x,y and z.
      An example of this class is given in the new tutorial graph2derrorsfit.C
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7661 27541ba8-7e3a-0410-8455-c3a389f83636
      db3b810a
    • Rene Brun's avatar
      From Olivier · 569272d4
      Rene Brun authored
      - Paint the grid levels on the triangles along the Z axis
      - Option P  : draw a marker at each vertex
      - Option P0 : draw a circle at each vertex. Each circle background is
        white
      - Mods in Fit (needed by TGraph2DErrors)
      - New virtual methods to get the errors (needed by TGraph2DErrors)
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7659 27541ba8-7e3a-0410-8455-c3a389f83636
      569272d4
  14. Nov 25, 2003
    • Rene Brun's avatar
      From Olivier: · 5c5cc063
      Rene Brun authored
      Implement suggestion from Damir Buskulic:
      
      - Take into account the decimal part of the time offset.
      - New parameter "option" in SetTimeOffset. Default value is "local"
        meaning the time offset should be consider as a local time. It can
        be set to "gmt" meaning the time offset should be consider as GMT time.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7654 27541ba8-7e3a-0410-8455-c3a389f83636
      5c5cc063
    • Rene Brun's avatar
      From Damir Buskulic. · 038a1812
      Rene Brun authored
      Fix a problem in the axis time management when the time offset
      has a crazy value.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7645 27541ba8-7e3a-0410-8455-c3a389f83636
      038a1812
  15. Nov 24, 2003
  16. Nov 23, 2003
  17. Nov 22, 2003
  18. Nov 21, 2003
  19. Nov 20, 2003
    • Rene Brun's avatar
      From Olivier: · adcc33c6
      Rene Brun authored
      - Delaunay triangles are stored in dynamic arrays. In the previous
        versions the maximum number of triangles was 1000. There is no hard
        coded limit now.
      - More documentation (Definition of Delaunay triangulation)
      - New constructors from floats and ints arrays.
      - New constructor with name and title (from doubles arrays only)
      - Copy constructor
      - Operator "="
      - Do not store fHistogram in the current directory
      - TGraph2D objects are stored in the current directory
      - Do not try to perform a triangulation if it is not needed. For
        instance when the graph is drawn with markers only.
      - New method SetDirectory
      - New method SetName
      - New method SetMaxTries: Defines the number of triangles tested for a
        Delaunay's triangle before abandoning the search
      - Method TriEncode removed
      - Custom Streamer implemented (setting fDirectory in input)
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7621 27541ba8-7e3a-0410-8455-c3a389f83636
      adcc33c6
  20. Nov 17, 2003
  21. Nov 13, 2003
    • Rene Brun's avatar
      From Olivier: · b23576e9
      Rene Brun authored
      TGraph2D:
       - New method FindAllTriangles (it finds all the Delaunay's triangles).
       - PaintTriangles handles the paint option TRI, W, and P.
       - fNpoints is initialized on the ctors declaration line.
       - The triangles painting takes care of log options and of the min and
         max values.
       - PaintTriangles uses the new THistPainter's method PaintAxis3D to paint
         the 3D axis.
      
      THistPainter:
       - Option "axis" works on 2D histograms.
       - New method PaintAxis3D to paint the 3D axis.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7589 27541ba8-7e3a-0410-8455-c3a389f83636
      b23576e9
  22. Nov 05, 2003
    • Rene Brun's avatar
      From Olivier: · 9d206bae
      Rene Brun authored
      In Graph2D:
      
      - A more complete example (fitting)
      - Constructor from a file name
      - New method Interpolate
      - New method FindObject
      - Fitting
      - New method GetHistogram.
      - New method RemovePoint
      - New methods SetMaximum and SetMinimum
      - plus many improvements ...
      
      In TFitter:
      
      - Necessary changes to support Graph2D fitting
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@7525 27541ba8-7e3a-0410-8455-c3a389f83636
      9d206bae
  23. Nov 02, 2003
  24. Oct 30, 2003
  25. Oct 29, 2003
  26. Oct 28, 2003
  27. Oct 23, 2003
  28. Oct 20, 2003
  29. Oct 09, 2003
  30. Oct 07, 2003
  31. Sep 30, 2003
  32. Sep 29, 2003
Loading