- Jul 31, 2002
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5030 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5029 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5028 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 30, 2002
-
-
Rene Brun authored
of a shadow class for any of the STL classes. git-svn-id: http://root.cern.ch/svn/root/trunk@5027 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
a warning with the very latest RH 7.2 g++ updated compiler. git-svn-id: http://root.cern.ch/svn/root/trunk@5026 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
TStyle::fPaperSizeX TStyle::fPaperSizeY we not copied in the Copy(). Fix by Andre Holzner. git-svn-id: http://root.cern.ch/svn/root/trunk@5025 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 29, 2002
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5024 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5023 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Suggestion by Axel. git-svn-id: http://root.cern.ch/svn/root/trunk@5022 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
include (as found in gcc 3.1). Fix by Jiri Masik. git-svn-id: http://root.cern.ch/svn/root/trunk@5021 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5020 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 28, 2002
-
-
Rene Brun authored
The first object in the list of functions is not always (and rarely) a TF2 object. One must iterate on the list of functions to find the first object deriving from TF1. git-svn-id: http://root.cern.ch/svn/root/trunk@5019 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
n TGraph::Fit and GraphFitChisquare, improvements by Eddy Offermann to recompute the errors on parameters in case errors on the points are not available (case of TGraph in particular). Add a protection in TGraph::PaintFit in case the fit option was not requested. git-svn-id: http://root.cern.ch/svn/root/trunk@5018 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 27, 2002
-
-
Fons Rademakers authored
the current syntax: ClassDef(Class,Version) // Comment or add a 'semi-colon': ClassDef(Class,Version); // Comment This is very usefull for text editor to properly automatically ident, color, etc. the classes. I also changed CINT's behavior regarding ClassDef when interpreting the ClassDef macro (in the ROOT context). Currently, if a macro which is interpreted contains the ClassDef macro, it fails. I added some support so that the ClassDef macro is ignore (since anyway in interpreted mode it is currently more or so pointless). By Philippe. git-svn-id: http://root.cern.ch/svn/root/trunk@5017 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5016 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
For what else is new see http://root.cern.ch/root/Cint.phtml?relnote. iostream redirect mod (G__OLDIMPLEMENTATION1635) still disabled. git-svn-id: http://root.cern.ch/svn/root/trunk@5015 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5014 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5013 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5012 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 26, 2002
-
-
Fons Rademakers authored
TMatrix operator+(const TMatrix &source1, const TMatrix &source2); TMatrix operator-(const TMatrix &source1, const TMatrix &source2); TMatrix operator*(const TMatrix &source1, const TMatrix &source2); The next will accomplish together a[i][j]: const TMatrixRow operator[](Int_t rown) const; TMatrixRow operator[](Int_t rown); changes to TMatrixRow: const Double_t &operator[](Int_t i) const; Double_t &operator[](Int_t i); The following operations have been added to TVector,TVectorD: TVector operator+(const TVector &source1, const TVector &source2); TVector operator-(const TVector &source1, const TVector &source2); However, users should still take notion of the comments at in the class description of TMatrix: // 2. Use "two-address instructions" // // "void TMatrixD::operator += (const TMatrixD &B);" // // as much as possible. // // That is, to add two matrices, it's much more efficient to write // // A += B; // // than // // TMatrixD C = A + B; // // (if both operand should be preserved, // // TMatrixD C = A; C += B; // // is still better). // Mods by Eddy Offermann. git-svn-id: http://root.cern.ch/svn/root/trunk@5011 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5010 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 25, 2002
-
-
Fons Rademakers authored
parameter. By Philippe. git-svn-id: http://root.cern.ch/svn/root/trunk@5009 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5008 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 24, 2002
-
-
Fons Rademakers authored
TMap::Streamer() write mode. git-svn-id: http://root.cern.ch/svn/root/trunk@5007 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5006 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5005 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 23, 2002
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5004 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5003 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5002 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5001 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@5000 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
double equality). By Philippe. git-svn-id: http://root.cern.ch/svn/root/trunk@4999 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 22, 2002
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@4998 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 19, 2002
-
-
Fons Rademakers authored
length array stored inside a TClonesArray. TTreeFormula: properly deal with empty variable length arrays stored inside a TClonesArray when in split mode (it still does not work when NOT split). -- Philippe git-svn-id: http://root.cern.ch/svn/root/trunk@4997 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
without regexp characters need to be matched completely (like a wildcard). Fixes loading of Win32gdk. git-svn-id: http://root.cern.ch/svn/root/trunk@4996 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
(one of "^$.[]*+?"). git-svn-id: http://root.cern.ch/svn/root/trunk@4995 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
is not backward compatible. Keep using strstream for the time being. git-svn-id: http://root.cern.ch/svn/root/trunk@4994 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@4993 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@4992 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@4991 27541ba8-7e3a-0410-8455-c3a389f83636
-