sort by:
Revision Author Date Message Commit Date
dcd3394 From Bertrand: Fix a fatal compilation error introduced in a previous change to TString git-svn-id: http://root.cern.ch/svn/root/trunk@16457 27541ba8-7e3a-0410-8455-c3a389f83636 06 October 2006, 06:48:00 UTC
4f573d8 minor correction in cvs ident line and copyright date. git-svn-id: http://root.cern.ch/svn/root/trunk@16456 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 21:33:21 UTC
37481bc move R__VA_COPY from TString.cxx to Varargs.h where it belongs. git-svn-id: http://root.cern.ch/svn/root/trunk@16455 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 21:06:35 UTC
b54ac32 From Gerri: improved tokenizer with an easier interface and no need to manage an TObjArray or tokens: // String to be tokenized TString myl = "tok1 tok2|tok3"; TString tok; int from = 0; // or the index where to start from while ((from = myl.Tokenize(tok, from, "[ |]") != -1) { if (!tok.IsNull()) { // Analyse tok ... } } git-svn-id: http://root.cern.ch/svn/root/trunk@16454 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 21:04:38 UTC
d65cb8a fix problem on Solaris git-svn-id: http://root.cern.ch/svn/root/trunk@16453 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 20:03:06 UTC
34df9c3 From Matevz and Timur: * gl/inc/TGLViewer.h: * gl/src/TGLViewer.cxx: Added customizations of update/redraw behaviour: 1) flag 'Bool_t fIgnoreSizesOnUpdate' that tells the viewer not to check the size of the object in AddObject(); 2) member 'Color_t fClearColor' that allows user to select the background color; 3) method 'void UpdateScene()' thet forces the scene update via calling 'fPad->Paint()'; 4) method 'virtual void RefreshPadEditor(TObject* changed=0)' that allows updates to be sent to the built-in editor when the internal state changes. * gl/inc/TGLSAViewer.h: * gl/src/TGLSAViewer.cxx: Implemented virtual 'TGLSAViewer::RefreshPadEditor()'. In all calls to 'TGedEditor::SetModel()' replaced third argument 'Int_t event' from 'kButton1' to 'kButton1Down'. * gl/inc/TGLViewerEditor.h: * gl/src/TGLViewerEditor.cxx: Added widgets controlling 'fClearColor', 'fIgnoreSizesOnUpdate', 'fResetCamerasOnUpdate' and 'fResetCameraOnDoubleClick'; added buttons for invoking 'UpdateScene()' and 'CameraHome()' methods. * gl/src/TGLScene.cxx: Removed code setting the glClearColor in 'Draw()'. git-svn-id: http://root.cern.ch/svn/root/trunk@16452 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 18:19:09 UTC
967326c From Ilka. A gif file name was wrong in the documentation. git-svn-id: http://root.cern.ch/svn/root/trunk@16451 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 17:51:40 UTC
ceb4707 Change 2 error/warning message from using print to using the ErrorHandler. Replace the message 'UNKNOW type, sopen=' with a more explicit message and issue only when it is revelant (i,e. not when reading in emulated mode and the stl container containing the requested type is always empty) git-svn-id: http://root.cern.ch/svn/root/trunk@16450 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 17:38:05 UTC
670a793 From Scott Snyder: 2nd version of the patch improving ROOT's handling of virtual inheritance, where we only use the information directly from CINT for the virtual base class and keep the previous algorithm for the other cases. git-svn-id: http://root.cern.ch/svn/root/trunk@16449 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 17:10:09 UTC
79e6c5a Make it even clearer in the Documentation that SetBranchStatus only match using Regex and _not_ in any way on the branch hierarchy git-svn-id: http://root.cern.ch/svn/root/trunk@16448 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 17:04:30 UTC
5c015be Prevent a out of bond memory write due to the fact that G__defined_tagname can modify its argument git-svn-id: http://root.cern.ch/svn/root/trunk@16447 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 17:02:48 UTC
97c6f4a In R__CreateEmulatedElement avoid mistaken a typedef for a basic type when lookup in the ListOfTypes. In R__GenerateTClassForPair properly generate the type name when the last element of the pair is a template instantiation. Those 2 problems lead to issues with emulated map<int,vector<int> > git-svn-id: http://root.cern.ch/svn/root/trunk@16446 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 17:00:04 UTC
ceeb5b6 Fix compiler warnings about unitialized variables. git-svn-id: http://root.cern.ch/svn/root/trunk@16445 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 16:36:22 UTC
5d07a4f fix some compiler warnings. git-svn-id: http://root.cern.ch/svn/root/trunk@16444 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 16:15:21 UTC
31b9598 From Ilka: - increase the singleshot timer delay in DoClose method to avoid the crash on Windows when closing fit panel git-svn-id: http://root.cern.ch/svn/root/trunk@16443 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 16:12:43 UTC
11f2eab From Andreas: improvements for PROOF MonaLisa monitoring. git-svn-id: http://root.cern.ch/svn/root/trunk@16442 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 16:10:22 UTC
9f196bf add test for 1d minimizer git-svn-id: http://root.cern.ch/svn/root/trunk@16441 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 15:24:16 UTC
5349a5b - add 1D minimization based on GSL routines (imported from SEAL version) - change GSL Error handler when building a libMathMore for ROOT. Do not abort in that case and instead print an error message git-svn-id: http://root.cern.ch/svn/root/trunk@16440 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 15:23:42 UTC
e1fdc0e From Ilka and Lorenzo: This is the first prototype of the new fit panel GUI. Its goal is to replace the old one and to provide more user friendly way for prforming, exploring and comparing fits. The new interface is loaded via plug-in manager. It is set as default in TUtilPad via the static variable and shows up on the place of the old fit panel. To switch to the old fit panel interface just do: TUtilPad::SetPanelVersion(1); For more details see the TFitEditor class description. fitpanel - new fit panel directory new classes: TFitEditor class provides new fit panel user interface. TFitParametersDialog provides a dialog for fit function parameter settings. git-svn-id: http://root.cern.ch/svn/root/trunk@16439 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 15:06:48 UTC
14c1bee From Andreas: TAlienFile inherits now directly from TXNetFile. This was possible by introducing another factory function in TAlienFile (TAlienFile::Open), moving some private to protected members and changing some function to virtual in the parent classes. For the new factory function of the plubing rootrc.in had to be modified. Using the occasion, I have also implemented that, that TAlienFile tries automatically to open any of the existing images of a file, starting with the 'closest' one, if it fails with the next replica aso. This is implemented right now only for reading. It is not ought to do loadbalancing by random shuffling of the SE order. There are some changes in TAlienCollection for Panos, to build the 'and' of two TAlienCollections and to read evelist from the xml file. Some memory leaks have been fixed in TAlienResult/TGridResult etc. Finally to have a consistent file name (e.g. a TAlienFile has it's LFN as a filename - eventhough it inherits from TXNetFile, which does not like LFN's), I had to introduce another argument to TXNetFile (in the end with a default value), to tell TXNetFile, that is has to open an xrootd url, but it has to 'carry' another name. The normal functionality is not touched by this. git-svn-id: http://root.cern.ch/svn/root/trunk@16438 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 14:56:25 UTC
905710a From Andreas: For the beauty of the AliEn filename, there is a change in TArchiveFile, so that it also recognizes an archive when it's member and type are specified via the url option "?zip=galice.root". git-svn-id: http://root.cern.ch/svn/root/trunk@16437 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 14:53:48 UTC
701fbd2 - New method: Add(TMultiGraph *multigraph, Option_t *chopt=""); it allows to add all the graphs in "*multigraph" in the current MultiGraph. Example: { float x1[] = {1,2,3}; float y1[] = {4,7,6}; float x2[] = {3,5,6}; float y2[] = {0,9,4}; float x3[] = {7,8,9}; float y3[] = {1,2,4}; float x4[] = {0,6,5}; float y4[] = {5,2,7}; TGraph *gr1 = new TGraph(3,x1,y1); TGraph *gr2 = new TGraph(3,x2,y2); TGraph *gr3 = new TGraph(3,x3,y3); TGraph *gr4 = new TGraph(3,x4,y4); TMultiGraph *mg1 = new TMultiGraph(); mg1->Add(gr1); mg1->Add(gr2); TMultiGraph *mg2 = new TMultiGraph(); mg2->Add(gr3); mg2->Add(gr4); mg2->Add(mg1); // mg2 now contains gr1 gr2 gr3 and gr4 mg2->Draw("AL*"); } git-svn-id: http://root.cern.ch/svn/root/trunk@16436 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 13:50:11 UTC
65ab442 From Gerri: In the previous small patch, I forgot to adapt the return code of GetUserInfo to the change. git-svn-id: http://root.cern.ch/svn/root/trunk@16435 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 13:04:10 UTC
cfc9297 From Sergey Linev: 1. TXMLEngine class (ROOT xml parser) in addition to normal xml nodes now can parse xml processing instructions http://www.w3.org/TR/1998/REC-xml-19980210#sec-pi with syntax <?something attr="value" attr2="value2" ... ?> and xml comments http://www.w3.org/TR/1998/REC-xml-19980210#sec-comments with syntax <!-- my comment string --> 2. Comment line and style sheet definition (one special case of xml processing instruction) can be inserted manually by user with any text/xml editor or with new methods of TXMLFile Bool_t TXMLFile::AddXmlComment(const char* comment); Bool_t TXMLFile::AddXmlStyleSheet(const char* href, const char* type, ...); 3. Arbitrary text line can be inserted on the top of xml file with call: Bool_t TXMLFile::AddXmlLine(const char* line); Now this line can contain either comments or xml processing instruction, while anything else will not pass xml syntax check. git-svn-id: http://root.cern.ch/svn/root/trunk@16434 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 10:28:49 UTC
a7d4cd6 fix typo. git-svn-id: http://root.cern.ch/svn/root/trunk@16433 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 10:20:21 UTC
f994747 From Axel: Warn if G__p_ifunc->allfunc is above G__MAXIFUNC when adding new function. The underlying issue will be fixed by the merge. git-svn-id: http://root.cern.ch/svn/root/trunk@16432 27541ba8-7e3a-0410-8455-c3a389f83636 05 October 2006, 09:53:49 UTC
823f586 From Lorenzo: fix for GetMeanError and GetRMSError for weighted histograms to use the effective entries. git-svn-id: http://root.cern.ch/svn/root/trunk@16431 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 16:32:30 UTC
cfb0444 From Valeri Fine: - new rule to distinguish Qt4 "qmake" vs Qt3 qmake git-svn-id: http://root.cern.ch/svn/root/trunk@16430 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 16:09:37 UTC
a79fed5 From Valeri Fine: - new method for painting the QPixmap object in the currently selected TPad / TCanvas TGQt::CopyPixmap(const QPixmap &p, Int_t px1, Int_t py1) git-svn-id: http://root.cern.ch/svn/root/trunk@16429 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 16:08:48 UTC
ba08aa9 From Bertrand: fix coding convention violation (missing function comments). git-svn-id: http://root.cern.ch/svn/root/trunk@16428 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 14:49:23 UTC
6519876 Minor change in script to produce the animated gif only in batch mode. git-svn-id: http://root.cern.ch/svn/root/trunk@16427 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 14:23:24 UTC
065f0ec Several fixes in teh doc of TH1::Chi2Test to get the correct html file. git-svn-id: http://root.cern.ch/svn/root/trunk@16426 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 13:43:07 UTC
f983569 Modify the tutorial to use the new animated gif facility. The animated gif can be produced in batch mode. git-svn-id: http://root.cern.ch/svn/root/trunk@16425 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 13:32:58 UTC
a2b3543 Change the number of iterations from 4 to 20 when calling TSpectrum::Background. Set the minimum peak size to be 10 per cent of the maximum instead of 4 per cent.CVS: ---------------------------------------------------------------------- git-svn-id: http://root.cern.ch/svn/root/trunk@16424 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 10:48:25 UTC
6ee4cc0 Change the default from "noMarkov" to "Markov" in the peak finder. git-svn-id: http://root.cern.ch/svn/root/trunk@16423 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 10:46:49 UTC
f9d1723 From Anna and Lorenzo: the new Chi2Test using the algorithm from N. Gagunashvili and implemented by Daniel Haertl. git-svn-id: http://root.cern.ch/svn/root/trunk@16422 27541ba8-7e3a-0410-8455-c3a389f83636 04 October 2006, 09:23:02 UTC
c9bb8d5 From Philippe: rename TString::Form(const char *fmt, va_list ap); into TString::FormImp(const char *fmt, va_list ap); It is needed because on some platforms (VC8, gcc 3.4.3, at least), calling TString::Form with 2 char* leads to the calling of the the function Form(const char *fmt, va_list ap); git-svn-id: http://root.cern.ch/svn/root/trunk@16421 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 21:51:46 UTC
a1b35bb Forgot definition of kUNTAR2 for Win32. git-svn-id: http://root.cern.ch/svn/root/trunk@16420 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 15:28:25 UTC
11f191b From Gerri: The functions getpwnam_r / getpwuid_r still may return 0 (i.e. success) when the entry does not exist, so one has really to test if the pointer to the data structure is defined or not. git-svn-id: http://root.cern.ch/svn/root/trunk@16419 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 15:17:06 UTC
da453ca fix size_t conversion in NPos(); no need for local static; inlined git-svn-id: http://root.cern.ch/svn/root/trunk@16418 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 15:13:59 UTC
ef58865 fix compilation error due to missng netinet/in.h include. git-svn-id: http://root.cern.ch/svn/root/trunk@16417 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 14:04:57 UTC
d564ab2 Handle error when PROOF-INF/SETUP.C fails when enabling a package. git-svn-id: http://root.cern.ch/svn/root/trunk@16416 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 14:03:11 UTC
b33caf7 include "TFile.h" was missing in the tutorial when compiling with ACLIC git-svn-id: http://root.cern.ch/svn/root/trunk@16415 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 13:35:55 UTC
4ec7b0d Fix number of white-space issues and double forward declarations. git-svn-id: http://root.cern.ch/svn/root/trunk@16414 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 13:31:07 UTC
781719b In GetPathInfo() reset the fIsLink always to false before calling stat(). git-svn-id: http://root.cern.ch/svn/root/trunk@16413 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 13:29:25 UTC
cbecb7e Include file cleanup, many includes were not needed. git-svn-id: http://root.cern.ch/svn/root/trunk@16412 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 13:28:29 UTC
5d3f422 Avoid uploaded packages to also being copied to the cache directory. git-svn-id: http://root.cern.ch/svn/root/trunk@16411 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 13:27:53 UTC
bea4529 Enable packages uploaded to PROOF also in the local client session. This allows the TSelector Begin() and Terminate() to see the same environment as the PROOF master and workers. git-svn-id: http://root.cern.ch/svn/root/trunk@16410 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 13:26:20 UTC
2fb876e From Axel: Fix a compilation warning and also dependencies problems for posix cintdll. git-svn-id: http://root.cern.ch/svn/root/trunk@16409 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 12:25:13 UTC
994552c Implement in TSpectrum2 the same interface and options as in TSpectrum for the functions Background and Search. git-svn-id: http://root.cern.ch/svn/root/trunk@16408 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 10:05:03 UTC
00839a9 From Gerri: this version now also compiles with gcc 4.1.1. git-svn-id: http://root.cern.ch/svn/root/trunk@16407 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 09:54:57 UTC
170127f Fix "fName ends on @" check for @HIDDEN@ git-svn-id: http://root.cern.ch/svn/root/trunk@16406 27541ba8-7e3a-0410-8455-c3a389f83636 03 October 2006, 09:45:37 UTC
ce1b6ba From Gerri: Fixes a couple of unitialized variables, one status-definition inconsistency and a double deletion. git-svn-id: http://root.cern.ch/svn/root/trunk@16405 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 16:42:41 UTC
1cd81d2 From Valeriy Onuchin: - add possibility to create an animated GIF file from canvas (in both GUI and batch mode). It's possible to Print pad into an animated GIF file by specifying the file name as "myfile.gif+" or "myfile.gif+NN" , where NN is the delay for displaying subimages during animation in 10ms units. If NN is ommitted the delay between subimages is zero. for (int i=0; i<10; ++i) { // fill canvas for context // ... c1.Print("file.gif+"); // print canvas to GIF file }// end loop git-svn-id: http://root.cern.ch/svn/root/trunk@16404 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 16:12:39 UTC
1df0651 From Axel: I forgot one char in my previous patch, which is required for Internet Explorer. git-svn-id: http://root.cern.ch/svn/root/trunk@16403 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 16:05:21 UTC
39d57ab don't build Python plugin if Python.h is not found. git-svn-id: http://root.cern.ch/svn/root/trunk@16402 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 15:53:37 UTC
73f028b favour libpacklib_noshift and libkernlib_noshift, this will allow building of h2root when libshift is not available. git-svn-id: http://root.cern.ch/svn/root/trunk@16401 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 15:21:38 UTC
f1fedb3 From Axel: javascript fix for opera; nicer class charts layout; W3 css and XHTML validated; keep HTML based hierarchy chart ClassHierarchy.html instead of dot-generated one - it's really too much for dot; adjust the size of the LibraryDependencies.html chart so it's readable. git-svn-id: http://root.cern.ch/svn/root/trunk@16400 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 14:35:49 UTC
12782fe From Bertrand: - Hide GUI parts that are not used (yet) in local session - Fix bug report: http://savannah.cern.ch/bugs/?16886 - Fix bug report: http://savannah.cern.ch/bugs/?16885 git-svn-id: http://root.cern.ch/svn/root/trunk@16399 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 14:27:25 UTC
286f176 From Bertrand: - improvements in the automatic update of the list of proofs - fix the bug report: http://savannah.cern.ch/bugs/?16830 git-svn-id: http://root.cern.ch/svn/root/trunk@16398 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 13:27:01 UTC
dead226 From Timur: - Mods for box painter, adding dynamic slicing for TH3 hist. try $ROOTSYS/tutorials/glbox.C git-svn-id: http://root.cern.ch/svn/root/trunk@16397 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 12:55:47 UTC
02d15f5 From Matevz: Add back DeleteEditors(). git-svn-id: http://root.cern.ch/svn/root/trunk@16396 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 11:25:47 UTC
1956a4b Change the default number of iterations from 2 to 20 in TH1::ShowBackground git-svn-id: http://root.cern.ch/svn/root/trunk@16395 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 11:00:34 UTC
f208895 Fix a problem with DOS windows format in all TSpectrum files. Change the default arguments in TSpectrum::Search and TSpectrum::Background git-svn-id: http://root.cern.ch/svn/root/trunk@16394 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 10:58:42 UTC
6e1f087 Checkin in binary mode. git-svn-id: http://root.cern.ch/svn/root/trunk@16393 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 08:17:32 UTC
d5c2a97 Forgot to checkin in binary mode. git-svn-id: http://root.cern.ch/svn/root/trunk@16392 27541ba8-7e3a-0410-8455-c3a389f83636 02 October 2006, 08:16:35 UTC
022486c Changes in TBox::Draw and TBox::PaintBox // if the box has no fill style (ie fill style=0), the box contour is drawn // if the box has a fill style, the box contour is not drawn by default. // to force the contour to be drawn, specify option "l" git-svn-id: http://root.cern.ch/svn/root/trunk@16391 27541ba8-7e3a-0410-8455-c3a389f83636 01 October 2006, 16:53:42 UTC
3d66a9c In TPad::PaintBox, implement a new option "l" If this option is specified the contour of the box is also drawn when the box has a fillstyle specified non null. git-svn-id: http://root.cern.ch/svn/root/trunk@16390 27541ba8-7e3a-0410-8455-c3a389f83636 01 October 2006, 16:51:14 UTC
995ba1b Add libSpectrum in the list of libs when linking stressSpectrum git-svn-id: http://root.cern.ch/svn/root/trunk@16389 27541ba8-7e3a-0410-8455-c3a389f83636 30 September 2006, 18:17:14 UTC
7e2fac5 From Gerri: fix a bug in the new XROOTD tarball affecting the rootd-fallback. git-svn-id: http://root.cern.ch/svn/root/trunk@16388 27541ba8-7e3a-0410-8455-c3a389f83636 30 September 2006, 08:45:20 UTC
ac62e36 Fix some coding conventions violations git-svn-id: http://root.cern.ch/svn/root/trunk@16387 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 15:51:52 UTC
7b1736c Fix coding conventions violations. git-svn-id: http://root.cern.ch/svn/root/trunk@16386 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 15:42:01 UTC
fb95268 Fix coding conventions violations git-svn-id: http://root.cern.ch/svn/root/trunk@16385 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 15:40:08 UTC
d6bab6b From Sergey Linev: After getting mail from Antonio Bulgheroni [antonio.bulgheroni@gmail.com], I found out that MySQL and Oracle default ports number not used in ROOT. Therefore, I made small fix to set default port number for MySQL = 3306 and Oracle = 1521. git-svn-id: http://root.cern.ch/svn/root/trunk@16384 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 13:58:34 UTC
f1c70db From Axel: this adds G__getfunction to the CINT API, allowing python to build on windows. git-svn-id: http://root.cern.ch/svn/root/trunk@16383 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 10:57:21 UTC
8a384b1 From sergey Linev: TOracleServer::ServerInfo() is now implemented (thanks to Dennis Box) git-svn-id: http://root.cern.ch/svn/root/trunk@16382 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 10:55:58 UTC
867ae7a - method AddFrame can be overridden, to make sure that default layout hints exist their creation is moved in TGCompositeFrame ctors git-svn-id: http://root.cern.ch/svn/root/trunk@16381 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 08:42:18 UTC
8ab2549 Support new xrootd tar. git-svn-id: http://root.cern.ch/svn/root/trunk@16380 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 08:18:19 UTC
f029540 From Gerri: New XROOTD tarball implementing several optimizations and support for MD5 on-the-fly calculation in xrdcp. git-svn-id: http://root.cern.ch/svn/root/trunk@16379 27541ba8-7e3a-0410-8455-c3a389f83636 29 September 2006, 08:17:21 UTC
da1df45 correct Warning statement. git-svn-id: http://root.cern.ch/svn/root/trunk@16378 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 23:29:00 UTC
1cc292e From Gerri: fix bug which of an unreset flag, so that Recycle was treating as a "top client" an instance that was not a "top client" ("top client" is an external client, i.e. not a master or a sub-master). git-svn-id: http://root.cern.ch/svn/root/trunk@16377 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 23:23:45 UTC
355892d some indentation and cvs ident line corrections. git-svn-id: http://root.cern.ch/svn/root/trunk@16376 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 23:20:53 UTC
7e860cb malloc.h is not portable (did not compile on MacOS X) and is not needed on Linux either. git-svn-id: http://root.cern.ch/svn/root/trunk@16375 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 23:16:16 UTC
d910927 From Axel: A patch allowing to publish a bigger and a smaller htmldoc version: it puts the class charts (the *.gif) into separate subdirs. git-svn-id: http://root.cern.ch/svn/root/trunk@16374 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 20:12:33 UTC
d8c768e From Wim Lavrijsen: o) no convenience look-ups of std:: classes in ROOT:: (causes infinite loop in gROOT->GetClass() otherwise) o) set G__return before calling through CINT to prevent old error hysteresis o) following TRint, removed loading of libs from TPyROOTApplication o) fixed name lookup for new style classes when used from CINT o) improved support for CINT-interpreted class constructors o) don't follow smart pointers when printing object representation (unsafe) o) allow "from ROOT import *" in multiple modules o) fixed creation order TApplication <-> gROOT.SetBatch() o) improved overload resolution for int/long/float/double based on priority o) added bool to types that can be set globally through ROOT module o) removed p2.5 warnings on MacOSX o) use malloc instead of new[] in by value execution to match CINT's free git-svn-id: http://root.cern.ch/svn/root/trunk@16373 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 19:59:12 UTC
5acaaf6 Add dependencies for new module spectrum. git-svn-id: http://root.cern.ch/svn/root/trunk@16372 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 19:40:54 UTC
ff52410 forgot to add the inc directory git-svn-id: http://root.cern.ch/svn/root/trunk@16371 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 19:29:30 UTC
2775c59 Add new package spectrum. This new package includes the pre?\127?\127?\127classes previously in hist: TSpectrum and TSpectrum2. It includes a new class TSpectrum3 and also new classes to fo?\127it spectra or to make spectra transformation. See documentation in the new classes. git-svn-id: http://root.cern.ch/svn/root/trunk@16370 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 19:19:52 UTC
4d4630f Insure that the TLeafB have their maximum and minimum properly updated. git-svn-id: http://root.cern.ch/svn/root/trunk@16369 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 18:08:51 UTC
54ba8df From Maarten: Add a new sort option 'SortBasketsByEntry' to the fast TTree cloning. With this option the branches' baskets will be reordered so that they are in the order they will be read when processing the full tree. git-svn-id: http://root.cern.ch/svn/root/trunk@16368 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 17:37:55 UTC
827684d From Scott Snyder: Improve ROOT's handling of virtual inheritance by using directly the offet information in CINT rather than the one in ROOT's list of bases classes. git-svn-id: http://root.cern.ch/svn/root/trunk@16367 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 16:43:20 UTC
a5be373 disable R__USEASMSWAP in case of Intel's icc which is badly broken with inline assembler. git-svn-id: http://root.cern.ch/svn/root/trunk@16366 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 14:49:37 UTC
cfa89a5 Mac OS X in __LP64__ mode (i.e. -m64) defines another signature for setpgrp(). git-svn-id: http://root.cern.ch/svn/root/trunk@16365 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 14:35:15 UTC
eb83531 From Axel: Enable hist size management in TRint. git-svn-id: http://root.cern.ch/svn/root/trunk@16364 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 13:24:19 UTC
82bf697 From Bertrand: Strip "file://" instead of "file:" if path begins with "file:///". git-svn-id: http://root.cern.ch/svn/root/trunk@16363 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 11:37:26 UTC
cbd349e Add check for new standalone librfio in addition to libshift. git-svn-id: http://root.cern.ch/svn/root/trunk@16362 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 11:25:13 UTC
a890c7d From Matevz: patch that fixes the double deletion of TGedNameFrame's layout hints. git-svn-id: http://root.cern.ch/svn/root/trunk@16361 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 11:03:19 UTC
34aef7c - From Bertrand and Olivier: PaintAxis takes into account the timezone offset for the current location. This fixes the bug: http://savannah.cern.ch/bugs/?20056. All standard time axis the tests are running correctly. git-svn-id: http://root.cern.ch/svn/root/trunk@16360 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 09:35:12 UTC
724bcb7 From Mihaela: Fix coding conventions violations git-svn-id: http://root.cern.ch/svn/root/trunk@16359 27541ba8-7e3a-0410-8455-c3a389f83636 28 September 2006, 07:58:43 UTC
8fb14b0 Prevent infinite loop when executing gROOT->GetClass("ROOT::std::Blah") git-svn-id: http://root.cern.ch/svn/root/trunk@16358 27541ba8-7e3a-0410-8455-c3a389f83636 27 September 2006, 17:36:14 UTC
back to top