diff options
author | thierry <thierry@FreeBSD.org> | 2004-04-18 21:52:23 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2004-04-18 21:52:23 +0800 |
commit | 2c9d52c6e05fa54688939ef8ee5597e4ed8af889 (patch) | |
tree | 7232f4c2e1ace1550ddd4891cb647b0d9e13e65b /devel | |
parent | 98647f95d9e55f4d0d33a65d04b84693530e3939 (diff) | |
download | freebsd-ports-gnome-2c9d52c6e05fa54688939ef8ee5597e4ed8af889.tar.gz freebsd-ports-gnome-2c9d52c6e05fa54688939ef8ee5597e4ed8af889.tar.zst freebsd-ports-gnome-2c9d52c6e05fa54688939ef8ee5597e4ed8af889.zip |
Add root 4.00.03, an Object-Oriented Data Analysis Framework.
PR: 65453
Submitted by: Simon Lang <slang@freebsd.org>
Approved by: mat (mentor).
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/root/Makefile | 122 | ||||
-rw-r--r-- | devel/root/distinfo | 2 | ||||
-rw-r--r-- | devel/root/files/patch-config::Makefile.freebsd4 | 55 | ||||
-rw-r--r-- | devel/root/files/patch-configure | 11 | ||||
-rw-r--r-- | devel/root/files/patch-test::Makefile.arch | 25 | ||||
-rw-r--r-- | devel/root/pkg-descr | 23 | ||||
-rw-r--r-- | devel/root/pkg-plist | 1872 |
8 files changed, 2111 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index c2d09d1ca065..307cc3884e0c 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1073,6 +1073,7 @@ SUBDIR += rinfo SUBDIR += rlwrap SUBDIR += robodoc + SUBDIR += root SUBDIR += rpc2 SUBDIR += rtplib SUBDIR += ruby-amstd diff --git a/devel/root/Makefile b/devel/root/Makefile new file mode 100644 index 000000000000..c552170c5c95 --- /dev/null +++ b/devel/root/Makefile @@ -0,0 +1,122 @@ +# New ports collection makefile for: root +# Date created: 7 April 2004 +# Whom: Simon Lang <slang@freebsd.org> +# +# $FreeBSD$ +# + +PORTNAME= root +PORTVERSION= 4.00.03 +CATEGORIES= devel science math +MASTER_SITES= ftp://root.cern.ch/root/ +DISTNAME= ${PORTNAME}_v${PORTVERSION}.source + +MAINTAINER= simon@lang-clan.de +COMMENT= An Object-Oriented Data Analysis Framework + +HAS_CONFIGURE= yes +CONFIGURE_TARGET= freebsd4 +ALL_TARGET= showbuild skip all +USE_GMAKE= yes +USE_OPENLDAP= yes +USE_QT_VER= 3 +QT_NONSTANDARD= yes +USE_XLIB= yes +USE_XPM= yes +USE_GL= yes +USE_REINPLACE= yes +REINPLACE_ARGS= -i "" +WRKSRC= ${WRKDIR}/${PORTNAME} + +F77?= f77 + +# If the related ports are installed you may enable ROOT's support +# for them, too. It *seams* that +# --enable-asimage (After Image: ports/graphics/libafterimage) +# --enable-mysql (MySQL: ports/databases/mysql50-client) +# --enable-pgsql (PostgreSQL: ports/databases/postgresql73) +# are working. A know but yet unsolved problem: The support of +# Kerberos 5 needs some patches to ROOT. +# For this port my intention was to use only features that are +# available out of the box on a FreeBSD system running X11/QT. +# A lot of the features are related to software used in high +# energy physics projects. Have a look to the ROOT web page for +# more informations. +CONFIGURE_ARGS= \ + ${CONFIGURE_TARGET} \ + --prefix=${PREFIX} \ + --etcdir=${PREFIX}/etc \ + --mandir=${PREFIX}/man/man1 \ + --disable-afs \ + --disable-alien \ + --disable-asimage \ + --disable-cern \ + --disable-chirp \ + --disable-dcache \ + --enable-exceptions \ + --enable-explicitlink \ + --disable-globus \ + --disable-krb5 \ + --enable-ldap \ + --disable-mysql \ + --enable-opengl \ + --disable-openiv \ + --disable-pgsql \ + --disable-pythia \ + --disable-pythia6 \ + --with-qt-incdir=${QT_PREFIX}/include \ + --with-qt-libdir=${QT_PREFIX}/lib \ + --disable-rfio \ + --disable-rpath \ + --disable-sapdb \ + --disable-shadowpw \ + --enable-shared \ + --enable-soversion \ + --disable-srp \ + --disable-table \ + --disable-venus + +INSTALLS_SHLIB= yes +NO_FILTER_SHLIBS= yes +LDCONFIG_DIRS= %%PREFIX%%/lib/root %%PREFIX%%/lib/root/cint +MAN1= cint.1 g2root.1 h2root.1 hadd.1 makecint.1 memprobe.1 +MAN1+= proofd.1 proofserv.1 rmkdepend.1 root-config.1 root.1 +MAN1+= root.exe.1 rootcint.1 rootd.1 rootn.exe.1 + +MODTESTS= Event hsimple minexam tcollex tstring +MAKE_TENV= ${MAKE_ENV} CXX="${CXX}" LDFLAGS="${LDFLAGS}" + +.include <bsd.port.pre.mk> + +# The thread sub-system was not working for ROOT versions 3.x on FreeBSD 4.x +# systems. Meanwhile maybe it's working with some patches - but I have no +# FreeBSD 4.x system still running for testing ;-) +.if ${OSVERSION} < 500016 +CONFIGURE_ARGS+= --disable-thread +PLIST_SUB+= THREADS="@comment " +.else +CONFIGURE_ARGS+= --enable-thread +CONFIGURE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ + PTHREAD_LIBS="${PTHREAD_LIBS}" +MAKE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ + PTHREAD_LIBS="${PTHREAD_LIBS}" +PLIST_SUB+= THREADS="" +.endif + +post-patch: + @${RM} ${WRKSRC}/test/Makefile.arch.orig + @${REINPLACE_CMD} -e 's|auxcflags=\"-pthread|auxcflags=\"${PTHREAD_CFLAGS}| ; \ + s|auxlibs=\"-pthread|auxlibs=\"${PTHREAD_LIBS}|' \ + ${WRKSRC}/config/root-config.in + +.if defined(MAINTAINER_MODE) +test: install + (cd ${DOCSDIR}/test ; \ + ${SETENV} ${MAKE_TENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS}) +. for module in ${MODTESTS} + (cd ${DOCSDIR}/test ; \ + ${SETENV} LD_LIBRARY_PATH=.:${LD_LIBRARY_PATH} ./${module}) +. endfor +.endif + +.include <bsd.port.post.mk> diff --git a/devel/root/distinfo b/devel/root/distinfo new file mode 100644 index 000000000000..456267ae41b9 --- /dev/null +++ b/devel/root/distinfo @@ -0,0 +1,2 @@ +MD5 (root_v4.00.03.source.tar.gz) = e99a141b0d0717b6a2377ad66c7d3b2d +SIZE (root_v4.00.03.source.tar.gz) = 10689865 diff --git a/devel/root/files/patch-config::Makefile.freebsd4 b/devel/root/files/patch-config::Makefile.freebsd4 new file mode 100644 index 000000000000..ff8c7a896a1a --- /dev/null +++ b/devel/root/files/patch-config::Makefile.freebsd4 @@ -0,0 +1,55 @@ +--- config/Makefile.freebsd4.orig Mon Feb 16 11:12:43 2004 ++++ config/Makefile.freebsd4 Sat Apr 17 00:35:00 2004 +@@ -5,7 +5,7 @@ + PLATFORM = fbsd + + DEBUGFLAGS = -g +-OPTFLAGS = -O ++#OPTFLAGS = -O + ifeq (debug,$(findstring debug,$(ROOTBUILD))) + OPT = $(DEBUGFLAGS) + NOOPT = +@@ -15,10 +15,10 @@ + endif + + # Compiler: +-CXX = g++ +-CC = gcc +-CXXFLAGS = -pipe -W -Wall -fPIC -I/usr/X11R6/include $(EXTRA_CXXFLAGS) +-CFLAGS = -pipe -W -Wall -fPIC -I/usr/X11R6/include $(EXTRA_CFLAGS) ++#CXX = g++ ++#CC = gcc ++CXXFLAGS += -W -Wall -fPIC -I$(X11BASE)/include $(EXTRA_CXXFLAGS) ++CFLAGS += -W -Wall -fPIC -I$(X11BASE)/include $(EXTRA_CFLAGS) + CINTCXXFLAGS = -pipe -W -Wall -fPIC -DG__REGEXP $(EXTRA_CXXFLAGS) \ + -DG__UNIX -DG__SHAREDLIB -DG__ROOT -DG__REDIRECTIO -DG__OSFDLL + CINTCFLAGS = -pipe -W -Wall -fPIC -DG__REGEXP -DG__UNIX -DG__SHAREDLIB \ +@@ -26,13 +26,13 @@ + COMPILER = gnu + + ifeq ($(ENABLETHREAD),yes) +-CXXFLAGS += -pthread +-CINTCXXFLAGS += -pthread ++CXXFLAGS += $(PTHREAD_CFLAGS) ++CINTCXXFLAGS += $(PTHREAD_CFLAGS) + endif + + # Linker: +-LD = g++ +-LDFLAGS = $(OPT) $(EXTRA_LDFLAGS) ++LD = $(CXX) ++LDFLAGS += $(OPT) $(EXTRA_LDFLAGS) + SOFLAGS = -shared -Wl,-x -Wl,-soname, + SOEXT = so + +@@ -43,8 +43,8 @@ + CRYPTLIBS = -lcrypt + + # Fortran: +-F77 = f77 +-F77FLAGS = $(OPT) ++#F77 = f77 ++F77FLAGS += $(OPT) + F77LIBS = -lg2c + + # Extras diff --git a/devel/root/files/patch-configure b/devel/root/files/patch-configure new file mode 100644 index 000000000000..f68b2459fbf3 --- /dev/null +++ b/devel/root/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Thu Feb 19 01:11:18 2004 ++++ configure Sat Apr 17 13:54:24 2004 +@@ -901,7 +901,7 @@ + ;; + freebsd*) + if test "x$enable_thread" = "xyes"; then +- threadlib="-pthread" ++ threadlib="$PTHREAD_LIBS" + threadlibdir= + fi + ;; diff --git a/devel/root/files/patch-test::Makefile.arch b/devel/root/files/patch-test::Makefile.arch new file mode 100644 index 000000000000..fda34e13eef8 --- /dev/null +++ b/devel/root/files/patch-test::Makefile.arch @@ -0,0 +1,25 @@ +--- test/Makefile.arch.orig Sat Apr 17 10:25:16 2004 ++++ test/Makefile.arch Sat Apr 17 10:41:58 2004 +@@ -9,7 +9,6 @@ + ARCH := $(shell root-config --arch) + PLATFORM = $(ARCH) + +-CXX = + ObjSuf = o + SrcSuf = cxx + ExeSuf = +@@ -426,10 +425,10 @@ + + ifeq ($(ARCH),freebsd4) + # FreeBSD with glibc +-CXX = g++ +-CXXFLAGS = -O -pipe -W -Wall -fPIC +-LD = g++ +-LDFLAGS = -O ++#CXX = g++ ++CXXFLAGS += -W -Wall -fPIC ++LD = $(CXX) ++#LDFLAGS = -O + SOFLAGS = -shared -Wl,-x + endif + diff --git a/devel/root/pkg-descr b/devel/root/pkg-descr new file mode 100644 index 000000000000..3afa3d8fdc0e --- /dev/null +++ b/devel/root/pkg-descr @@ -0,0 +1,23 @@ +ROOT stand for "<R>OOTs <O>bject-<O>riented <T>echnologies" - it is an object +oriented data anlaysis framework written in C++. ROOT has its origin at the +Centre Europeenne pour la Recherche Nucleaire (CERN) and is a cross platform +tool well-known to high energy physicists, but it's also used in a wide range +of other data analysis applications. The system consists of the C/C++ +interpreter CINT (for interactive development and rapid prototyping) and +hundreds of classes, which provides functionalities u.a. for: + + - Data Histogram and Minimization Operations + - Linear Algebra, Matrix and Vector Operations + - Tree, Ntuple and other Data Containers/Stuctures + - 2D Graphics, 3D Graphics and Detector Geometry Modeling + - Graphical User Interface + - Operating System and Networking Interface + - Inline Documentation and PostScript Interface + - PROOF Server (parallel computing) + +For more information, user manuals, tutorials, how-to's, examples, +discussion groups and so on look at the ROOT web site: + +WWW: http://root.cern.ch/ + +Ported to FreeBSD by Simon Lang, <simon@lang-clan.de> diff --git a/devel/root/pkg-plist b/devel/root/pkg-plist new file mode 100644 index 000000000000..2f67b15e840b --- /dev/null +++ b/devel/root/pkg-plist @@ -0,0 +1,1872 @@ +bin/cint +bin/hadd +bin/makecint +bin/memprobe +bin/proofd +bin/proofserv +bin/rmkdepend +bin/root +bin/root-config +bin/root.exe +bin/rootcint +bin/rootd +bin/rootn.exe +bin/ssh2rpd +etc/hostcert.conf +etc/pdg_table.txt +etc/root.mimes +etc/system.rootauthrc +etc/system.rootdaemonrc +etc/system.rootmap +etc/system.rootrc +include/root/Api.h +include/root/Apiif.h +include/root/Apiifold.h +include/root/AuthConst.h +include/root/BaseCls.h +include/root/Bits.h +include/root/Bswapcpy.h +include/root/Buttons.h +include/root/Bytes.h +include/root/Byteswap.h +include/root/CallFunc.h +include/root/CintLDAP.h +include/root/Class.h +include/root/DataMbr.h +include/root/Demangle.h +include/root/DllImport.h +include/root/Foption.h +include/root/GLConstants.h +include/root/G__ci.h +include/root/Getline.h +include/root/Gtypes.h +include/root/GuiTypes.h +include/root/HelpText.h +include/root/HelpTextTV.h +include/root/Hepevt.h +include/root/Hoption.h +include/root/Hparam.h +include/root/Htypes.h +include/root/KeySymbols.h +include/root/Match.h +include/root/MemCheck.h +include/root/MessageTypes.h +include/root/Method.h +include/root/MethodAr.h +include/root/NetErrors.h +%%THREADS%%include/root/PosixThreadInc.h +include/root/Property.h +include/root/RConfig.h +include/root/RQ_OBJECT.h +include/root/RVersion.h +include/root/Riosfwd.h +include/root/Riostream.h +include/root/Rpair.h +include/root/Rstrstream.h +include/root/Rtypeinfo.h +include/root/Rtypes.h +include/root/RtypesCint.h +include/root/RtypesImp.h +include/root/Strlen.h +include/root/TApplication.h +include/root/TApplicationImp.h +include/root/TArc.h +include/root/TArray.h +include/root/TArrayC.h +include/root/TArrayD.h +include/root/TArrayF.h +include/root/TArrayI.h +include/root/TArrayL.h +include/root/TArrayS.h +include/root/TArrow.h +include/root/TAtt3D.h +include/root/TAttAxis.h +include/root/TAttCanvas.h +include/root/TAttFill.h +include/root/TAttFillCanvas.h +include/root/TAttImage.h +include/root/TAttLine.h +include/root/TAttLineCanvas.h +include/root/TAttMarker.h +include/root/TAttMarkerCanvas.h +include/root/TAttPad.h +include/root/TAttParticle.h +include/root/TAttText.h +include/root/TAttTextCanvas.h +include/root/TAuthenticate.h +include/root/TAxis.h +include/root/TAxis3D.h +include/root/TBRIK.h +include/root/TBaseClass.h +include/root/TBasket.h +include/root/TBenchmark.h +include/root/TBits.h +include/root/TBox.h +include/root/TBranch.h +include/root/TBranchClones.h +include/root/TBranchElement.h +include/root/TBranchObject.h +include/root/TBrowser.h +include/root/TBrowserImp.h +include/root/TBtree.h +include/root/TBuffer.h +include/root/TButton.h +include/root/TCONE.h +include/root/TCONS.h +include/root/TCTUB.h +include/root/TCache.h +include/root/TCanvas.h +include/root/TCanvasImp.h +include/root/TChain.h +include/root/TChainElement.h +include/root/TCint.h +include/root/TClass.h +include/root/TClassEdit.h +include/root/TClassGenerator.h +include/root/TClassMenuItem.h +include/root/TClassStreamer.h +include/root/TClassTable.h +include/root/TClassTree.h +include/root/TClonesArray.h +include/root/TCollection.h +include/root/TColor.h +%%THREADS%%include/root/TCondition.h +%%THREADS%%include/root/TConditionImp.h +include/root/TCondor.h +include/root/TConfidenceLevel.h +include/root/TContextMenu.h +include/root/TContextMenuImp.h +include/root/TControlBar.h +include/root/TControlBarButton.h +include/root/TControlBarImp.h +include/root/TCrown.h +include/root/TCurlyArc.h +include/root/TCurlyLine.h +include/root/TCut.h +include/root/TCutG.h +include/root/TDSet.h +include/root/TDSetProxy.h +include/root/TDataMember.h +include/root/TDataType.h +include/root/TDatabasePDG.h +include/root/TDatime.h +include/root/TDecayChannel.h +include/root/TDecompBase.h +include/root/TDecompChol.h +include/root/TDecompLU.h +include/root/TDecompQRH.h +include/root/TDecompSVD.h +include/root/TDialogCanvas.h +include/root/TDiamond.h +include/root/TDictionary.h +include/root/TDirectory.h +include/root/TDrawPanelHist.h +include/root/TELTU.h +include/root/TEllipse.h +include/root/TEmulatedVectorProxy.h +include/root/TEnv.h +include/root/TError.h +include/root/TEventIter.h +include/root/TEventList.h +include/root/TExMap.h +include/root/TException.h +include/root/TExec.h +include/root/TF1.h +include/root/TF12.h +include/root/TF2.h +include/root/TF3.h +include/root/TFTP.h +include/root/TFeldmanCousins.h +include/root/TFile.h +include/root/TFileDrawMap.h +include/root/TFitPanel.h +include/root/TFitPanelGraph.h +include/root/TFitter.h +include/root/TFolder.h +include/root/TFormula.h +include/root/TFractionFitter.h +include/root/TFrame.h +include/root/TFree.h +include/root/TFriendElement.h +include/root/TFumili.h +include/root/TFunction.h +include/root/TG3DLine.h +include/root/TGApplication.h +include/root/TGButton.h +include/root/TGButtonGroup.h +include/root/TGCanvas.h +include/root/TGClient.h +include/root/TGColorDialog.h +include/root/TGColorSelect.h +include/root/TGComboBox.h +include/root/TGDimension.h +include/root/TGDoubleSlider.h +include/root/TGFSComboBox.h +include/root/TGFSContainer.h +include/root/TGFileDialog.h +include/root/TGFont.h +include/root/TGFrame.h +include/root/TGGC.h +include/root/TGIcon.h +include/root/TGImageMap.h +include/root/TGLKernel.h +include/root/TGLViewerImp.h +include/root/TGLabel.h +include/root/TGLayout.h +include/root/TGListBox.h +include/root/TGListTree.h +include/root/TGListView.h +include/root/TGMenu.h +include/root/TGMimeTypes.h +include/root/TGMsgBox.h +include/root/TGNumberEntry.h +include/root/TGObject.h +include/root/TGPicture.h +include/root/TGProgressBar.h +include/root/TGResourcePool.h +include/root/TGScrollBar.h +include/root/TGShutter.h +include/root/TGSlider.h +include/root/TGSplitter.h +include/root/TGStatusBar.h +include/root/TGString.h +include/root/TGTRA.h +include/root/TGTab.h +include/root/TGTableLayout.h +include/root/TGText.h +include/root/TGTextBuffer.h +include/root/TGTextEdit.h +include/root/TGTextEditDialogs.h +include/root/TGTextEntry.h +include/root/TGTextView.h +include/root/TGToolBar.h +include/root/TGToolTip.h +include/root/TGView.h +include/root/TGWidget.h +include/root/TGWindow.h +include/root/TGX11.h +include/root/TGX11TTF.h +include/root/TGXYLayout.h +include/root/TGaxis.h +include/root/TGedAttFrame.h +include/root/TGedDrawPanel.h +include/root/TGedEditor.h +include/root/TGedMarkerSelect.h +include/root/TGedPatternSelect.h +include/root/TGedPropertyFrame.h +include/root/TGedToolBox.h +include/root/TGenPhaseSpace.h +include/root/TGenerator.h +include/root/TGenericClassInfo.h +include/root/TGeoArb8.h +include/root/TGeoAtt.h +include/root/TGeoBBox.h +include/root/TGeoBoolNode.h +include/root/TGeoCache.h +include/root/TGeoChecker.h +include/root/TGeoCompositeShape.h +include/root/TGeoCone.h +include/root/TGeoEltu.h +include/root/TGeoMCGeometry.h +include/root/TGeoManager.h +include/root/TGeoMaterial.h +include/root/TGeoMatrix.h +include/root/TGeoMedium.h +include/root/TGeoNode.h +include/root/TGeoOverlap.h +include/root/TGeoPainter.h +include/root/TGeoPara.h +include/root/TGeoPatternFinder.h +include/root/TGeoPcon.h +include/root/TGeoPgon.h +include/root/TGeoPhysicalNode.h +include/root/TGeoPolygon.h +include/root/TGeoShape.h +include/root/TGeoSphere.h +include/root/TGeoTorus.h +include/root/TGeoTrack.h +include/root/TGeoTrd1.h +include/root/TGeoTrd2.h +include/root/TGeoTube.h +include/root/TGeoVolume.h +include/root/TGeoVoxelFinder.h +include/root/TGeoXtru.h +include/root/TGeometry.h +include/root/TGlobal.h +include/root/TGraph.h +include/root/TGraph2D.h +include/root/TGraph2DErrors.h +include/root/TGraphAsymmErrors.h +include/root/TGraphBentErrors.h +include/root/TGraphDelaunay.h +include/root/TGraphErrors.h +include/root/TGraphPainter.h +include/root/TGraphSmooth.h +include/root/TGrid.h +include/root/TGridProof.h +include/root/TGridResult.h +include/root/TGroupButton.h +include/root/TGuiFactory.h +include/root/TH1.h +include/root/TH1C.h +include/root/TH1D.h +include/root/TH1F.h +include/root/TH1I.h +include/root/TH1K.h +include/root/TH1S.h +include/root/TH2.h +include/root/TH2C.h +include/root/TH2D.h +include/root/TH2F.h +include/root/TH2I.h +include/root/TH2S.h +include/root/TH3.h +include/root/TH3C.h +include/root/TH3D.h +include/root/TH3F.h +include/root/TH3I.h +include/root/TH3S.h +include/root/THLimitsFinder.h +include/root/THStack.h +include/root/THYPE.h +include/root/THashList.h +include/root/THashTable.h +include/root/THelix.h +include/root/THistPainter.h +include/root/THostAuth.h +include/root/THtml.h +include/root/TImage.h +include/root/TInetAddress.h +include/root/TInspectCanvas.h +include/root/TInspectorImp.h +include/root/TInterpreter.h +include/root/TIterator.h +include/root/TKey.h +include/root/TKeyMapFile.h +include/root/TLDAPAttribute.h +include/root/TLDAPEntry.h +include/root/TLDAPResult.h +include/root/TLDAPServer.h +include/root/TLatex.h +include/root/TLeaf.h +include/root/TLeafB.h +include/root/TLeafC.h +include/root/TLeafD.h +include/root/TLeafElement.h +include/root/TLeafF.h +include/root/TLeafI.h +include/root/TLeafL.h +include/root/TLeafObject.h +include/root/TLeafS.h +include/root/TLegend.h +include/root/TLegendEntry.h +include/root/TLego.h +include/root/TLimit.h +include/root/TLimitDataSource.h +include/root/TLine.h +include/root/TLink.h +include/root/TList.h +include/root/TLorentzRotation.h +include/root/TLorentzVector.h +include/root/TMCParticleType.h +include/root/TMCProcess.h +include/root/TMCVerbose.h +include/root/TMD5.h +include/root/TMap.h +include/root/TMapFile.h +include/root/TMarker.h +include/root/TMarker3DBox.h +include/root/TMaterial.h +include/root/TMath.h +include/root/TMatrix.h +include/root/TMatrixD.h +include/root/TMatrixDBase.h +include/root/TMatrixDCramerInv.h +include/root/TMatrixDEigen.h +include/root/TMatrixDLazy.h +include/root/TMatrixDSym.h +include/root/TMatrixDSymEigen.h +include/root/TMatrixDUtils.h +include/root/TMatrixF.h +include/root/TMatrixFBase.h +include/root/TMatrixFCramerInv.h +include/root/TMatrixFLazy.h +include/root/TMatrixFSym.h +include/root/TMatrixFUtils.h +include/root/TMemberInspector.h +include/root/TMemberStreamer.h +include/root/TMessage.h +include/root/TMessageHandler.h +include/root/TMethod.h +include/root/TMethodArg.h +include/root/TMethodCall.h +include/root/TMinuit.h +include/root/TMixture.h +include/root/TMonitor.h +include/root/TMultiDimFit.h +include/root/TMultiGraph.h +include/root/TMultiLayerPerceptron.h +%%THREADS%%include/root/TMutex.h +%%THREADS%%include/root/TMutexImp.h +include/root/TNamed.h +include/root/TNetFile.h +include/root/TNeuron.h +include/root/TNode.h +include/root/TNodeDiv.h +include/root/TNtuple.h +include/root/TNtupleD.h +include/root/TObjArray.h +include/root/TObjString.h +include/root/TObject.h +include/root/TObjectTable.h +include/root/TOrdCollection.h +include/root/TPARA.h +include/root/TPCON.h +include/root/TPDF.h +include/root/TPDGCode.h +include/root/TPGON.h +include/root/TPServerSocket.h +include/root/TPSocket.h +include/root/TPacketizer2.h +include/root/TPad.h +include/root/TPadEditorOld.h +include/root/TPadOpenGLView.h +include/root/TPadView3D.h +include/root/TPainter3dAlgorithms.h +include/root/TPaletteAxis.h +include/root/TParticle.h +include/root/TParticleClassPDG.h +include/root/TParticlePDG.h +include/root/TPave.h +include/root/TPaveClass.h +include/root/TPaveLabel.h +include/root/TPaveStats.h +include/root/TPaveText.h +include/root/TPavesText.h +include/root/TPluginManager.h +include/root/TPoint.h +include/root/TPoints.h +include/root/TPoints3DABC.h +include/root/TPolyLine.h +include/root/TPolyLine3D.h +include/root/TPolyMarker.h +include/root/TPolyMarker3D.h +%%THREADS%%include/root/TPosixCondition.h +%%THREADS%%include/root/TPosixMutex.h +%%THREADS%%include/root/TPosixThread.h +%%THREADS%%include/root/TPosixThreadFactory.h +include/root/TPostScript.h +include/root/TPrimary.h +include/root/TPrincipal.h +include/root/TProcessID.h +include/root/TProcessUUID.h +include/root/TProfile.h +include/root/TProfile2D.h +include/root/TProof.h +include/root/TProofDebug.h +include/root/TProofDraw.h +include/root/TProofLimitsFinder.h +include/root/TProofPlayer.h +include/root/TProofProgressDialog.h +include/root/TProofServ.h +include/root/TQConnection.h +include/root/TQObject.h +include/root/TROOT.h +%%THREADS%%include/root/TRWLock.h +include/root/TRandom.h +include/root/TRandom2.h +include/root/TRandom3.h +include/root/TRealData.h +include/root/TRef.h +include/root/TRefArray.h +include/root/TRefCnt.h +include/root/TRegexp.h +include/root/TRint.h +include/root/TRolke.h +include/root/TRootApplication.h +include/root/TRootBrowser.h +include/root/TRootCanvas.h +include/root/TRootContextMenu.h +include/root/TRootControlBar.h +include/root/TRootDialog.h +include/root/TRootEmbeddedCanvas.h +include/root/TRootGLKernel.h +include/root/TRootGLU.h +include/root/TRootGLViewer.h +include/root/TRootGLX.h +include/root/TRootGuiFactory.h +include/root/TRootHelpDialog.h +include/root/TRootOIViewer.h +include/root/TRootWGL.h +include/root/TRotMatrix.h +include/root/TRotation.h +include/root/TSPHE.h +include/root/TSQLResult.h +include/root/TSQLRow.h +include/root/TSQLServer.h +include/root/TSVG.h +include/root/TSecContext.h +include/root/TSelector.h +include/root/TSelectorCint.h +include/root/TSelectorDraw.h +%%THREADS%%include/root/TSemaphore.h +include/root/TSeqCollection.h +include/root/TServerSocket.h +include/root/TShape.h +include/root/TSlave.h +include/root/TSlider.h +include/root/TSliderBox.h +include/root/TSocket.h +include/root/TSortedList.h +include/root/TSpectrum.h +include/root/TSpline.h +include/root/TStopwatch.h +include/root/TStorage.h +include/root/TStreamer.h +include/root/TStreamerElement.h +include/root/TStreamerInfo.h +include/root/TString.h +include/root/TStringLong.h +include/root/TStyle.h +include/root/TSynapse.h +include/root/TSysEvtHandler.h +include/root/TSystem.h +include/root/TSystemDirectory.h +include/root/TSystemFile.h +include/root/TTF.h +include/root/TTRAP.h +include/root/TTRD1.h +include/root/TTRD2.h +include/root/TTUBE.h +include/root/TTUBS.h +include/root/TTVLVContainer.h +include/root/TTVSession.h +include/root/TTabCom.h +include/root/TTask.h +include/root/TText.h +%%THREADS%%include/root/TThread.h +%%THREADS%%include/root/TThreadFactory.h +%%THREADS%%include/root/TThreadImp.h +include/root/TTime.h +include/root/TTimeStamp.h +include/root/TTimer.h +include/root/TToggle.h +include/root/TToggleGroup.h +include/root/TTree.h +include/root/TTreeFormula.h +include/root/TTreeFormulaManager.h +include/root/TTreePlayer.h +include/root/TTreeResult.h +include/root/TTreeRow.h +include/root/TTreeViewer.h +include/root/TUUID.h +include/root/TUnixSystem.h +include/root/TUrl.h +include/root/TUtil3D.h +include/root/TUtilHist.h +include/root/TUtilPad.h +include/root/TVector.h +include/root/TVector2.h +include/root/TVector3.h +include/root/TVectorD.h +include/root/TVectorF.h +include/root/TVectorProxy.h +include/root/TView.h +include/root/TViewerX3D.h +include/root/TVirtualCollectionProxy.h +include/root/TVirtualFitter.h +include/root/TVirtualGL.h +include/root/TVirtualGeoPainter.h +include/root/TVirtualGeoTrack.h +include/root/TVirtualHistPainter.h +include/root/TVirtualMC.h +include/root/TVirtualMCApplication.h +include/root/TVirtualMCDecayer.h +include/root/TVirtualMCGeometry.h +include/root/TVirtualMCStack.h +include/root/TVirtualMutex.h +include/root/TVirtualPS.h +include/root/TVirtualPacketizer.h +include/root/TVirtualPad.h +include/root/TVirtualPadEditor.h +include/root/TVirtualProof.h +include/root/TVirtualTreePlayer.h +include/root/TVirtualUtil3D.h +include/root/TVirtualUtilHist.h +include/root/TVirtualUtilPad.h +include/root/TVirtualX.h +include/root/TWbox.h +include/root/TWebFile.h +include/root/TWin32GLKernel.h +include/root/TWin32GLViewerImp.h +include/root/TXTRU.h +include/root/Tailor.h +include/root/Token.h +include/root/Type.h +include/root/Typedf.h +include/root/Varargs.h +include/root/WidgetMessageTypes.h +include/root/Windows4Root.h +include/root/X3DBuffer.h +include/root/X3DDefs.h +include/root/Xpm.h +include/root/ZDeflate.h +include/root/ZIP.h +include/root/ZTrees.h +include/root/aixdlfcn.h +include/root/bcstrm.h +include/root/cbstrm.h +include/root/cfortran.h +include/root/common.h +include/root/compiledata.h +include/root/config.h +include/root/crc32.h +include/root/deflate.h +include/root/dllrev.h +include/root/fproto.h +include/root/gcc3strm.h +include/root/global.h +include/root/header.h +include/root/iccstrm.h +include/root/inffast.h +include/root/inffixed.h +include/root/inflate.h +include/root/inftrees.h +include/root/kccstrm.h +include/root/libstrm.h +include/root/longif.h +include/root/longif3.h +include/root/memtest.h +include/root/mmalloc.h +include/root/mmconfig.h +include/root/mmprivate.h +include/root/newsos.h +include/root/proofdp.h +include/root/rmain.cxx +include/root/rootdp.h +include/root/rpderr.h +include/root/rpdp.h +include/root/rsaaux.h +include/root/rsadef.h +include/root/rsafun.h +include/root/rsalib.h +include/root/security.h +include/root/snprintf.h +include/root/stdstrct.h +include/root/sunos.h +include/root/sunstrm.h +include/root/trees.h +include/root/vc7strm.h +include/root/vcstrm.h +include/root/vcstrmold.h +include/root/x3d.h +include/root/zconf.h +include/root/zlib.h +include/root/zutil.h +lib/root/cint/MAKEINFO +lib/root/cint/include/.cvsignore +lib/root/cint/include/Common.h +lib/root/cint/include/GL/CVS/Entries +lib/root/cint/include/GL/CVS/Repository +lib/root/cint/include/GL/CVS/Root +lib/root/cint/include/GL/gl.h +lib/root/cint/include/GL/glu.h +lib/root/cint/include/GL/glut.h +lib/root/cint/include/GL/xmesa.h +lib/root/cint/include/README.txt +lib/root/cint/include/ReadF.C +lib/root/cint/include/ReadF.cxx +lib/root/cint/include/ReadF.h +lib/root/cint/include/RegE.C +lib/root/cint/include/RegE.cxx +lib/root/cint/include/RegE.h +lib/root/cint/include/X11/CVS/Entries +lib/root/cint/include/X11/CVS/Repository +lib/root/cint/include/X11/CVS/Root +lib/root/cint/include/X11/Xlib.h +lib/root/cint/include/X11/Xutil.h +lib/root/cint/include/X11/keysym.h +lib/root/cint/include/X11/xos.h +lib/root/cint/include/_complex +lib/root/cint/include/_complex.h +lib/root/cint/include/_exception +lib/root/cint/include/_exception.h +lib/root/cint/include/_iostream +lib/root/cint/include/_stdexcept +lib/root/cint/include/_stdexcept.h +lib/root/cint/include/api.h +lib/root/cint/include/array.c +lib/root/cint/include/array.h +lib/root/cint/include/arrayiostream.h +lib/root/cint/include/assert.h +lib/root/cint/include/bool +lib/root/cint/include/bool.h +lib/root/cint/include/boolean.h +lib/root/cint/include/carray.c +lib/root/cint/include/carray.h +lib/root/cint/include/cassert +lib/root/cint/include/cctype +lib/root/cint/include/cerrno +lib/root/cint/include/cfloat +lib/root/cint/include/ciso646 +lib/root/cint/include/climits +lib/root/cint/include/clocale +lib/root/cint/include/cmath +lib/root/cint/include/complex +lib/root/cint/include/complex.h +lib/root/cint/include/constants.h +lib/root/cint/include/csetjmp +lib/root/cint/include/csignal +lib/root/cint/include/cstdarg +lib/root/cint/include/cstddef +lib/root/cint/include/cstdio +lib/root/cint/include/cstdlib +lib/root/cint/include/cstring +lib/root/cint/include/ctime +lib/root/cint/include/ctype.h +lib/root/cint/include/cwchar +lib/root/cint/include/cwctype +lib/root/cint/include/darray.cxx +lib/root/cint/include/darray.h +lib/root/cint/include/errno.h +lib/root/cint/include/ertti.h +lib/root/cint/include/exception +lib/root/cint/include/exception.h +lib/root/cint/include/fcntl.h +lib/root/cint/include/fft.c +lib/root/cint/include/fft.h +lib/root/cint/include/float.h +lib/root/cint/include/fstream +lib/root/cint/include/fstream.h +lib/root/cint/include/graphbuf.h +lib/root/cint/include/iomanip +lib/root/cint/include/iomanip.h +lib/root/cint/include/iosenum.h +lib/root/cint/include/iosfwd +lib/root/cint/include/iosfwd.h +lib/root/cint/include/iostream +lib/root/cint/include/iostream.h +lib/root/cint/include/istream +lib/root/cint/include/limits +lib/root/cint/include/limits.h +lib/root/cint/include/locale +lib/root/cint/include/locale.h +lib/root/cint/include/lsm.c +lib/root/cint/include/lsm.h +lib/root/cint/include/make.arc +lib/root/cint/include/makearc +lib/root/cint/include/makearcg +lib/root/cint/include/makearcsun +lib/root/cint/include/makefile +lib/root/cint/include/makehpib +lib/root/cint/include/makeit.bat +lib/root/cint/include/makeit.c +lib/root/cint/include/math.h +lib/root/cint/include/mkincld.c +lib/root/cint/include/new +lib/root/cint/include/new.h +lib/root/cint/include/ostream +lib/root/cint/include/platform.h +lib/root/cint/include/pthread.h +lib/root/cint/include/readfile.h +lib/root/cint/include/regex.h +lib/root/cint/include/regexp.h +lib/root/cint/include/setjmp.h +lib/root/cint/include/signal.h +lib/root/cint/include/socket.h +lib/root/cint/include/spice.h +lib/root/cint/include/sstream +lib/root/cint/include/statistics.c +lib/root/cint/include/statistics.h +lib/root/cint/include/stdarg.h +lib/root/cint/include/stddef.h +lib/root/cint/include/stdexcept +lib/root/cint/include/stdio.h +lib/root/cint/include/stdiostream.h +lib/root/cint/include/stdlib.h +lib/root/cint/include/stream.h +lib/root/cint/include/streambuf +lib/root/cint/include/string.h +lib/root/cint/include/striostream.h +lib/root/cint/include/strstream +lib/root/cint/include/strstream.h +lib/root/cint/include/sys/.cvsignore +lib/root/cint/include/sys/CVS/Entries +lib/root/cint/include/sys/CVS/Repository +lib/root/cint/include/sys/CVS/Root +lib/root/cint/include/sys/cdefs.h +lib/root/cint/include/sys/file.h +lib/root/cint/include/sys/ipc.h +lib/root/cint/include/sys/msg.h +lib/root/cint/include/sys/sem.h +lib/root/cint/include/sys/shm.h +lib/root/cint/include/sys/stat.h +lib/root/cint/include/termios.h +lib/root/cint/include/time.h +lib/root/cint/include/timespec.h +lib/root/cint/include/typeinfo +lib/root/cint/include/typeinfo.h +lib/root/cint/include/unistd.h +lib/root/cint/include/windows.h +lib/root/cint/include/winsock.h +lib/root/cint/include/xgraph.c +lib/root/cint/include/xygraphbuf.h +lib/root/cint/lib/README.txt +lib/root/cint/lib/bcstream/CVS/Entries +lib/root/cint/lib/bcstream/CVS/Repository +lib/root/cint/lib/bcstream/CVS/Root +lib/root/cint/lib/bcstream/Makefile +lib/root/cint/lib/bcstream/README +lib/root/cint/lib/bcstream/fstrm.h +lib/root/cint/lib/bcstream/iostrm.h +lib/root/cint/lib/bcstream/stdiostr.h +lib/root/cint/lib/bcstream/strm.h +lib/root/cint/lib/bcstream/strstrm.h +lib/root/cint/lib/cbstream/CVS/Entries +lib/root/cint/lib/cbstream/CVS/Repository +lib/root/cint/lib/cbstream/CVS/Root +lib/root/cint/lib/cbstream/Makefile +lib/root/cint/lib/cbstream/fstrm.h +lib/root/cint/lib/cbstream/iostrm.h +lib/root/cint/lib/cbstream/readme.txt +lib/root/cint/lib/cbstream/strstrm.h +lib/root/cint/lib/dll_stl/CVS/Entries +lib/root/cint/lib/dll_stl/CVS/Repository +lib/root/cint/lib/dll_stl/CVS/Root +lib/root/cint/lib/dll_stl/README.txt +lib/root/cint/lib/dll_stl/cinteh.h +lib/root/cint/lib/dll_stl/clim.h +lib/root/cint/lib/dll_stl/dqu.h +lib/root/cint/lib/dll_stl/iter.h +lib/root/cint/lib/dll_stl/lst.h +lib/root/cint/lib/dll_stl/makestr +lib/root/cint/lib/dll_stl/makevec +lib/root/cint/lib/dll_stl/mp.h +lib/root/cint/lib/dll_stl/multmp.h +lib/root/cint/lib/dll_stl/multst.h +lib/root/cint/lib/dll_stl/pr.h +lib/root/cint/lib/dll_stl/que.h +lib/root/cint/lib/dll_stl/se.h +lib/root/cint/lib/dll_stl/setup +lib/root/cint/lib/dll_stl/setup.bat +lib/root/cint/lib/dll_stl/setupbc.bat +lib/root/cint/lib/dll_stl/st.h +lib/root/cint/lib/dll_stl/stk.h +lib/root/cint/lib/dll_stl/str.h +lib/root/cint/lib/dll_stl/suncc5_deque.h +lib/root/cint/lib/dll_stl/suncc5_string.h +lib/root/cint/lib/dll_stl/vary.h +lib/root/cint/lib/dll_stl/vec.h +lib/root/cint/lib/dll_stl/vecbool.h +lib/root/cint/lib/gcc3strm/CVS/Entries +lib/root/cint/lib/gcc3strm/CVS/Entries.Log +lib/root/cint/lib/gcc3strm/CVS/Repository +lib/root/cint/lib/gcc3strm/CVS/Root +lib/root/cint/lib/gcc3strm/Makefile +lib/root/cint/lib/gcc3strm/README.txt +lib/root/cint/lib/gcc3strm/bits/CVS/Entries +lib/root/cint/lib/gcc3strm/bits/CVS/Repository +lib/root/cint/lib/gcc3strm/bits/CVS/Root +lib/root/cint/lib/gcc3strm/fstrm.h +lib/root/cint/lib/gcc3strm/iostrm.h +lib/root/cint/lib/gcc3strm/linkdef.h +lib/root/cint/lib/gcc3strm/sstrm.h +lib/root/cint/lib/gcc3strm/sys/CVS/Entries +lib/root/cint/lib/gcc3strm/sys/CVS/Repository +lib/root/cint/lib/gcc3strm/sys/CVS/Root +lib/root/cint/lib/gl/CVS/Entries +lib/root/cint/lib/gl/CVS/Repository +lib/root/cint/lib/gl/CVS/Root +lib/root/cint/lib/gl/GL.h +lib/root/cint/lib/gl/README.txt +lib/root/cint/lib/gl/TOP.h +lib/root/cint/lib/gl/setup +lib/root/cint/lib/iccstrm/CVS/Entries +lib/root/cint/lib/iccstrm/CVS/Repository +lib/root/cint/lib/iccstrm/CVS/Root +lib/root/cint/lib/iccstrm/Makefile +lib/root/cint/lib/iccstrm/README.txt +lib/root/cint/lib/iccstrm/fstrm.h +lib/root/cint/lib/iccstrm/iostrm.h +lib/root/cint/lib/iccstrm/linkdef.h +lib/root/cint/lib/iccstrm/sstrm.h +lib/root/cint/lib/ipc/CVS/Entries +lib/root/cint/lib/ipc/CVS/Repository +lib/root/cint/lib/ipc/CVS/Root +lib/root/cint/lib/ipc/README.txt +lib/root/cint/lib/ipc/ipcif.h +lib/root/cint/lib/ipc/ipcif.h.old +lib/root/cint/lib/ipc/setup +lib/root/cint/lib/longlong/CVS/Entries +lib/root/cint/lib/longlong/CVS/Repository +lib/root/cint/lib/longlong/CVS/Root +lib/root/cint/lib/longlong/README.txt +lib/root/cint/lib/longlong/longdbl.h +lib/root/cint/lib/longlong/longlong.h +lib/root/cint/lib/longlong/makelongif +lib/root/cint/lib/longlong/makelongif3 +lib/root/cint/lib/longlong/setup +lib/root/cint/lib/longlong/setup.bat +lib/root/cint/lib/longlong/setupbc.bat +lib/root/cint/lib/longlong/setuphp +lib/root/cint/lib/posix/CVS/Entries +lib/root/cint/lib/posix/CVS/Repository +lib/root/cint/lib/posix/CVS/Root +lib/root/cint/lib/posix/README.txt +lib/root/cint/lib/posix/exten.c +lib/root/cint/lib/posix/exten.h +lib/root/cint/lib/posix/mktypes.c +lib/root/cint/lib/posix/posix.h +lib/root/cint/lib/posix/setup +lib/root/cint/lib/posix/setup.bat +lib/root/cint/lib/posix/setupbc.bat +lib/root/cint/lib/posix/setupsc.bat +lib/root/cint/lib/posix/winposix.c +lib/root/cint/lib/posix/winposix.h +lib/root/cint/lib/prec_stl/CVS/Entries +lib/root/cint/lib/prec_stl/CVS/Repository +lib/root/cint/lib/prec_stl/CVS/Root +lib/root/cint/lib/prec_stl/README.txt +lib/root/cint/lib/prec_stl/algorithm +lib/root/cint/lib/prec_stl/bitset +lib/root/cint/lib/prec_stl/climits +lib/root/cint/lib/prec_stl/deque +lib/root/cint/lib/prec_stl/exception +lib/root/cint/lib/prec_stl/functional +lib/root/cint/lib/prec_stl/iterator +lib/root/cint/lib/prec_stl/limits +lib/root/cint/lib/prec_stl/list +lib/root/cint/lib/prec_stl/map +lib/root/cint/lib/prec_stl/memory +lib/root/cint/lib/prec_stl/multimap +lib/root/cint/lib/prec_stl/multiset +lib/root/cint/lib/prec_stl/numeric +lib/root/cint/lib/prec_stl/queue +lib/root/cint/lib/prec_stl/set +lib/root/cint/lib/prec_stl/stack +lib/root/cint/lib/prec_stl/stdexcept +lib/root/cint/lib/prec_stl/string +lib/root/cint/lib/prec_stl/utility +lib/root/cint/lib/prec_stl/valarray +lib/root/cint/lib/prec_stl/vector +lib/root/cint/lib/pthread/CVS/Entries +lib/root/cint/lib/pthread/CVS/Repository +lib/root/cint/lib/pthread/CVS/Root +lib/root/cint/lib/pthread/Makefile +lib/root/cint/lib/pthread/README.txt +lib/root/cint/lib/pthread/pthd.h +lib/root/cint/lib/pthread/setup +lib/root/cint/lib/pthread/setuphp +lib/root/cint/lib/pthread/thread.h +lib/root/cint/lib/qt/CVS/Entries +lib/root/cint/lib/qt/CVS/Repository +lib/root/cint/lib/qt/CVS/Root +lib/root/cint/lib/qt/Makefile +lib/root/cint/lib/qt/README.txt +lib/root/cint/lib/qt/qcompactstyle.h +lib/root/cint/lib/qt/qconfig.h +lib/root/cint/lib/qt/qmodules.h +lib/root/cint/lib/qt/qplatformdefs.h +lib/root/cint/lib/qt/qtcint.h +lib/root/cint/lib/qt/qtclasses.h +lib/root/cint/lib/qt/qtdummy.h +lib/root/cint/lib/qt/qtfunctions.h +lib/root/cint/lib/qt/qtglobals.h +lib/root/cint/lib/qt/qtstatic.cxx +lib/root/cint/lib/qt/setup +lib/root/cint/lib/qt/setup.bat +lib/root/cint/lib/setup +lib/root/cint/lib/snstream/CVS/Entries +lib/root/cint/lib/snstream/CVS/Repository +lib/root/cint/lib/snstream/CVS/Root +lib/root/cint/lib/snstream/Makefile +lib/root/cint/lib/snstream/fstrm.h +lib/root/cint/lib/snstream/iostrm.h +lib/root/cint/lib/snstream/length.cxx +lib/root/cint/lib/snstream/readme.txt +lib/root/cint/lib/snstream/sstrm.h +lib/root/cint/lib/socket/CVS/Entries +lib/root/cint/lib/socket/CVS/Repository +lib/root/cint/lib/socket/CVS/Root +lib/root/cint/lib/socket/README.txt +lib/root/cint/lib/socket/cintsock.c +lib/root/cint/lib/socket/cintsock.h +lib/root/cint/lib/socket/mksockh.c +lib/root/cint/lib/socket/setup +lib/root/cint/lib/socket/setup.bat +lib/root/cint/lib/socket/setupbc.bat +lib/root/cint/lib/stdstrct/CVS/Entries +lib/root/cint/lib/stdstrct/CVS/Repository +lib/root/cint/lib/stdstrct/CVS/Root +lib/root/cint/lib/stdstrct/Makefile +lib/root/cint/lib/stdstrct/setup +lib/root/cint/lib/stdstrct/setup.bat +lib/root/cint/lib/stdstrct/setupbc.bat +lib/root/cint/lib/stdstrct/stdcxxfunc.h +lib/root/cint/lib/stdstrct/stdfunc.h +lib/root/cint/lib/stdstrct/stdstr.h +lib/root/cint/lib/stream/CVS/Entries +lib/root/cint/lib/stream/CVS/Repository +lib/root/cint/lib/stream/CVS/Root +lib/root/cint/lib/stream/Makefile +lib/root/cint/lib/stream/README +lib/root/cint/lib/stream/fstrm.h +lib/root/cint/lib/stream/iostrm.h +lib/root/cint/lib/stream/stdiostr.h +lib/root/cint/lib/stream/strm.h +lib/root/cint/lib/stream/strstrm.h +lib/root/cint/lib/vc7strm/CVS/Entries +lib/root/cint/lib/vc7strm/CVS/Repository +lib/root/cint/lib/vc7strm/CVS/Root +lib/root/cint/lib/vc7strm/Makefile +lib/root/cint/lib/vc7strm/README.txt +lib/root/cint/lib/vc7strm/fstrm.h +lib/root/cint/lib/vc7strm/iostrm.h +lib/root/cint/lib/vc7strm/linkdef.h +lib/root/cint/lib/vc7strm/sstrm.h +lib/root/cint/lib/vcstream/CVS/Entries +lib/root/cint/lib/vcstream/CVS/Repository +lib/root/cint/lib/vcstream/CVS/Root +lib/root/cint/lib/vcstream/Makefile +lib/root/cint/lib/vcstream/Makefileold +lib/root/cint/lib/vcstream/README +lib/root/cint/lib/vcstream/fstrm.h +lib/root/cint/lib/vcstream/iostrm.h +lib/root/cint/lib/vcstream/stdiostr.h +lib/root/cint/lib/vcstream/strm.h +lib/root/cint/lib/vcstream/strstrm.h +lib/root/cint/lib/win32api/CVS/Entries +lib/root/cint/lib/win32api/CVS/Repository +lib/root/cint/lib/win32api/CVS/Root +lib/root/cint/lib/win32api/cintwin.h +lib/root/cint/lib/win32api/readme.txt +lib/root/cint/lib/win32api/setup.bat +lib/root/cint/lib/win32api/setupbc.bat +lib/root/cint/lib/win32api/setupsc.bat +lib/root/cint/lib/win32api/winfunc.h +lib/root/cint/lib/xlib/CVS/Entries +lib/root/cint/lib/xlib/CVS/Repository +lib/root/cint/lib/xlib/CVS/Root +lib/root/cint/lib/xlib/README.txt +lib/root/cint/lib/xlib/TOP.h +lib/root/cint/lib/xlib/XLIB.h +lib/root/cint/lib/xlib/setup +lib/root/cint/lib/xlib/x11const.h +lib/root/cint/lib/xlib/x11mfunc.h +lib/root/cint/stl/G__postprocess.h +lib/root/cint/stl/README.txt +lib/root/cint/stl/_algorithm +lib/root/cint/stl/_autocontainer +lib/root/cint/stl/_bitset +lib/root/cint/stl/_climits +lib/root/cint/stl/_climits.h +lib/root/cint/stl/_deque +lib/root/cint/stl/_deque.h +lib/root/cint/stl/_functional +lib/root/cint/stl/_iterator +lib/root/cint/stl/_iterator.h +lib/root/cint/stl/_list +lib/root/cint/stl/_list.h +lib/root/cint/stl/_map +lib/root/cint/stl/_map.h +lib/root/cint/stl/_memory +lib/root/cint/stl/_memory.h +lib/root/cint/stl/_multimap +lib/root/cint/stl/_multimap.h +lib/root/cint/stl/_multiset +lib/root/cint/stl/_multiset.h +lib/root/cint/stl/_pair.h +lib/root/cint/stl/_set +lib/root/cint/stl/_set.h +lib/root/cint/stl/_stack +lib/root/cint/stl/_stack.h +lib/root/cint/stl/_string +lib/root/cint/stl/_utility +lib/root/cint/stl/_utility.h +lib/root/cint/stl/_vector +lib/root/cint/stl/_vector.h +lib/root/cint/stl/algo.h +lib/root/cint/stl/algobase.h +lib/root/cint/stl/algorithm +lib/root/cint/stl/bitset +lib/root/cint/stl/bool +lib/root/cint/stl/bstring.h +lib/root/cint/stl/bvector.h +lib/root/cint/stl/defalloc.h +lib/root/cint/stl/deque +lib/root/cint/stl/deque.h +lib/root/cint/stl/faralloc.h +lib/root/cint/stl/fdeque.h +lib/root/cint/stl/flist.h +lib/root/cint/stl/fmap.h +lib/root/cint/stl/fmultmap.h +lib/root/cint/stl/fmultset.h +lib/root/cint/stl/fset.h +lib/root/cint/stl/function.h +lib/root/cint/stl/functional +lib/root/cint/stl/hdeque.h +lib/root/cint/stl/heap.h +lib/root/cint/stl/hlist.h +lib/root/cint/stl/hmap.h +lib/root/cint/stl/hmultmap.h +lib/root/cint/stl/hmultset.h +lib/root/cint/stl/hset.h +lib/root/cint/stl/hugalloc.h +lib/root/cint/stl/hvector.h +lib/root/cint/stl/iterator +lib/root/cint/stl/iterator.h +lib/root/cint/stl/lbvector.h +lib/root/cint/stl/ldeque.h +lib/root/cint/stl/limits +lib/root/cint/stl/list +lib/root/cint/stl/list.h +lib/root/cint/stl/llist.h +lib/root/cint/stl/lmap.h +lib/root/cint/stl/lmultmap.h +lib/root/cint/stl/lmultset.h +lib/root/cint/stl/lngalloc.h +lib/root/cint/stl/lset.h +lib/root/cint/stl/map +lib/root/cint/stl/map.h +lib/root/cint/stl/memory +lib/root/cint/stl/multimap +lib/root/cint/stl/multimap.h +lib/root/cint/stl/multiset +lib/root/cint/stl/multiset.h +lib/root/cint/stl/neralloc.h +lib/root/cint/stl/nmap.h +lib/root/cint/stl/nmultmap.h +lib/root/cint/stl/nmultset.h +lib/root/cint/stl/nset.h +lib/root/cint/stl/numeric +lib/root/cint/stl/pair +lib/root/cint/stl/pair.h +lib/root/cint/stl/projectn.h +lib/root/cint/stl/queue +lib/root/cint/stl/random.cpp +lib/root/cint/stl/set +lib/root/cint/stl/set.h +lib/root/cint/stl/stack +lib/root/cint/stl/stack.h +lib/root/cint/stl/string +lib/root/cint/stl/tempbuf.cpp +lib/root/cint/stl/tempbuf.h +lib/root/cint/stl/teststl +lib/root/cint/stl/teststl.c +lib/root/cint/stl/tree.h +lib/root/cint/stl/utility +lib/root/cint/stl/utility.h +lib/root/cint/stl/valarray +lib/root/cint/stl/vector +lib/root/cint/stl/vector.h +lib/root/libCint.so +lib/root/libCint.so.4 +lib/root/libCint.so.4.00 +lib/root/libCore.so +lib/root/libCore.so.4 +lib/root/libCore.so.4.00 +lib/root/libEG.so +lib/root/libEG.so.4 +lib/root/libEG.so.4.00 +lib/root/libFumili.so +lib/root/libFumili.so.4 +lib/root/libFumili.so.4.00 +lib/root/libGX11.so +lib/root/libGX11.so.4 +lib/root/libGX11.so.4.00 +lib/root/libGX11TTF.so +lib/root/libGX11TTF.so.4 +lib/root/libGX11TTF.so.4.00 +lib/root/libGed.so +lib/root/libGed.so.4 +lib/root/libGed.so.4.00 +lib/root/libGedOld.so +lib/root/libGedOld.so.4 +lib/root/libGedOld.so.4.00 +lib/root/libGeom.so +lib/root/libGeom.so.4 +lib/root/libGeom.so.4.00 +lib/root/libGeomPainter.so +lib/root/libGeomPainter.so.4 +lib/root/libGeomPainter.so.4.00 +lib/root/libGpad.so +lib/root/libGpad.so.4 +lib/root/libGpad.so.4.00 +lib/root/libGraf.so +lib/root/libGraf.so.4 +lib/root/libGraf.so.4.00 +lib/root/libGraf3d.so +lib/root/libGraf3d.so.4 +lib/root/libGraf3d.so.4.00 +lib/root/libGui.so +lib/root/libGui.so.4 +lib/root/libGui.so.4.00 +lib/root/libHist.so +lib/root/libHist.so.4 +lib/root/libHist.so.4.00 +lib/root/libHistPainter.so +lib/root/libHistPainter.so.4 +lib/root/libHistPainter.so.4.00 +lib/root/libHtml.so +lib/root/libHtml.so.4 +lib/root/libHtml.so.4.00 +lib/root/libMLP.so +lib/root/libMLP.so.4 +lib/root/libMLP.so.4.00 +lib/root/libMatrix.so +lib/root/libMatrix.so.4 +lib/root/libMatrix.so.4.00 +lib/root/libMinuit.so +lib/root/libMinuit.so.4 +lib/root/libMinuit.so.4.00 +lib/root/libNew.so +lib/root/libNew.so.4 +lib/root/libNew.so.4.00 +lib/root/libPhysics.so +lib/root/libPhysics.so.4 +lib/root/libPhysics.so.4.00 +lib/root/libPostscript.so +lib/root/libPostscript.so.4 +lib/root/libPostscript.so.4.00 +lib/root/libProof.so +lib/root/libProof.so.4 +lib/root/libProof.so.4.00 +lib/root/libProofGui.so +lib/root/libProofGui.so.4 +lib/root/libProofGui.so.4.00 +lib/root/libRGL.so +lib/root/libRGL.so.4 +lib/root/libRGL.so.4.00 +lib/root/libRLDAP.so +lib/root/libRLDAP.so.4 +lib/root/libRLDAP.so.4.00 +lib/root/libRint.so +lib/root/libRint.so.4 +lib/root/libRint.so.4.00 +%%THREADS%%lib/root/libThread.so +%%THREADS%%lib/root/libThread.so.4 +%%THREADS%%lib/root/libThread.so.4.00 +lib/root/libTree.so +lib/root/libTree.so.4 +lib/root/libTree.so.4.00 +lib/root/libTreePlayer.so +lib/root/libTreePlayer.so.4 +lib/root/libTreePlayer.so.4.00 +lib/root/libTreeViewer.so +lib/root/libTreeViewer.so.4 +lib/root/libTreeViewer.so.4.00 +lib/root/libVMC.so +lib/root/libVMC.so.4 +lib/root/libVMC.so.4.00 +lib/root/libX3d.so +lib/root/libX3d.so.4 +lib/root/libX3d.so.4.00 +lib/root/libfreetype.a +share/aclocal/root.m4 +%%DOCSDIR%%/BUILDSYSTEM +%%DOCSDIR%%/CREDITS +%%DOCSDIR%%/ChangeLog-2-24 +%%DOCSDIR%%/INSTALL +%%DOCSDIR%%/LICENSE +%%DOCSDIR%%/README +%%DOCSDIR%%/README.ALIEN +%%DOCSDIR%%/README.AUTH +%%DOCSDIR%%/README.GLOBUS +%%DOCSDIR%%/README.PROOF +%%DOCSDIR%%/README.SELECTOR +%%DOCSDIR%%/test/Aclock.cxx +%%DOCSDIR%%/test/Aclock.h +%%DOCSDIR%%/test/DrawTest.sh +%%DOCSDIR%%/test/Event.cxx +%%DOCSDIR%%/test/Event.h +%%DOCSDIR%%/test/EventLinkDef.h +%%DOCSDIR%%/test/GetWebHistogram.C +%%DOCSDIR%%/test/Hello.cxx +%%DOCSDIR%%/test/Hello.h +%%DOCSDIR%%/test/MainEvent.cxx +%%DOCSDIR%%/test/Makefile +%%DOCSDIR%%/test/Makefile.arch +%%DOCSDIR%%/test/Makefile.win32 +%%DOCSDIR%%/test/README +%%DOCSDIR%%/test/RootShower/.rootshowerrc +%%DOCSDIR%%/test/RootShower/CVS/Entries +%%DOCSDIR%%/test/RootShower/CVS/Entries.Log +%%DOCSDIR%%/test/RootShower/CVS/Repository +%%DOCSDIR%%/test/RootShower/CVS/Root +%%DOCSDIR%%/test/RootShower/GButtonFrame.cxx +%%DOCSDIR%%/test/RootShower/GButtonFrame.h +%%DOCSDIR%%/test/RootShower/GTitleFrame.cxx +%%DOCSDIR%%/test/RootShower/GTitleFrame.h +%%DOCSDIR%%/test/RootShower/Makefile +%%DOCSDIR%%/test/RootShower/MyDetector.cxx +%%DOCSDIR%%/test/RootShower/MyDetector.h +%%DOCSDIR%%/test/RootShower/MyEvent.cxx +%%DOCSDIR%%/test/RootShower/MyEvent.h +%%DOCSDIR%%/test/RootShower/MyParticle.cxx +%%DOCSDIR%%/test/RootShower/MyParticle.h +%%DOCSDIR%%/test/RootShower/ParticlesDef.h +%%DOCSDIR%%/test/RootShower/RSAbout.cxx +%%DOCSDIR%%/test/RootShower/RSAbout.h +%%DOCSDIR%%/test/RootShower/RSHelpText.h +%%DOCSDIR%%/test/RootShower/RSHelptext.cxx +%%DOCSDIR%%/test/RootShower/RSLinkDef.h +%%DOCSDIR%%/test/RootShower/RSMsgBox.cxx +%%DOCSDIR%%/test/RootShower/RSMsgBox.h +%%DOCSDIR%%/test/RootShower/RSVersion.h +%%DOCSDIR%%/test/RootShower/RootShower.cxx +%%DOCSDIR%%/test/RootShower/RootShower.h +%%DOCSDIR%%/test/RootShower/RootShower.ico +%%DOCSDIR%%/test/RootShower/RootShower.png +%%DOCSDIR%%/test/RootShower/SettingsDlg.cxx +%%DOCSDIR%%/test/RootShower/SettingsDlg.h +%%DOCSDIR%%/test/RootShower/anim/CVS/Entries +%%DOCSDIR%%/test/RootShower/anim/CVS/Repository +%%DOCSDIR%%/test/RootShower/anim/CVS/Root +%%DOCSDIR%%/test/RootShower/anim/anim01.xpm +%%DOCSDIR%%/test/RootShower/anim/anim02.xpm +%%DOCSDIR%%/test/RootShower/anim/anim03.xpm +%%DOCSDIR%%/test/RootShower/anim/anim04.xpm +%%DOCSDIR%%/test/RootShower/anim/anim05.xpm +%%DOCSDIR%%/test/RootShower/anim/anim06.xpm +%%DOCSDIR%%/test/RootShower/anim/anim07.xpm +%%DOCSDIR%%/test/RootShower/anim/anim08.xpm +%%DOCSDIR%%/test/RootShower/anim/anim09.xpm +%%DOCSDIR%%/test/RootShower/anim/anim10.xpm +%%DOCSDIR%%/test/RootShower/anim/anim11.xpm +%%DOCSDIR%%/test/RootShower/anim/anim12.xpm +%%DOCSDIR%%/test/RootShower/anim/anim13.xpm +%%DOCSDIR%%/test/RootShower/anim/anim14.xpm +%%DOCSDIR%%/test/RootShower/anim/anim15.xpm +%%DOCSDIR%%/test/RootShower/anim/anim16.xpm +%%DOCSDIR%%/test/RootShower/anim/anim17.xpm +%%DOCSDIR%%/test/RootShower/anim/anim18.xpm +%%DOCSDIR%%/test/RootShower/anim/anim19.xpm +%%DOCSDIR%%/test/RootShower/anim/anim20.xpm +%%DOCSDIR%%/test/RootShower/anim/anim21.xpm +%%DOCSDIR%%/test/RootShower/anim/anim22.xpm +%%DOCSDIR%%/test/RootShower/anim/anim23.xpm +%%DOCSDIR%%/test/RootShower/anim/anim24.xpm +%%DOCSDIR%%/test/RootShower/constants.h +%%DOCSDIR%%/test/RootShower/icons/Alice.xpm +%%DOCSDIR%%/test/RootShower/icons/CVS/Entries +%%DOCSDIR%%/test/RootShower/icons/CVS/Repository +%%DOCSDIR%%/test/RootShower/icons/CVS/Root +%%DOCSDIR%%/test/RootShower/icons/about.xpm +%%DOCSDIR%%/test/RootShower/icons/browser.xpm +%%DOCSDIR%%/test/RootShower/icons/cern.xpm +%%DOCSDIR%%/test/RootShower/icons/help.xpm +%%DOCSDIR%%/test/RootShower/icons/infos.xpm +%%DOCSDIR%%/test/RootShower/icons/left.xpm +%%DOCSDIR%%/test/RootShower/icons/license.xpm +%%DOCSDIR%%/test/RootShower/icons/manual.xpm +%%DOCSDIR%%/test/RootShower/icons/mclogo01.xpm +%%DOCSDIR%%/test/RootShower/icons/open.xpm +%%DOCSDIR%%/test/RootShower/icons/quit.xpm +%%DOCSDIR%%/test/RootShower/icons/right.xpm +%%DOCSDIR%%/test/RootShower/icons/save.xpm +%%DOCSDIR%%/test/RootShower/icons/saveas.xpm +%%DOCSDIR%%/test/RootShower/icons/settings.xpm +%%DOCSDIR%%/test/RootShower/icons/view3d.xpm +%%DOCSDIR%%/test/TBench.cxx +%%DOCSDIR%%/test/TBench.h +%%DOCSDIR%%/test/TestVectors.cxx +%%DOCSDIR%%/test/Tetris.cxx +%%DOCSDIR%%/test/Tetris.h +%%DOCSDIR%%/test/bench.cxx +%%DOCSDIR%%/test/benchLinkDef.h +%%DOCSDIR%%/test/dt_DrawTest.C +%%DOCSDIR%%/test/dt_MakeFiles.sh +%%DOCSDIR%%/test/dt_MakeRef.C +%%DOCSDIR%%/test/dt_Makefile +%%DOCSDIR%%/test/dt_RunDrawTest.C +%%DOCSDIR%%/test/dt_RunDrawTest.sh +%%DOCSDIR%%/test/dt_build.C +%%DOCSDIR%%/test/dt_wrap.C +%%DOCSDIR%%/test/eventa.cxx +%%DOCSDIR%%/test/eventb.cxx +%%DOCSDIR%%/test/eventload.cxx +%%DOCSDIR%%/test/guitest.cxx +%%DOCSDIR%%/test/guiviewer.cxx +%%DOCSDIR%%/test/guiviewer.h +%%DOCSDIR%%/test/guiviewerLinkDef.h +%%DOCSDIR%%/test/hsimple.cxx +%%DOCSDIR%%/test/hworld.cxx +%%DOCSDIR%%/test/minexam.cxx +%%DOCSDIR%%/test/stress.cxx +%%DOCSDIR%%/test/stressLinear.cxx +%%DOCSDIR%%/test/stressgeom.cxx +%%DOCSDIR%%/test/tcollbm.cxx +%%DOCSDIR%%/test/tcollex.cxx +%%DOCSDIR%%/test/test2html.cxx +%%DOCSDIR%%/test/testbits.cxx +%%DOCSDIR%%/test/tstring.cxx +%%DOCSDIR%%/test/vlazy.cxx +%%DOCSDIR%%/test/vmatrix.cxx +%%DOCSDIR%%/test/vvector.cxx +%%DOCSDIR%%/tutorials/DynamicSlice.C +%%DOCSDIR%%/tutorials/EditorBar.C +%%DOCSDIR%%/tutorials/FeldmanCousins.C +%%DOCSDIR%%/tutorials/FirstContour.C +%%DOCSDIR%%/tutorials/FittingDemo.C +%%DOCSDIR%%/tutorials/Ifit.C +%%DOCSDIR%%/tutorials/JetEvent.cxx +%%DOCSDIR%%/tutorials/JetEvent.h +%%DOCSDIR%%/tutorials/LDAPExample.C +%%DOCSDIR%%/tutorials/MyTasks.cxx +%%DOCSDIR%%/tutorials/PhaseSpace.C +%%DOCSDIR%%/tutorials/Quad.cxx +%%DOCSDIR%%/tutorials/Quad.h +%%DOCSDIR%%/tutorials/Rolke.C +%%DOCSDIR%%/tutorials/TestAuth.C +%%DOCSDIR%%/tutorials/WorldMap.C +%%DOCSDIR%%/tutorials/alien.C +%%DOCSDIR%%/tutorials/analyze.C +%%DOCSDIR%%/tutorials/anim.C +%%DOCSDIR%%/tutorials/approx.C +%%DOCSDIR%%/tutorials/archi.C +%%DOCSDIR%%/tutorials/arrow.C +%%DOCSDIR%%/tutorials/basic.C +%%DOCSDIR%%/tutorials/basic.dat +%%DOCSDIR%%/tutorials/basic3d.C +%%DOCSDIR%%/tutorials/benchmarks.C +%%DOCSDIR%%/tutorials/bent.C +%%DOCSDIR%%/tutorials/bill.C +%%DOCSDIR%%/tutorials/canvas.C +%%DOCSDIR%%/tutorials/cernbuild.C +%%DOCSDIR%%/tutorials/cernstaff.C +%%DOCSDIR%%/tutorials/cernstaff.dat +%%DOCSDIR%%/tutorials/classcat.C +%%DOCSDIR%%/tutorials/cleanup.C +%%DOCSDIR%%/tutorials/clonesA_Event.C +%%DOCSDIR%%/tutorials/clonesA_Event.cxx +%%DOCSDIR%%/tutorials/clonesA_Event.h +%%DOCSDIR%%/tutorials/compile.C +%%DOCSDIR%%/tutorials/copytree.C +%%DOCSDIR%%/tutorials/copytree2.C +%%DOCSDIR%%/tutorials/copytree3.C +%%DOCSDIR%%/tutorials/customContextMenu.C +%%DOCSDIR%%/tutorials/customTH1Fmenu.C +%%DOCSDIR%%/tutorials/demos.C +%%DOCSDIR%%/tutorials/demoshelp.C +%%DOCSDIR%%/tutorials/dirs.C +%%DOCSDIR%%/tutorials/draw2dopt.C +%%DOCSDIR%%/tutorials/ellipse.C +%%DOCSDIR%%/tutorials/eval.C +%%DOCSDIR%%/tutorials/event.C +%%DOCSDIR%%/tutorials/exec1.C +%%DOCSDIR%%/tutorials/exec2.C +%%DOCSDIR%%/tutorials/exec3.C +%%DOCSDIR%%/tutorials/feynman.C +%%DOCSDIR%%/tutorials/fildir.C +%%DOCSDIR%%/tutorials/file.C +%%DOCSDIR%%/tutorials/fillrandom.C +%%DOCSDIR%%/tutorials/first.C +%%DOCSDIR%%/tutorials/fit1.C +%%DOCSDIR%%/tutorials/fit1_C.C +%%DOCSDIR%%/tutorials/fit2.C +%%DOCSDIR%%/tutorials/fit2a.C +%%DOCSDIR%%/tutorials/fit2d.C +%%DOCSDIR%%/tutorials/fitExclude.C +%%DOCSDIR%%/tutorials/fitcont.C +%%DOCSDIR%%/tutorials/fithist.C +%%DOCSDIR%%/tutorials/fitslicesy.C +%%DOCSDIR%%/tutorials/formula1.C +%%DOCSDIR%%/tutorials/framework.C +%%DOCSDIR%%/tutorials/galaxy.pal.root +%%DOCSDIR%%/tutorials/galaxy.root +%%DOCSDIR%%/tutorials/galaxy_image.C +%%DOCSDIR%%/tutorials/games.C +%%DOCSDIR%%/tutorials/gaxis.C +%%DOCSDIR%%/tutorials/geant3tasks.C +%%DOCSDIR%%/tutorials/geometry.C +%%DOCSDIR%%/tutorials/geoshapes.C +%%DOCSDIR%%/tutorials/gerrors.C +%%DOCSDIR%%/tutorials/gerrors2.C +%%DOCSDIR%%/tutorials/graph.C +%%DOCSDIR%%/tutorials/graph2derrorsfit.C +%%DOCSDIR%%/tutorials/graph2dfit.C +%%DOCSDIR%%/tutorials/graphApply.C +%%DOCSDIR%%/tutorials/greyscale.C +%%DOCSDIR%%/tutorials/guitest.C +%%DOCSDIR%%/tutorials/h1analysis.C +%%DOCSDIR%%/tutorials/h1analysis.h +%%DOCSDIR%%/tutorials/h1chain.C +%%DOCSDIR%%/tutorials/h1draw.C +%%DOCSDIR%%/tutorials/hadd.C +%%DOCSDIR%%/tutorials/hadd_old.C +%%DOCSDIR%%/tutorials/hbars.C +%%DOCSDIR%%/tutorials/hclient.C +%%DOCSDIR%%/tutorials/hcons.C +%%DOCSDIR%%/tutorials/hksimple.C +%%DOCSDIR%%/tutorials/hlabels1.C +%%DOCSDIR%%/tutorials/hlabels2.C +%%DOCSDIR%%/tutorials/hprod.C +%%DOCSDIR%%/tutorials/hserv.C +%%DOCSDIR%%/tutorials/hserv2.C +%%DOCSDIR%%/tutorials/hsimple.C +%%DOCSDIR%%/tutorials/hstack.C +%%DOCSDIR%%/tutorials/hsum.C +%%DOCSDIR%%/tutorials/hsumTimer.C +%%DOCSDIR%%/tutorials/hsumanim.C +%%DOCSDIR%%/tutorials/htest.C +%%DOCSDIR%%/tutorials/htmlex.C +%%DOCSDIR%%/tutorials/img2pad.C +%%DOCSDIR%%/tutorials/imgconv.C +%%DOCSDIR%%/tutorials/invertMatrix.C +%%DOCSDIR%%/tutorials/io.C +%%DOCSDIR%%/tutorials/jets.C +%%DOCSDIR%%/tutorials/labels1.C +%%DOCSDIR%%/tutorials/labels2.C +%%DOCSDIR%%/tutorials/langaus.C +%%DOCSDIR%%/tutorials/latex.C +%%DOCSDIR%%/tutorials/latex2.C +%%DOCSDIR%%/tutorials/latex3.C +%%DOCSDIR%%/tutorials/limit.C +%%DOCSDIR%%/tutorials/logscales.C +%%DOCSDIR%%/tutorials/manyaxis.C +%%DOCSDIR%%/tutorials/markerwarning.C +%%DOCSDIR%%/tutorials/mlpHiggs.C +%%DOCSDIR%%/tutorials/mlpHiggs.root +%%DOCSDIR%%/tutorials/motorcycle.C +%%DOCSDIR%%/tutorials/motorcycle.dat +%%DOCSDIR%%/tutorials/multidimfit.C +%%DOCSDIR%%/tutorials/multifit.C +%%DOCSDIR%%/tutorials/multigraph.C +%%DOCSDIR%%/tutorials/myfit.C +%%DOCSDIR%%/tutorials/na49.C +%%DOCSDIR%%/tutorials/na49geomfile.C +%%DOCSDIR%%/tutorials/na49view.C +%%DOCSDIR%%/tutorials/na49visible.C +%%DOCSDIR%%/tutorials/ntuple1.C +%%DOCSDIR%%/tutorials/oldbenchmarks.C +%%DOCSDIR%%/tutorials/pad2png.C +%%DOCSDIR%%/tutorials/pclient.C +%%DOCSDIR%%/tutorials/peaks.C +%%DOCSDIR%%/tutorials/principal.C +%%DOCSDIR%%/tutorials/pserv.C +%%DOCSDIR%%/tutorials/psexam.C +%%DOCSDIR%%/tutorials/pstable.C +%%DOCSDIR%%/tutorials/pythiaExample.C +%%DOCSDIR%%/tutorials/quantiles.C +%%DOCSDIR%%/tutorials/quarks.C +%%DOCSDIR%%/tutorials/rootalias.C +%%DOCSDIR%%/tutorials/rootenv.C +%%DOCSDIR%%/tutorials/rootgeom.C +%%DOCSDIR%%/tutorials/rootlogoff.C +%%DOCSDIR%%/tutorials/rootlogon.C +%%DOCSDIR%%/tutorials/rootmarks.C +%%DOCSDIR%%/tutorials/rose512.jpg +%%DOCSDIR%%/tutorials/rose_image.C +%%DOCSDIR%%/tutorials/runcatalog.sql +%%DOCSDIR%%/tutorials/runzdemo.C +%%DOCSDIR%%/tutorials/second.C +%%DOCSDIR%%/tutorials/seism.C +%%DOCSDIR%%/tutorials/shapes.C +%%DOCSDIR%%/tutorials/shapesAnim.C +%%DOCSDIR%%/tutorials/shared.C +%%DOCSDIR%%/tutorials/solveLinear.C +%%DOCSDIR%%/tutorials/splines.C +%%DOCSDIR%%/tutorials/spy.C +%%DOCSDIR%%/tutorials/spyserv.C +%%DOCSDIR%%/tutorials/sqlcreatedb.C +%%DOCSDIR%%/tutorials/sqlfilldb.C +%%DOCSDIR%%/tutorials/sqlselect.C +%%DOCSDIR%%/tutorials/staff.C +%%DOCSDIR%%/tutorials/surfaces.C +%%DOCSDIR%%/tutorials/tasks.C +%%DOCSDIR%%/tutorials/tcl.C +%%DOCSDIR%%/tutorials/testrandom.C +%%DOCSDIR%%/tutorials/threads.C +%%DOCSDIR%%/tutorials/timeonaxis.C +%%DOCSDIR%%/tutorials/timeonaxis2.C +%%DOCSDIR%%/tutorials/tornado.C +%%DOCSDIR%%/tutorials/tree.C +%%DOCSDIR%%/tutorials/tree0.C +%%DOCSDIR%%/tutorials/tree1.C +%%DOCSDIR%%/tutorials/tree2.C +%%DOCSDIR%%/tutorials/tree2a.C +%%DOCSDIR%%/tutorials/tree3.C +%%DOCSDIR%%/tutorials/tree4.C +%%DOCSDIR%%/tutorials/triangles.C +%%DOCSDIR%%/tutorials/tv3.C +%%DOCSDIR%%/tutorials/tvdemo.C +%%DOCSDIR%%/tutorials/two.C +%%DOCSDIR%%/tutorials/twoscales.C +%%DOCSDIR%%/tutorials/waves.C +%%DOCSDIR%%/tutorials/work.C +%%DOCSDIR%%/tutorials/worldmap.xpm +%%DOCSDIR%%/tutorials/xtruDraw.C +%%DOCSDIR%%/tutorials/xtruSamples.C +%%DOCSDIR%%/tutorials/xyslider.C +%%DOCSDIR%%/tutorials/xysliderAction.C +%%DOCSDIR%%/tutorials/zdemo.C +%%DOCSDIR%%/tutorials/zones.C +share/emacs/site-lisp/root-help.el +share/root/fonts/LICENSE +share/root/fonts/arial.ttf +share/root/fonts/arialbd.ttf +share/root/fonts/arialbi.ttf +share/root/fonts/ariali.ttf +share/root/fonts/ariblk.ttf +share/root/fonts/comic.ttf +share/root/fonts/comicbd.ttf +share/root/fonts/cour.ttf +share/root/fonts/courbd.ttf +share/root/fonts/courbi.ttf +share/root/fonts/couri.ttf +share/root/fonts/georgia.ttf +share/root/fonts/georgiab.ttf +share/root/fonts/georgiai.ttf +share/root/fonts/georgiaz.ttf +share/root/fonts/impact.ttf +share/root/fonts/monotype.ttf +share/root/fonts/symbol.ttf +share/root/fonts/times.ttf +share/root/fonts/timesbd.ttf +share/root/fonts/timesbi.ttf +share/root/fonts/timesi.ttf +share/root/fonts/trebuc.ttf +share/root/fonts/trebucbd.ttf +share/root/fonts/trebucbi.ttf +share/root/fonts/trebucit.ttf +share/root/fonts/verdana.ttf +share/root/fonts/verdanab.ttf +share/root/fonts/verdanai.ttf +share/root/fonts/verdanaz.ttf +share/root/fonts/webdings.ttf +share/root/fonts/wingding.ttf +share/root/icons/Splash.xpm +share/root/icons/app_s.xpm +share/root/icons/app_t.xpm +share/root/icons/arc.xpm +share/root/icons/arrow.xpm +share/root/icons/arrow_down.xpm +share/root/icons/arrow_left.xpm +share/root/icons/arrow_right.xpm +share/root/icons/arrow_up.xpm +share/root/icons/branch-cl_t.xpm +share/root/icons/branch-ob_t.xpm +share/root/icons/branch_folder_s.xpm +share/root/icons/branch_folder_t.xpm +share/root/icons/branch_t.xpm +share/root/icons/browser.xpm +share/root/icons/button.xpm +share/root/icons/c_src_s.xpm +share/root/icons/c_src_t.xpm +share/root/icons/cdrom_t.xpm +share/root/icons/chain_s.xpm +share/root/icons/chain_t.xpm +share/root/icons/cpp_src_s.xpm +share/root/icons/cpp_src_t.xpm +share/root/icons/curlyarc.xpm +share/root/icons/curlyline.xpm +share/root/icons/cut-disable_t.xpm +share/root/icons/cut.xpm +share/root/icons/cut_t.xpm +share/root/icons/deb_s.xpm +share/root/icons/deb_t.xpm +share/root/icons/diamond.xpm +share/root/icons/doc_s.xpm +share/root/icons/doc_t.xpm +share/root/icons/draw_t.xpm +share/root/icons/ellipse.xpm +share/root/icons/expression_t.xpm +share/root/icons/f1_s.xpm +share/root/icons/f1_t.xpm +share/root/icons/f2_s.xpm +share/root/icons/f2_t.xpm +share/root/icons/fdisk_t.xpm +share/root/icons/first_t.xpm +share/root/icons/folder_s.xpm +share/root/icons/folder_t.xpm +share/root/icons/graph.xpm +share/root/icons/h1_s.xpm +share/root/icons/h1_t.xpm +share/root/icons/h2_s.xpm +share/root/icons/h2_t.xpm +share/root/icons/h3_s.xpm +share/root/icons/h3_t.xpm +share/root/icons/h_src_s.xpm +share/root/icons/h_src_t.xpm +share/root/icons/hdisk_t.xpm +share/root/icons/home_t.xpm +share/root/icons/hpp_src_s.xpm +share/root/icons/hpp_src_t.xpm +share/root/icons/inspect.xpm +share/root/icons/interrupt.xpm +share/root/icons/last_t.xpm +share/root/icons/latex.xpm +share/root/icons/leaf_s.xpm +share/root/icons/leaf_t.xpm +share/root/icons/line.xpm +share/root/icons/listview.xpm +share/root/icons/macro_s.xpm +share/root/icons/macro_t.xpm +share/root/icons/marker.xpm +share/root/icons/marker1.xpm +share/root/icons/marker16.xpm +share/root/icons/marker18.xpm +share/root/icons/marker2.xpm +share/root/icons/marker20.xpm +share/root/icons/marker21.xpm +share/root/icons/marker22.xpm +share/root/icons/marker23.xpm +share/root/icons/marker24.xpm +share/root/icons/marker25.xpm +share/root/icons/marker26.xpm +share/root/icons/marker27.xpm +share/root/icons/marker28.xpm +share/root/icons/marker29.xpm +share/root/icons/marker3.xpm +share/root/icons/marker30.xpm +share/root/icons/marker4.xpm +share/root/icons/marker5.xpm +share/root/icons/marker6.xpm +share/root/icons/marker7.xpm +share/root/icons/marker8.xpm +share/root/icons/mb_asterisk_s.xpm +share/root/icons/mb_exclamation_s.xpm +share/root/icons/mb_question_s.xpm +share/root/icons/mb_stop_s.xpm +share/root/icons/modify.xpm +share/root/icons/newcanvas.xpm +share/root/icons/next_t.xpm +share/root/icons/ntuple_s.xpm +share/root/icons/ntuple_t.xpm +share/root/icons/object_folder_s.xpm +share/root/icons/object_folder_t.xpm +share/root/icons/ofolder_t.xpm +share/root/icons/open.xpm +share/root/icons/pack-empty_t.xpm +share/root/icons/pack_t.xpm +share/root/icons/pad.xpm +share/root/icons/pave.xpm +share/root/icons/pavelabel.xpm +share/root/icons/pavestext.xpm +share/root/icons/pavetext.xpm +share/root/icons/pointer.xpm +share/root/icons/previous_t.xpm +share/root/icons/printer_s.xpm +share/root/icons/profile_s.xpm +share/root/icons/profile_t.xpm +share/root/icons/properties.xpm +share/root/icons/ps_s.xpm +share/root/icons/ps_t.xpm +share/root/icons/psp_s.xpm +share/root/icons/psp_t.xpm +share/root/icons/rbutton_off.xpm +share/root/icons/rbutton_on.xpm +share/root/icons/record_t.xpm +share/root/icons/refresh.xpm +share/root/icons/refresh1.xpm +share/root/icons/refresh2.xpm +share/root/icons/root_s.xpm +share/root/icons/root_t.xpm +share/root/icons/rootdb_s.xpm +share/root/icons/rootdb_t.xpm +share/root/icons/rpm_s.xpm +share/root/icons/rpm_t.xpm +share/root/icons/save.xpm +share/root/icons/selection_t.xpm +share/root/icons/slider1h.xpm +share/root/icons/slider1v.xpm +share/root/icons/slider2h.xpm +share/root/icons/slider2v.xpm +share/root/icons/slink_s.xpm +share/root/icons/slink_t.xpm +share/root/icons/stop_t.xpm +share/root/icons/tb_bigicons.xpm +share/root/icons/tb_details.xpm +share/root/icons/tb_list.xpm +share/root/icons/tb_newfolder.xpm +share/root/icons/tb_smicons.xpm +share/root/icons/tb_uplevel.xpm +share/root/icons/tree_s.xpm +share/root/icons/tree_t.xpm +share/root/icons/x_pic.xpm +share/root/icons/y_pic.xpm +share/root/icons/z_pic.xpm +share/root/macros/Dialogs.C +share/root/proof/etc/.cvsignore +share/root/proof/etc/cluster.conf.sample +share/root/proof/etc/motd.sample +share/root/proof/etc/noproof.sample +share/root/proof/etc/proof.conf.sample +share/root/proof/etc/rootnetrc.sample +share/root/proof/utils/pcmd +share/root/proof/utils/pload +share/root/proof/utils/pps +share/root/proof/utils/proof-facility +share/root/proof/utils/push +@dirrm share/root/proof/utils +@dirrm share/root/proof/etc +@dirrm share/root/proof +@dirrm share/root/macros +@dirrm share/root/icons +@dirrm share/root/fonts +@dirrm share/root +@dirrm %%DOCSDIR%%/tutorials +@dirrm %%DOCSDIR%%/test/RootShower/icons/CVS +@dirrm %%DOCSDIR%%/test/RootShower/icons +@dirrm %%DOCSDIR%%/test/RootShower/anim/CVS +@dirrm %%DOCSDIR%%/test/RootShower/anim +@dirrm %%DOCSDIR%%/test/RootShower/CVS +@dirrm %%DOCSDIR%%/test/RootShower +@dirrm %%DOCSDIR%%/test +@dirrm %%DOCSDIR%% +@dirrm lib/root/cint/stl +@dirrm lib/root/cint/lib/xlib/CVS +@dirrm lib/root/cint/lib/xlib +@dirrm lib/root/cint/lib/win32api/CVS +@dirrm lib/root/cint/lib/win32api +@dirrm lib/root/cint/lib/vcstream/CVS +@dirrm lib/root/cint/lib/vcstream +@dirrm lib/root/cint/lib/vc7strm/CVS +@dirrm lib/root/cint/lib/vc7strm +@dirrm lib/root/cint/lib/stream/CVS +@dirrm lib/root/cint/lib/stream +@dirrm lib/root/cint/lib/stdstrct/CVS +@dirrm lib/root/cint/lib/stdstrct +@dirrm lib/root/cint/lib/socket/CVS +@dirrm lib/root/cint/lib/socket +@dirrm lib/root/cint/lib/snstream/CVS +@dirrm lib/root/cint/lib/snstream +@dirrm lib/root/cint/lib/qt/CVS +@dirrm lib/root/cint/lib/qt +@dirrm lib/root/cint/lib/pthread/CVS +@dirrm lib/root/cint/lib/pthread +@dirrm lib/root/cint/lib/prec_stl/CVS +@dirrm lib/root/cint/lib/prec_stl +@dirrm lib/root/cint/lib/posix/CVS +@dirrm lib/root/cint/lib/posix +@dirrm lib/root/cint/lib/longlong/CVS +@dirrm lib/root/cint/lib/longlong +@dirrm lib/root/cint/lib/ipc/CVS +@dirrm lib/root/cint/lib/ipc +@dirrm lib/root/cint/lib/iccstrm/CVS +@dirrm lib/root/cint/lib/iccstrm +@dirrm lib/root/cint/lib/gl/CVS +@dirrm lib/root/cint/lib/gl +@dirrm lib/root/cint/lib/gcc3strm/sys/CVS +@dirrm lib/root/cint/lib/gcc3strm/sys +@dirrm lib/root/cint/lib/gcc3strm/bits/CVS +@dirrm lib/root/cint/lib/gcc3strm/bits +@dirrm lib/root/cint/lib/gcc3strm/CVS +@dirrm lib/root/cint/lib/gcc3strm +@dirrm lib/root/cint/lib/dll_stl/CVS +@dirrm lib/root/cint/lib/dll_stl +@dirrm lib/root/cint/lib/cbstream/CVS +@dirrm lib/root/cint/lib/cbstream +@dirrm lib/root/cint/lib/bcstream/CVS +@dirrm lib/root/cint/lib/bcstream +@dirrm lib/root/cint/lib +@dirrm lib/root/cint/include/sys/CVS +@dirrm lib/root/cint/include/sys +@dirrm lib/root/cint/include/X11/CVS +@dirrm lib/root/cint/include/X11 +@dirrm lib/root/cint/include/GL/CVS +@dirrm lib/root/cint/include/GL +@dirrm lib/root/cint/include +@dirrm lib/root/cint +@dirrm lib/root +@dirrm include/root |