swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf

sort by:
Revision Author Date Message Commit Date
eb02815 This commit was manufactured by cvs2svn to create tag 'v4-01-04a'. git-svn-id: http://root.cern.ch/svn/root/tags/v4-01-04a@10619 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 15:50:28 UTC
42405e2 From Olivier: - #splitline now uses the normal alignment rules git-svn-id: http://root.cern.ch/svn/root/trunk@10618 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 15:50:27 UTC
2af823e forgot to remove TGLRender from LinkDef git-svn-id: http://root.cern.ch/svn/root/trunk@10617 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 15:20:48 UTC
a122643 TGLRender cannot be put in the dictionary (Problem with std::pair on Windows) git-svn-id: http://root.cern.ch/svn/root/trunk@10616 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 15:16:45 UTC
150575f Unfortunately TGLKernel cannot be processed via rootcint because of the CINT version og GL.h git-svn-id: http://root.cern.ch/svn/root/trunk@10615 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 15:06:18 UTC
6c73547 Add missing ClassDef/ClassImp to get these classes in html. git-svn-id: http://root.cern.ch/svn/root/trunk@10614 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 14:48:02 UTC
1550b5b Add the following member functions to TBranch and TTree Int_t TTree::LoadBaskets(Long64_t maxmemory) { // Read in memory all baskets from all branchs up to the limit // of maxmemory bytes. // if maxmemory is non null and positive SetVaxVirtualSize is called // with this value. Default for maxmemory is 2000000000 (2 Gigabytes). // The function returns the total number of baskets read into memory // if negative an error occured while loading the branches. // This method may be called to force branch baskets in memory // when random access to branch entries is required. // If random access to only a few branches is required, you should // call directly TBranch::LoadBaskets. Int_t TBranch::LoadBaskets() { // Baskets associated to this branch are forced to be in memory // You can call TTree::SetMaxVirtualSize(maxmemory) to instruct // the system that the total size of the imported baskets do not // exceed maxmemory bytes. // The function returns the number of baskets that have been put in memory // This method may be called to force all baskets of one or more branch // in memory when random access to entries in this branch is required. // See also TTree::LoadBaskets to load all baskets of all branches in memory. git-svn-id: http://root.cern.ch/svn/root/trunk@10613 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 14:11:38 UTC
d4f8d99 The previous additions by Andreas Morsch had removed 4 functions introduced in the previous revision by Andrei Gheata. These functions are now back in. git-svn-id: http://root.cern.ch/svn/root/trunk@10612 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 14:07:39 UTC
eb5fd56 From Timur Improvements with the lights. Bottom light is off by default. git-svn-id: http://root.cern.ch/svn/root/trunk@10611 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 13:11:46 UTC
e36e216 From Olivier: - In PaintContour: With option LIST, in case of positive and negative contours, the 1st positive contour was always returned at the beginning of the list. With this fix, all the negative contours are returned first then all the positive ones. git-svn-id: http://root.cern.ch/svn/root/trunk@10610 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 09:41:56 UTC
f96657f Move the inline definitions of functions void TGRadioButton::SetState and TGCheckButton::SetState to the implementation file. This solves a clash with an unfortunate "#define emit" in one of the Qt include files. git-svn-id: http://root.cern.ch/svn/root/trunk@10609 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 08:13:05 UTC
5d11128 From Maarten Ballintijn and Kristj�n Gulbrandsen a patch and files that complete the benchmark package. I strongly recommend using this for demos rather then the H1 example. The README file should walk you through a complete demo, which should not take more then maybe ten minutes or so. After you have some data files generated, you can show significant parts of the sytem in a minute or two. I added a feedback request api to TProof, this simplifies things a lot from a usability perspective. I also modified TDrawFeedback to use gProof by default, again simplifying things. Kris wrote the support scripts and fixed the benchmark scripts to read the full Events. Please try it out and have fun! It is as simple as this (I use log level 2 to slow things down a bit :-)) gROOT->Proof() .L make_tdset.C TDSet *d= make_tdset("/data1/tmp",2) TDrawFeedback fb gProof->AddFeedback("PROOF_ProcTimeHist") gProof->AddFeedback("PROOF_LatencyHist") gProof->AddFeedback("PROOF_EventsHist") gProof->UploadPackage("event.par") gProof->EnablePackage("event") gEnv->SetValue("Proof.StatsHist",1); gProof->SetLogLevel(2) d->Process("EventTree_Proc.C") git-svn-id: http://root.cern.ch/svn/root/trunk@10608 27541ba8-7e3a-0410-8455-c3a389f83636 24 November 2004, 07:41:32 UTC
733fd7d From Wim Lavrijsen o) added ROOT/CINT command .ls and .pwd o) expend envars and user for .x o) enable "from ROOT import *" in scripts o) workaround for loading TTree::MakeClass() generated macro -> "works," but still needs investigating o) allow access to TObject*'s that are public data members o) support for namespaces o) add IsEqual/__eq__ for TObject pythonization o) "from ROOT import*" when starting python from CINT o) force cleanup for all objects that enter python o) add default ctor if no ctors defined o) use TObject* instead of void* in MemoryRegulator o) refactorizations, more caches (speed), and minor fixes git-svn-id: http://root.cern.ch/svn/root/trunk@10607 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 21:45:06 UTC
62924d5 From Timur; Improvements in the GUI for adding/removing lights git-svn-id: http://root.cern.ch/svn/root/trunk@10606 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 21:42:55 UTC
fcba5e5 From Olivier: - In SVG output the markers "Up Tirangle" and "Down triangle" were inverted. git-svn-id: http://root.cern.ch/svn/root/trunk@10605 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 17:05:49 UTC
1c011bc Add a protection in TROOT::GetFunction in case the file system.rootrc is not found (or processing a very old version) git-svn-id: http://root.cern.ch/svn/root/trunk@10604 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 16:26:34 UTC
9f567b1 Increase fMaxResponseTime from 1000 to 5000 milliseconds in the constructor. This fixes a problem with thread clashes under Windows when picking very large graphics structures. git-svn-id: http://root.cern.ch/svn/root/trunk@10603 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 15:51:38 UTC
a6dd28f Increase size of a local array in TInspectCanvas::InspectObject git-svn-id: http://root.cern.ch/svn/root/trunk@10602 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 15:49:22 UTC
c5c1a39 From Axel Naumann: a patch for the Makefile, rebasing automatically during win32gcc's build. git-svn-id: http://root.cern.ch/svn/root/trunk@10601 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 14:58:32 UTC
f1e0117 From Andreas Morsch added a new method to TVirtualMC.h void TVirtualMC::ForceDecayTime(Float_t); This allows to force the decay time of the current particle. git-svn-id: http://root.cern.ch/svn/root/trunk@10600 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 14:51:59 UTC
f7418ff Protection added in TH2::Rebin2D (suggested by Gero Flucke) git-svn-id: http://root.cern.ch/svn/root/trunk@10599 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 14:45:02 UTC
c05d303 From Timur: Introduce a better light model (up to 5 spot lights). Change in the default coordinate system. Z is now horizontal. git-svn-id: http://root.cern.ch/svn/root/trunk@10598 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 14:00:29 UTC
17584a6 avoid adding -lpthread in case of Win32. git-svn-id: http://root.cern.ch/svn/root/trunk@10597 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 13:59:57 UTC
b16a170 From Markus Frank Fix a problem with the I/O of <vector<bool> git-svn-id: http://root.cern.ch/svn/root/trunk@10596 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 13:55:13 UTC
257b72b small simplification in plugin descriptions of GuiBld and Ged. git-svn-id: http://root.cern.ch/svn/root/trunk@10595 27541ba8-7e3a-0410-8455-c3a389f83636 23 November 2004, 00:07:22 UTC
127ee1e make fRender a pointer to TGLRender and create it after creating the TGLRenderArea which creates the OpenGL context. More importantly in the dtor delete the TGLRender object before deleting the TGLRenderArea object, i.e. delete it before the OpenGL context gets deleted in the TGLRenderArea dtor. This fixes a problem which showed on MacOS X during the closing of the OpenGL viewer where the TGLRender dtor tried to access an already deleted OpenGL context. Use the plugin manager to create a TVirtualGLImp instance instead of via a hardcoded ProcessLine(). git-svn-id: http://root.cern.ch/svn/root/trunk@10594 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 23:49:13 UTC
5e5668a fix several Error() messages. git-svn-id: http://root.cern.ch/svn/root/trunk@10593 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 23:39:52 UTC
8148669 fix some Error() messages, no trailing \n needed and a typo. git-svn-id: http://root.cern.ch/svn/root/trunk@10592 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 23:38:31 UTC
d41c4d9 fix to take into account OS and Application prefix of TEnv Plugin resources, now: Unix.*.Plugin.TXxxx: * TUnixXxxxx libUnixXxxx "TUnixXxxx()" WinNT.*.Plugin.TXxxx: * TWin32Xxxxx libWin32Xxxx "TWin32Xxxx()" loads correctly libUnixXxxx on Unix/Linux and libWin32Xxxx on Win32. git-svn-id: http://root.cern.ch/svn/root/trunk@10591 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 23:37:26 UTC
ccce2d9 Fix typo in comments git-svn-id: http://root.cern.ch/svn/root/trunk@10590 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 20:41:02 UTC
f98678a Remove obsolete comments about "MakeAnal" git-svn-id: http://root.cern.ch/svn/root/trunk@10589 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 20:29:09 UTC
8c41b9e in debug mode use "-g" instead of "-g -O". git-svn-id: http://root.cern.ch/svn/root/trunk@10588 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 16:50:00 UTC
853fea6 From Maarten: Inspired by the need to set the port on 10000 url's I extended the TUrl class. All the components can be set or replaced and GetUrl() will generate the new URL. git-svn-id: http://root.cern.ch/svn/root/trunk@10587 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 16:41:56 UTC
1be566f Starting Development version 4.01/05 git-svn-id: http://root.cern.ch/svn/root/trunk@10586 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 16:01:34 UTC
9b3140f take into account the option set by TStyle::SetHistMinimumZero git-svn-id: http://root.cern.ch/svn/root/trunk@10585 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 15:55:57 UTC
4308849 Add a new function void TStyle::SetHistMinimumZero(Bool_t zero) { // if the argument zero=kTRUE the minimum value for the Y axis of 1-d histograms // is set to 0 if the minimum bin content is greater than 0 and TH1::SetMinimum // has not been called. // Otherwise the minimum is based on the minimum bin content. and the corresponding getter function GetHistMinimumZero git-svn-id: http://root.cern.ch/svn/root/trunk@10584 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 15:55:03 UTC
950d071 Fix in the constructor in case of a "const enum" git-svn-id: http://root.cern.ch/svn/root/trunk@10583 27541ba8-7e3a-0410-8455-c3a389f83636 22 November 2004, 15:53:41 UTC
a0683a9 From Maxim Nikulin: Add possibility to use environment variables in the ACLiC.BuildDir entry of rootrc files. E.g. ACLiC.BuildDir: $HOME/s/var/root git-svn-id: http://root.cern.ch/svn/root/trunk@10582 27541ba8-7e3a-0410-8455-c3a389f83636 20 November 2004, 18:08:02 UTC
aaad88d From valeri Fine: Fix a crash when running with Qt and one starts the GuiBuilder from the TCanvas menu git-svn-id: http://root.cern.ch/svn/root/trunk@10580 27541ba8-7e3a-0410-8455-c3a389f83636 20 November 2004, 06:50:42 UTC
d707752 From Philippe: This patch supports the case where the type of a data member changed from [NamespaceA::]ClassName to [NamespaceB::]ClassName, where both namespace are optional. git-svn-id: http://root.cern.ch/svn/root/trunk@10579 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 20:38:36 UTC
183a153 From Philippe: This patch should re-add the ability of supressing transient data member and the ability to browsing sub-branches (like fTracks). git-svn-id: http://root.cern.ch/svn/root/trunk@10578 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 20:08:58 UTC
097db88 fix problem with uname -r returning a string on cygwin that cannot be used as part of a file name. git-svn-id: http://root.cern.ch/svn/root/trunk@10577 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 17:59:11 UTC
845c97b Move to development release 4.01/04. Now building the binaries. If everything OK, the CVS tag will be put this weekend git-svn-id: http://root.cern.ch/svn/root/trunk@10576 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 15:57:59 UTC
45ce6c6 add -liconv when building XML on win32gcc. git-svn-id: http://root.cern.ch/svn/root/trunk@10575 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 15:33:40 UTC
e3a2667 Give the possibility to display in the GL viewer as an alternative to the pad. git-svn-id: http://root.cern.ch/svn/root/trunk@10574 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 14:58:55 UTC
c378332 Initialize all class pointers in default constructor. This fixes a problem when reading multiple geometries in the same session. git-svn-id: http://root.cern.ch/svn/root/trunk@10573 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 14:30:10 UTC
6777342 white space corrections, tab removal and error message corrections. git-svn-id: http://root.cern.ch/svn/root/trunk@10572 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 14:28:17 UTC
1c49832 From Gerri: Fix problem in RpdUser() affecting transmission of random tag when compiled with AFS support. git-svn-id: http://root.cern.ch/svn/root/trunk@10571 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 12:33:51 UTC
067ea77 Disable new logic introduced by Axel in TBranchElement::Browse for hiding non persistent members. This had a ude side effect of not browsing TClonesArray or collections. git-svn-id: http://root.cern.ch/svn/root/trunk@10570 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 11:39:24 UTC
413315e moved -D__INSIDE_CYGWIN__ into rfio/Module.mk (avoid compiling all sources with this flag only needed for RFIO headers). git-svn-id: http://root.cern.ch/svn/root/trunk@10569 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 10:11:06 UTC
cf5a90b move -D__INSIDE_CYGWIN__ into rfio/Module.mk. Only the TRFIOFile.cxx and TCastorFile.cxx need to be compiled with this option on Win32. git-svn-id: http://root.cern.ch/svn/root/trunk@10568 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 10:09:39 UTC
03fe94e Option "same" combined with "prof" was not working correctly git-svn-id: http://root.cern.ch/svn/root/trunk@10567 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 09:40:30 UTC
f8b8634 Remove unused members TFile* fCurrentFile Current file TDirectory* fCurrentDirectory Current directory TVirtualPad* fCurrentCanvas Current graphics canvas TVirtualPad* fCurrentPad Current graphics pad TStyle* fCurrentStyle Current graphics style git-svn-id: http://root.cern.ch/svn/root/trunk@10566 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 07:25:43 UTC
362f532 Define G__TMPFILE in CINTCFLAGS. This should solve the problem for Windows users running without priviledges. git-svn-id: http://root.cern.ch/svn/root/trunk@10565 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 07:25:09 UTC
1ff8cfc Add the following lines: # Default 3d Viewer # by default 3-D views are shown in the pad. # if the next line is activated, the default viewer will be OpenGL #Viewer3D.DefaultDrawOption: ogl git-svn-id: http://root.cern.ch/svn/root/trunk@10564 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 06:46:19 UTC
8524938 In TGeoVolume::Draw use the TEnv variable Viewer3D.DefaultDrawOption as an option to Draw. If this environment variable is defined in system.rootrc (or .rootrc), it is used to specify the default value when drawing a volume. For example, if this variable is set to "ogl", the TViewerOpenGL viewer will be used by default to draw TGeo objects instead of TPad. git-svn-id: http://root.cern.ch/svn/root/trunk@10563 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 06:39:54 UTC
80e7d02 Fix a cast problem with gcc2.95 git-svn-id: http://root.cern.ch/svn/root/trunk@10562 27541ba8-7e3a-0410-8455-c3a389f83636 19 November 2004, 06:36:28 UTC
f0ee2ab From Valeri Fine: -- 3 TObject virtual methods: GetName, GetTitle, GetObjectInfo have been overloaded to forward the methods call to the decorated fPoints object needed to fill the "TCanvas" status bar properly. git-svn-id: http://root.cern.ch/svn/root/trunk@10561 27541ba8-7e3a-0410-8455-c3a389f83636 18 November 2004, 18:08:48 UTC
f34ad57 Add the following two functions to TMCParticle (like in TParticle) void Momentum(TLorentzVector &v) const { v.SetPxPyPzE(fPx,fPy,fPz,fEnergy);} void ProductionVertex(TLorentzVector &v) const { v.SetXYZT(fVx,fVy,fVz,fTime);} git-svn-id: http://root.cern.ch/svn/root/trunk@10560 27541ba8-7e3a-0410-8455-c3a389f83636 18 November 2004, 17:06:34 UTC
62f7b92 From Philippe: This patch fixes a problem with printing data members of non-split base class (see in iobug.C(1,0) git-svn-id: http://root.cern.ch/svn/root/trunk@10559 27541ba8-7e3a-0410-8455-c3a389f83636 18 November 2004, 16:54:47 UTC
706b366 From Ilka: changes that provide scroll bars for the object editors: TGedEditor.h,.cxx - new data member: TGCanvas *fCan - set the name of editor window 'canvasname_Editor' TRootCanvas.cxx - minor layout changes required by the scroll bar appearance git-svn-id: http://root.cern.ch/svn/root/trunk@10558 27541ba8-7e3a-0410-8455-c3a389f83636 18 November 2004, 15:52:17 UTC
497bb46 From Timur & Olivier: - Tube and cone are now rendered with specialized OpenGL functions git-svn-id: http://root.cern.ch/svn/root/trunk@10557 27541ba8-7e3a-0410-8455-c3a389f83636 18 November 2004, 14:37:02 UTC
f889a20 From Olivier: - TXTRU::Paint is now like TGeoXtru::Paint. (to make it work with OpenGL) git-svn-id: http://root.cern.ch/svn/root/trunk@10556 27541ba8-7e3a-0410-8455-c3a389f83636 18 November 2004, 14:35:25 UTC
0008789 From Philippe: The crash for iobug.C(1,0) was fixed in a previous patch. The bad results in iobug.C(1,1) and iobug.C(2,1) were a result of badly formed files (i.e. the file produce do not contain the correct data!). This patch resolves the solution by insuring that all the level of base classes have their own TBranchElement object except when inside a split collection. When the base class or any of its own base class has no data member, there is no branch created (this was already the case). The TBranchElement corresponding to the base class itself does NOT have a TLeafElement (but has at least one sub-TBranchElement). Its fObject points to the start of the sub-part of the object which correspond to its base class. In addition, this patch corrects TBranch::GetSubBranch to give the correct result even if the hiearchy of branch is more than 2 deep. This patch also correct GetValueClones and GetValueSTL to add the base class offset only once. git-svn-id: http://root.cern.ch/svn/root/trunk@10555 27541ba8-7e3a-0410-8455-c3a389f83636 18 November 2004, 06:13:14 UTC
db3f82c From Philippe: This fix is needed for MSVC 6 git-svn-id: http://root.cern.ch/svn/root/trunk@10554 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 20:29:13 UTC
a7c4eb7 From Philippe One more portability problem fix git-svn-id: http://root.cern.ch/svn/root/trunk@10553 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 20:06:50 UTC
a7ff5c0 From Philippe Fix portability problems on TemplateBroken compilers git-svn-id: http://root.cern.ch/svn/root/trunk@10552 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 19:48:19 UTC
8fe98d1 On MacOS X bools are not addressable (they are but they are 4 bytes and not 1 byte). Need to set G__UNADDRESSABLEBOOL. git-svn-id: http://root.cern.ch/svn/root/trunk@10551 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 18:06:24 UTC
0522c07 set kTRUE and kFALSE to true and flase and not 1 and 0. git-svn-id: http://root.cern.ch/svn/root/trunk@10550 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 18:04:41 UTC
9fdad1f From Philippe, This patch implements the schema evolution to and from selected containers. The following cases are currently implemented: TClonesArray object -> STL object containing the same type TClonesArray pointer -> STL pointer containing the same type STL object -> STL object containing the same type STL pointer -> STL pointer containing the same type STL split branches -> TClonesArray In addition this patch implement the ability to have schema evolution between various version of a foreign class when the library is not present. This patch also support in in TTree::Draw for the schema evolution of simple type stored in a non-split branch. git-svn-id: http://root.cern.ch/svn/root/trunk@10549 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 17:56:53 UTC
5ce305e Fix obsolete comments in the the TCanvas header (thanks Bill Love) git-svn-id: http://root.cern.ch/svn/root/trunk@10548 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 17:04:16 UTC
27cf408 From Olivier: - TTUBE::Paint stamp the tube with kANY (we do not want to do further optimization in the g3d package). git-svn-id: http://root.cern.ch/svn/root/trunk@10547 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 13:18:51 UTC
943c73e added references to CASTOR as the source of libshift. Add link to CASTOR web page. git-svn-id: http://root.cern.ch/svn/root/trunk@10546 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 09:29:56 UTC
81a05eb Undo changes from Philippe. The new version was not able to read previous ROOT files, eg files containing TGeo objects. git-svn-id: http://root.cern.ch/svn/root/trunk@10545 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 08:46:43 UTC
ba00ab7 Fix a cast problem reported by gcc2.95 git-svn-id: http://root.cern.ch/svn/root/trunk@10544 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 08:45:40 UTC
565e49d Fix an undefined variable oldcl in Philippe's code git-svn-id: http://root.cern.ch/svn/root/trunk@10543 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 06:35:21 UTC
6b24899 Two new files required by the previous patch from Philippe git-svn-id: http://root.cern.ch/svn/root/trunk@10542 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 06:29:22 UTC
acc109c From Philippe: This patch implements the schema evolution to and from selected containers. The following cases are currently implemented: TClonesArray object -> STL object containing the same type TClonesArray pointer -> STL pointer containing the same type STL object -> STL object containing the same type STL pointer -> STL pointer containing the same type STL split branches -> TClonesArray In addition this patch implement the ability to have schema evolution between various version of a foreign class when the library is not present. This patch also support in in TTree::Draw for the schema evolution of simple type stored in a non-split branch. git-svn-id: http://root.cern.ch/svn/root/trunk@10541 27541ba8-7e3a-0410-8455-c3a389f83636 17 November 2004, 06:02:52 UTC
ac2425a Add new tutorial illustrating the use of TMath::LaplaceDist Fix minor problems in mathBeta git-svn-id: http://root.cern.ch/svn/root/trunk@10540 27541ba8-7e3a-0410-8455-c3a389f83636 16 November 2004, 17:52:42 UTC
9c95165 From Anna Kreshuk Add the Laplace distributions Double_t LaplaceDist(Double_t x, Double_t alpha=0, Double_t beta=1); Double_t LaplaceDistI(Double_t x, Double_t alpha=0, Double_t beta=1); git-svn-id: http://root.cern.ch/svn/root/trunk@10539 27541ba8-7e3a-0410-8455-c3a389f83636 16 November 2004, 17:15:34 UTC
d244ce9 Add -D__INSIDE_CYGWIN__ to CXXFLAGS. This is required when compiling with the Castor/RFIO latest sources on CYGWIN git-svn-id: http://root.cern.ch/svn/root/trunk@10538 27541ba8-7e3a-0410-8455-c3a389f83636 16 November 2004, 14:50:00 UTC
4774667 From Olivier: - TPCON with angles equal to 0 et 360 crashed in X3D and OpenGL git-svn-id: http://root.cern.ch/svn/root/trunk@10537 27541ba8-7e3a-0410-8455-c3a389f83636 16 November 2004, 13:17:21 UTC
38b5b34 From Anna Kreshuk New tutorial illustrating the new functions TMath::BetaDist and TMath::BetaDistI git-svn-id: http://root.cern.ch/svn/root/trunk@10536 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 23:04:17 UTC
259244b From Anna Kreshuk: Add two new functions to TMath: Double_t BetaDist(Double_t x, Double_t p, Double_t q); Double_t BetaDistI(Double_t x, Double_t p, Double_t q); git-svn-id: http://root.cern.ch/svn/root/trunk@10535 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 22:28:14 UTC
3baf2a3 Improve comments in TH1::GetRMS and TH1::GetRMSError (thanks to Anna Kreshuk & Roman Karawatzki) git-svn-id: http://root.cern.ch/svn/root/trunk@10534 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 21:42:18 UTC
43e1ba9 From Olivier: - Documentation update (fill patterns > 3100) git-svn-id: http://root.cern.ch/svn/root/trunk@10533 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 16:21:08 UTC
75b86dd Add more comments to TTreePlayer::Scan to mention TTree::SetScanField and give an example. git-svn-id: http://root.cern.ch/svn/root/trunk@10532 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 15:17:16 UTC
fb1dd38 From Timur Pocheptsov Implement panning in the GL viewer using the up/down/left/right keys git-svn-id: http://root.cern.ch/svn/root/trunk@10531 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 14:59:02 UTC
d2415c1 From Eddy Offermann: After the introduction of the Bnch-Kaufman decomposition for symmetric matrices, we have to update some comments in the invertMatrix.C tutorial, git-svn-id: http://root.cern.ch/svn/root/trunk@10530 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 14:54:29 UTC
7cd0aee Fix an error in TH3::Project3D in case of option like "xy" (thanks to Y.Fisiak) git-svn-id: http://root.cern.ch/svn/root/trunk@10529 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 14:51:32 UTC
922c348 From Olivier: - New hatch styles are also available in PaintBox git-svn-id: http://root.cern.ch/svn/root/trunk@10528 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 14:44:12 UTC
516d430 From Olivier: - New function PaintFillAreaHatches (see the help of this function for details) to paint hatches with lines. These hatches are visible in PS files with gv even with anti-aliasing on. git-svn-id: http://root.cern.ch/svn/root/trunk@10527 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 12:35:11 UTC
96479c1 From Ilka: a fix in TArrow::SavePrimitive for saving the arrow draw option in generated code. git-svn-id: http://root.cern.ch/svn/root/trunk@10526 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 10:26:27 UTC
3a75404 Add a few more comments in the section describing the "convention for numbering bins" git-svn-id: http://root.cern.ch/svn/root/trunk@10525 27541ba8-7e3a-0410-8455-c3a389f83636 15 November 2004, 08:00:38 UTC
29988f1 Update the comments comparing TRolke with TFeldmanCousins git-svn-id: http://root.cern.ch/svn/root/trunk@10524 27541ba8-7e3a-0410-8455-c3a389f83636 13 November 2004, 12:58:20 UTC
3e5bf7c From Philippe: Fix problems reported by Victor with includes using Boost. One of the problem was the resolution of ::boost::is_function by G__scopeoperator. It was assuming that the leading :: meants that the symbol was in the global namespace. git-svn-id: http://root.cern.ch/svn/root/trunk@10523 27541ba8-7e3a-0410-8455-c3a389f83636 13 November 2004, 07:49:45 UTC
6a29595 I forgot TSortedList too git-svn-id: http://root.cern.ch/svn/root/trunk@10522 27541ba8-7e3a-0410-8455-c3a389f83636 12 November 2004, 22:02:11 UTC
9dc253f TClonesArray was forgotten in the previous checkin git-svn-id: http://root.cern.ch/svn/root/trunk@10521 27541ba8-7e3a-0410-8455-c3a389f83636 12 November 2004, 21:55:41 UTC
001bd97 Implement a sugestion from Eddy Offermann: add constness to the following functions of the collection classes AddAfter, AddBefore, After, Before git-svn-id: http://root.cern.ch/svn/root/trunk@10520 27541ba8-7e3a-0410-8455-c3a389f83636 12 November 2004, 21:51:18 UTC
d9879d0 AsString() was not correct for the "bool" type. obj->Dump() did not show any value for booleans. git-svn-id: http://root.cern.ch/svn/root/trunk@10519 27541ba8-7e3a-0410-8455-c3a389f83636 11 November 2004, 20:42:26 UTC
back to top