https://github.com/lmoneta/root

sort by:
Revision Author Date Message Commit Date
c6326bb This commit was manufactured by cvs2svn to create tag 'v5-14-00f'. git-svn-id: http://root.cern.ch/svn/root/tags/v5-14-00f@18915 27541ba8-7e3a-0410-8455-c3a389f83636 30 May 2007, 11:18:20 UTC
2cc7087 dependency on UNURANLIBDEP was missing causing failure of parallel build with explicit linking. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18914 27541ba8-7e3a-0410-8455-c3a389f83636 30 May 2007, 11:18:19 UTC
27cfa91 for architecture "linux" add explicitly the "-m32" option, so that ACliC works in compatibility mode when a 32 bit binary is run on a X86_64 machine. Note this does not allow cross-compilation of ROOT in 32 bit mode on a 64 bit machine as most likely the 32 bit dev libs are missing. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18913 27541ba8-7e3a-0410-8455-c3a389f83636 30 May 2007, 11:09:39 UTC
54adcc0 make version 5-14-00f. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18902 27541ba8-7e3a-0410-8455-c3a389f83636 29 May 2007, 15:23:17 UTC
c314c3f From Gerri: the Globus authentication plugin now links statically all Globus libs to prevent Globus libs (libssl and libcrypto) to be used by other ROOT plugins. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18901 27541ba8-7e3a-0410-8455-c3a389f83636 29 May 2007, 15:18:03 UTC
1364aec fStatCached was not properly initialized in the main ctor. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18864 27541ba8-7e3a-0410-8455-c3a389f83636 23 May 2007, 13:23:15 UTC
a6f0e77 Properly handle the case where the return value of a member function is an STL collection git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18797 27541ba8-7e3a-0410-8455-c3a389f83636 15 May 2007, 20:12:08 UTC
018e32d In the TBrowser, when drilling through a TTree and clicking on a member function that returns an object, we now also list the data members git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18796 27541ba8-7e3a-0410-8455-c3a389f83636 15 May 2007, 20:11:48 UTC
5b2e33e add protection in error handlers against TROOT not yet being initialized. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18710 27541ba8-7e3a-0410-8455-c3a389f83636 09 May 2007, 11:09:44 UTC
65dcc15 Improve re-entrance of G__process_cmd git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18649 27541ba8-7e3a-0410-8455-c3a389f83636 03 May 2007, 17:51:38 UTC
ba24d84 From Paul: Fix for crash on array initialization reported by Nick West. This was a programming error which would not ordinarily have caused a problem, but it interacted badly with a compiler bug in gcc 3.2.3. The programming mistake was initializing a const int& with an array element of type short. Because this is a const reference the compiler should bind the ref to a temporary and copy the array element. The original intent was to bind directly to the array element, but in this case there is no difference in the result since no modifications are ever made through the reference. Unfortunately the gcc 3.2.3 compiler had a bug, and the generated code did not bind the reference correctly. Later versions of the compiler do not have this problem. The code fix is to simply use a const short instead of a const int& for this variable. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18626 27541ba8-7e3a-0410-8455-c3a389f83636 30 April 2007, 15:45:21 UTC
5f283f9 Fix pointer detection for arg passing by value: do not remove "const", but check for "* const" instead Don't recursively strip const when const stripping is requested: don't convert "const int(*const)(const char*) const" into "int(*)(char*)" git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18584 27541ba8-7e3a-0410-8455-c3a389f83636 25 April 2007, 10:46:37 UTC
54acceb Properly init the Env on PushBack (Solve savannah issue 25397) git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18580 27541ba8-7e3a-0410-8455-c3a389f83636 24 April 2007, 20:18:23 UTC
8ea90cc From Ivan Belyaev: const ptrs are ptrs, too - args are passed by value git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18520 27541ba8-7e3a-0410-8455-c3a389f83636 18 April 2007, 16:34:42 UTC
db009f8 From Scott Snyder: R__GenerateTClassForPair makes a TStreamerInfo appropriate for an arbitrary pair<> class. It does this by first fetching the TStreamerInfo for pair<const int, int>, cloning it, and modifying it for the new types. As part of this, it does a Clear() on the element list, then Add's the new elements. However, the Clone() also duplicates the elements, and these duplicated elements are not deleted by the Clear(). (It looks like the ownership bit is not set for fElements in TStreamerInfo.) Changing the Clear() to Delete() fixes it, as in the patch below. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18485 27541ba8-7e3a-0410-8455-c3a389f83636 05 April 2007, 22:31:08 UTC
e87166a From Scott Snyder: TFormulaPrimitive::AddFormula takes as an argument a new'd object; it is supposed to take ownership of the object. However, if a primitive of the same name already exists, the object will be leaked. (There are some duplicates between the list in TFormulaPrimitive::BuildBasicFormulas and TFormulaMathInterface.cxx.) git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18484 27541ba8-7e3a-0410-8455-c3a389f83636 05 April 2007, 22:10:10 UTC
f472d43 Protect against missing ClassInfo (possible in the case of Emulated classes git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18483 27541ba8-7e3a-0410-8455-c3a389f83636 05 April 2007, 21:06:46 UTC
4aa4292 move to version v5-14-00e. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18432 27541ba8-7e3a-0410-8455-c3a389f83636 29 March 2007, 16:04:49 UTC
0f46de2 From Paul: A one-dimensional array of length one was being treated as if it were a scalar. This results in root seeing an incorrect data member name, which makes tree I/O offset calculations fail. The change here is that var->varlabel[varid][1] is now the actual number of array elements (zero for scalars), previously it was offset by one and a result of zero was forced to one which resulted in the degeneracy between a scalar and a one-dimensional array of length one. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18431 27541ba8-7e3a-0410-8455-c3a389f83636 29 March 2007, 14:26:18 UTC
619d3fe Move the dependency of hadd on libTreePlayer from link time to runtime git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18430 27541ba8-7e3a-0410-8455-c3a389f83636 29 March 2007, 14:13:12 UTC
45c379f Link hadd against libTreePlayer to allow support for TTree with a build index until hadd can use the autoloader git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18427 27541ba8-7e3a-0410-8455-c3a389f83636 29 March 2007, 12:52:53 UTC
f21860d -Increase G__MAXSTRUCT and G__MAXTYPEDEF to 24000. This has no visible effect on the memory used by CINT. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18424 27541ba8-7e3a-0410-8455-c3a389f83636 29 March 2007, 08:47:35 UTC
ddc1083 From Pere: Correct the issue https://savannah.cern.ch/bugs/?25077 Fix a bad declaration of the scope of vector<LinkManager::Link*>::iterator as a namespace when declaring a typedef of LinkManager class. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18413 27541ba8-7e3a-0410-8455-c3a389f83636 28 March 2007, 10:41:34 UTC
521ea6d Remove memory leak in the case where the buffer is not compressible (rare) git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18410 27541ba8-7e3a-0410-8455-c3a389f83636 28 March 2007, 09:48:37 UTC
efddf5b From Axel: filter out MAINLIBS from the list of dependencies passed to the linker. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18286 27541ba8-7e3a-0410-8455-c3a389f83636 16 March 2007, 10:19:40 UTC
e2c5b29 From Wim: fix return by reference of integers (see also: https://savannah.cern.ch/bugs/?24549) git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18276 27541ba8-7e3a-0410-8455-c3a389f83636 15 March 2007, 08:51:22 UTC
8a67f3e change $^ to $< to avoid MAINLIBS to be included too. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18274 27541ba8-7e3a-0410-8455-c3a389f83636 15 March 2007, 00:04:44 UTC
e6b6a6b fix parallel make in case of explicit link. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18268 27541ba8-7e3a-0410-8455-c3a389f83636 14 March 2007, 17:53:01 UTC
e124f7d make TObjArray::operator[] out-of-line (back port from the head). This also works around a compiler problem on MacOS X (tcollex failed to link with operator[]). git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18243 27541ba8-7e3a-0410-8455-c3a389f83636 12 March 2007, 14:31:56 UTC
446badf backport support for the Intel icc v10 compiler. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18241 27541ba8-7e3a-0410-8455-c3a389f83636 12 March 2007, 14:11:09 UTC
92234f9 From Wim: restore void*& function argument converter. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18225 27541ba8-7e3a-0410-8455-c3a389f83636 10 March 2007, 08:36:55 UTC
aa75cd7 From Gerri: backport from head fixing the following issues: 1. Disabling of 'chdir($HOME)' in 'rootd' when running in Castor mode; this is because $HOME may point to a directory not available on the servers. 2. A few optimizations in the Globus authentication: 1. remove strong dependence on the user certificate on the client machine (all the information is retrieved from the proxy, if existing; if not, the certificate is looked for) 2. one-time initialization of the server credentials 3. separate root path for libs and incs; needed because some installations, e.g. lcg/external, are non standard. 4. A number fixes of the coding conventions (lower case for local variables) and of code simplifications 3. Fixes in TCastorFile, TRFIOFile, TAuthenticate already in head; the possibility to change the authentication mode on the fly is relevant here. 4. A couple of bug fixes in rpdutils.cxx found by testing these changes git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18219 27541ba8-7e3a-0410-8455-c3a389f83636 09 March 2007, 13:37:37 UTC
5a56713 fix crash when closing FitEditorPanel. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18218 27541ba8-7e3a-0410-8455-c3a389f83636 09 March 2007, 13:21:59 UTC
8e18f38 Make version v5-14-00d. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18216 27541ba8-7e3a-0410-8455-c3a389f83636 09 March 2007, 09:54:09 UTC
18f4321 backport of issue 24100. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18215 27541ba8-7e3a-0410-8455-c3a389f83636 09 March 2007, 09:49:45 UTC
9e40f98 From Wim and Axel: backport of fix for issue 23388, handling of temporariesby PyROOT/CINT of classes with new/delete operators. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18180 27541ba8-7e3a-0410-8455-c3a389f83636 07 March 2007, 11:20:53 UTC
7c5f0c2 From Wim: backport from head of fix for issue 24080. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18178 27541ba8-7e3a-0410-8455-c3a389f83636 07 March 2007, 10:29:46 UTC
9f7b58a From Pere: Making Cintex more robust on dictionary autoload order (fixes issue 24450). git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18175 27541ba8-7e3a-0410-8455-c3a389f83636 07 March 2007, 09:33:38 UTC
7dfb44f Fix a bug in the += and -= operators for symmetric matrices when using an expressions, like in operations A += B+C. The operation was performed both for the upper and lower diagonal elements, resulting then in applying the expression two times. A corresponding test has been added in testSMatrix.cxx Thanks to Wouter Hulsbergen (LHCb for finding this bug) Add fixes also in LinkDef (committed after 5.15.02) to prevent possible problem in the dictionary generation git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18170 27541ba8-7e3a-0410-8455-c3a389f83636 06 March 2007, 14:28:07 UTC
e6a2c61 fix building with gfortran. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18162 27541ba8-7e3a-0410-8455-c3a389f83636 05 March 2007, 15:35:31 UTC
9cf071a LoadLibraryMap(): maintain directory order as specified in the LD_LIBRARY_PATH. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18161 27541ba8-7e3a-0410-8455-c3a389f83636 05 March 2007, 15:35:07 UTC
1f6eacf don't issue a warning in case of duplicate resources where the resource and value are exactly the same. Fixes bug 24157. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18153 27541ba8-7e3a-0410-8455-c3a389f83636 05 March 2007, 10:42:24 UTC
8cd7a60 Fix { positorion preventing compilation git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18032 27541ba8-7e3a-0410-8455-c3a389f83636 20 February 2007, 14:38:41 UTC
4b6837d Add code to allow the schema evolution from a container of double to the _same_ container of Double32_t and vice et versa. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@18025 27541ba8-7e3a-0410-8455-c3a389f83636 19 February 2007, 19:26:18 UTC
3aafebb In ShowMember, std::string no longer need a special case. This fix enable I/O for C-style array of strings git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17952 27541ba8-7e3a-0410-8455-c3a389f83636 13 February 2007, 22:56:04 UTC
7e7bd8c From Scott Snyder: fixing memory leak when calculating class offsets with instance git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17938 27541ba8-7e3a-0410-8455-c3a389f83636 13 February 2007, 15:11:09 UTC
381b382 make patch version v5-14-00c. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17912 27541ba8-7e3a-0410-8455-c3a389f83636 12 February 2007, 17:49:47 UTC
03fb4d9 From Scott Snyder: Fix for a problem reported by ATLAS at http://savannah.cern.ch/bugs/?23567 git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17843 27541ba8-7e3a-0410-8455-c3a389f83636 10 February 2007, 03:31:27 UTC
824913b From Scott Snyder: fix concerning tyepdef'd return values to fundamental types. In this case the stub function shall also allocate a static and return it's address. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17814 27541ba8-7e3a-0410-8455-c3a389f83636 09 February 2007, 09:40:51 UTC
2cf5320 From Pere: Fix for problem reported at https://savannah.cern.ch/bugs/?23428. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17636 27541ba8-7e3a-0410-8455-c3a389f83636 02 February 2007, 09:09:53 UTC
c56bcb4 remove gdml and unuran from static build. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17559 27541ba8-7e3a-0410-8455-c3a389f83636 29 January 2007, 11:43:56 UTC
11ed716 the .gif icons were not copied to the icons directory when installing with prefix. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17488 27541ba8-7e3a-0410-8455-c3a389f83636 24 January 2007, 15:34:47 UTC
e18cf65 Make patch release v5-14-00b. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17370 27541ba8-7e3a-0410-8455-c3a389f83636 17 January 2007, 11:51:54 UTC
e591c05 Forgot to link against libXrdSys.a which caused: dyld: Symbol not found: __Z10Swap_n2hlly on MacOS X Intel (issue 22597). git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17369 27541ba8-7e3a-0410-8455-c3a389f83636 17 January 2007, 11:40:34 UTC
73017de avoid reading ./.rootrc twice in case the workingdirectory is ~. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17363 27541ba8-7e3a-0410-8455-c3a389f83636 16 January 2007, 14:41:49 UTC
fa155cc Fix problem with MacroPath and DynamicPath expansion in case the paths are extended via ~/.rootrc and/or ./.rootrc files. Fixes issue 22954. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17362 27541ba8-7e3a-0410-8455-c3a389f83636 16 January 2007, 14:40:27 UTC
c27851e Better sorting of classes needed for propagation to CINT. A simple sort is not enough. We need to make sure that e.g. template parameters are propagated before. Otherwise CINT cannot cope with the classes defined afterwards. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17333 27541ba8-7e3a-0410-8455-c3a389f83636 15 January 2007, 14:31:45 UTC
cd13a76 From Pere: Backport of fix for http://savannah.cern.ch/bugs/?22866. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17321 27541ba8-7e3a-0410-8455-c3a389f83636 15 January 2007, 11:23:43 UTC
c5ed004 make sure the right source gets exported for the patch releases. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17293 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 18:56:40 UTC
f614957 Make patch release version v5-14-00a. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17291 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 18:50:06 UTC
0a4445e Month was off by one. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17290 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 18:27:09 UTC
979fd52 In TChainIndex::DeleteIndices prevent a double delete. This fix the bug report http://savannah.cern.ch/bugs/?22722. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17289 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 18:26:47 UTC
0c870cd Backport from head: move in G__bstore() function, test to long double before that of double. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17288 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 18:26:02 UTC
2aa1500 From Sergey Skononov: This bug is connected with fixing bug #22317 which I submitted previously. Unfortunately, I got it only after release 5.14 was published. Due to the fix in THistPainter::PaintBarH the PaintAxis call was moved to the very end of the routine. But, actually, it should come before the X and Y axis pointers being permuted back. As I checked, now it looks like X axis attributes have effect on the Y axis and vice versa. Back-port from head. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17287 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 18:13:51 UTC
6608ad8 fix error unit test on linux git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17277 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 11:02:00 UTC
ddc3dd5 fix bug #22339, genmap not finding input file going back to a simpler implementation of error reporting. Only dl* function errors need to reported for this class git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17276 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 10:55:35 UTC
6c55643 From Pere: - for the ordering patch, remove dependency on python 2.4 git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17275 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 10:04:32 UTC
7f53d8b From Pere: - ordering of dictionary classes needed for a proper conversion to CINT - remove warning on windows git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17273 27541ba8-7e3a-0410-8455-c3a389f83636 10 January 2007, 09:31:33 UTC
bbcd879 backport of fix for https://savannah.cern.ch/bugs/?22599. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17264 27541ba8-7e3a-0410-8455-c3a389f83636 09 January 2007, 10:36:15 UTC
93a5146 avoid division by zero in entry number estimation git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17261 27541ba8-7e3a-0410-8455-c3a389f83636 08 January 2007, 19:03:39 UTC
be21234 From Pere: Performance improvement for the PluginSvc git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17259 27541ba8-7e3a-0410-8455-c3a389f83636 08 January 2007, 10:56:41 UTC
4cd4297 From Markus/Pere: A problem has been detected by Ioannis running the POOL regression tests with the latest ROOT production release. The problem shows up in a rather complex model (CMS inspired I think) involving a vector of pairs containing objects embedding pool::Refs in split mode. The wrong offset is calculated for the pool::Ref producing a core dump when doing a dynamic_cast. The origin of the problem is the fix made for a bug detected by CMS when classes with reflex dictionaries contained embedded objects described only with CINT dictionaries. Markus has debugged the problem and the fix is attached to this report. It is important to produce a patch version of ROOT 5.14 with this fix. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17238 27541ba8-7e3a-0410-8455-c3a389f83636 20 December 2006, 20:09:31 UTC
6ac683f This commit was manufactured by cvs2svn to create branch 'v5-14-00-patches'. git-svn-id: http://root.cern.ch/svn/root/branches/v5-14-00-patches@17228 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 18:05:19 UTC
5dcd584 From Pere: Fix a problem with Cintex affecting the LHCb test suite git-svn-id: http://root.cern.ch/svn/root/trunk@17227 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 18:05:18 UTC
08a05e0 Stamp PRO version 5.14/00 (first attempt) git-svn-id: http://root.cern.ch/svn/root/trunk@17226 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 15:34:51 UTC
e507a79 remove DOS line endings. git-svn-id: http://root.cern.ch/svn/root/trunk@17225 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 13:21:25 UTC
a5c3d61 and remove DOS line endings. git-svn-id: http://root.cern.ch/svn/root/trunk@17224 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 13:19:54 UTC
fd2b7f3 For Solaris 10 CC5 we need to test also for __SUNPRO_CC (__SUNPRO_C is not defined anymore). This fixed vararg support in CINT. git-svn-id: http://root.cern.ch/svn/root/trunk@17223 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 13:17:42 UTC
290d249 - Remove Hoption. I was not needed. It created a problem when ROOT was made in static mode. git-svn-id: http://root.cern.ch/svn/root/trunk@17222 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 08:37:33 UTC
b839bbf remove unused PROOFLIBS symbol. git-svn-id: http://root.cern.ch/svn/root/trunk@17221 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 00:11:57 UTC
33c165d Restore Reset() for backward compatibility. git-svn-id: http://root.cern.ch/svn/root/trunk@17220 27541ba8-7e3a-0410-8455-c3a389f83636 14 December 2006, 00:03:45 UTC
72e7f68 From Valeri Fine: �Replace the C �printf� subroutines with the ROOT method �Printf� git-svn-id: http://root.cern.ch/svn/root/trunk@17219 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 21:28:14 UTC
60d5b8a rlibmap was not installed when doing "make install". git-svn-id: http://root.cern.ch/svn/root/trunk@17218 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 18:56:40 UTC
624ea02 Add file for Solaris gcc 3. git-svn-id: http://root.cern.ch/svn/root/trunk@17214 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 18:08:11 UTC
cb5cecd fix fatal compile error on Solaris 10 i386 gcc 3. git-svn-id: http://root.cern.ch/svn/root/trunk@17213 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 18:06:34 UTC
b838072 Implement a suggestion from Sebastien Greder in TSelectorList::CheckDuplicateName When an object is already in the list, print a meaningful message including the name of the object already in the list. cVS: ---------------------------------------------------------------------- git-svn-id: http://root.cern.ch/svn/root/trunk@17212 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 17:48:06 UTC
ff146ea explicitely link libCint7 against libReflex; fix link line for explicit linking git-svn-id: http://root.cern.ch/svn/root/trunk@17211 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 16:44:34 UTC
8bf9986 Fix a problem with the name of f2clone git-svn-id: http://root.cern.ch/svn/root/trunk@17210 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 14:44:07 UTC
9bc9bff Added new methods: void SetParameter(const char *par, const char *value); void SetParameter(const char *par, Long_t value); void SetParameter(const char *par, Long64_t value); void SetParameter(const char *par, Double_t value); TObject *GetParameter(const char *par) const; void DeleteParameters(const char *wildcard); void ShowParameters(const char *wildcard = "PROOF_*") const; they allow the easy setting and inspection of the special PROOF control parameters (and other input parameters) like PROOF_MaxSlaverPerNode, etc., instead of: proof->AddInput(new TParameter<Long_t>("PROOF_MaxSlavesPerNode", 2)); we can now do: proof->SetParameter("PROOF_MaxSlavesPerNode", 2); git-svn-id: http://root.cern.ch/svn/root/trunk@17209 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 11:21:55 UTC
8dc3dd5 From Timur: Small fix for user interaction in 16 bit mode. git-svn-id: http://root.cern.ch/svn/root/trunk@17208 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 09:33:29 UTC
482b7d8 Fix coding conventions git-svn-id: http://root.cern.ch/svn/root/trunk@17207 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 08:24:09 UTC
94bc0b8 From Valeri Fine; "An extra protection against an erroneous "Gui.Prompt" value" the use case was reported via http://root.cern.ch/phpBB2/viewtopic.php?p=17124#17124 ) git-svn-id: http://root.cern.ch/svn/root/trunk@17206 27541ba8-7e3a-0410-8455-c3a389f83636 13 December 2006, 08:16:07 UTC
c2c2a16 The test with postscript was failing because of the recent changes with clipping. git-svn-id: http://root.cern.ch/svn/root/trunk@17205 27541ba8-7e3a-0410-8455-c3a389f83636 12 December 2006, 22:28:50 UTC
61e9e0f Fix a crash in stressGraphics following the change in the tutorials directory git-svn-id: http://root.cern.ch/svn/root/trunk@17204 27541ba8-7e3a-0410-8455-c3a389f83636 12 December 2006, 22:25:46 UTC
db685c8 Fix for Mac OS X 10.3 (hopefully as I've no 10.3 to test it on). git-svn-id: http://root.cern.ch/svn/root/trunk@17203 27541ba8-7e3a-0410-8455-c3a389f83636 12 December 2006, 21:44:58 UTC
be740f5 From Peter van Gemmeren: fix memory leaks discovered by running valgrind on the ATLAS I/O framework. git-svn-id: http://root.cern.ch/svn/root/trunk@17202 27541ba8-7e3a-0410-8455-c3a389f83636 12 December 2006, 21:38:16 UTC
41f7c86 To properly reset the branch address we now need to call ResetAddress instead of SetAddress, so let's change TBranchElement::Notify as it shoud have been when we updated SetAddress git-svn-id: http://root.cern.ch/svn/root/trunk@17201 27541ba8-7e3a-0410-8455-c3a389f83636 12 December 2006, 21:30:08 UTC
b0897b8 From Bertrand: fix potential memory leak. git-svn-id: http://root.cern.ch/svn/root/trunk@17200 27541ba8-7e3a-0410-8455-c3a389f83636 12 December 2006, 21:29:46 UTC
5a5ef70 From Gerri: two important fixes for the CAF and other systems where xrootd runs as root. git-svn-id: http://root.cern.ch/svn/root/trunk@17199 27541ba8-7e3a-0410-8455-c3a389f83636 12 December 2006, 21:28:01 UTC
e71c362 From Valeri Fine: This is to make Qt compiled against of the newest version of the �winnt� git-svn-id: http://root.cern.ch/svn/root/trunk@17198 27541ba8-7e3a-0410-8455-c3a389f83636 12 December 2006, 20:12:47 UTC
back to top