- Jun 12, 2000
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@113 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@112 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
need anymore for macro GL.C (which was only implemented for linux anyway). Everything works fine with the latest Mesa distribution v3.2. git-svn-id: http://root.cern.ch/svn/root/trunk@111 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
no need anymore to distribute FreeType includes and library. The only thing the user needs to do to use TTF fonts is to get the set of font files. git-svn-id: http://root.cern.ch/svn/root/trunk@110 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
links for ttf and opengl in the build directory (current script will remove them). git-svn-id: http://root.cern.ch/svn/root/trunk@109 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@108 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@107 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 11, 2000
-
-
Fons Rademakers authored
assigned by IANA for proofd usage. In the old scheme we used two ports for PROOF: one for the master server (proofserv) and another for the client servers (proofslave). This has now been changed to a single port (proofd) and the server type is communicated by the client to the server. Update the /etc/services file from: proofserv 349/tcp proofslave 359/tcp rootd 432/tcp to proofd 1093/tcp rootd 1094/tcp And /etc/inetd.conf from: proofserv stream tcp nowait root /usr/proof/bin/proofd proofserv /usr/proof proofslave stream tcp nowait root /usr/proof/bin/proofd proofslave /usr/proof to proofd stream tcp nowait root /usr/proof/bin/proofd /usr/proof git-svn-id: http://root.cern.ch/svn/root/trunk@106 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@105 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@104 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@103 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 09, 2000
-
-
Rene Brun authored
This new function is useful to rotate (eg) the y axis title by + or - 90 degress This function is available from the TAxis context menu git-svn-id: http://root.cern.ch/svn/root/trunk@102 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
void RotateTitle(Bool_t rotate=kTRUE) git-svn-id: http://root.cern.ch/svn/root/trunk@101 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@100 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@99 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@98 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@97 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@96 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 08, 2000
-
-
Rene Brun authored
escape characters when the function is called by TLatex. One can still force a Tlatex object to use the old PostScript convention by using a font with precision 1 (eg 61). git-svn-id: http://root.cern.ch/svn/root/trunk@95 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
symbols #hat, #grave, #acute. - Modify TLatex::PaintLatex to set the bit kLatex in TVirtualPS. git-svn-id: http://root.cern.ch/svn/root/trunk@94 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@93 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@92 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
When a entry is asked which is not available in all the trees of the chain (i.e. entryNumber > chain.GetEntries() ), the LoadTree() function deletes the currently file opened and returns an error code. That's perfect, but when deleting the file the "fFile" pointer is not set to 0, therefore in the destructor of the class if (fFile) delete fFile; calls the TFile destructor a second time generating a SEGV (Thanks Manuel Sanchez for reporting) git-svn-id: http://root.cern.ch/svn/root/trunk@91 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
When the status of a branch (A) in a TClonesArray was changed the corresponding LeafCount() was activated independently of the status flag specified for branch A. The TClonesArray branchcount was always read even when all the branches had been deactivated. (Thanks Manuel Sanchez for reporting) git-svn-id: http://root.cern.ch/svn/root/trunk@90 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 07, 2000
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@89 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@88 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
This change follows a request from ALICE when using Geant4 ! git-svn-id: http://root.cern.ch/svn/root/trunk@87 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
the title to paint the axis on the palette. Modify THistPainter::DistancetoPrimitive to detect the Zaxis when pointing on the axis of the color palette. git-svn-id: http://root.cern.ch/svn/root/trunk@86 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 06, 2000
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@85 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
the compiler and linker directive. git-svn-id: http://root.cern.ch/svn/root/trunk@84 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
For sgikcc, both the compiler and the linker options must specify the same options -n32 --no-exceptions git-svn-id: http://root.cern.ch/svn/root/trunk@83 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@82 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@81 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@80 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@79 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@78 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
the fillstyle=0 and the bordersize=0 git-svn-id: http://root.cern.ch/svn/root/trunk@77 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 05, 2000
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@76 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@75 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@74 27541ba8-7e3a-0410-8455-c3a389f83636
-