- May 07, 2008
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23710 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23679 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 06, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23658 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 01, 2008
-
-
Gerardo Ganis authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23633 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 28, 2008
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23575 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 24, 2008
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23510 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 23, 2008
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23487 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23486 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23459 27541ba8-7e3a-0410-8455-c3a389f83636
-
Gerardo Ganis authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23453 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23411 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 22, 2008
-
-
Rene Brun authored
Fixes for gcc4.3 git-svn-id: http://root.cern.ch/svn/root/trunk@23380 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 14, 2008
-
-
Fons Rademakers authored
- The implementation of TFile throughput and info sending was just sending 'regular' samples about the activity of the single TFile instance that happened to trigger an activity in the right moment. - Now TMonaLisaWriter keeps internally track of every activity and regularly sends summaries valid for all the files which had activity in the last time interval. - Additionally, it's now finalized the infrastructure able to measure and keep track of the file Open latency. A packet is sent for each successful Open, sending the measures of the latencies for the various phases of the open. Currently exploited fully by TAlienFile and TXNetFile. Easy to report from other TFiles too. - Now, the hook for the Close() func triggers sending of a packet containing various information about the performance related to that file only. - Added support also for performance monitoring when writing git-svn-id: http://root.cern.ch/svn/root/trunk@23209 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 09, 2008
-
-
Fons Rademakers authored
Complete the patch for the locality check (some part got lost at some point). git-svn-id: http://root.cern.ch/svn/root/trunk@23094 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
alien, auth, glite, globusauth, krb5auth, ldap, monalisa, net, netx, rootd, rpdutils, srputils, xrootd git-svn-id: http://root.cern.ch/svn/root/trunk@23091 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 07, 2008
-
-
Fons Rademakers authored
Implement TFileStager::IsStaged using TFile::Open() instead of AccessPathName(). git-svn-id: http://root.cern.ch/svn/root/trunk@23028 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Implement TNetSystem::Unlink(). git-svn-id: http://root.cern.ch/svn/root/trunk@23027 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Use TFileCollection where relevant. git-svn-id: http://root.cern.ch/svn/root/trunk@23026 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 07, 2008
-
-
Fons Rademakers authored
and xrootd. git-svn-id: http://root.cern.ch/svn/root/trunk@22527 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 03, 2008
-
-
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
-
- Feb 26, 2008
-
-
Fons Rademakers authored
This fixes the problem with TFile::Cp() returning a 4 byte difference and failing. git-svn-id: http://root.cern.ch/svn/root/trunk@22334 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 22, 2008
-
-
Fons Rademakers authored
this patch prevents all dictionaries from being rebuild when non dict related changes are made in CINT. When the dictionaries change the new cint/inc/cintdictversion.h must be updated which triggers a dictionary rebuild. For example: touch cint/src/v6_var.cxx && make: rebuild no dictionaries touch cint/inc/cintdictversion.h && make: rebuild all dictionaries touch utils/src/rootcint.cxx && make: rebuild all dictionaries git-svn-id: http://root.cern.ch/svn/root/trunk@21802 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 16, 2008
-
-
Fons Rademakers authored
not the case anymore. git-svn-id: http://root.cern.ch/svn/root/trunk@21736 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 14, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@21676 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 14, 2007
-
-
Fons Rademakers authored
Fixes the problem reported at: http://root.cern.ch/phpBB2/viewtopic.php?t=5917 git-svn-id: http://root.cern.ch/svn/root/trunk@21382 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 12, 2007
-
-
Fons Rademakers authored
a detailed description of the options. Also support for sourced scripts is added, as well as the old behaviour to execute a custom roots script, to for example start in a special mode or special binary. To source a script before starting roots do: .R lxplus <go to execute your own roots like script do: .R lxplus myroots git-svn-id: http://root.cern.ch/svn/root/trunk@21330 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 19, 2007
-
-
Fons Rademakers authored
#ifdef R__HAVE_CONFIG #include "RConfigure.h" #endif Having this conditional caused RConfigure.h to be missing from the .d files and hence these files would not be recompiled after re-configuring using --prefix. git-svn-id: http://root.cern.ch/svn/root/trunk@20411 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 15, 2007
-
-
Fons Rademakers authored
implement suggestion coming from Savannah: 29472. Also some minor bug fixes. git-svn-id: http://root.cern.ch/svn/root/trunk@20351 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 04, 2007
-
-
Fons Rademakers authored
initial svn patch up script. Also add svn:keywords Id to all files not having the property yet. git-svn-id: http://root.cern.ch/svn/root/trunk@20220 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 19, 2007
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19826 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19825 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 11, 2007
-
-
Rene Brun authored
fixes in all index.txt files according to the recent changes of User's Guide PDF names. git-svn-id: http://root.cern.ch/svn/root/trunk@19784 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 31, 2007
-
-
Rene Brun authored
- Added several #ifdef R__WIN32 to use the Win32 syntax %I64d instead of %lld to read Long64_t via sscanf. - Replaced #ifdef WIN32 by #ifdef R__WIN32 git-svn-id: http://root.cern.ch/svn/root/trunk@19747 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 27, 2007
-
-
Fons Rademakers authored
inline variable access does not work on Windows. git-svn-id: http://root.cern.ch/svn/root/trunk@19694 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 02, 2007
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19522 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 30, 2007
-
-
Fons Rademakers authored
This saves a lot of time in not having to open and setup sockets for each request. They gain can be up to 100% or more. git-svn-id: http://root.cern.ch/svn/root/trunk@19486 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 27, 2007
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19475 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 10, 2007
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19306 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 09, 2007
-
-
Fons Rademakers authored
to libNet (like all other abstract SQL interfaces). git-svn-id: http://root.cern.ch/svn/root/trunk@19295 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
1. New virtual method TSQLStatement::SetMaxFieldSize(). It implemented for now only for Oracle and specifies maximum size in bytes, which should be used for field in read/write operation. 2. Improved implementation of TOracleStatement::GetBinary method. Now not only BLOB, but also CLOB, LONG, BFILE, CFILE Oracle datatypes are supported for reading. Fow now BFILE and CFILE not supported for writing. git-svn-id: http://root.cern.ch/svn/root/trunk@19293 27541ba8-7e3a-0410-8455-c3a389f83636
-