- Oct 01, 2007
-
-
Rene Brun authored
// The range specifier has the general format: [xmin,xmax] or [xmin,xmax,nbits] // [0,1] // [-10,100]; // [-pi,pi], [-pi/2,pi/4],[-2pi,2*pi] // [-10,100,16] // [0,0,8] // if nbits is not specified, or nbits <2 or nbits>32 it is set to 32 // if (xmin==0 and xmax==0 and nbits <=16) the double word will be converted // to a float and its mantissa truncated to nbits significative bits. // // IMPORTANT NOTE // -------------- // Lets assume an original variable double x: // When using the format [0,0,8] (ie range not specified) you get the best // relative precision when storing and reading back the truncated x, say xt. // The variance of (x-xt)/x will be better than when specifying a range // for the same number of bits. However the precision relative to the // range (x-xt)/(xmax-xmin) will be worst, and vice-versa. // The format [0,0,8] is also interesting when the range of x is infinite // or unknown. git-svn-id: http://root.cern.ch/svn/root/trunk@20154 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 19, 2007
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19826 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@19825 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 09, 2007
-
-
Fons Rademakers authored
this patch changes TPerfStats so that monitoring data can also be written in MonaLisa via the TVirtualMonitoringWriter interface. Using the new TSQLWriter class SQL can also be used as backend for TVirtualMonitoringWriter. git-svn-id: http://root.cern.ch/svn/root/trunk@19286 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 02, 2007
-
-
Fons Rademakers authored
directory. These rootmap files are generated automatically when the associated LinkDef file(s) or the config/Makefile.depend is changed. No more "make map" needed, rootmaps are always up-to-date! git-svn-id: http://root.cern.ch/svn/root/trunk@18452 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 22, 2007
-
-
Rene Brun authored
Some small mods for effc++ git-svn-id: http://root.cern.ch/svn/root/trunk@18056 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 09, 2007
-
-
Fons Rademakers authored
effc++ corrections. git-svn-id: http://root.cern.ch/svn/root/trunk@17820 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 24, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@16612 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
and virtual memory. git-svn-id: http://root.cern.ch/svn/root/trunk@16611 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 05, 2006
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@16444 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
improvements for PROOF MonaLisa monitoring. git-svn-id: http://root.cern.ch/svn/root/trunk@16442 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 26, 2006
-
-
Fons Rademakers authored
New MonaLisa module. Supports now also reading from MonaLisa via the new gSoap interface. The reader and writer now derive from the abstract base classes: TVirtualMonitoringWriter and TVirtualMonitoringReader. git-svn-id: http://root.cern.ch/svn/root/trunk@15558 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 18, 2006
-
-
Fons Rademakers authored
Dictionary G__%.o: G__%.cxx rules now in main Makefile instead of Module.mk's => changes in Module.mk. First Module.mk's included, then Makefile.precomp - we need ALLHDRS defined Split $(PCHEXTRAOBJ) and $(PCHFILE) rules - fixes clash with make -j2 Define CINTCXXFLAGS:= - otherwise they will contain PCHCXXFLAGS via their definition as a copy of CXXFLAGS. MSVC: prevent LNK4206 linker warning (-Yl...) git-svn-id: http://root.cern.ch/svn/root/trunk@14301 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 14, 2005
-
-
Fons Rademakers authored
the parameter names were swapped in the comments. git-svn-id: http://root.cern.ch/svn/root/trunk@13703 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 11, 2005
-
-
Fons Rademakers authored
Class defining interface to MonaLisa Monitoring Services in ROOT The TMonaLisa object is used to send monitoring information to a MonaLisa server using the MonaLisa ApMon package (libapmoncpp.so/UDP packets). The MonaLisa ApMon library for C++ can be downloaded at http://monalisa.cacr.caltech.edu/monalisa__Download__ApMon.html, current version: http://monalisa.cacr.caltech.edu/download/apmon/ApMon_cpp-2.0.6.tar.gz The ROOT implementation is primary optimized for process/job monitoring, although all other generic MonaLisa ApMon functionality can be exploited through the ApMon class directly (gMonaLisa->GetApMon()). git-svn-id: http://root.cern.ch/svn/root/trunk@13625 27541ba8-7e3a-0410-8455-c3a389f83636
-