- Nov 26, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@21042 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 25, 2007
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@21034 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@21033 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 16, 2007
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@20374 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 29, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19719 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 16, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19627 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 06, 2007
-
-
Fons Rademakers authored
import the FTGL package provided by Henry Maddocks to allow TTF font display in OpenGL. git-svn-id: http://root.cern.ch/svn/root/trunk@18965 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
A Postgres implementation of TSQLStatement. The purpose and intent of TSQLStatement is documented at http://root.cern.ch/root/html/TSQLStatement.html The following commentary corresponds item by item to the above url: 1) Creation of statement Prepared statements were not explicitly supported in PostGreSQL API libpq until server version 8.2.3 released 12/2006. This implementation checks if prepared statements are supported at compile time and 'stubs' out TPgSQLStatement if necessary. 2) Insert data into data base MySQL and ODBC both use the following idiom for insert placeholders: TSQLStatement* stmt = serv->Statement("INSERT INTO TESTTABLE (ID1,\ ID2, FFIELD ) VALUES (?, ?, ? )", 100); Unfortunately for code portability, Oracle implements the same statement like so: TSQLStatement* stmt = serv->Statement("INSERT INTO TESTTABLE (ID1,\ ID2, FFIELD ) VALUES (:1,:2,:3 )", 100); Even more unfortunately, postgres chose to do it this way: TSQLStatement* stmt = serv->Statement("INSERT INTO TESTTABLE (ID1,\ ID2, FFIELD ) VALUES ($1, $2, $3 )", 100); 3) Getting data from database Libpq API supports sending/retrieving data as choice of string types or native types from server. Unfortunately, some native types are poorly documented, for example date and time native representation varies depending on compiler options given when server was built. Dates can be either 64 bit ints or double precision floating point, representing (+/-)microseconds since epoch (which was chosen to be 2001-01-01 00:00:01) Native format values come as big-endian values meaning they need to be swapped on linux but not on solaris, and the various time manipulation functions the server uses are not exposed in the libpq API. I elected to use the 'string' format for this first implementation, if the API changes to make dealing with dates and times in native format more palatable I may re-write this class in hopes of making it faster. 4. Working with date/time parameters Fully supported, see item 3 5. Binary data Fully supported, see attached test program. Note that postgres calls these columns 'bytea' type instead of 'blob' type. git-svn-id: http://root.cern.ch/svn/root/trunk@18959 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 29, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@18893 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 16, 2007
-
-
Rene Brun authored
Add Diego Marcos Segura for his contribution to teh CINT wrappers enhancements.CVS: ---------------------------------------------------------------------- git-svn-id: http://root.cern.ch/svn/root/trunk@18806 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 03, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@18639 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 25, 2007
-
-
Rene Brun authored
N: Daniel Barna E: daniel.barna@cern.ch D: CINT install target N: Andr�� Felipe E: (felipe.andre@gmail.com) D: CINT contributions git-svn-id: http://root.cern.ch/svn/root/trunk@18588 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 19, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@18333 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 16, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@18306 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@18285 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@18283 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 10, 2007
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@17272 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 02, 2006
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@17034 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 01, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@17031 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 17, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@16800 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 20, 2006
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@16582 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 09, 2006
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@16487 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 22, 2006
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@16312 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 20, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@16303 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 24, 2006
-
-
Fons Rademakers authored
- configure: new option --fail-on-missing, when this is set configure will fail if the files for a requested plugin are not found. Needed for proper Debian install. - many Debian packaging fixes. git-svn-id: http://root.cern.ch/svn/root/trunk@16103 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 18, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@16042 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 11, 2006
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@15769 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
Mohammad AL-Turany : QTGSI classes Sebastian Boeser : class TGraphPolar Matthieu Demaret : class TGraphPolar Giulio Eulisse : class TQtLock Denis Favre-Miville : GUI Jan Fiete Grosse-Oetringhaus : PROOF testing Thorsten Glebe : Smatrix Piotr Golonka : TMCParticle Luke Jones : TGraphDelaunay Yan Liu : TOracleResult Elaine Lyons : First version of Users Guide Andreas Morsch : VMC Xavier Prudent : TMVA Shaowen Wang : TOracleResult git-svn-id: http://root.cern.ch/svn/root/trunk@15766 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
Daniele Francesco Kruse : GDML Witold Pokorski : GDML Joerg Stelzer : TMVA Matevz Tadel : Graphics, GL Wouter Verkerke : RooFit Helge Voss : TMVA Kai Voss : TMVA git-svn-id: http://root.cern.ch/svn/root/trunk@15761 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 10, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@15747 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@15746 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 26, 2006
-
-
Fons Rademakers authored
- new virtual monitoring interface which will the base class for the MonaLisa plugin. - new TAlienSystem class - updated TAlien class git-svn-id: http://root.cern.ch/svn/root/trunk@15186 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 18, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14738 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14724 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 21, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@14360 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 09, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@13801 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 15, 2005
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@13717 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 14, 2005
-
-
Fons Rademakers authored
I have updated the Alien README file. The one you ship is very old and not correct anymore. git-svn-id: http://root.cern.ch/svn/root/trunk@13702 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 11, 2005
-
-
Fons Rademakers authored
Class defining interface to MonaLisa Monitoring Services in ROOT The TMonaLisa object is used to send monitoring information to a MonaLisa server using the MonaLisa ApMon package (libapmoncpp.so/UDP packets). The MonaLisa ApMon library for C++ can be downloaded at http://monalisa.cacr.caltech.edu/monalisa__Download__ApMon.html, current version: http://monalisa.cacr.caltech.edu/download/apmon/ApMon_cpp-2.0.6.tar.gz The ROOT implementation is primary optimized for process/job monitoring, although all other generic MonaLisa ApMon functionality can be exploited through the ApMon class directly (gMonaLisa->GetApMon()). git-svn-id: http://root.cern.ch/svn/root/trunk@13625 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 09, 2005
-
-
Fons Rademakers authored
TString contributions. git-svn-id: http://root.cern.ch/svn/root/trunk@13567 27541ba8-7e3a-0410-8455-c3a389f83636
-