- Mar 31, 2008
-
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22899 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 28, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22886 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
mathcore mathmore fftw foam fumili genvector matrix minuit minuit2 mlp physics smatrix splot unuran quadp git-svn-id: http://root.cern.ch/svn/root/trunk@22885 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
on a canvas just read from a file and not yet drawn. This fixes the report http://root.cern.ch/root/roottalk/roottalk08/0271.html git-svn-id: http://root.cern.ch/svn/root/trunk@22884 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
are unnecessary hence restoring lost performance in case where the TTree contains many simple type (double, int, etc.) git-svn-id: http://root.cern.ch/svn/root/trunk@22882 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 27, 2008
-
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22877 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22876 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22875 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22874 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22873 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
In batch, when a picture was saved in a binary file (gif for instance) from an image containing more than one pad, only the first pad was saved. The following macro demonstrates the problem: ccc2.gif was wrong compared to ccc1.gif. { gROOT->SetBatch(); TCanvas *c = new TCanvas; c->Divide(1,2); TH1F *h = new TH1F("gaus", "gaus", 100, -5, 5); h->FillRandom("gaus", 10000); c->cd(1); h->Draw(); c->cd(2); h->Draw("c*"); c->Print("ccc1.gif"); TImage *img = TImage::Create(); img->FromPad(c); img->WriteImage("ccc2.gif"); } git-svn-id: http://root.cern.ch/svn/root/trunk@22872 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22871 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22870 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22869 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
anyway). git-svn-id: http://root.cern.ch/svn/root/trunk@22868 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22867 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
anyway). Include paths remain the same. git-svn-id: http://root.cern.ch/svn/root/trunk@22866 27541ba8-7e3a-0410-8455-c3a389f83636
-
Ilka Antcheva authored
Fixed following case on Windows, debug mode MSVC2008, on a dual core dead locks in 100% of all cases after a right-click on the canvas during the "WaitPrimitive" call and select e.g. "SaveAs" from the context menu. When the file dialog is being drawn the first time it gets grayed out immediately - probably because it's not getting any events to process. The only way out is to kill ROOT git-svn-id: http://root.cern.ch/svn/root/trunk@22864 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
- Revert latest changes in configure, Makefile.in and mathmore/Module.mk and apply the rule globally instead. This will solve problems when mixing external libraries built in optimized mode and ROOT built in debug mode (runtime libraries mismatch). This was harmless with MSVC++7.1, but fatal with MSVC++8.0 and 9.0. git-svn-id: http://root.cern.ch/svn/root/trunk@22863 27541ba8-7e3a-0410-8455-c3a389f83636
-
Philippe Canal authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22862 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
Correct number of particles and references. git-svn-id: http://root.cern.ch/svn/root/trunk@22861 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 26, 2008
-
-
Paul Russo authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22860 27541ba8-7e3a-0410-8455-c3a389f83636
-
Paul Russo authored
Also one change so that we use -I<sysdir>/cint/<coreversion>/inc instead of: -I<sysdir>/<coreversion>/inc With these changes I am able to run the cint tests in ${ROOTSYS}/cint/test directly. -- Paul Russo git-svn-id: http://root.cern.ch/svn/root/trunk@22859 27541ba8-7e3a-0410-8455-c3a389f83636
-
Paul Russo authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22858 27541ba8-7e3a-0410-8455-c3a389f83636
-
Olivier Couet authored
- fixed bunch of compilation bugs showing up on old systems git-svn-id: http://root.cern.ch/svn/root/trunk@22855 27541ba8-7e3a-0410-8455-c3a389f83636
-
Axel Naumann authored
* Fix a problem when returning references to basic types (see char& TString::operator[]) (result7 wasn't properly set in newlink.cxx) * Fix a problem (reintroduced) when trying to call methods through pointers of a base class ( the overloaded destructor doesn't have the same name... obviously) Now roottest (except for python) passes with ./configure --no-stubs git-svn-id: http://root.cern.ch/svn/root/trunk@22854 27541ba8-7e3a-0410-8455-c3a389f83636
-
Axel Naumann authored
Improve indentation, remove tabs - should fix coding violations git-svn-id: http://root.cern.ch/svn/root/trunk@22853 27541ba8-7e3a-0410-8455-c3a389f83636
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22851 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22850 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
- Solve a problem of mixing GSL library built in optimized mode and ROOT built in debug mode (runtime libraries mismatch) git-svn-id: http://root.cern.ch/svn/root/trunk@22849 27541ba8-7e3a-0410-8455-c3a389f83636
-
Axel Naumann authored
Avoids problems with custom new/delete handlers acting on only one side of the new/deletion. git-svn-id: http://root.cern.ch/svn/root/trunk@22845 27541ba8-7e3a-0410-8455-c3a389f83636
-
Axel Naumann authored
Namespace builder should skip anonymous namespaces git-svn-id: http://root.cern.ch/svn/root/trunk@22844 27541ba8-7e3a-0410-8455-c3a389f83636
-
Axel Naumann authored
Use address of member cast to volatile const char reference, instead of address of member. Allows OffsetOf macro to work also for members of struct type where the struct has an overload of op&() git-svn-id: http://root.cern.ch/svn/root/trunk@22843 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22842 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
( fix for bug https://savannah.cern.ch/bugs/index.php?34936 ) git-svn-id: http://root.cern.ch/svn/root/trunk@22840 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
the ORDER dependency is not supported in < 3.80. git-svn-id: http://root.cern.ch/svn/root/trunk@22839 27541ba8-7e3a-0410-8455-c3a389f83636
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22838 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22837 27541ba8-7e3a-0410-8455-c3a389f83636
-
Paul Russo authored
-- Paul Russo git-svn-id: http://root.cern.ch/svn/root/trunk@22834 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 25, 2008
-
-
Olivier Couet authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22827 27541ba8-7e3a-0410-8455-c3a389f83636
-