- Mar 27, 2012
-
-
Philippe Canal authored
Fix coding convention R.RN7 (Avoid the raw C types 'long', 'unsigned long', 'long double', 'bool', 'long long' and 'unsigned long long'.) git-svn-id: http://root.cern.ch/svn/root/trunk@43515 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@43512 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 20, 2012
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@43417 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 14, 2012
-
-
Fons Rademakers authored
Building ruby against ruby 1.9 (Fedora 17) fails. Firstly, the installation paths to the headers have changed, so the configure script needs to be changed. Secondly, some previously deprecated stuff has been removed, so some lines of code needs to be adjusted. The attached patch addresses the issues. It still compiles with ruby 1.8 on RHEL5 with the patch applied. git-svn-id: http://root.cern.ch/svn/root/trunk@43004 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 13, 2012
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42992 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 09, 2012
-
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42933 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 12, 2012
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42602 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 17, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42104 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 08, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41821 27541ba8-7e3a-0410-8455-c3a389f83636
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41817 27541ba8-7e3a-0410-8455-c3a389f83636
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41804 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 03, 2011
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41770 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 01, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41693 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 28, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41642 27541ba8-7e3a-0410-8455-c3a389f83636
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41641 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 26, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41603 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 25, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41579 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 24, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41559 27541ba8-7e3a-0410-8455-c3a389f83636
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41558 27541ba8-7e3a-0410-8455-c3a389f83636
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41557 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 03, 2011
-
-
Philippe Canal authored
Switch off the Reflex support: it was never finalized and now won't be. White space change in PyROOT.h to force the recompilation now that a CPP macro being passed on the command line is gone (i.e. in this case the .o are 'depending' on the Module.mk) git-svn-id: http://root.cern.ch/svn/root/trunk@41094 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
thread local, i.e. all modifications direct or indirect of gDirectory will not be seen by the other thread. In particular this means that several I/O operations (including TDirectory::Write) are now thread safe (<b>as long as all the required TClass and TStreamerInfo has been previously setup</b>). This model does <b>not</b> support sharing TFile amongst threads (i.e. a TFile must be accessed from exactly <b>one</b> thread). This means that whenever a TFile's control is <i>passed</i> from a thread to another, the code must explicitly reset gDirectory to another value or there is a risk for this gDirectory to point to a stale pointer if the other thread deletes the TFile object. A TFile deletion will only affect the value of the local gDirectory. Note: gFile now always returns the file of the current directory or zero if the current directory is not a TDirectoryFile. In particular this means that gFile itself is now read-only and can not be modified directly. The global values gDirectory and gFile are now all accessed via a static function of their respective class. The access is made transparent via a CPP macro. gPad, gVirtualX and gInterpreter are now accessible even when their value is zero and they now properly support tab completion. (and the same technique is used for gDirectory and gPad). git-svn-id: http://root.cern.ch/svn/root/trunk@41092 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 28, 2011
-
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@41045 27541ba8-7e3a-0410-8455-c3a389f83636
-
Axel Naumann authored
Fix error message at line 913 (Coverity: null deref) git-svn-id: http://root.cern.ch/svn/root/trunk@41044 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 23, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@40992 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 31, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@40784 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 29, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@40403 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 25, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@40358 27541ba8-7e3a-0410-8455-c3a389f83636
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@40357 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 15, 2011
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39756 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 27, 2011
-
-
Fons Rademakers authored
Introduce alternative cmake based build system. Cmake is especially convenient for building on Windows, as it can produce VC projects or nmake files and does not require cygwin to be installed. In addition on OSX Xcode projects can be generated. git-svn-id: http://root.cern.ch/svn/root/trunk@39463 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 23, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39349 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 09, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39150 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 06, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39143 27541ba8-7e3a-0410-8455-c3a389f83636
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39142 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 04, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39104 27541ba8-7e3a-0410-8455-c3a389f83636
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39103 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Fix "unresolved external symbol _G__null" on Windows. git-svn-id: http://root.cern.ch/svn/root/trunk@39097 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 03, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@39082 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 20, 2011
-
-
Wim Lavrijsen authored
git-svn-id: http://root.cern.ch/svn/root/trunk@38982 27541ba8-7e3a-0410-8455-c3a389f83636
-