Skip to content
Snippets Groups Projects
  1. Apr 24, 2008
  2. Apr 20, 2008
  3. Apr 17, 2008
  4. Apr 16, 2008
  5. Apr 11, 2008
  6. Mar 07, 2008
  7. Mar 03, 2008
    • Fons Rademakers's avatar
      From Andrew Savchenko: · f304eff5
      Fons Rademakers authored
      ROOT can not be compiled with gcc-4.3.
      Some ROOT source files doesn't contain required #include directives,
      for example, they use strlen(), but #include <string.h> is missed or
      malloc() is used and #include <stdlib.h> is missed. 
      
      Earlier versions of gcc allowed some headers to be included implicitly,
      but issued a warning (-Wimplicit-function-declaration). Newer one,
      gcc-4.3 denies such silly behaviour: all required headers must be explicitly
      included. 
      
      Attached patch fixes this. Also it fixes another issue, which disallows
      ROOT to compile under gcc-4.3: C functions don't belong to namespace std,
      so expressions like std::memcpy() are no longer valid and plain memcpy()
      should be used instead.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@22419 27541ba8-7e3a-0410-8455-c3a389f83636
      f304eff5
  8. Feb 28, 2008
  9. Feb 01, 2008
  10. Jan 13, 2008
    • Rene Brun's avatar
      From Gerri: · 6b22a63c
      Rene Brun authored
         - improved description for the usage of PROOF_INITCMD
         - improve notification when when using dynamic environment settings
         fixes: issue on the PROOF forum (21 Dec 2007: 'change environment variables in proof')
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@21667 27541ba8-7e3a-0410-8455-c3a389f83636
      6b22a63c
  11. Nov 28, 2007
  12. Nov 22, 2007
    • Rene Brun's avatar
      Add support for "average/efficiency" histograms in TH1::Add · ce07f185
      Rene Brun authored
      // SPECIAL CASE (Average/Efficiency histograms)
      // For histograms representing averages or efficiencies, one should compute the average
      // of the two histograms and not the sum. One can mark a histogram to be an average
      // histogram by setting its bit kIsAverage with
      //    myhist.SetBit(TH1::kIsAverage);
      // Note that the two histograms must have their kIsAverage bit set
      
      When the utility hadd is used, histograms with teh kIsAverage bit set are averaged and not summed.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@20977 27541ba8-7e3a-0410-8455-c3a389f83636
      ce07f185
  13. Nov 20, 2007
  14. Nov 07, 2007
  15. Nov 01, 2007
  16. Oct 19, 2007
  17. Oct 17, 2007
  18. Oct 04, 2007
  19. Sep 19, 2007
  20. Jul 25, 2007
  21. Jun 12, 2007
  22. Jun 08, 2007
  23. May 15, 2007
    • Fons Rademakers's avatar
      several fixes in the ssh tunnnel command: · fac74ecd
      Fons Rademakers authored
      - force IPv4 addresssing, on Mac OS X IPv6 is default.
      - ssh commmand to execute is now:
         "$SHELL -l -c 'roots ... '"
        this uses the users default shell on the remote machine
        and forces the sourcing of the login script, e.g. .bash_profile
        before executing roots. Hence if the user does correctly setup
        ROOTSYS and PATH in the login script roots will be found.
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@18793 27541ba8-7e3a-0410-8455-c3a389f83636
      fac74ecd
  24. May 14, 2007
  25. May 10, 2007
  26. Apr 04, 2007
  27. Mar 29, 2007
  28. Mar 17, 2007
  29. Feb 19, 2007
  30. Feb 18, 2007
  31. Feb 15, 2007
  32. Feb 09, 2007
Loading