ROOT version 5.18 Development Notes

2008-01-16 21:30  brun

	* [r21745] base/inc/RVersion.h, build/version_number: Stamp
	  production version 5.18/00

2008-01-16 20:47  pcanal

	* [r21744] io/inc/TContainerConverters.h,
	  io/inc/TGenCollectionStreamer.h, io/inc/TMakeProject.h,
	  io/src/TBufferFile.cxx, io/src/TContainerConverters.cxx,
	  io/src/TFile.cxx, io/src/TGenCollectionStreamer.cxx,
	  io/src/TMakeProject.cxx, io/src/TStreamerInfo.cxx,
	  meta/src/TStreamerElement.cxx: Correct the schema evolution from
	  a map<A,B> to a
	  (non map, non multimap) collection of pair<A,B>
	  (i.e vector<pair<A,B> >) when it is held by value
	  in an object (as opposed to by pointer).
	  
	  Conversion from vector<pair<A<B> > to map<A,B> is
	  now explicitly disabled (i.e. the vector will not be read).
	  
	  Conversion for a map<A,B>* to a vector<pair<A,B> >* is
	  now explicitly disabled (i.e. the map will not be read).
	  
	  TFile::MakeProject has been updated to generate the
	  needed dictionary for the pair.

2008-01-16 19:49  brun

	* [r21743] tutorials/eve/alice_esd.C: From Matevz:
	  retain track_container across several events so the user settings
	  remain the same. Rename variable 'TEveTrackPRopagator* rnrStyle'
	  to trkProp.

2008-01-16 19:48  brun

	* [r21742] eve/src/TEveTrack.cxx: From Matevz:
	  TEveTrack::SetAttLineAttMarker(TEveTrackList* tl): also copy the
	  state of fRnrPoints and fRnrLines flags.

2008-01-16 19:04  brun

	* [r21741] io/src/TFile.cxx: Change MAKE to MAKEP on Windows too.

2008-01-16 18:28  brun

	* [r21739] tutorials/eve/alice_esd.C: From Bertrand, Matevz, Rene:
	  Improved version with documentation and running on all systems.

2008-01-16 18:26  brun

	* [r21738] io/src/TFile.cxx: In TFile::MakeProject change the name
	  of the small generated makefile MAKE to MAKEP.
	  The reason is that MACOSX is not case sensitive and when calling
	  gSystem->Exec, make
	  instead of MAKE was called (depending on the search path).
	  We intend to replace the MAKEP par a direct use of ACLIC instead.

2008-01-16 17:12  rdm

	* [r21737] Makefile: in distclean clean up the cache directories
	  "files" in tutorials and also
	  tutorials/eve/aliesd.

2008-01-16 17:02  rdm

	* [r21736] net/inc/TWebFile.h, net/src/TWebFile.cxx: correct
	  comment that mentioned a "modified" apache is needed, which is
	  not the case anymore.

2008-01-16 16:54  brun

	* [r21735] io/src/TFile.cxx, io/src/TStreamerInfo.cxx,
	  tutorials/eve/alice_esd.C: from Bertrand and Axel:
	  * fix MakeProject build (also, but not only on windows):
	  - replace $Opt by opt / debug (whatever the ROOT build is),
	  - include dict in generated source instead of having to deal with
	  two dources = two object files (which is not really supported by
	  the ACLiC-like build commands)
	  * Always write out a class version higher thn what we are trying
	  to reproduce. E.g. in case of members of type enum (which are
	  generated as members of type int), the checksum equality check
	  will fail, and a complaint ("increase the class version!") will
	  be printed otherwise.

2008-01-16 16:23  brun

	* [r21734] treeplayer/src/TTreePlayer.cxx: From Jan:
	  Fixed 4 typos in comments in generated selectors.

2008-01-16 16:21  brun

	* [r21733] eve/src/TEveTransEditor.cxx: From Alja:
	  fixed the TEveTransEditor so that it does not evoke scroll-bars
	  with standard editor width.

2008-01-16 15:56  matevz

	* [r21732] tutorials/eve/alice_esd.C: New tutorial demonstrating
	  standalone visualization of ALICE ESD.
	  
	  TFile::MakeProject() is used to generate the header files and
	  distionaries of used ALICE classes.

2008-01-16 15:16  brun

	* [r21731] treeplayer/src/TTreeIndex.cxx: Fix an unfortunate error
	  in the documentation of the TTreeIndex constructor
	  reported by David Chamont at
	  :http://root.cern.ch/phpBB2/viewtopic.php?t=6036

2008-01-16 11:38  brun

	* [r21730] roofitcore/src/RooAbsOptTestStatistic.cxx: From Wouter:
	  Protect against null strings

2008-01-16 09:38  brun

	* [r21729] tutorials/geom/geomD0.C: Add new tutorial showing the D0
	  detector

2008-01-16 06:28  brun

	* [r21728] tutorials/geom/geomAtlas.C, utils/src/rootcint.cxx: Fix
	  coding conventions

2008-01-16 05:39  pcanal

	* [r21727] cint/src/v6_ifunc.cxx: From Paul:
	  Change the behavior of G__get_methodhandle() when passed
	  withConversion == 0.
	  
	  The old behavior was to call G__get_ifunchandle_base() with a
	  match parameter of G__EXACT, and if that failed then try to
	  instantiate a function template, with exact match, and if that
	  failed then loop calling G__get_ifuncandle_base() with
	  parameters from G__EXACT up to and including G__STDCONV. This
	  meant that we could match a function that did not exactly
	  match the passed prototype (and we called with G__EXACT
	  twice!).
	  
	  The new behavior is to return in failure if the function
	  template instantiation attempt fails to find a match, the loop
	  trying the integral promotions and standard conversions is not
	  done.
	  
	  So we must match the passed prototype exactly (unless the
	  template instantiation codes does something weird we do not
	  know about).
	  
	  This fixes:
	  
	  http://root.cern.ch/phpBB2/viewtopic.php?p=24563

2008-01-16 05:38  pcanal

	* [r21726] treeplayer/src/TTreeProxyGenerator.cxx: Mark the
	  function declared outside of the class declaration as inline. Use
	  the correct header file name for multimap and multiset

2008-01-16 05:37  pcanal

	* [r21725] meta/src/TStreamerElement.cxx: Once reloading a
	  TStreamerElement for a basic type, we must reset fSize to match
	  the sizeof. This is a problem for emulated classes as shown by
	  running valgrind on roottest/root/tree/addresses/runursula.C

2008-01-15 21:40  rdm

	* [r21724] asimage/src/TASImage.cxx,
	  pyroot/src/TPyClassGenerator.cxx: fix strict-aliasing warnings.

2008-01-15 21:39  rdm

	* [r21723] cint/Module.mk: suppress strict aliasing warnings from
	  gcc4strm.

2008-01-15 17:51  brun

	* [r21722] tutorials/eve/geom_cms.C: From Matevz:
	  New tutorial showing CMS geometry.

2008-01-15 17:34  rdm

	* [r21721] unix/src/TUnixSystem.cxx: add specific code for MacOS X
	  to get all .dylib's against which the application
	  is linked. This should fix the long standing problem of hadd
	  failing.
	  It uses _dyld_register_func_for_add_image() API from dyld(3).

2008-01-15 17:29  rdm

	* [r21720] rpdutils/src/net.cxx: use static_cast<> instead of
	  reinterpret_cast<>.

2008-01-15 17:28  rdm

	* [r21719] base/src/TSystem.cxx: typo in comments.

2008-01-15 17:10  brun

	* [r21718] gl/inc/TGLClipSetEditor.h, gl/src/TGLClipSetEditor.cxx,
	  gl/src/TGLSAViewer.cxx, gl/src/TGLViewer.cxx,
	  gl/src/TGLViewerEditor.cxx: From Matevz:
	  Added tooltip for scene-render timeouts.
	  Small improvement of manipulator description in help-text.
	  Added reset button for current clip.

2008-01-15 17:08  brun

	* [r21717] tree/src/TTree.cxx: From Jan:
	  Fix two typos in comments of TTree::MakeSelector

2008-01-15 16:54  rdm

	* [r21716] pyroot/Module.mk: From Axel:
	  patch allowing to use Python >= 2.5 on Windows (sic).
	  For the record:
	  from http://docs.python.org/whatsnew/ports.html:
	  .dll is no longer supported as a filename extension
	  for extension modules. .pyd is now the only filename
	  extension that will be searched for.
	  (no comments)
	  Thanks to Wim for pointing out this.

2008-01-15 15:30  brun

	* [r21715] clib/src/mmtrace.c, config/Makefile.win32: From Axel:
	  Fix several warnings for Windows

2008-01-15 11:12  moneta

	* [r21713] minuit/src/TFitter.cxx, minuit/src/TLinearFitter.cxx: -
	  fix a bug in getting the confidence intervals in an histogram of
	  TGraph2D
	  - use the 2-side confidence interval for the passed values in the
	  methods not the 1 side.

2008-01-15 10:34  brun

	* [r21712] io/src/TMakeProject.cxx,
	  treeplayer/src/TTreeFormula.cxx: From Gerri:
	  The trunk is currently broken on SLC3 because the recently
	  introduced usage of 'tolower'
	  in treeplayer/src/TTreeFormula.cxx and 'isdigit' in
	  io/srcTMakeProject.cxx require the
	  inclusion of 'ctype.h'.

2008-01-15 10:06  brun

	* [r21711] test/stressGeometry.cxx: In WriteRef remove the TVectorD
	  allocated in the stack from Tree.GetUserInfo

2008-01-15 08:43  ganis

	* [r21710] proofd/inc/XrdProofSched.h: Include XrdProofdAux.h to
	  fully define XrdProofdDirective; this class is used in
	  the hash table and the forward declaration is not sufficient.
	  This should also fix a compilation problem on macosx 10.3 .

2008-01-15 08:07  pcanal

	* [r21709] treeplayer/inc/TBranchProxy.h: remove warning

2008-01-15 08:04  pcanal

	* [r21708] treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx: Prevent ambiguity
	  regarding operator[]

2008-01-15 05:36  pcanal

	* [r21707] treeplayer/src/TBranchProxyClassDescriptor.cxx: readd
	  operator* to allow access to vector<vector<double> >

2008-01-15 00:18  rdm

	* [r21706] base/Module.mk: also suppress strict-alias warnings in
	  TContextMenu.cxx under g++ 4.1.

2008-01-14 23:00  pcanal

	* [r21705] treeplayer/inc/TBranchProxyTemplate.h: remove superflous
	  typename keyword (fatal with gcc but works with microsoft C++)

2008-01-14 22:52  pcanal

	* [r21704] treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: more fixes for
	  vector<double> and vector<vector<double> >

2008-01-14 20:29  brun

	* [r21703] gl/src/TGLViewerEditor.cxx: From Bertrand:
	  - Fix a problem of TGLViewerEditor labels not being displayed on
	  Windows

2008-01-14 18:55  matevz

	* [r21702] gl/inc/TGLBoundingBox.h, gl/inc/TGLContextPrivate.h,
	  gl/inc/TGLScene.h, gl/inc/TGLSceneBase.h, gl/inc/TGLViewer.h,
	  gl/inc/TGLViewerEditor.h, gl/inc/TGLWidget.h, gl/src/TF2GL.cxx,
	  gl/src/TGLAxis.cxx, gl/src/TGLCamera.cxx,
	  gl/src/TGLLogicalShape.cxx, gl/src/TGLScene.cxx,
	  gl/src/TGLSceneBase.cxx, gl/src/TGLTF3Painter.cxx,
	  gl/src/TGLUtil.cxx, gl/src/TGLViewer.cxx,
	  gl/src/TGLViewerBase.cxx, gl/src/TGLViewerEditor.cxx,
	  gl/src/TH2GL.cxx: In TGLScene/TGLViewer add two timeouts for
	  high-quality and
	  low-quality (during rotation etc) scene rendering. Expose both
	  time
	  limits via TGLViewerEditor.
	  
	  In TGLCamera::OfInterest() remove redundant test for
	  physical-shape
	  bbox volume and optimize the remaining bbox diagonal length test.
	  
	  Remove blanks from the eols.

2008-01-14 17:24  rdm

	* [r21701] base/Module.mk: silence type-punned warning in
	  TString.cxx for gcc 4.1.

2008-01-14 17:15  ganis

	* [r21700] xrootd/src/xrootd-20071116-0000.src.tgz: From Bertrand:
	  - Silence a few more warnings:
	  LNK4006: __NULL_IMPORT_DESCRIPTOR already defined [...];
	  second definition ignored
	  LNK4221: no public symbols found; archive member will be
	  inaccessible (only with MSVC++ > 7.1)

2008-01-14 16:26  brun

	* [r21699] clib/src/mmcheck.c: From Axel:
	  Fixes mmcheck warnings on Windows.

2008-01-14 15:57  brun

	* [r21698] geom/src/TGeoPgon.cxx: From Andrei:
	  Add a protection in TGeoPgon::Safety found by running
	  stressGeometry under valgrind by Axel.

2008-01-14 15:56  axel

	* [r21697] reflex/python/genreflex/genreflex.py: cl puts its
	  version info into cerr; capture it from there (instead of issuing
	  a warning).

2008-01-14 15:49  brun

	* [r21695] tree/src/TTree.cxx: From Jan:
	  Fix a typo in documentation

2008-01-14 14:56  couet

	* [r21693] test/stressGraphics.ref: - small adjusment for Mac.

2008-01-14 14:00  rdm

	* [r21691] config/Makefile.win32: From Axel:
	  cint\src\bc_exec.cxx(305) : warning C4297:
	  'G__bc_exec_throw_bytecode' : function assumed not to throw an
	  exception but does
	  
	  is fixed in >= MSVC2003 by correcting -GX or -EHa to -EHsc-
	  ("exceptions only generated by throw(), even extern C functions
	  can throw"). With -GX, extern C functions are not allowed to
	  throw(). -EHa was used for >= MSVC2005, even though it's not
	  appropriate (my mistake).

2008-01-14 13:59  rdm

	* [r21690] config/thisroot.sh: From Axel:
	  nly windowsify ROOTSYS if != win32gcc.

2008-01-14 13:18  brun

	* [r21689] tmva/src/Configurable.cxx, tmva/src/FitterBase.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/PDF.cxx, tmva/src/Reader.cxx,
	  tmva/src/TNeuron.cxx: Remove warnings like :"warning C4355:
	  'this' : used in base member initializer list"
	  by adding a pragma statement.

2008-01-14 12:32  ganis

	* [r21686] xrootd/src/xrootd-20071116-0000.src.tgz: From Bertrand
	  and me:
	  - Fix a few other compilation warnings
	  - Add support for MSVC++9.0 (.NET 2008)

2008-01-14 12:30  ganis

	* [r21685] xrootd/Module.mk: From Bertrand:
	  fix warning "LNK4098: defaultlib 'MSVCRTD' conflicts with use of
	  other libs;"
	  when building root in debug mode with the option
	  --disable-winrtdebug

2008-01-14 11:34  brun

	* [r21683] tmva/src/Configurable.cxx, tmva/src/FitterBase.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/PDF.cxx, tmva/src/Reader.cxx,
	  tmva/src/TNeuron.cxx: Undo previous changes.

2008-01-14 11:20  brun

	* [r21681] tmva/src/Reader.cxx: Fix a remaining warning

2008-01-14 11:09  brun

	* [r21680] tmva/src/Configurable.cxx, tmva/src/FitterBase.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/PDF.cxx, tmva/src/Reader.cxx,
	  tmva/src/TNeuron.cxx: Fix warnings on Windows of the type:
	  "warning C4355: 'this' : used in base member initializer list"

2008-01-14 11:08  brun

	* [r21679] hbook/src/THbookFile.cxx: Fix compiler warning

2008-01-14 10:29  ganis

	* [r21678] rpdutils/src/net.cxx: fix type-punned warning

2008-01-14 09:35  rdm

	* [r21676] net/src/TMessage.cxx: fix type-punned warning.

2008-01-14 09:28  rdm

	* [r21675] tmva/inc/MethodCuts.h, tmva/inc/TActivationIdentity.h,
	  tmva/src/MethodCuts.cxx, tmva/src/MethodVariable.cxx: fix
	  warning: empty body in an if-statement

2008-01-14 08:07  brun

	* [r21674] x3d/src/x3d.c: Fix 23 warnings: "dereferencing
	  type-punned pointer will break strict-aliasing rules"

2008-01-14 07:59  brun

	* [r21673] castor/src/TCastorFile.cxx: Fix 3 warnings:
	  "dereferencing type-punned pointer will break strict-aliasing
	  rules"

2008-01-14 07:55  brun

	* [r21672] table/src/TTableSorter.cxx: Fix warning: "dereferencing
	  type-punned pointer will break strict-aliasing rules"

2008-01-14 07:53  brun

	* [r21671] asimage/src/TASImage.cxx: Fix warnings: dereferencing
	  type-punned pointer will break strict-aliasing rules"

2008-01-14 07:38  brun

	* [r21670] treeplayer/src/TTreePlayer.cxx: Fix documentation errors
	  in TTreePlayer::DrawSelect

2008-01-13 14:06  wouter

	* [r21669] roofit/src/RooNDKeysPdf.cxx: o RooNDKeysPdf
	  
	  - Add class documentation and document constructors

2008-01-13 14:06  wouter

	* [r21668] roofitcore/inc/RooSharedPropertiesList.h,
	  roofitcore/src/RooFFTConvPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooWorkspace.cxx: o RooSharedPropertiesList
	  
	  - Extend registerProperties() to take additional argument to
	  control deletion of incoming duplicate objects
	  
	  
	  o RooRealVar
	  
	  - Use deletion control argument of registerProperties() in
	  streamer
	  
	  
	  o RooWorkspace
	  
	  - When importing data, check if observable is already imported
	  before
	  attempting (eliminates superfluous ERROR message)
	  
	  
	  o RooFFTConvPdf
	  
	  - Add more detailed instructions of installation and use of
	  FFTW package with ROOT in class documentation

2008-01-13 12:40  brun

	* [r21667] main/src/pmain.cxx, main/src/proofserv.sh: From Gerri:
	  - improved description for the usage of PROOF_INITCMD
	  - improve notification when when using dynamic environment
	  settings
	  fixes: issue on the PROOF forum (21 Dec 2007: 'change environment
	  variables in proof')

2008-01-13 12:39  brun

	* [r21666] proof/src/TProofServ.cxx: From Gerri:
	  - remove <package>/PROOF-INF/proofvers.txt when updating the
	  package tarball
	  - save again the MD5 if the package is rebuilt
	  - fix bug in adding standard paths to PATH
	  fixes: bug #32529

2008-01-13 12:39  brun

	* [r21665] netx/inc/TXNetFile.h, netx/src/TXNetFile.cxx: From
	  Gerri:
	  - fix problem with setting the xrootd cache parameters per
	  instance
	  fixes: problem reported privately by ALICE

2008-01-13 12:38  brun

	* [r21664] auth/Module.mk, auth/src/AFSAuth.cxx,
	  config/Makefile.in, configure: From Gerri:
	  - improved configuration of AFS
	  - add support for AFS >= 1.4.5 (current stable version)
	  fixes: bug #32552

2008-01-13 12:37  brun

	* [r21663] xrootd/Module.mk: From Gerri:
	  - fix a problem with trasmission of non-default AFS and SSL
	  include directories
	  fixes: bug #32450

2008-01-13 12:35  brun

	* [r21662] xrootd/src/xrootd-20071116-0000.src.tgz: From Gerri:
	  1. xrootd/src/xrootd-20071116-0000.src.tgz
	  - fix several warnings from gcc >= 4.1.1 and windows VC compilers
	  - improved configuration of AFS (fixes bug #32552)

2008-01-13 06:07  pcanal

	* [r21661] treeplayer/src/TTreeProxyGenerator.cxx: use a better
	  proxy type for the top level vector of fundamental type

2008-01-13 04:18  pcanal

	* [r21660] treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: fix support for
	  std::vector of fundamental help in a top level branch

2008-01-13 00:25  pcanal

	* [r21659] tree/src/TBranchElement.cxx: Remove a few TBasket
	  creations that are no longer needed (this was a memory leak

2008-01-13 00:08  pcanal

	* [r21658] io/src/TMakeProject.cxx: coding conventions

2008-01-12 17:14  brun

	* [r21657] tutorials/fit/fitExclude.C: Remove the two created
	  functions from the list of global functions.
	  To avoid a double delete when TROOT destructor is called.

2008-01-12 09:08  pcanal

	* [r21656] cint/src/v6_ifunc.cxx, meta/src/TClass.cxx: cint: From
	  Scott Snyder, remove a memory leak in G__make_ifunctable
	  See http://savannah.cern.ch/bugs/?32609 from details
	  
	  meta: In BuildRealData, in addition to forcing the build of the
	  list of real data for the base classes, we need to force the
	  build of the list of real data for the type of the data member
	  which are embedded objects. Their type could also inherits from
	  an abstract base class.
	  This solves a problem where the list of real data of an abstract
	  class was requested before the same list was requested for one of
	  the derived class.
	  For example this cases occurs if you have a tree with a branch
	  containing a split vector<Contained> and Contained has a
	  sub-object whose class inherits from an abstract which contains
	  data members. In this case, the derived class's list of real data
	  was never constructed because there is no BranchElement actually
	  holding 'just' the embedded object (this conceptual branch has
	  been unrolled).
	  See the 'abstract' test in roottest/root/tree/split

2008-01-12 04:58  pcanal

	* [r21655] tree/src/TLeafL.cxx: correct typo in comment

2008-01-12 04:55  pcanal

	* [r21654] tree/src/TLeafL.cxx: Correct the sizeof long long leaf
	  data

2008-01-11 20:23  matevz

	* [r21653] eve/inc/LinkDef.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveLineGL.h, eve/inc/TEveStraightLineSetGL.h,
	  eve/inc/TEveTrackGL.h, eve/src/TEveGLUtil.cxx,
	  eve/src/TEveLineGL.cxx, eve/src/TEveStraightLineSetGL.cxx,
	  eve/src/TEveTrackGL.cxx, eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTriangleSetGL.cxx, gl/inc/TGLRnrCtx.h,
	  gl/inc/TGLUtil.h, gl/inc/TPointSet3DGL.h, gl/src/TGLRnrCtx.cxx,
	  gl/src/TGLUtil.cxx, gl/src/TPointSet3DGL.cxx,
	  tutorials/eve/lineset_test.C, tutorials/eve/pointset_test.C: Move
	  code for rendering of poly-markers and poly-lines from TEveGLUtil
	  to TGLUtil and remove TEveGLUtil class.
	  
	  Extend picking region also for fat lines so that lines can be
	  picked
	  also on their edges not only at the very center.
	  
	  Fix rendering of anitaliased points in TEveStraightLineSetGL.
	  
	  Honour wireframe and outline modes in TEveTriangleSetGL.
	  
	  Add new tutorial pointset_test.C.

2008-01-11 17:13  matevz

	* [r21652] eve/inc/TEveManager.h, eve/src/TEveBrowser.cxx,
	  eve/src/TEveElement.cxx, eve/src/TEveGedEditor.cxx,
	  eve/src/TEveGeoNode.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEveProjectionManager.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackEditor.cxx, eve/src/TEveViewer.cxx: Cleanup
	  includes in TEveManager.h and add them in cxx files that actually
	  need them.

2008-01-11 17:11  matevz

	* [r21651] gl/inc/TGLOrthoCamera.h, gl/inc/TGLSAViewer.h,
	  gl/inc/TGLViewer.h, gl/src/TGLOrthoCamera.cxx,
	  gl/src/TGLSAViewer.cxx, gl/src/TGLViewer.cxx: Introduce option
	  for toggling dolly/zoom behaviour for orthographic
	  camera.
	  
	  Expose this and optional rotation in ortho camera via menu
	  entries in
	  TGLSAViewer.

2008-01-11 16:53  couet

	* [r21650] histpainter/src/TPainter3dAlgorithms.cxx: - Implement
	  option "0" for polar coordinates.

2008-01-11 16:19  brun

	* [r21649] clib/src/snprintf.c: From Axel:
	  Don't compile clib's snprintf implementation if it's not used.
	  Removes warning on linux AMD64 (pointer conversion) as a
	  side-effect.
	  Until now, we were compiling snprintf.c even though we did not
	  use its functions (we re-#defined them to e.g. r__snprintf so
	  they don't clash with glibc's). This patch skips the functions
	  (#if...#endif) if clib's snprintf is not needed on the platform.
	  I have tested it on MSVC 7.1, 9.0, linux AMD64.

2008-01-11 16:16  couet

	* [r21648] histpainter/inc/Hoption.h,
	  histpainter/src/THistPainter.cxx,
	  histpainter/src/TPainter3dAlgorithms.cxx: - When used with any
	  LEGO option, the option "0" allows to not draw the empty
	  bins.

2008-01-11 15:55  moneta

	* [r21646] mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/src/Transform3D.cxx, mathcore/test/testGenVector.cxx: -
	  add methods to make a Transform3D class from any rotation type
	  (request from LHCb)
	  - add also test for these new methods

2008-01-11 15:52  matevz

	* [r21645] tutorials/eve/geom_alias.C,
	  tutorials/eve/geom_alice_its.C, tutorials/eve/geom_alice_tpc.C,
	  tutorials/eve/geom_atlas.C, tutorials/eve/geom_default.C: New
	  tutorials demonstrating how to display TGeo geometries in Eve.

2008-01-11 15:51  matevz

	* [r21644] eve/inc/TEveManager.h, eve/src/TEveManager.cxx: Do not
	  check if geometry file is readable before calling
	  TGeoManager::Import() as it does not work for remote files (http
	  in
	  particular).
	  
	  Add option to assign aliases for geometries and to specify the
	  default
	  geometry.

2008-01-11 15:48  matevz

	* [r21643] gl/src/TGLClipSetEditor.cxx: In SetModel() fully update
	  the clip state in case it was changed from outside.

2008-01-11 14:55  rdm

	* [r21642] tree/inc/TVirtualTreePlayer.h: correct class description
	  comment.

2008-01-11 14:23  rdm

	* [r21641] meta/src/TCint.cxx: small typos in comments.

2008-01-11 14:20  rdm

	* [r21640] etc/valgrind-root.supp: From Axel:
	  Suppress bogus valgrind report on CINT's G__rate_parameter_match.

2008-01-11 10:48  brun

	* [r21639] hist/src/THnSparse.cxx: From Silvia Arcelli: in
	  projections, reset TAxis::kAxisRange bit instead of manually
	  bringing the coordinates into range for the target dimensions.

2008-01-11 10:38  moneta

	* [r21638] mathmore/test/Makefile, mathmore/test/UnuRanDist.h: fix
	  a Windows compilation problem in the tests

2008-01-11 09:56  moneta

	* [r21637] mathmore/inc/Math/Interpolator.h,
	  mathmore/src/GSLInterpolator.cxx, mathmore/src/GSLInterpolator.h,
	  mathmore/src/Interpolator.cxx,
	  mathmore/test/testInterpolation.cxx: - add possibility to set
	  data in interpolation object after having constructed
	  (request expressed at
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5978 )
	  - use now as default CSPLINE
	  - add also some clean-up of the GSLINterpolator class.

2008-01-11 08:26  brun

	* [r21636] io/src/TMakeProject.cxx: Fix a compiler warning and
	  coding conventions

2008-01-10 21:58  pcanal

	* [r21633] cint/lib/dll_stl/cmplx.h, cint/src/v6_struct.cxx,
	  meta/src/TCint.cxx: cint: add option noerror==4 to
	  G__defined_tagname: only check for
	  existing classes, no typedefs. Use that when returning the
	  auto-load
	  libraries for a class.
	  cint: add missing update from cint v5-16-29
	  TCint: re-enable check for declaring class in rootmap setter,
	  reverting
	  r21611 to r21609.

2008-01-10 21:03  pcanal

	* [r21632] clib/src/snprintf.c: undo 21610

2008-01-10 20:03  wouter

	* [r21631] roofitcore/Module.mk, roofitcore/inc/LinkDef2.h,
	  roofitcore/inc/RooAbsCategory.h, roofitcore/inc/RooAbsPdf.h,
	  roofitcore/inc/RooAbsReal.h, roofitcore/inc/RooBinning.h,
	  roofitcore/inc/RooErrorVar.h, roofitcore/inc/RooHistError.h,
	  roofitcore/inc/RooNormListManager.h,
	  roofitcore/inc/RooNormManager.h, roofitcore/inc/RooNumber.h,
	  roofitcore/inc/RooPlot.h, roofitcore/inc/RooRealVar.h,
	  roofitcore/src/RooAbsCategory.cxx, roofitcore/src/RooAbsPdf.cxx,
	  roofitcore/src/RooAbsReal.cxx, roofitcore/src/RooBanner.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooDataSet.cxx,
	  roofitcore/src/RooHistError.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumber.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooTreeData.cxx:
	  ***********************************************************************
	  * NOTE: THE FOLLOWING FILES MUST BE REMOVED BY HAND AFTER THIS
	  COMMIT *
	  * WHEN UPDATING AN EXISTING RELEASE AREA *
	  * *
	  * include/RooNormManager.h *
	  * include/RooNormListManager.h *
	  * roofitcore/src/RooNormManager.o *
	  * roofitcore/src/RooNormManager.d *
	  * roofitcore/src/RooNormListManager.o *
	  * roofitcore/src/RooNormListManager.d *
	  * *
	  ***********************************************************************
	  
	  o RooNormListManager, RooNormManager
	  
	  - Removed, now obsolete. Replacement is RooObjCacheManager
	  
	  
	  o RooNumber
	  
	  - Add non-inlined accessor function infinity() to replace
	  static double inifinity to fix Windows linked problems
	  
	  
	  o RooStreamParser, RooCurve, RooRangeBinning, RooNumConvolution
	  RooHistError, RooTreeData, RooRealVar, RooBinning, RooErrorVar
	  
	  - Follow migration of RooNumber::infinity()
	  
	  
	  o RooPlot
	  
	  - Fix SetTitle()
	  
	  
	  o RooDataSet
	  
	  - Initialize wgtVar ptr in default ctor
	  
	  
	  o RooAbsReal
	  
	  - Redesign scheme to import non-double TTree branches
	  to RooAbsReal buffer to fix gcc warnings on
	  strict aliasing rules for type-punned pointers.
	  
	  
	  o RooAbsPdf
	  
	  - Make globalSelectComp() non-inline to avoid
	  Windows linking problems.
	  
	  
	  o RooResolutionModel
	  
	  - Fix crash in use of resolution models when completely
	  const-optimized by deleting _norm pointer on a
	  serverRedirect.
	  
	  
	  o RooAbsCategory
	  
	  - Redesign scheme to import non-integer TTree branches
	  to RooAbsReal buffer to fix gcc warnings on
	  strict aliasing rules for type-punned pointers.
	  
	  o LinkDef2.h, Module.mk
	  
	  - Remove classes RooNormManager, RooNormListManager
	  
	  o RooBanner
	  
	  - Increment version tag to 2.31

2008-01-10 19:40  brun

	* [r21630] tmva/inc/BinaryTree.h, tmva/inc/Config.h,
	  tmva/inc/DataSet.h, tmva/inc/DecisionTree.h, tmva/inc/Event.h,
	  tmva/inc/IMetric.h, tmva/inc/LinkDef.h, tmva/inc/MethodANNBase.h,
	  tmva/inc/MethodBDT.h, tmva/inc/MethodBase.h,
	  tmva/inc/MethodBayesClassifier.h, tmva/inc/MethodCFMlpANN.h,
	  tmva/inc/MethodCommittee.h, tmva/inc/MethodCuts.h,
	  tmva/inc/MethodFDA.h, tmva/inc/MethodFisher.h,
	  tmva/inc/MethodHMatrix.h, tmva/inc/MethodKNN.h,
	  tmva/inc/MethodLikelihood.h, tmva/inc/MethodMLP.h,
	  tmva/inc/MethodPDERS.h, tmva/inc/MethodRuleFit.h,
	  tmva/inc/MethodSVM.h, tmva/inc/MethodSeedDistance.h,
	  tmva/inc/MethodTMlpANN.h, tmva/inc/MethodVariable.h,
	  tmva/inc/ModulekNN.h, tmva/inc/Reader.h, tmva/inc/SeedDistance.h,
	  tmva/inc/SeparationBase.h, tmva/inc/SimulatedAnnealingFitter.h,
	  tmva/inc/TActivationIdentity.h, tmva/inc/TNeuronInputAbs.h,
	  tmva/inc/TNeuronInputSqSum.h, tmva/inc/TNeuronInputSum.h,
	  tmva/inc/Types.h, tmva/inc/VariableDecorrTransform.h,
	  tmva/inc/VariableIdentityTransform.h,
	  tmva/inc/VariablePCATransform.h,
	  tmva/inc/VariableTransformBase.h, tmva/inc/Version.h,
	  tmva/src/BinarySearchTree.cxx, tmva/src/BinarySearchTreeNode.cxx,
	  tmva/src/BinaryTree.cxx, tmva/src/Config.cxx,
	  tmva/src/Configurable.cxx, tmva/src/CrossEntropy.cxx,
	  tmva/src/DecisionTree.cxx, tmva/src/DecisionTreeNode.cxx,
	  tmva/src/Event.cxx, tmva/src/Factory.cxx,
	  tmva/src/FitterBase.cxx, tmva/src/GiniIndex.cxx,
	  tmva/src/IFitterTarget.cxx, tmva/src/IMethod.cxx,
	  tmva/src/IMetric.cxx, tmva/src/Interval.cxx,
	  tmva/src/KDEKernel.cxx, tmva/src/MCFitter.cxx,
	  tmva/src/MethodANNBase.cxx, tmva/src/MethodBDT.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/MethodBayesClassifier.cxx,
	  tmva/src/MethodCFMlpANN.cxx, tmva/src/MethodCommittee.cxx,
	  tmva/src/MethodCuts.cxx, tmva/src/MethodFDA.cxx,
	  tmva/src/MethodFisher.cxx, tmva/src/MethodHMatrix.cxx,
	  tmva/src/MethodKNN.cxx, tmva/src/MethodLikelihood.cxx,
	  tmva/src/MethodMLP.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/MethodRuleFit.cxx, tmva/src/MethodSVM.cxx,
	  tmva/src/MethodSeedDistance.cxx, tmva/src/MethodTMlpANN.cxx,
	  tmva/src/MethodVariable.cxx, tmva/src/MetricEuler.cxx,
	  tmva/src/MetricManhattan.cxx, tmva/src/ModulekNN.cxx,
	  tmva/src/MsgLogger.cxx, tmva/src/Node.cxx, tmva/src/PDF.cxx,
	  tmva/src/Reader.cxx, tmva/src/RootFinder.cxx,
	  tmva/src/RuleEnsemble.cxx, tmva/src/RuleFit.cxx,
	  tmva/src/SdivSqrtSplusB.cxx, tmva/src/SeedDistance.cxx,
	  tmva/src/SeparationBase.cxx, tmva/src/Timer.cxx,
	  tmva/src/Types.cxx, tmva/src/VariableDecorrTransform.cxx,
	  tmva/src/VariableIdentityTransform.cxx,
	  tmva/src/VariablePCATransform.cxx,
	  tmva/src/VariableTransformBase.cxx, tmva/test/BDT.C,
	  tmva/test/TMVAGui.C, tmva/test/TMVAnalysis.C,
	  tmva/test/TMVApplication.C, tmva/test/annconvergencetest.C,
	  tmva/test/compareanapp.C, tmva/test/correlations.C,
	  tmva/test/likelihoodrefs.C, tmva/test/mvaeffs.C,
	  tmva/test/mvas.C, tmva/test/network.C, tmva/test/probas.C,
	  tmva/test/rulevisHists.C, tmva/test/tmvaglob.C: From Joerg
	  Stelzer:
	  * documentation of all classes ( I hope I caught all 17 of them,
	  but I didn't know how to check except by looking through all the
	  files)
	  * plugin capabilities for user developed multivariate classifiers
	  * An improved GUI where the user can print the significance
	  curves for adjustable signal and background yields
	  * A fix to a compiler complaint that Axel told me about

2008-01-10 19:01  brun

	* [r21629] hist/src/THnSparse.cxx: From Axel and Silvia Arcelli:
	  allow e.g. THnSparse::Projection() to only project non-over- and
	  underflow bins; see documentation in THnSparse::IsInRange().

2008-01-10 18:58  brun

	* [r21628] clib/src/snprintf.c: From Axel:
	  insert a missing "break" (used to be return) + protect some deref
	  operators. Fixes a fatal problem on windows.

2008-01-10 16:19  brun

	* [r21627] hist/src/TAxis.cxx: Remove a misleading "-" character in
	  the description of TAxis::GetFirst and TAxis::GetLast

2008-01-10 16:14  moneta

	* [r21626] tutorials/math/mathmoreIntegration.C: - fix a problem
	  due to a previous change in the Functor class

2008-01-10 14:57  moneta

	* [r21624] mathmore/test/UnuRanDist.h,
	  mathmore/test/testRandomDist.cxx: update random distribution test
	  adding binomial and unuran

2008-01-10 14:29  couet

	* [r21623] base/src/TColor.cxx: - SetPalette() calls
	  InitializeColors() before defining the deap sea palette.
	  Without this call the deap sea palette definition tried to
	  redefine some
	  existing colors.

2008-01-10 11:06  brun

	* [r21622] ruby/src/drr.cxx, ruby/test/test_rr.rb: From Jan
	  Scumacher:
	  fix for problem reported at:
	  <http://savannah.cern.ch/bugs/?32544>

2008-01-10 09:54  couet

	* [r21621] histpainter/src/THistPainter.cxx: - complete help for
	  option COL

2008-01-10 04:25  pcanal

	* [r21620] io/src/TStreamerInfo.cxx: fix coding convention

2008-01-10 03:08  pcanal

	* [r21617] utils/src/rootcint.cxx: repair the tmpnam case (still
	  used on mac) [tmpnam already prepend P_tmpdir so we don't need to
	  do it

2008-01-09 22:09  pcanal

	* [r21615] cint/src/v6_parse.cxx: Fix the problem with the switch
	  statement not working under -O4 in the
	  root/tutorial/gui/guitest.C test.

2008-01-09 22:06  pcanal

	* [r21614] utils/src/rootcint.cxx: use mkstemp instead of tempnam
	  on unixes

2008-01-09 21:43  pcanal

	* [r21611] meta/src/TCint.cxx: temporarily revert r21609 until it
	  is completed

2008-01-09 17:51  brun

	* [r21610] clib/src/snprintf.c: From Axel:
	  Remove a compilation warning with snprintf.
	  the only way out is to not pass the va_list - which means
	  converting the function snprintf_get_directive into a CPP macro.
	  Attached patch does just that. Log:
	  work around &va_list warning (incompatible pointer) on AMD64.

2008-01-09 15:05  pcanal

	* [r21609] meta/src/TCint.cxx: From Axel:
	  add G__get_class_autoloading_table() returning the library
	  name for a class name; used by TCint to determine whether the
	  enclosing
	  class's auto-load entry should be set.

2008-01-09 14:26  couet

	* [r21608] zip/src/deflate.c: - Reintroduce the fix Axel did in
	  revision 18373. It was lost with the upgrade
	  to version 1.2.3 done in revision 21207.

2008-01-09 11:12  moneta

	* [r21607] test/stressMathCore.cxx: relax a test condition to
	  suppress an error on gcc 4.1

2008-01-09 10:23  couet

	* [r21606] graf/inc/TPie.h, graf/src/TPie.cxx: - From Guido Volpi:
	  
	  * TPie::MakeLegend() now takes an extra argument to setup the
	  TLegend
	  header, the default now is an empty header for the legend instead
	  the
	  name of the TPie object.
	  
	  * TPie::SortSlices() has an extra argument that represents a
	  threshold;
	  if the threshold is greater than 0 (the default value), slices
	  with
	  values smaller than the threshold are merged together in a new
	  slice
	  with the label "other".

2008-01-09 10:18  couet

	* [r21605] graf/src/TLegend.cxx: - From Guido Volpi: In case of
	  multicolumns, the last line was outside the
	  frame if it was not complete.

2008-01-09 09:19  moneta

	* [r21604] tutorials/unuran/unuranDemo.C, unuran/Module.mk,
	  unuran/inc/TUnuran.h, unuran/src/TUnuran.cxx,
	  unuran/src/unuran-1.0.1-root.tar.gz,
	  unuran/src/unuran-1.1.1-root.tar.gz,
	  unuran/test/unuranDiscrete.cxx: - add a new version of unuran
	  (1.1.1) which fixes some warnings on gcc 4 and add a new method
	  (mvtdr)
	  - WARNING: to re-compile root a make distclean-unuran is required
	  
	  - fix a problem with re-initialization of discrete pre-defined
	  distributions (poisosn and binomial) when
	  changing their parameters
	  - improve and fix a problem with the test for discrete
	  distributions

2008-01-09 08:22  pcanal

	* [r21603] gpad/src/TPad.cxx: If WaitPrimitive is called with an
	  empty argument,
	  avoid unintentionally matching an unamed primitive.

2008-01-09 07:46  brun

	* [r21602] geom/src/TGeoBuilder.cxx: From Andrei:
	  Remove a useless test in TGeoShape constructor that was slowing
	  down the geometry building process.
	  Thanks to Sue Kasahara for reporting.

2008-01-09 04:34  pcanal

	* [r21601] io/inc/TMakeProject.h, io/inc/TStreamerInfo.h,
	  io/src/TBufferFile.cxx, io/src/TFile.cxx,
	  io/src/TMakeProject.cxx, io/src/TStreamerInfo.cxx,
	  meta/inc/TVirtualStreamerInfo.h: Extend TFile::MakeProject to
	  support namespaces, nested classes
	  and templates.
	  
	  2 new files are generated in the user directory (dirname):
	  dirnameProjectHeaders.h
	  dirnameProjectSource.cxx
	  the linkdef file is renamed dirnameLinkDef.h
	  Each non-nested class is generated in its own header file
	  with a name that is the fully qualified name of the class
	  after all the special characters "<>,:" are replaced by
	  underscored.
	  For example for pair<edm::Vertex,int> the file name is
	  pair_edm__Vertex_int_.h
	  
	  In the generated classes, map, multimap when the first template
	  parameter is a class
	  are replaced by a vector of pair. set and multiset when the
	  tempalte parameter
	  is a class are replaced by a vector. This is required since we do
	  not have the
	  code needed to order and/or compare the object of the classes.
	  
	  [The required schema evolution from map to vector of pair is not
	  yet functional]
	  
	  The new class TMakeProject contains a set of helper functions.

2008-01-09 03:57  pcanal

	* [r21600] meta/src/TStreamerElement.cxx: When 'calculating' the
	  include file name, remove const, *, &, etc. for the type of the
	  TStreamerElement

2008-01-09 03:56  pcanal

	* [r21599] meta/inc/TCint.h, meta/src/TCint.cxx: Update for better
	  version independence from CINT

2008-01-09 03:45  pcanal

	* [r21598] base/src/ManualBase4Body.h, base/src/TStorage.cxx,
	  tree/src/ManualTree2Body.h: Update for better version
	  independence from CINT

2008-01-09 03:36  pcanal

	* [r21597] cint/inc/Class.h, cint/inc/G__ci.h, cint/src/Apiif.cxx,
	  cint/src/Class.cxx: missing import from CINT v5-16-29

2008-01-09 03:27  pcanal

	* [r21595] metautils/src/TClassEdit.cxx: add std::greater as a
	  known std member

2008-01-09 02:37  pcanal

	* [r21594] cint/inc/G__ci.h, cint/src/HISTORY,
	  cint/src/v6_decl.cxx, cint/src/v6_expr.cxx,
	  cint/src/v6_inherit.cxx, cint/src/v6_loadfile.cxx,
	  cint/src/v6_newlink.cxx, cint/src/v6_parse.cxx,
	  cint/src/v6_pcode.cxx, cint/src/v6_struct.cxx,
	  cint/src/v6_typedef.cxx, cint/src/v6_value.h,
	  cint/src/v6_var.cxx: From Paul, Axel and Philippe:
	  CINT v5-16-29:
	  * - Fix 'int n((0));' and related syntax.
	  * - Fixes problem with re-using artificial source files.
	  * - Add G__get_class_autoloading_table() returning the library
	  name for a class name; used by TCint to determine whether the
	  enclosing class's auto-load entry should be set.
	  * - Fix <https://savannah.cern.ch/bugs/?32403> and "operator
	  std::string()" by skipping "std::" and setting G__vartype for
	  conversion functions.
	  * - Add better support for indirect self reference
	  * - Correct the constness in the case: Object * const &front()
	  const; (i.e Object*const vs Object const*).
	  * - Fix for passing the result of post increment directly to a
	  function taking a parameter by reference (for example cout <<
	  c++;
	  [Still outstanding is a fix for an odd problem with switch
	  statement]

2008-01-08 20:28  brun

	* [r21593] pyroot/src/Converters.cxx, pyroot/src/RootWrapper.cxx:
	  From Wim:
	  Fix to silence the compiler

2008-01-08 17:28  brun

	* [r21592] base/src/TROOT.cxx: From Gerri:
	  - Remove unused inclusion of TAuthenticate.h

2008-01-08 17:28  brun

	* [r21591] auth/inc/TAuthenticate.h, auth/src/TAuthenticate.cxx:
	  From Gerri:
	  - Fix "dereferencing type-punned pointer will break
	  strict-aliasing rules" warnings

2008-01-08 17:16  ganis

	* [r21590] proofd/inc/XrdProofConn.h, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx, proofx/src/TXSocket.cxx: Fix a
	  bunch of "dereferencing type-punned pointer will break
	  strict-aliasing rules" warnings

2008-01-08 16:26  brun

	* [r21589] base/src/TContextMenu.cxx: silence strict-aliasing
	  warning.

2008-01-08 16:00  rdm

	* [r21588] base/src/TString.cxx: silcence strict-aliasing warning.

2008-01-08 15:34  couet

	* [r21587] graf/src/TGraph.cxx: In PaintGraph fHistogram's limits
	  are computed with some margins. The new
	  minimum along x is stored in "uxmin" and the new minimum along y
	  in "minimum".
	  In some cases the new minimum can be negative whereas the real
	  minimum is
	  positive. In such case, the new minimum was set to 90% of the
	  real minimum
	  in case of log scale, and to 0 in case of linear scale. Setting
	  to 0 in case
	  of linear scale, was not a good idea because if the pad is turned
	  into log
	  scale later on, then some points close to the real mimimum are
	  not visible.
	  The following macro demonstrate the problem:
	  
	  {
	  Double_t x[2];
	  Double_t y[2];
	  x[0]= 200; y[0]=2.0271;
	  x[1]=3e+06; y[1]=0.0005;
	  TGraph *gr = new TGraph(2,x,y);
	  gr->Draw("alp");
	  gr->SetMarkerStyle(20);
	  gPad->Update();
	  gPad->SetLogx();
	  gPad->SetLogy();
	  }
	  
	  Now, when the new computed minimum is negative and when the real
	  minimum is
	  positive, the new minimum is set to 90% of the real minimum in
	  both log and
	  linear scale.

2008-01-08 15:01  brun

	* [r21586] qtgsi/Module.mk: From Bertrand:
	  Fix a build problem with qtgsi

2008-01-08 14:49  rdm

	* [r21585] configure: allow custom PNG lib by setting $ASPNG which
	  must contain include and lib
	  directories.

2008-01-08 14:11  brun

	* [r21584] hist/src/TProfile.cxx, hist/src/TProfile2D.cxx: Fix
	  gcc4.1 compilation warnings.

2008-01-08 13:20  brun

	* [r21583] cintex/src/Cintex.cxx: Increase size of local tables in
	  function Declare_additional_CINT_typedefs.
	  This is a CMS request.

2008-01-08 09:37  couet

	* [r21582] freetype/src/freetype-2.3.5.tar.gz: - fix the warnings
	  listed here:
	  http://lcgapp.cern.ch/spi/aaLibrarian/nightlies/osx104_ia32_gcc401_dbg/dev.Mon_ROOT_today-osx104_ia32_gcc401_dbg-log.html

2008-01-07 20:36  brun

	* [r21581] pyroot/src/Utility.cxx: From Wim:
	  The problem is a string temporary that may or may not be
	  overwritten by the
	  time it is used. The fix prolongs the life of the variable to
	  past its use.

2008-01-07 15:49  brun

	* [r21579] build/win/w32pragma.h: From Axel:
	  MSVC: suppress warning "qualifier applied to reference type;
	  ignored"
	  (until this is fixed in CINT)

2008-01-07 15:14  brun

	* [r21578] win32gdk/gdk/src/gdk/gdk.c,
	  win32gdk/gdk/src/gdk/win32/gdkcolor-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkfont-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkpixmap-win32.c: From Bertrand:
	  - Remove "signed/unsigned mismatch" compilation warnings

2008-01-07 14:54  moneta

	* [r21576] mathmore/inc/Math/InterpolationTypes.h,
	  mathmore/inc/Math/Interpolator.h, minuit2/inc/LinkDef.h: - update
	  doc for interpolation (cubic splies are now available)
	  - add dictionary for Minuit2 class MnContours

2008-01-07 10:32  couet

	* [r21573] graf/src/TMultiGraph.cxx: - The fix done in the revision
	  20433 was not completely right: the multigraph
	  limits need to be initialisezd with call to ComputeRange on the
	  1st graph
	  before looping on the remaining graphs.

2008-01-07 09:48  rdm

	* [r21572] base/src/TSystem.cxx, unix/src/TUnixSystem.cxx:
	  correctly document new error code -3 in CopyFile().

2008-01-03 09:21  brun

	* [r21571] table/inc/TDataSetIter.h, table/src/TTable.cxx: Fix
	  coding conventions.

2007-12-29 16:00  brun

	* [r21570] base/inc/TVirtualX.h: From Bertrand:
	  - TVirtualX.h: suppress warning C4099: 'GLUtesselator' :
	  type name first seen using 'struct' now seen using 'class'

2007-12-29 15:56  brun

	* [r21569] geompainter/src/TGeoChecker.cxx: From Bertrand:
	  - TGeoChecker.cxx: suppress warning C4138: '*/' found outside of
	  comment

2007-12-28 16:45  brun

	* [r21568] hist/src/TH1.cxx: Add a Warning in TH1::Rebin in case
	  the argument ngroup is not an exact divider of the number of
	  bins.

2007-12-28 16:36  brun

	* [r21567] geom/inc/TGeoBuilder.h: Add missing forward
	  declarations.

2007-12-28 16:15  brun

	* [r21566] eve/inc/TEvePointSet.h, eve/inc/TEveScene.h,
	  eve/inc/TEveViewer.h, eve/src/TEvePointSet.cxx,
	  eve/src/TEveScene.cxx, eve/src/TEveViewer.cxx,
	  proofx/inc/TXSocket.h, proofx/src/TXSocket.cxx,
	  table/inc/TTable.h, table/inc/TTableDescriptor.h,
	  table/src/TTable.cxx, table/src/TTableDescriptor.cxx: Move
	  functions referencing static global variables from inline to
	  implementation file.

2007-12-28 12:28  brun

	* [r21565] eve/inc/TEveElement.h, eve/inc/TEveTrack.h,
	  eve/src/TEveElement.cxx, eve/src/TEveTrack.cxx,
	  fitpanel/inc/TFitEditor.h, fitpanel/src/TFitEditor.cxx,
	  ged/inc/TStyleManager.h, ged/src/TStyleManager.cxx,
	  geombuilder/inc/TGeoTabManager.h,
	  geombuilder/src/TGeoTabManager.cxx, gl/inc/TGLSelectBuffer.h,
	  gl/inc/TGLUtil.h, gl/src/TGLSelectBuffer.cxx, gl/src/TGLUtil.cxx,
	  table/inc/TDataSet.h, table/inc/TDataSetIter.h,
	  table/inc/TIndexTable.h, table/inc/TTableDescriptor.h,
	  table/src/TDataSet.cxx, table/src/TDataSetIter.cxx,
	  table/src/TIndexTable.cxx, table/src/TTableDescriptor.cxx,
	  vmc/inc/TVirtualMC.h, vmc/src/TVirtualMC.cxx: Functions
	  referencing a static global cannot be inlined.

2007-12-21 16:26  pcanal

	* [r21563] base/src/TSystem.cxx, foam/src/TFoam.cxx: do not use
	  TCint when TInterpreter or only the Cint C Api is needed

2007-12-21 16:19  pcanal

	* [r21562] eve/src/TEveEventManager.cxx: Do not use TCint.h when
	  TInterpreter will do

2007-12-21 15:39  brun

	* [r21561] test/stressShapes.cxx: Normalize stressShapes rootmarks

2007-12-21 15:09  brun

	* [r21560] hist/src/THnSparse.cxx: From Axel:
	  Fix error calculation for THnSparse: first calculate the bin's
	  current
	  error, then add new bin content. Also remove a few stray
	  "return"s.

2007-12-21 15:00  couet

	* [r21559] test/stressGraphics.ref: - mod for Solaris

2007-12-21 14:18  brun

	* [r21558] table/doc/index.txt: From Valeri:
	  More info about the table package.

2007-12-21 13:55  couet

	* [r21557] test/stressGraphics.ref: - mods needed for mac.

2007-12-21 13:41  couet

	* [r21556] test/stressGraphics.cxx, test/stressGraphics.ref: -
	  Changes needed because of a TEllipse bug fixed.

2007-12-21 12:57  couet

	* [r21555] graf/src/TEllipse.cxx: - PaintEllipse() now uses the
	  FillStyle to control wether or not a filled area
	  should be painted in case a closed ellipse. It used wrongly the
	  FillColor unlike the case of an open ellipse.

2007-12-21 11:43  brun

	* [r21554] test/Makefile.arch, test/Makefile.win32,
	  test/RootIDE/Makefile, test/rhtml/Makefile: From Bertrand:
	  - fixes for MSVC++9.0 (.NET 2008)

2007-12-21 10:55  moneta

	* [r21553] mathcore/doc/index.txt,
	  mathcore/inc/Math/AdaptiveIntegratorMultiDim.h,
	  mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/IFunction.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/VirtualIntegrator.h, mathmore/doc/index.txt,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLSimAnnealing.h,
	  mathmore/inc/Math/Minimizer1D.h, mathmore/inc/Math/Random.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h, minuit2/doc/index.txt,
	  smatrix/doc/index.txt,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SVector.h: anothe
	  doc update

2007-12-20 20:15  brun

	* [r21548] treeplayer/src/TBranchProxyDirector.cxx: Fix a typo in
	  the ClassImp directive making the compilation to fail with gcc.

2007-12-20 18:19  pcanal

	* [r21547] treeplayer/inc/TBranchProxy.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TBranchProxyDirector.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx: Add ClassImp and doc
	  markers

2007-12-20 17:21  moneta

	* [r21546] mathcore/doc/MathCore.html, mathcore/doc/index.txt,
	  mathmore/doc/MathMore.html, mathmore/doc/index.txt,
	  minuit2/doc/Minuit2.html, minuit2/doc/index.txt,
	  smatrix/doc/index.txt, unuran/doc/index.txt: - update class index
	  pages

2007-12-20 16:06  brun

	* [r21544] html/src/TDocOutput.cxx: From Axel:
	  Insert newlines when processing a module's index.html.

2007-12-20 16:02  brun

	* [r21543] etc/vmc/fl_makedist.sh: From Ivana.
	  Add the distribution file to generate the VMC fluka tar file

2007-12-20 15:38  axel

	* [r21542] reflex/doc/index.html: Add module doc.

2007-12-20 15:09  brun

	* [r21541] hist/src/THStack.cxx: Protect THStack::GetXaxis and
	  THStack::GetYaxis in case the THStack does not have any
	  histogram.

2007-12-20 13:36  brun

	* [r21540] table/doc, table/doc/index.txt: From Valeri Fine:
	  Add the table package documentation index.

2007-12-20 12:55  rdm

	* [r21539] tutorials/gui/guitest.C: remove left over print
	  statement.

2007-12-20 12:46  rdm

	* [r21537] tutorials/gui/guitest.C: re-introduce old switch
	  statement but disable it via an ifdef, so we can
	  easily test if a new version of CINT fixes this problem.

2007-12-20 12:17  matevz

	* [r21534] eve/inc/LinkDef.h, eve/inc/TEveElement.h,
	  eve/inc/TEveManager.h, eve/inc/TEveViewer.h,
	  eve/src/TEveBrowser.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveGedEditor.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEvePointSet.cxx, eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveTrack.cxx, eve/src/TEveUtil.cxx,
	  eve/src/TEveViewer.cxx: Fix a bug in TEveElement::Destroy(): the
	  destruction was not properly
	  propagated to parents and thus redraw was not performed.
	  
	  Extend strings providing information about exceptions.
	  
	  Consolidate variable name for exception header in files that were
	  modified during the above changes.

2007-12-20 12:14  rdm

	* [r21533] configure: by default turn off pch, the effect is
	  minimal and it causes problems in
	  case RVersion.h is updated and the entire source is not
	  recompiled.

2007-12-20 12:10  rdm

	* [r21532] test/threads.cxx, thread/src/TThread.cxx: From Bertrand:
	  add protection again gSystem disappearing at end of program
	  before the last
	  thread is finished. There remains a problem with threads.cxx
	  however, that
	  will be solved later.

2007-12-20 11:14  moneta

	* [r21530] minuit2/inc/Minuit2/CombinedMinimizer.h,
	  minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FCNGradientBase.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/FumiliMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/GenericFunction.h,
	  minuit2/inc/Minuit2/MinosError.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnContours.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnHesse.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinos.h, minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnStrategy.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/ModularFunctionMinimizer.h,
	  minuit2/inc/Minuit2/ScanMinimizer.h,
	  minuit2/inc/Minuit2/SimplexMinimizer.h,
	  minuit2/inc/Minuit2/VariableMetricMinimizer.h: - add tag for
	  having class description of Minuit2 classes
	  - fix also some indentation problems

2007-12-20 11:01  brun

	* [r21528] tutorials/gui/guitest.C: From Bertrand:
	  - Temporary solves a problem with CINT optimisation.

2007-12-20 10:42  moneta

	* [r21526] tutorials/unuran/unuranDemo.C, unuran/doc/index.txt,
	  unuran/inc/TUnuranBaseDist.h, unuran/inc/TUnuranContDist.h,
	  unuran/inc/TUnuranDiscrDist.h, unuran/inc/TUnuranEmpDist.h,
	  unuran/inc/TUnuranMultiContDist.h, unuran/src/TUnuranEmpDist.cxx:
	  - update doc for unuran
	  - fix also the tutorial

2007-12-20 08:57  brun

	* [r21521] cint/src/g__cfunc.c: From Axel:
	  floor work-around also for MSVC2008 (2nd part)

2007-12-20 08:40  brun

	* [r21520] ruby/src/drr.cxx: From Jan Suchmacher
	  Fix a problem introduced in previous fix.

2007-12-20 08:30  ganis

	* [r21519] tutorials/tree/h1analysis.C: Adapt to the new settings
	  for the first and last bin default arguments in TH2::FitSlicesX
	  (SVN change #21305)

2007-12-20 05:56  brun

	* [r21518] matrix/doc/index.txt: From Eddy:
	  Fix a typo

2007-12-20 05:55  brun

	* [r21517] quadp/doc, quadp/doc/index.txt: From Eddy:
	  quadp package documentation index

2007-12-20 00:03  rdm

	* [r21514] win32gdk/doc, win32gdk/doc/index.txt, x11/doc,
	  x11/doc/index.txt, x11ttf/doc, x11ttf/doc/index.txt: some more
	  class descriptions.

2007-12-20 00:02  rdm

	* [r21513] auth/doc, auth/doc/index.txt: From Gerri:
	  auth class description.

2007-12-19 20:55  pcanal

	* [r21510] tree/inc/TVirtualTreePlayer.h,
	  tree/src/TVirtualTreePlayer.cxx, treeplayer/inc/TBranchProxy.h,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx,
	  treeplayer/src/TSelectorDraw.cxx: add missing class and typedef
	  descriptions

2007-12-19 20:42  pcanal

	* [r21509] treeplayer/src/TTreeFormula.cxx: Correctly case the
	  integral value (int, short, unsigned, etc.) to the size requested
	  by the user provided format (i.e if %llx is passed, cast to an
	  unsigned long long)

2007-12-19 19:39  brun

	* [r21506] ruby/test, ruby/test/test_rr.rb: From Jan Schumacher:
	  Add a Ruby test program.
	  This line, and those below, will be ignored--
	  
	  A ruby/test
	  A ruby/test/test_rr.rb

2007-12-19 19:18  brun

	* [r21505] qtroot/doc, qtroot/doc/index.txt: From Valeri Fine
	  add qtroot package documentation.

2007-12-19 17:51  moneta

	* [r21504] unuran/inc/TUnuran.h, unuran/inc/TUnuranBaseDist.h,
	  unuran/inc/TUnuranContDist.h, unuran/src/TUnuran.cxx: - update
	  doc
	  - remove some un-needed copy of strings

2007-12-19 17:34  moneta

	* [r21503] mathcore/Module.mk,
	  mathcore/inc/Math/AdaptiveIntegratorMultiDim.h,
	  mathcore/inc/Math/AllIntegrationTypes.h,
	  mathcore/inc/Math/Factory.h,
	  mathcore/inc/Math/FitMethodFunction.h,
	  mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/BoostX.h,
	  mathcore/inc/Math/GenVector/BoostY.h,
	  mathcore/inc/Math/GenVector/BoostZ.h,
	  mathcore/inc/Math/GenVector/Cartesian2D.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/GenVector/Cylindrical3D.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/Plane3D.h,
	  mathcore/inc/Math/GenVector/Polar2D.h,
	  mathcore/inc/Math/GenVector/Polar3D.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4D.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/RotationX.h,
	  mathcore/inc/Math/GenVector/RotationY.h,
	  mathcore/inc/Math/GenVector/RotationZ.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h,
	  mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/inc/Math/IFunction.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/Integrator.h, mathcore/inc/Math/LinkDef.h,
	  mathcore/inc/Math/Minimizer.h,
	  mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/VirtualIntegrator.h,
	  mathcore/src/ProbFuncMathCore.cxx, mathmore/inc/Math/Chebyshev.h,
	  mathmore/inc/Math/Derivator.h, mathmore/inc/Math/GSLIntegrator.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/GSLSimAnMinimizer.h,
	  mathmore/inc/Math/GSLSimAnnealing.h,
	  mathmore/inc/Math/Interpolator.h,
	  mathmore/inc/Math/MCIntegrationTypes.h,
	  mathmore/inc/Math/MCParameters.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/Random.h,
	  mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h,
	  mathmore/src/GSLMCIntegrationWorkspace.h,
	  mathmore/src/GSLMCIntegrator.cxx,
	  mathmore/src/GSLMonteFunctionAdapter.h,
	  mathmore/src/GSLMonteFunctionWrapper.h,
	  mathmore/src/QuantFuncMathMore.cxx: - update doc in mathcore and
	  mathmore by adding the tag for THtml.
	  Take the occasion to correct and update some of the doc.
	  Fix also some indentation problems and SVN keywords with some
	  files
	  add dictionary for some missing classes

2007-12-19 17:33  brun

	* [r21502] gui/inc/TGListTree.h, gui/src/TGFileBrowser.cxx,
	  gui/src/TGListTree.cxx: From Bertrand and matevz:
	  - Use TObjString for drag and drop to be able to specify full
	  pathname (and not rely on gSystem->WorkingDirectory()).
	  - Changed the way TGListTree handles drag and drop, to not rely
	  on gSystem->WorkingDirectory(), but use TObjString set in
	  TGFileBrowser instead.
	  - Added data member fOwnsData in TGListTreeItem, to specify
	  if fUserData member has to be deleted in the destructor
	  (to avoid memory leaks)
	  - Added corresponding argument in:
	  TGListTreeItem::SetUserData(void *userData, Bool_t own=kFALSE)
	  being kFALSE by default for backward compatibility
	  
	  This allows to drag and drop from any directory, whithout to have
	  to cd() in
	  it...
	  This also fixes some issues encountered with AliEVE

2007-12-19 16:52  brun

	* [r21500] qt/doc, qt/doc/index.txt: From Valeri Fine:
	  add index.txt file documenting the qt directory.

2007-12-19 16:50  brun

	* [r21499] etc/vmc/g4_makedist.sh: From Ivana:
	  Adding missing files (LICENSE, Geant4VMC.html)
	  in the list of files for tar command.

2007-12-19 16:29  brun

	* [r21498] eg/src/TParticlePDG.cxx: From Andreas Morsch:
	  the lifetime is initialized in case the width is
	  !=0. However there are particles in the pdg_table.txt with width
	  = 0 which
	  in reality have widh != 0.

2007-12-19 16:28  brun

	* [r21497] geom/inc/LinkDef1.h, geom/inc/TGeoVoxelFinder.h,
	  geom/src/TGeoNode.cxx, geom/src/TGeoVoxelFinder.cxx: From Andrei:
	  Implement a custom TGeoVoxelFinder::Streamer to read the old
	  versions of the class.
	  lso removed 3 obsolete voxels classes that were present in
	  TGeoVoxelFinder.h/.cxx. Old geometry files with voxels should be
	  readable now (tested) and produce consistent results. For me
	  stressGeometry works.

2007-12-19 16:05  brun

	* [r21496] geombuilder/doc, geombuilder/doc/index.txt,
	  geompainter/doc, geompainter/doc/index.txt: From Andrei:
	  Add the doc/index.txt files

2007-12-19 15:58  couet

	* [r21495] test/stressGraphics.ref: - small adjustment for test 28
	  (PDF)

2007-12-19 15:50  brun

	* [r21494] geom/doc/index.txt, geom/inc/TGeoNode.h,
	  geom/inc/TGeoVolume.h, geom/src/TGeoAtt.cxx,
	  geom/src/TGeoBoolNode.cxx, geom/src/TGeoBuilder.cxx,
	  geom/src/TGeoManager.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoParaboloid.cxx,
	  geom/src/TGeoPatternFinder.cxx, geom/src/TGeoPhysicalNode.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoVolume.cxx,
	  geom/src/TGeoXtru.cxx, geom/src/TVirtualGeoPainter.cxx,
	  geom/src/TVirtualGeoTrack.cxx, geombuilder/src/TGeoGedFrame.cxx,
	  geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoMaterialEditor.cxx,
	  geombuilder/src/TGeoMatrixEditor.cxx,
	  geombuilder/src/TGeoMediumEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoTabManager.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx,
	  geompainter/src/TGeoChecker.cxx, geompainter/src/TGeoOverlap.cxx,
	  geompainter/src/TGeoPainter.cxx, geompainter/src/TGeoTrack.cxx:
	  Update to the class docs and index.txt files.

2007-12-19 13:30  rdm

	* [r21493] base/doc/index.txt, chirp/doc, chirp/doc/index.txt,
	  sql/doc/index.txt, xml/doc/index.txt, xmlparser/doc,
	  xmlparser/doc/index.txt: more doc updates.

2007-12-19 13:18  rdm

	* [r21492] configure: typo in comment.

2007-12-19 13:18  rdm

	* [r21491] base/doc/index.txt, castor/doc, castor/doc/index.txt,
	  rfio/doc, rfio/doc/index.txt: add doc info.

2007-12-19 11:37  brun

	* [r21488] eve/src/TEveElement.cxx: Fix coding convention.

2007-12-19 11:08  brun

	* [r21479] etc/vmc/g4_makedist.sh: From Ivana:
	  geant4_vmc/config replaced with geant4_vmc/version_number
	  in the list of files for tar command.

2007-12-19 10:51  brun

	* [r21476] html/src/THtml.cxx: From Axel:
	  Do not magically set the sourcedir for math[cm]ore. It helps
	  THtml find
	  the source files, but prevents it to pick up the doc from the
	  headers.

2007-12-19 08:58  brun

	* [r21475] ruby/src/drr.cxx: From Jan Schumacher:
	  in drr_init and drr_method_missing it suffices to throw an
	  ArgumentError
	  instead of aborting outright. The attached patch tries to
	  implement that.

2007-12-19 08:38  moneta

	* [r21474] test/Makefile: remove dictionary file used in
	  stressMathCore when doing make clean

2007-12-19 08:37  ganis

	* [r21473] proofd/doc, proofd/doc/index.txt, proofplayer/doc,
	  proofplayer/doc/index.txt, proofx/doc, proofx/doc/index.txt:
	  First version of the 'doc/index.txt'

2007-12-19 08:33  rdm

	* [r21472] config/Makefile-comp.in, config/Makefile.win32gcc,
	  config/RConfigOptions.in, config/RConfigure.in,
	  config/genreflex-rootcint.in, config/genreflex.in,
	  config/html.C.in, config/memprobe.in, config/mimes.unix.in,
	  config/mimes.win32.in, config/olbd.in, config/precompile.h.in,
	  config/proofd.in, config/proofd.xinetd.in, config/root-config.in,
	  config/root-help.el.in, config/rootauthrc.in, config/rootd.in,
	  config/rootd.xinetd.in, config/rootdaemonrc.in, config/rootrc.in,
	  config/xrootd.in: set svn:eol-style=LF.

2007-12-19 08:21  rdm

	* [r21471] sql/doc, sql/doc/index.txt: doc for sql directory.

2007-12-19 07:22  brun

	* [r21470] ruby/src/drr.cxx: From Jan Schumacher
	  RubyRoot crashes when trying to emulate C-like casting if the
	  argument class
	  does not exist. Since the check for existence of the class checks
	  the return
	  type of new TClass(...), it is always true. Attached is a patch
	  that changes
	  this to TClass::GetClass, which returns 0 in case of failure.
	  Also, the result
	  of failure is mitigated from an abort to an exception.
	  
	  see: https://savannah.cern.ch/bugs/?32309

2007-12-18 18:12  brun

	* [r21469] physics/inc/TQuaternion.h: From Eric Anciant:
	  Fix an incoherency in the TQuaternion::getRXYZ functions.

2007-12-18 17:51  moneta

	* [r21468] mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/Boost.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/LorentzRotation.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h: add tag for class
	  description

2007-12-18 17:44  ganis

	* [r21467] proof/inc/TProof.h, proof/inc/TVirtualProofPlayer.h,
	  proof/src/TProof.cxx, proof/src/TVirtualProofPlayer.cxx,
	  proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TProofLimitsFinder.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/src/TEventIter.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TProofLimitsFinder.cxx,
	  proofplayer/src/TProofPlayer.cxx: Add/correct doc statements
	  where needed

2007-12-18 17:09  rdm

	* [r21466] configure: fix detection of monalisawsclient.h and
	  libmonalisawsclient in case
	  the AliEn client is installed.

2007-12-18 17:01  rdm

	* [r21465] build/unix/compiledata.sh, cint/configcint.mk: make
	  scripts silent in case they don't update compiledate.h and
	  configcint.h.

2007-12-18 17:00  rdm

	* [r21464] Makefile, base/src/TROOT.cxx, config/RConfigOptions.in,
	  config/RConfigure.in, configure, ruby/src/drr.cxx: move
	  R__CONFIGUREOPTIONS, only used in TROOT.cxx, from RConfigure.h,
	  which
	  is included by a large number of source files. The
	  R__CONFIGUREOPTIONS are
	  now stored in RConfigOptions.h, which is only include in
	  TROOT.cxx.
	  In RConfigOptions.h also the R__RUBY_MAJOR and R__RUBY_MINOR are
	  stored
	  and included in drr.cxx. This change only forces a recompile of
	  TROOT.cxx
	  (and maybe drr.cxx) when doing e.g.:
	  ./configure --enable-roofit
	  make
	  ./configure
	  make [ here we used to compile all dictionaries again as rootcint
	  depends on RConfigure.h ]

2007-12-18 16:49  matevz

	* [r21463] tutorials/gl/viewer3DLocal.C,
	  tutorials/gl/viewer3DMaster.C: Automatically engage ACLiC
	  compilation as it is required for proper operation of the
	  tutorials. Add author (Richard Maunder).

2007-12-18 16:41  couet

	* [r21460] asimage/doc, asimage/doc/index.txt: - doc index

2007-12-18 16:29  matevz

	* [r21458] gl/doc, gl/doc/index.txt: Add gl/ module description.

2007-12-18 15:57  couet

	* [r21457] g3d/doc, g3d/doc/index.txt: - doc index

2007-12-18 15:46  rdm

	* [r21456] tree/src/TTree.cxx: typo in comment and white space.

2007-12-18 15:44  rdm

	* [r21455] base/inc/TSysEvtHandler.h: From Markus:
	  Fix compiler warning on Win32 VC7.1 (issue 32301).

2007-12-18 15:37  couet

	* [r21454] gpad/doc, gpad/doc/index.txt: - doc index

2007-12-18 15:18  matevz

	* [r21453] gl/inc/TGLContext.h, gl/inc/TGLFormat.h,
	  gl/inc/TGLPlotPainter.h, gl/inc/TGLTF3Painter.h,
	  gl/inc/TGLWidget.h, gl/src/TArcBall.cxx, gl/src/TF2GL.cxx,
	  gl/src/TGLAdapter.cxx, gl/src/TGLAxis.cxx,
	  gl/src/TGLBoxPainter.cxx, gl/src/TGLClipSetEditor.cxx,
	  gl/src/TGLContext.cxx, gl/src/TGLCylinder.cxx,
	  gl/src/TGLFaceSet.cxx, gl/src/TGLFormat.cxx,
	  gl/src/TGLLegoPainter.cxx, gl/src/TGLPShapeObjEditor.cxx,
	  gl/src/TGLParametricEquationGL.cxx, gl/src/TGLPhysicalShape.cxx,
	  gl/src/TGLPlotBox.cxx, gl/src/TGLPlotPainter.cxx,
	  gl/src/TGLPolyLine.cxx, gl/src/TGLPolyMarker.cxx,
	  gl/src/TGLSelectBuffer.cxx, gl/src/TGLSphere.cxx,
	  gl/src/TGLSurfacePainter.cxx, gl/src/TGLTF3Painter.cxx,
	  gl/src/TGLText.cxx, gl/src/TGLViewerEditor.cxx,
	  gl/src/TGLWidget.cxx: Add missing class descriptions.

2007-12-18 15:16  matevz

	* [r21452] eve/inc/TEveManager.h, eve/src/TEveElement.cxx,
	  eve/src/TEveManager.cxx: Main ged-editor was not updated from
	  TEveManager::ElementChanged().

2007-12-18 15:15  matevz

	* [r21451] eve/doc/index.txt: Added links to papers and talks about
	  Eve and AliEve.

2007-12-18 14:51  pcanal

	* [r21450] tree/src/TBranchBrowsable.cxx: strip (potential) array
	  dimension when constructing the Draw command

2007-12-18 14:41  couet

	* [r21449] postscript/doc, postscript/doc/index.txt: - doc index

2007-12-18 14:10  couet

	* [r21448] spectrumpainter/doc, spectrumpainter/doc/index.txt: -
	  doc index

2007-12-18 13:51  couet

	* [r21447] spectrum/doc, spectrum/doc/index.txt: - add
	  doc/index.txt

2007-12-18 13:19  couet

	* [r21446] histpainter/doc, histpainter/doc/index.txt: - add doc
	  index

2007-12-18 12:36  rdm

	* [r21445] build/unix/distfilelist.sh: avoid deleting some CINT
	  build products that are not needed in the binary
	  distribution, but that cause a large rebuild when doing "make"
	  after
	  "make dist".

2007-12-18 11:58  brun

	* [r21444] tree/src/TChain.cxx: Fix an oddity in the default TChain
	  constructor.
	  The TChain object was registered twice to
	  gROOT->GetListOfDataSets() !!

2007-12-18 10:27  brun

	* [r21443] ruby/src/TRuby.cxx: Add missing ClassImp

2007-12-18 09:44  brun

	* [r21442] oracle/doc, oracle/doc/index.txt: From Sergey Linev.
	  Add package documentation

2007-12-18 09:38  couet

	* [r21441] graf/src/TCutG.cxx: - Header reformating.
	  - Insist on the fact that the polygon should closed.

2007-12-18 09:35  antcheva

	* [r21440] fitpanel/doc, fitpanel/doc/index.txt: Added the
	  doc/index.txt file for Fit Panel classes.

2007-12-18 09:27  brun

	* [r21439] ruby/doc/index.txt: Update documentation page

2007-12-18 09:22  brun

	* [r21438] fftw/doc, fftw/doc/index.txt: Add package documentation

2007-12-18 09:17  brun

	* [r21437] dcache/doc, dcache/doc/index.txt: Add package
	  documentation

2007-12-18 09:11  brun

	* [r21436] eg/doc, eg/doc/index.txt: Add package index.txt
	  documentation.

2007-12-18 08:53  rdm

	* [r21435] base/src/TTimeStamp.cxx: fix error in comment, fixes
	  issue 32280.

2007-12-17 21:09  matevz

	* [r21434] eve/inc/TEveDigitSet.h, eve/inc/TEveGridStepper.h,
	  eve/src/TEveElement.cxx, eve/src/TEveGValuators.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveRGBAPalette.cxx,
	  eve/src/TEveRGBAPaletteEditor.cxx, eve/src/TEveUtil.cxx: Add
	  missing class descriptions and ClassImps.

2007-12-17 20:16  pcanal

	* [r21433] treeplayer/doc/index.txt: Add index

2007-12-17 20:13  pcanal

	* [r21432] treeplayer/doc, treeplayer/doc/index.txt: Add index

2007-12-17 20:03  pcanal

	* [r21431] meta/src/TClassGenerator.cxx,
	  meta/src/TStreamerElement.cxx, meta/src/TVirtualStreamerInfo.cxx:
	  Add class docs

2007-12-17 19:46  brun

	* [r21430] hist/src/TH1.cxx: Remove an unnecessary condition in
	  TH1::Draw.
	  (Thanks to Gordon Watts for the remark).

2007-12-17 18:19  brun

	* [r21429] qt/inc/TQtClientFilter.h, qt/inc/TQtClientWidget.h,
	  qt/inc/TQtRootSlot.h: Document the Qt header files

2007-12-17 17:38  brun

	* [r21428] ruby/src/drr.cxx: From Jan Sumacher:
	  Fix problem: https://savannah.cern.ch/bugs/?32271
	  this is in reference to the original problem described in
	  http://root.cern.ch/phpBB2/viewtopi.... RubyRoot needs to find
	  out whether to pass by pointer or reference. This used to work in
	  an earlier version of CINT (in 5.10 it worked for example). The
	  attached patch tries to solve this by going through all
	  combinations.

2007-12-17 16:17  brun

	* [r21427] ruby/src/drr.cxx: From Jan Schumacher:
	  Fix a problem in the Ruby interface:
	  https://savannah.cern.ch/bugs/?32182
	  The TApplication was not created at the right place.

2007-12-17 16:02  antcheva

	* [r21426] ged/doc, ged/doc/index.txt: Added ged/index.txt for GED.

2007-12-17 15:59  brun

	* [r21425] geom/inc/TGeoArb8.h, geom/inc/TGeoAtt.h,
	  geom/inc/TGeoBBox.h, geom/inc/TGeoBoolNode.h,
	  geom/inc/TGeoBuilder.h, geom/inc/TGeoCache.h,
	  geom/inc/TGeoCompositeShape.h, geom/inc/TGeoCone.h,
	  geom/inc/TGeoElement.h, geom/inc/TGeoEltu.h,
	  geom/inc/TGeoHalfSpace.h, geom/inc/TGeoHelix.h,
	  geom/inc/TGeoHype.h, geom/inc/TGeoManager.h,
	  geom/inc/TGeoMaterial.h, geom/inc/TGeoMatrix.h,
	  geom/inc/TGeoMedium.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPara.h,
	  geom/inc/TGeoParaboloid.h, geom/inc/TGeoPatternFinder.h,
	  geom/inc/TGeoPcon.h, geom/inc/TGeoPgon.h,
	  geom/inc/TGeoPhysicalNode.h, geom/inc/TGeoPolygon.h,
	  geom/inc/TGeoScaledShape.h, geom/inc/TGeoShape.h,
	  geom/inc/TGeoShapeAssembly.h, geom/inc/TGeoSphere.h,
	  geom/inc/TGeoTorus.h, geom/inc/TGeoTrd1.h, geom/inc/TGeoTrd2.h,
	  geom/inc/TGeoTube.h, geom/inc/TGeoVolume.h, geom/inc/TGeoXtru.h,
	  geom/inc/TVirtualGeoTrack.h, geom/src/TGeoVolume.cxx,
	  geombuilder/inc/TGeoGedFrame.h,
	  geombuilder/inc/TGeoMaterialEditor.h,
	  geombuilder/inc/TGeoPconEditor.h,
	  geombuilder/inc/TGeoTabManager.h, geompainter/inc/TGeoChecker.h,
	  geompainter/inc/TGeoOverlap.h, geompainter/inc/TGeoPainter.h,
	  geompainter/inc/TGeoTrack.h, geompainter/src/TGeoChecker.cxx:
	  From Andrei:
	  Improve the documentation layout such that THtml makes a better
	  rendering.

2007-12-17 15:59  antcheva

	* [r21424] gui/doc/index.txt: Fixed index.txt for GUI.

2007-12-17 15:50  brun

	* [r21423] xml/doc/index.txt: Fix typo.

2007-12-17 15:45  brun

	* [r21422] thread/doc/index.txt: From Sergei:
	  Add a missing html control sequence

2007-12-17 15:44  brun

	* [r21421] xml/doc, xml/doc/index.txt: From Sergei Linev;
	  Add doc/index.txt file describing the xml package.

2007-12-17 15:42  brun

	* [r21420] treeviewer/doc, treeviewer/doc/index.txt: From Bertrand:
	  Add the doc/index.txt describing the treeviewer package.

2007-12-17 15:40  brun

	* [r21419] sessionviewer/doc, sessionviewer/doc/index.txt: From
	  Bertrand:
	  Add the doc/index.txt file describing the sessionviewer package

2007-12-17 15:38  brun

	* [r21418] qtgsi/doc, qtgsi/doc/index.txt: From Bertrand:
	  Add the doc/index.txt describing the qtgsi package

2007-12-17 15:11  couet

	* [r21417] base/src/TAttFill.cxx: - Complete help

2007-12-17 14:24  brun

	* [r21416] qt/src/TQtClientFilter.cxx, qt/src/TQtClientWidget.cxx,
	  qt/src/TQtRootSlot.cxx: From Valeri Fine:
	  - Added missing class header docs.

2007-12-17 14:22  couet

	* [r21415] asimage/src/libAfterImage.tar.gz: - Fix in xwarp.h
	  needed to compile libAfterImage with MSVC2008.

2007-12-17 14:15  brun

	* [r21414] table/inc/TColumnView.h, table/inc/TTableDescriptor.h,
	  table/inc/tableDescriptor.h, table/src/TColumnView.cxx,
	  table/src/TPoints3D.cxx, table/src/TPointsArray3D.cxx,
	  table/src/TResponseTable.cxx, table/src/TTableDescriptor.cxx:
	  From Valeri Fine:
	  - Added missing class header docs.

2007-12-17 14:12  brun

	* [r21413] sessionviewer/src/TProofProgressLog.cxx,
	  sessionviewer/src/TSessionLogView.cxx: From Bertrand:
	  - Added missing class header docs.

2007-12-17 14:01  couet

	* [r21412] test/stressGraphics.cxx: - From Axel:
	  Enable stressGraphics to work from roottest without modifying
	  $ROOTSYS/test.

2007-12-17 11:42  moneta

	* [r21409] test/stressMathCore.cxx: fix (from Axel) for running
	  from roottest

2007-12-17 11:14  axel

	* [r21405] test: Update svn:ignore

2007-12-17 10:13  brun

	* [r21402] eg/src/TParticlePDG.cxx: Doc alignment improvements

2007-12-17 10:02  brun

	* [r21401] hist/inc/THnSparse.h: From Axel:
	  - Added missing class header docs.

2007-12-17 09:28  brun

	* [r21400] eg/src/TParticlePDG.cxx: Improve doc layout

2007-12-17 09:19  couet

	* [r21399] treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TSpiderEditor.cxx: - class header

2007-12-17 09:16  brun

	* [r21398] gui/src/TGFontDialog.cxx: From Bertrand:
	  - Added missing class header docs.

2007-12-17 09:15  brun

	* [r21397] io/src/TStreamerInfo.cxx: - Added missing class header
	  docs.

2007-12-17 09:00  brun

	* [r21396] guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx: From BertrandL
	  - Added missing class header docs.

2007-12-17 08:59  brun

	* [r21395] guihtml/src/TGHtml.cxx, guihtml/src/TGHtmlBrowser.cxx:
	  From Bertrand:
	  - Added missing class header docs.

2007-12-17 08:57  couet

	* [r21394] g3d/src/TPoints3DABC.cxx: - class header.

2007-12-17 08:55  brun

	* [r21393] eg/src/TParticle.cxx, eg/src/TParticleClassPDG.cxx,
	  eg/src/TParticlePDG.cxx, eg/src/TPrimary.cxx: Implement class
	  header ducumentation

2007-12-17 08:52  couet

	* [r21392] g3d/src/TNodeDiv.cxx: - Class header.

2007-12-17 08:38  brun

	* [r21391] base/src/TVirtualFitter.cxx: Implement class header doc.

2007-12-17 08:10  rdm

	* [r21390] rfio/src/TRFIOFile.cxx: Fix for win32.

2007-12-16 10:53  brun

	* [r21389] base/src/TApplication.cxx: Fix coding conventions

2007-12-15 16:47  pcanal

	* [r21388] io/src/TBufferFile.cxx: When reading, do not delete the
	  object being pointed to by a pointer when the call to
	  ReadObjectAny returns the object. This happens when a user class
	  has a pointer that is initialized by the default constructor to
	  the address of another object (read from the same buffer) but it
	  is not marked as transient.

2007-12-15 10:56  rdm

	* [r21387] rfio/inc/TRFIOFile.h, rfio/src/TRFIOFile.cxx: From
	  Andreas:
	  implementation of ReadBuffers() for RFIO.

2007-12-15 10:06  brun

	* [r21386] gui/inc/TGDNDManager.h, gui/inc/TRootBrowser.h,
	  gui/src/TGCommandPlugin.cxx, gui/src/TGDNDManager.cxx,
	  gui/src/TGFileBrowser.cxx, gui/src/TRootBrowser.cxx,
	  gui/src/TRootBrowserLite.cxx, gui/src/TVirtualDragManager.cxx:
	  From Bertrand:
	  - Added missing classes documentation.

2007-12-14 22:58  pcanal

	* [r21385] treeplayer/src/TTreeFormula.cxx: Do bitwise operation in
	  Long64_t instead of Int_t to prevent losing the most significant
	  bit of large integers

2007-12-14 21:18  pcanal

	* [r21384] tree/src/TBranchElement.cxx: Register the obj adresss in
	  the buffer's map even if the object does not inherit from TObject

2007-12-14 20:58  pcanal

	* [r21383] base/src/TBrowser.cxx: prevent uninitialize memory read
	  (was crashing root.exe -b tutorials/math/principal.C on linux/icc
	  8

2007-12-14 20:15  rdm

	* [r21382] net/src/TNetFile.cxx: From Bertrand and Gerri:
	  Fixes the problem reported at:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5917

2007-12-14 17:43  pcanal

	* [r21381] io/src/TBufferFile.cxx: Update ReadClassBuffer(TClass
	  *cl, void *pointer, Int_t version, UInt_t start, UInt_t count) to
	  properly handle the new foreign class version numbering scheme
	  (i.e. -1 is now a legal version number)

2007-12-14 15:12  wouter

	* [r21379] roofitcore/inc/Roo1DTable.h,
	  roofitcore/inc/RooAICRegistry.h, roofitcore/inc/RooAbsArg.h,
	  roofitcore/inc/RooAbsCache.h,
	  roofitcore/inc/RooAbsCacheElement.h,
	  roofitcore/inc/RooAbsCachedPdf.h,
	  roofitcore/inc/RooAbsCategory.h,
	  roofitcore/inc/RooAbsCategoryLValue.h,
	  roofitcore/inc/RooAbsLValue.h,
	  roofitcore/inc/RooAbsOptTestStatistic.h,
	  roofitcore/inc/RooAbsProxy.h, roofitcore/inc/RooAbsRealLValue.h,
	  roofitcore/inc/RooAbsTestStatistic.h,
	  roofitcore/inc/RooArgProxy.h, roofitcore/inc/RooCacheManager.h,
	  roofitcore/inc/RooCatType.h, roofitcore/inc/RooCategory.h,
	  roofitcore/inc/RooCategoryProxy.h, roofitcore/inc/RooComplex.h,
	  roofitcore/inc/RooConvCoefVar.h, roofitcore/inc/RooDataHist.h,
	  roofitcore/inc/RooDataHistSliceIter.h,
	  roofitcore/inc/RooErrorVar.h, roofitcore/inc/RooFFTConvPdf.h,
	  roofitcore/inc/RooFitResult.h, roofitcore/inc/RooLinearVar.h,
	  roofitcore/inc/RooListProxy.h, roofitcore/inc/RooMapCatEntry.h,
	  roofitcore/inc/RooMsgService.h, roofitcore/inc/RooMultiCatIter.h,
	  roofitcore/inc/RooNormSetCache.h,
	  roofitcore/inc/RooNumIntFactory.h, roofitcore/inc/RooPrintable.h,
	  roofitcore/inc/RooProdPdf.h, roofitcore/inc/RooProfileLL.h,
	  roofitcore/inc/RooRandomizeParamMCSModule.h,
	  roofitcore/inc/RooRealConstant.h, roofitcore/inc/RooRealProxy.h,
	  roofitcore/inc/RooRealVar.h, roofitcore/inc/RooSetProxy.h,
	  roofitcore/inc/RooStreamParser.h, roofitcore/inc/RooStringVar.h,
	  roofitcore/inc/RooTable.h, roofitcore/inc/RooThreshEntry.h,
	  roofitcore/inc/RooTrace.h, roofitcore/src/Roo1DTable.cxx,
	  roofitcore/src/RooAICRegistry.cxx, roofitcore/src/RooAbsArg.cxx,
	  roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsData.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsOptTestStatistic.cxx,
	  roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsSelfCachedPdf.cxx,
	  roofitcore/src/RooAbsTestStatistic.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooCachedPdf.cxx, roofitcore/src/RooCatType.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooErrorVar.cxx, roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenericPdf.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMinuit.cxx,
	  roofitcore/src/RooMsgService.cxx, roofitcore/src/RooNLLVar.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooUniformBinning.cxx: o (Large number of classes)
	  
	  - Systematically use Riosfwd.h in header files instead
	  of <iostream> or Riostream.h
	  
	  - Include "Riostream.h" in implementations where necessary
	  
	  - Convert remaining <iostream> to "Riostream" in implementations
	  
	  - Outline all inline functions using cout or endl to facilitate
	  use of fwd declaration of iostreams in all classes
	  
	  - Elimination of some duplicate headers
	  
	  - Match use of 'using namespace std' in implementation files
	  to classes that actually use STL classes

2007-12-14 11:37  rdm

	* [r21377] base/inc/TVirtualPadEditor.h,
	  base/src/TVirtualPadEditor.cxx: From Ilka:
	  add class description for TVirtualPadEditor.

2007-12-14 11:32  rdm

	* [r21376] hist/inc/THnSparse.h, hist/src/THnSparse.cxx,
	  meta/src/TCint.cxx, tmva/inc/MethodCuts.h,
	  tmva/inc/TActivationIdentity.h, tmva/src/MethodCuts.cxx,
	  tmva/src/MethodVariable.cxx, tmva/src/Timer.cxx,
	  utils/src/rootcint.cxx: fix the remaining bunch of gcc 4.2
	  warnings.

2007-12-14 11:12  antcheva

	* [r21375] guibuilder/inc/TGuiBldHintsButton.h,
	  guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx: Added class documentation.

2007-12-14 09:20  rdm

	* [r21374] meta/src/TCint.cxx: correct method description.

2007-12-14 09:19  rdm

	* [r21373] unix/src/TUnixSystem.cxx: fix typo in comment.

2007-12-14 09:18  rdm

	* [r21372] base/src/TSystem.cxx: explicitly mention that the regexp
	  argument is actually a wildcard with
	  a reference to TRegexp::Wildcard.

2007-12-14 09:17  rdm

	* [r21371] graf/inc/TGraphPolar.h, graf/src/TGraphPolar.cxx: remove
	  Riostream.h from header.

2007-12-14 08:34  brun

	* [r21370] base/inc/RVersion.h, build/version_number: Start
	  development version 5.17/09.
	  This new version is assumed to contain only bug fixes or
	  documentation improvements.

2007-12-13 11:26  brun

	* [r21358] base/inc/RVersion.h, build/version_number: Stamp
	  development release 5.17/08

2007-12-13 10:25  brun

	* [r21357] vmc/doc/index.txt: Delete reference to the HowtoMC page

2007-12-13 09:05  brun

	* [r21356] html/src/TDocParser.cxx: From Axel:
	  resurrect inline function documentation (usedocxx was not set
	  properly).

2007-12-13 07:53  moneta

	* [r21355] physics/src/TFeldmanCousins.cxx: use TMath::Poisson
	  instead of implementing the Poisson probability (fix suggested in
	  https://savannah.cern.ch/bugs/?27788

2007-12-13 07:26  brun

	* [r21354] vmc/doc/index.txt: Fix one more wrong doc link

2007-12-13 07:11  pcanal

	* [r21353] io/inc/TStreamerInfo.h, io/src/TStreamerInfo.cxx,
	  meta/inc/TClass.h, meta/inc/TVirtualStreamerInfo.h,
	  meta/src/TClass.cxx, tree/src/TBranchElement.cxx: NOTICE:
	  
	  This version introduces support for transitioning classes
	  from the mode where no class version is specified
	  (and the checksum is always used for lookup) and a mode
	  where the user specifies an explicit version number for
	  the class (Allow for simplier, clearer data model evolution).
	  
	  The class version can be specified in 3 different ways:
	  
	  a) Use rootcint and add a ClassDef macro in the class
	  declaration:
	  class MyClass {
	  ...
	  ClassDef(MyClass,10);
	  };
	  
	  b) Use rootcint and add a RootClassVersion macro in the class
	  source file:
	  RootClassVersion(MyClass,10);
	  
	  c) Use genreflex and specify a ClassVersion property in the
	  selection.xml :
	  <class name="MyClass" ClassVersion="10"/>
	  
	  Those 3 solutions set the class version of MyClass's TClass
	  object
	  to 10.
	  
	  IMPORTANT:
	  
	  In order to avoid a clash between this class version (and any
	  future
	  class versions) and the class versions given by default to the
	  non-versioned layout of the class, you MUST set this class
	  version to
	  a number that is greater than the number of distinct
	  non-versioned layout.
	  Otherwise you may see warning messages like:
	  
	  Warning in <TStreamerInfo::BuildCheck>:
	  The class MyClass transitioned from not having a specified class
	  version
	  to having a specified class version (the current class version is
	  2).
	  However too many different non-versioned layouts of the class
	  have been
	  loaded so far. This prevent the proper reading of objects written
	  with
	  the class layout version 3, in particular from the file:
	  myclass3.root.
	  
	  Addition Details:
	  
	  When loading a file containing a non-versioned layout of a class,
	  this
	  layout is assigned the next 'free' number in the list of
	  StreamerInfo.
	  In particular this means that if many files with non-versioned
	  layout
	  of the class are loaded before the loading of a library
	  containing a
	  versioned class layout, the slot reserved for this version layout
	  may
	  already be occupied and you will get the following error message:
	  
	  The class MyClass transitioned from not having a specified class
	  version
	  to having a specified class version (the current class version is
	  2).
	  However too many different non-versioned layouts of the class
	  have
	  already been loaded so far. To work around this problem you can
	  load fewer 'old' file in the same ROOT session or load the C++
	  library
	  describing the class MyClass before opening the files or increase
	  the version
	  number of the class for example ClassDef(MyClass,3).
	  Do not try to write objects with the current class definition,
	  the files might not be readable.
	  
	  Also if many files with non-versioned layout of the class are
	  read
	  before a file with a versioned layout (and this number is too
	  low), you
	  may get the following error message:
	  
	  Warning in <TStreamerInfo::BuildCheck>:
	  The class MyClass transitioned from not having a specified class
	  version
	  to having a specified class version (the current class version is
	  2).
	  However too many different non-versioned layouts of the class
	  have been
	  loaded so far. This prevent the proper reading of objects written
	  with
	  the class layout version 3, in particular from the file:
	  myclass3.root.
	  
	  Additional note:
	  For classes with no specified version (i.e. Foreign classes), the
	  current
	  TStreamerInfo is stored at index -1 in the list of StreamerInfo
	  and the
	  class version (gROOT->GetClass("MyClass")->GetClassVersion()) is
	  set to -1.

2007-12-13 07:06  pcanal

	* [r21352] cint/src/v6_decl.cxx, cint/src/v6_parse.cxx,
	  cint/src/v6_pcode.cxx: Fix handling of: case(1)
	  Fix the use of postinc directly in function call with parameter
	  than are references.
	  Correct the constness in the case: Object * const &front() const;
	  (i.e Object*const vs Object const*).

2007-12-12 22:04  rdm

	* [r21351] Makefile: in case config/Makefile.comp does not exist
	  print error message, like
	  in case config/Makefile.config does not exist.

2007-12-12 18:44  brun

	* [r21350] vmc/doc/index.txt: Update some VMC links

2007-12-12 17:02  brun

	* [r21349] gui/src/TRootBrowser.cxx: From Bertrand:
	  - Add forgotten ClassImp(TRootBrowser)

2007-12-12 16:59  rdm

	* [r21348] Makefile, cint/configcint.mk, config/Makefile-comp.in,
	  config/root-config.in, configure: compiledata.h and configcint.mk
	  now depend properly on config/Makefile.comp.

2007-12-12 16:47  couet

	* [r21347] treeviewer/src/TSpiderEditor.cxx: - Add header

2007-12-12 16:18  couet

	* [r21346] base/src/TVirtualPS.cxx, base/src/TVirtualPad.cxx,
	  gpad/src/TViewer3DPad.cxx, hist/src/TVirtualHistPainter.cxx: -
	  Class header

2007-12-12 15:33  couet

	* [r21345] gpad/src/TView.cxx: - Add header

2007-12-12 15:22  rdm

	* [r21344] config: add Makefile.comp to ignore list.

2007-12-12 15:20  couet

	* [r21343] gl/src/TGLPolyLine.cxx, gl/src/TGLPolyMarker.cxx: - Add
	  header

2007-12-12 15:20  rdm

	* [r21342] Makefile, config/Makefile-comp.in,
	  config/root-config.in, configure, test/Makefile.arch: added new
	  configure options:
	  --with-cc
	  --with-cxx
	  --with-f77
	  --with-ld
	  which allows the specification of alternative compilers, which,
	  of course,
	  have to be compatible with the specified or auto detected
	  platform.
	  This is ok:
	  ./configure solarisgcc --with-cxx=g++-4.2
	  this not:
	  ./configure macosxicc --with-cxx=g++-4.2
	  Also root-config now supports the options --cc, --cxx, -f77 and
	  --ld.
	  If no alternative compilers were specified these return a blank.
	  In test/Makefile.arch and example of root-config --cxx et al
	  usage is
	  given, so that the alternative compilers specified in ./configure
	  will
	  be used to build the test programs.

2007-12-12 15:15  couet

	* [r21341] g3d/src/TView3D.cxx: - Fix a warning (multi-line
	  comment)

2007-12-12 15:10  rdm

	* [r21340] utils/src/rlibmap.cxx: From Axel:
	  Re-add spaces between multiple closing template brackets, that
	  were
	  either removed by Compress() or forgotten by the LinkDef.h
	  author:
	  A<B<C>> becomes A<B<C> > (yes, op>>() is handled). They are now
	  compatible with CINT's version of the same class name, which
	  means that
	  TClass renaming (=delete old, create new) and thus the PyROOT
	  problem
	  with changed TClass objects is now gone.

2007-12-12 15:10  couet

	* [r21339] gl/src/TGLText.cxx: - Add a class header.

2007-12-12 15:07  couet

	* [r21338] gl/src/TGLAxis.cxx: - Add a class header

2007-12-12 15:01  couet

	* [r21337] g3d/src/TView3D.cxx: - Better help header(s).

2007-12-12 13:46  brun

	* [r21336] eve/doc, eve/doc/index.txt: Add a class directory file
	  describing the EVE package

2007-12-12 11:54  brun

	* [r21335] test/stressRooFit.cxx: Normalize rootmarks

2007-12-12 11:49  brun

	* [r21334] test/stressMathCore.cxx, test/stressMathMore.cxx:
	  Normalize rootmarks

2007-12-12 11:45  brun

	* [r21333] test/stressGraphics.cxx: Normalize rootmarks

2007-12-12 11:31  brun

	* [r21332] proof/src/TDSet.cxx: From Philippe:
	  make TDSet independent from the libRIO.

2007-12-12 11:29  brun

	* [r21331] gui/inc/HelpText.h, gui/inc/TRootBrowser.h,
	  gui/src/HelpText.cxx, gui/src/TRootBrowser.cxx,
	  gui/src/TRootBrowserLite.cxx, pythia6/src/TPythia6.cxx: From
	  Bertrand:
	  - Added help on remote sessions
	  - Added help menu in the new browser

2007-12-12 10:15  rdm

	* [r21330] base/src/TApplication.cxx,
	  net/src/TApplicationRemote.cxx: Add extensive help to the .R
	  command. Type .R -? or -h or --help to get
	  a detailed description of the options. Also support for sourced
	  scripts
	  is added, as well as the old behaviour to execute a custom roots
	  script,
	  to for example start in a special mode or special binary. To
	  source a
	  script before starting roots do:
	  
	  .R lxplus <go
	  
	  to execute your own roots like script do:
	  
	  .R lxplus myroots

2007-12-12 09:37  brun

	* [r21329] hist/src/THnSparse.cxx: From Axel:
	  Add doc for THnSparse's internal classes.

2007-12-12 09:32  axel

	* [r21328] html/src/TClassDocOutput.cxx,
	  html/src/TDocDirective.cxx, html/src/TDocOutput.cxx: Add class
	  doc.

2007-12-12 08:35  brun

	* [r21327] test/Makefile.win32: From Bertrand:
	  - Add new tests (stresses) in the native win32 nmake makefile

2007-12-12 08:26  axel

	* [r21326] html/inc/TDocParser.h, html/src/TClassDocOutput.cxx,
	  html/src/TDocParser.cxx: From Matevz and me:
	  * allow several classes in one source file with doc for each.
	  Documentation in front of a class' ClassImp() invocation will be
	  used; if there is none, the first one in the file will be taken
	  (see e.g. TH1F etc: shared doc for all classes).
	  * convert the class doc parsing into a state machine which fixes
	  a few cases where THtml was "forgetting" to write the class doc.
	  * fix a span for namespaces.
	  * Strip() now also removes newlines.
	  * clear un-used comments; fixes rare problem with misinterpreted
	  comments.

2007-12-12 06:21  brun

	* [r21325] build/unix/makestatic.sh: exclude rootfitcore and eve
	  from the static build

2007-12-11 18:20  brun

	* [r21324] configure: From Lorenzo:
	  patch for configure to use the static GSL libraries.
	  When using it on a Linux 64 bit machines (like SLC4 with gcc3.4),
	  one must have compiled GSL with the option -fPIC also for the
	  static library.
	  This is done by using the GSL configure option --with-pic
	  
	  With these changes the LD_LIBRARY_PATH to GSL is not needed
	  anymore when running or building stressMathMore

2007-12-11 17:37  brun

	* [r21323] graf/src/TGraphAsymmErrors.cxx: From Lorenzo:
	  patch for fixing the following problem with BayesDivide in
	  TGraphAsymmErrors:
	  
	  - missing precision when inverting the beta distribution (see bug
	  https://savannah.cern.ch/bugs/?30246
	  
	  - use lower(upper) error equal zero for bins with 0 (1)
	  efficiency

2007-12-11 13:07  brun

	* [r21322] math/src/TMath.cxx: In TMath::Gamma documentation remove
	  a blank character in the definition of a Latex #frac

2007-12-11 12:04  brun

	* [r21321] tree/src/TBranchElement.cxx: Fix a bug in
	  TBranchElement::GetTypeName.
	  The returned type should be fStreamerType%20 and not
	  fStreamerType%21

2007-12-11 11:01  moneta

	* [r21319] test/Makefile, test/stressMathCore.cxx,
	  test/stressMathMore.cxx: fix problems making and loading
	  dictionary library for stressMathcore and compilaiton problem on
	  Windows

2007-12-11 08:48  matevz

	* [r21317] eve/inc/TEveGValuators.h, eve/src/TEveGValuators.cxx,
	  eve/src/TEveProjections.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrans.cxx: Fix the remaining four coding convention
	  violations.

2007-12-11 08:21  brun

	* [r21316] roofit/src/RooNDKeysPdf.cxx: From Wouter:
	  Fix one more fabs problem.

2007-12-11 08:14  brun

	* [r21315] test/stressMathMore.cxx: From Bertrand:
	  Fix a fatal compilation error on Windows

2007-12-10 22:09  brun

	* [r21314] roofit/src/RooBDecay.cxx, roofit/src/RooNDKeysPdf.cxx,
	  roofitcore/src/RooClassFactory.cxx: From Wouter:
	  Fix compilation warnings due to the use of fabs.
	  Fix a silly problem in RooClassFactory.cxx

2007-12-10 21:30  moneta

	* [r21313] test/Makefile, test/stressMathMore.cxx: fix a warning in
	  stressMathore and a problem making dictionary library on Windows

2007-12-10 19:42  matevz

	* [r21312] eve/inc/TEvePolygonSetProjectedEditor.h,
	  eve/inc/TEveQuadSet.h: Bertrand: fix unresolved external symbols
	  on Windows (class destructors).

2007-12-10 19:08  brun

	* [r21311] test/RootShower/MyEvent.cxx,
	  test/RootShower/MyParticle.cxx, test/RootShower/RSAbout.cxx,
	  test/RootShower/RSMsgBox.cxx, test/RootShower/RootShower.cxx:
	  From Bertrand:
	  Fix compiler warnings

2007-12-10 19:05  matevz

	* [r21310] eve/inc/TEveBoxSetGL.h, eve/inc/TEveDigitSetEditor.h,
	  eve/inc/TEveElement.h, eve/inc/TEveElementEditor.h,
	  eve/inc/TEveGedEditor.h, eve/inc/TEveGeoNode.h,
	  eve/inc/TEveLineEditor.h, eve/inc/TEvePolygonSetProjectedGL.h,
	  eve/inc/TEveQuadSetGL.h, eve/inc/TEveRGBAPaletteEditor.h,
	  eve/inc/TEveScene.h, eve/inc/TEveSceneInfo.h,
	  eve/inc/TEveStraightLineSetEditor.h, eve/inc/TEveTrackEditor.h,
	  eve/inc/TEveTrackPropagator.h,
	  eve/inc/TEveTrackPropagatorEditor.h, eve/inc/TEveTransEditor.h,
	  eve/inc/TEveTriangleSetEditor.h, eve/inc/TEveVSDStructs.h,
	  eve/inc/TEveViewer.h, eve/src/TEveBoxSetGL.cxx,
	  eve/src/TEveBrowser.cxx, eve/src/TEveChunkManager.cxx,
	  eve/src/TEveDigitSetEditor.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveElementEditor.cxx, eve/src/TEveEventManager.cxx,
	  eve/src/TEveFrameBox.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGValuators.cxx, eve/src/TEveGedEditor.cxx,
	  eve/src/TEveGeoNode.cxx, eve/src/TEveGeoNodeEditor.cxx,
	  eve/src/TEveGridStepper.cxx, eve/src/TEveLineEditor.cxx,
	  eve/src/TEveMacro.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEvePad.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjections.cxx, eve/src/TEveQuadSet.cxx,
	  eve/src/TEveQuadSetGL.cxx, eve/src/TEveRGBAPalette.cxx,
	  eve/src/TEveRGBAPaletteEditor.cxx, eve/src/TEveScene.cxx,
	  eve/src/TEveSceneInfo.cxx, eve/src/TEveStraightLineSet.cxx,
	  eve/src/TEveStraightLineSetEditor.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackEditor.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrackProjected.cxx, eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx, eve/src/TEveTrans.cxx,
	  eve/src/TEveTransEditor.cxx, eve/src/TEveTreeTools.cxx,
	  eve/src/TEveTriangleSet.cxx, eve/src/TEveTriangleSetEditor.cxx,
	  eve/src/TEveTriangleSetGL.cxx, eve/src/TEveUtil.cxx,
	  eve/src/TEveVSDStructs.cxx, eve/src/TEveViewer.cxx: Fix coding
	  convention violations.

2007-12-10 18:58  brun

	* [r21309] test/RootShower/MyDetector.h: From Bertrand:
	  TGeoMatrix.h must now be included.

2007-12-10 17:19  moneta

	* [r21308] test/Makefile, test/stressMathCore.cxx,
	  test/stressMathMore.cxx: - add documentation on how to run the
	  tests
	  make now a library for the dictionary (TrackMathCoreCint.so) used
	  in stressMathCore
	  - make stressMathMore readable by CINT. Still to be able to run
	  in CINT, a problem with typedef's to free functions needs to be
	  understood.

2007-12-10 17:14  couet

	* [r21307] tutorials/graphics/psview.C: - Better version.

2007-12-10 17:04  brun

	* [r21306] test/stressShapes.cxx: TGeoMatrix.h must now be
	  included.

2007-12-10 16:56  brun

	* [r21305] hist/inc/TH1.h, hist/inc/TH2.h, hist/inc/THStack.h,
	  hist/src/TH1.cxx, hist/src/TH2.cxx, hist/src/THStack.cxx: From
	  Axel & Lorenzo:
	  Fixing first and last bin default arguments. Now the default
	  argument of:
	  
	  firstbin = 0, lastbin = -1 indicates [0,Nbin+1] (includes
	  underflow/overflow)
	  firstbin= 1, lastbin = -1 indicates [1,Nbin]

2007-12-10 16:53  rdm

	* [r21304] base/src/TSystem.cxx: lone option "L" was not supported
	  in GetLibraries().

2007-12-10 16:48  brun

	* [r21303] etc/vmc/MakeRules: From Federico:
	  Fix typo in previous patch

2007-12-10 16:36  axel

	* [r21302] reflex/python/genreflex/genreflex.py: Next try to find a
	  solution for option quotes to work on both windows cmd.exe and
	  bash, after python has mangled them. The problem only exists
	  because -DA="two words" needs to be supported - and the quotes
	  need to be kept!
	  Solution: if '=' is followed by '"' and the option ends on '"'
	  then escape the double quotes.
	  genreflex ... "-DSTRING=\"a string\""
	  works now on both windows and linux.
	  Also print the gccxml invocation command if debug is set.

2007-12-10 16:21  brun

	* [r21301] eve/src/TEveGeoNode.cxx,
	  g4root/src/TG4RootDetectorConstruction.cxx, geom/inc/TGeoCache.h,
	  geom/inc/TGeoHelix.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPatternFinder.h,
	  geom/src/TGeoArb8.cxx, geom/src/TGeoBBox.cxx,
	  geom/src/TGeoCache.cxx, geom/src/TGeoCompositeShape.cxx,
	  geom/src/TGeoHelix.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoPara.cxx,
	  geom/src/TGeoPatternFinder.cxx, geom/src/TGeoScaledShape.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoTrd1.cxx,
	  geom/src/TGeoTrd2.cxx, geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx, test/stressGeometry.cxx,
	  vmc/src/TGeoMCGeometry.cxx: From Andrei:
	  there was an implicit dependency of TGeoMatrix by TGeoManager.h
	  via TGeoNavigator.h->TGeoCache.h + few other bad dependencies
	  like: TGeoMatrix included by TGeoNode.h via TGeoPatternFinder.h
	  Hmm... I had to cleanup few inlines, introduce a transient matrix
	  in TGeoNavigator (to recover the lost inlining speed) + add
	  several #include "TGeoMatrix.h" allover where this was included
	  and used via TGeoManager.h

2007-12-10 16:01  couet

	* [r21300] tutorials/graphics/psview.C: - Complete help.

2007-12-10 15:54  brun

	* [r21299] gui/src/TRootCanvas.cxx,
	  gui/src/TRootEmbeddedCanvas.cxx: From Bertrand:
	  - Allow to drag and drop ps, eps and pdf files in TRootCanvas and
	  TRootEmbeddedCanvas.

2007-12-10 15:34  matevz

	* [r21298] tutorials/gl/glViewerExercise.C: Connect
	  TTimer::TurnOff() to TGLSAFrame::CloseWindow(). Without this the
	  next timer call resulted in SEGV as it was operating on a deleted
	  window.

2007-12-10 15:17  rdm

	* [r21297] configure: remove the obsolete files lib/libASPluginGS.*
	  that might have been left over
	  from a previous built.

2007-12-10 15:09  rdm

	* [r21296] configure: From Eddy:
	  use -rpath for solarisgcc (was already done for linux).

2007-12-10 15:02  rdm

	* [r21295] etc/vmc/MakeRules, etc/vmc/Makefile.linux,
	  hist/inc/TFormulaPrimitive.h: From Fed:
	  - dummy copy ctor and assignment operator for TFormulaPrimitive
	  - fixes in vmc make files

2007-12-10 14:53  rdm

	* [r21294] asimage/Module.mk, asimage/inc/LinkDef.h,
	  asimage/inc/LinkDefGS.h, asimage/src/TASPluginGS.cxx: From
	  Bertrand:
	  Don't generate a separate library for the ghostscript plugin, but
	  put the
	  code in libASImage.
	  It didn't work on Windows, since there were two instances of
	  libAfterImage
	  storage manager (one in each DLL, each DLL being linked with
	  static
	  libAfterImage library) and they don't share memory. This means
	  that an
	  ASImage created in a DLL cannot be used in another DLL.
	  With this patch, the macro psview.C works on Linux and Windows
	  (if
	  ghostscript has been installed and is in the PATH).

2007-12-10 14:44  couet

	* [r21293] test/stressGraphics.cxx, test/stressGraphics.ref: -
	  Create $ROOTSYS/tutorials/hsimple.root if it does not exist by
	  running
	  in batch $ROOTSYS/tutorials/hsimple.C.

2007-12-10 11:57  brun

	* [r21292] winnt/inc/TWinNTSystem.h: From Bertrand:
	  Solves the problem reported at:
	  <http://savannah.cern.ch/bugs/?32048>
	  (no default values in TWinNTSystem::Load)

2007-12-10 11:56  matevz

	* [r21291] eve/inc/TEveManager.h, eve/src/TEveManager.cxx: Add
	  exception handler for TEveExceptions.
	  Rename function arguments that were still named render_element
	  and alike.
	  Add function descriptions.

2007-12-10 11:04  brun

	* [r21290] geom/inc/TGeoMatrix.h, geom/src/TGeoManager.cxx: From
	  Andrei:
	  another fix for the uninitialized variable spotted by Federico,
	  plus the addition of TGeoMatrix::Print() in the context menu
	  needed by Bjorn in Bug report #27780.

2007-12-10 10:59  ganis

	* [r21289] proofd/src/XrdProofWorker.cxx: Fix problem with support
	  for '[user@]host[:port]' in worker definition directives (bug
	  #31380)

2007-12-10 10:44  ganis

	* [r21288] proof/inc/TProof.h, proof/src/TCondor.cxx,
	  proof/src/TProofCondor.cxx, proof/src/TProofServ.cxx: Fix for bug
	  32035:
	  - Always use gSystem->TempDirectory() where relevant

2007-12-10 10:27  brun

	* [r21287] geom/src/TGeoBuilder.cxx: From Andrei:
	  I added coherency to all TGeoBuilder::MakeXXX("name",...) that
	  now create the shape for the corresponding volume with the same
	  name.

2007-12-10 10:26  brun

	* [r21286] roofitcore/src/RooAbsCache.cxx,
	  roofitcore/src/RooAbsCacheElement.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsSelfCachedPdf.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx: From Wouter:
	  o RooAbsSelfCachedPdf, RooAbsCacheElement, RooFFTConvPdf,
	  RooAbsCachedPdf, RooProfileLL, RooProjectedPdf, RooAbsCache
	  
	  - Include forgotten RooFit.h header to fix Solaris compilation
	  problems (Savannah #32026)
	  
	  o RooCacheManager
	  
	  - Add multiple-inclusion guards around templateClassImp
	  to solve Solaris compilation problem (Savannah #32026)
	  
	  o RooDataSet
	  
	  - Change message level of information message in RooDataSet::read
	  from its mistaken ERROR level to INFO level (reported by Jim
	  Smith)

2007-12-10 10:24  brun

	* [r21285] hist/src/TAxis.cxx: Fix documentation error in
	  TAxis::SetRange

2007-12-10 09:34  couet

	* [r21284] tutorials/graphics/psview.C: - Add a comment about
	  ghostscript

2007-12-10 07:59  rdm

	* [r21283] build/package/common/root-plugin-gl.control,
	  build/package/debian/changelog, build/package/debian/control.in,
	  build/package/debian/rules, build/package/lib/makebuilddepend.sh,
	  build/package/lib/makelists.sh, configure: Form Christian Holm:
	  * Re-enable use of Win32 Qt4 debug libraries
	  * Fix python problem on Ubuntu (thanks to Andy O'Neill
	  <oneill@phys.columbia.edu>)
	  * Make sure libRooFitCore is distributed
	  * Build-dependencies
	  * EVE in root-plugin-gl
	  * Fix Debian BTS bugs.

2007-12-10 02:46  rdm

	* [r21282] base/src/TSystem.cxx: From Matevz:
	  remove warning and re-throw in correct location.

2007-12-08 09:31  moneta

	* [r21281] hist/inc/TH2.h, hist/src/TH2.cxx: - from Axel:
	  change default range used when projecting a 2D histogram (TH2)
	  into a TH1.
	  The underflow/overflow along Y (X) are now by default considered
	  when projecting into X (Y).

2007-12-07 19:36  moneta

	* [r21280] mathcore/src/FunctorCint.cxx: fixes for Solaris forgot
	  in previous commit

2007-12-07 18:37  brun

	* [r21279] hist/inc/THnSparse.h, hist/src/THnSparse.cxx: From
	  Silvia Arcelli and Axel: make THnSparse::Projection() consistent
	  with the versions from TH3 and (soon) TH2 wrt handling of over-
	  and
	  underflow bins.

2007-12-07 18:33  axel

	* [r21278] tutorials/hist/sparsehist.C: Fix histogram title

2007-12-07 17:52  brun

	* [r21277] gpad/src/TPad.cxx: From Bertrand:
	  - Fixes the problem saving canvas from the menu
	  File->Save->canv.jpg ...on
	  Windows.

2007-12-07 17:26  moneta

	* [r21276] mathcore/inc/Math/LinkDef.h,
	  mathcore/src/FunctorCint.cxx: - fix a compilation problem on
	  Solaris
	  - use Form for passing the function parameters for a f (double *,
	  int)

2007-12-07 15:55  ganis

	* [r21273] xrootd/src/xrootd-20071116-0000.src.tgz: Fix a few
	  compilation warnings on Windows and on Mac (from F. Furano)

2007-12-07 14:54  brun

	* [r21272] roofit/inc/RooKeysPdf.h, roofit/src/RooKeysPdf.cxx,
	  roofitcore/inc/RooAbsOptTestStatistic.h,
	  roofitcore/inc/RooAbsTestStatistic.h,
	  roofitcore/src/RooAbsOptTestStatistic.cxx,
	  roofitcore/src/RooAbsTestStatistic.cxx,
	  roofitcore/src/RooBanner.cxx, roofitcore/src/RooTreeData.cxx,
	  tmva/inc/Version.h, tmva/src/MethodANNBase.cxx,
	  tmva/test/TMVAnalysis.C, tmva/test/TMVAnalysis.py: From Wouter:
	  o RooAbsTestStatistic, RooAbsOptTestStatistic, RooKeysPdf
	  
	  - Adjustments for persistence (correct default ctor etc...)
	  
	  o RooTreeData
	  
	  - Apply cut ranges when plotting asymmetry if specified
	  (Fix from Gerhard Raven)
	  
	  o RooBanner
	  
	  - Increment version tag to v2.30

2007-12-07 14:02  moneta

	* [r21271] mathcore/inc/Math/Functor.h,
	  mathcore/src/FunctorCint.cxx: fix xompilation error on gcc 3.4

2007-12-07 12:15  rdm

	* [r21270] base/inc/LinkDef2.h, base/inc/TSysEvtHandler.h,
	  base/inc/TSystem.h, base/src/TSysEvtHandler.cxx,
	  base/src/TSystem.cxx: From Matevz:
	  implementation of TStdExceptionHandler deriving from
	  TSysEvtHandler.
	  Whenever a std::exception is thrown it will be intercepted in
	  TSystem::Run where all TStdExceptionHandlers will be processed.
	  Just like
	  how signals are handled. std::exceptions are thrown by Eve so now
	  they
	  can be properly handled without aborting the system.

2007-12-07 12:06  moneta

	* [r21269] mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/src/FunctorCint.cxx: add
	  implementation for Functor of interpreted functions

2007-12-07 12:05  ganis

	* [r21268] proof/src/TProof.cxx: In batch mode, do not call
	  PrintProgress until there is some info (fix for bug #31471)

2007-12-07 11:40  ganis

	* [r21267] proof/src/TDSet.cxx: Fix bugs preventing in some cases
	  proper validation in multi-level master mode
	  - Make sure that options and anchors are not removed after
	  TDSetElement::GetEntries()
	  - Use only the file name (and not the full Url) in matching
	  elements in
	  TDSetElement::Validate(TDSetElement *)

2007-12-07 11:37  rdm

	* [r21266] treeplayer/src/TTreePlayer.cxx: from Gerri:
	  remove limit on file name length and extend branch names
	  from 128 to 1024 in TTreePlayer::MakeClass() and
	  TTreePlayer::MakeCode().

2007-12-07 11:17  rdm

	* [r21265] base/inc/TApplication.h, base/src/TApplication.cxx,
	  gui/src/TGApplication.cxx, rint/src/TRint.cxx: Following changes:
	  - use TSystem::NotifyApplicationCreated()
	  - fix problem with TApplication changing directory during
	  argument parsing.
	  Directory is changed only in TRint when it processes the
	  directory argument.
	  - Add warning if argument file.root does not exists, before not
	  existing
	  file was ignored.
	  - Improve documentation of TApplication::GetOptions().

2007-12-07 11:13  rdm

	* [r21264] base/inc/TSystem.h, base/src/TSystem.cxx,
	  winnt/src/TWinNTSystem.cxx: add NotifyApplicationCreated() to
	  TSystem.h so that the special TWinNTSystem
	  cast and #include of TWinNTSystem.h in TApplication is not needed
	  anymore.
	  Also this call was missing from TGApplication.

2007-12-07 10:40  brun

	* [r21262] test/stressRooFit.cxx: From Wouter:
	  enables to new features
	  
	  - If write mode is enabled (-w) with a URL file, it automatically
	  reverts to the default of writing locally (file name = file name
	  listed in URL)
	  
	  - It add the '-d <N>' options to set the gDebug level to the
	  desired
	  value

2007-12-07 10:37  couet

	* [r21261] tutorials/gl/gldemos.C: - Add glparametric.C

2007-12-07 10:25  pcanal

	* [r21260] test/stressMathMore.cxx: Bend to Cint's will, resistance
	  is futile, spaces must be in the right places

2007-12-07 10:23  brun

	* [r21259] tutorials/eve/view3ds.C: From Bertrand:
	  - Fixes potential crash on some 3ds geometries
	  + remove a few unused variables.

2007-12-07 10:22  couet

	* [r21258] tutorials/graphics/psview.C: - This macro generates a PS
	  file and then visualize it in a Canvas. It used
	  psexam.C to create the PS file. The macro psexam.C is not
	  available anymore.
	  The PS file is now generated from feynman.C.

2007-12-07 10:21  wouter

	* [r21257] roofitcore/inc/RooCacheManager.h,
	  roofitcore/inc/RooDataHist.h, roofitcore/inc/RooHistPdf.h,
	  roofitcore/inc/RooMinuit.h, roofitcore/inc/RooObjCacheManager.h,
	  roofitcore/src/RooAbsReal.cxx, roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooHistPdf.cxx, roofitcore/src/RooMinuit.cxx: o
	  RooDataHist, RooHistPdf, RooCacheManager
	  
	  - Fixes for persistence
	  
	  
	  o RooAbsReal
	  
	  - Use 'pdf-style' compact printing to have uniform
	  printing of p.d.f.s. and functions in RooWorkspace
	  
	  
	  o RooMinuit
	  
	  - Fix for BaBar in contour()

2007-12-07 09:41  brun

	* [r21256] geom/src/TGeoNavigator.cxx: From Andrei:
	  Fix coding conventions.

2007-12-07 08:43  brun

	* [r21255] eve/inc/TEveManager.h: From Bertrand:
	  - Use correct declaration of global gEve (R__EXTERN instead of
	  extern)
	  to make it externally available when linking on Windows.

2007-12-07 07:07  ganis

	* [r21254] proofd/inc/XrdProofdAux.h, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx: Fix a compilation problem on
	  Mac

2007-12-07 01:39  matevz

	* [r21252] eve/inc/TEveBoxSetGL.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveLineGL.h, eve/inc/TEvePolygonSetProjectedGL.h,
	  eve/inc/TEveProjectionManagerGL.h, eve/inc/TEveQuadSetGL.h,
	  eve/inc/TEveStraightLineSetGL.h, eve/inc/TEveTrackGL.h,
	  eve/inc/TEveTrackProjectedGL.h, eve/inc/TEveTriangleSetGL.h,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGLUtil.cxx,
	  eve/src/TEveLineGL.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjectionManagerGL.cxx, eve/src/TEveQuadSetGL.cxx,
	  eve/src/TEveStraightLineSetGL.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTriangleSetGL.cxx, gl/inc/TF2GL.h,
	  gl/inc/TGLCylinder.h, gl/inc/TGLFaceSet.h,
	  gl/inc/TGLLogicalShape.h, gl/inc/TGLObject.h,
	  gl/inc/TGLParametricEquationGL.h, gl/inc/TGLPhysicalShape.h,
	  gl/inc/TGLPolyLine.h, gl/inc/TGLPolyMarker.h, gl/inc/TGLSphere.h,
	  gl/inc/TGLUtil.h, gl/inc/TH2GL.h, gl/inc/TPointSet3DGL.h,
	  gl/src/TGLPhysicalShape.cxx, gl/src/TGLUtil.cxx: Changes for
	  marking of top-level objects in GL window.
	  - TGLLogicalShape: move DirectDraw() from protected to public.
	  - Implement color-locking for object rendering.
	  - Wrap all calls to glColor() to go via TGLUtil::Color().

2007-12-06 23:55  ganis

	* [r21250] proof/src/TProofServ.cxx, proofd/inc/XrdProofSched.h,
	  proofd/inc/XrdProofServProxy.h, proofd/inc/XrdProofdAux.h,
	  proofd/inc/XrdProofdClient.h, proofd/inc/XrdProofdManager.h,
	  proofd/inc/XrdProofdProtocol.h, proofd/inc/XrdROOT.h,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofdAux.cxx, proofd/src/XrdProofdClient.cxx,
	  proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx: - Fix problem crashing
	  the application at reconfig (bug #28778)
	  - Fix a bug preventing standard Scalla/Xrootd if-else-fi config
	  constructs
	  to work
	  - Fix a bug in XrdProofdManager::GetProofConn in checking
	  existing valid
	  connections
	  - Fix a bug in TProofServ::ApplyMaxQueries preventing the correct
	  removal
	  of empty query directories
	  - Fix coding convention violations in TPacketizerAdaptive (from
	  Jan)

2007-12-06 20:05  brun

	* [r21249] test/guitest.cxx: Apply the same fix in function
	  TestShutter::AddShutteritem than in guitest.C.
	  The new function API is
	  void TestShutter::AddShutterItem(const char *name, shutterData_t
	  *data)
	  instead of:
	  void TestShutter::AddShutterItem(const char *name, shutterData_t
	  data[])
	  The new form is more portable and works correctly with CINT too.

2007-12-06 19:53  brun

	* [r21248] tutorials/eve/view3ds.C: From Bertrand:
	  - Fixes a 64bit portability problem (replace ULong_t by UInt_t).
	  .3ds files are in binary format and size really matter ;-)

2007-12-06 18:27  matevz

	* [r21247] tutorials/eve/quad_test.C: Propagate changes from CCV
	  fixes.

2007-12-06 17:55  matevz

	* [r21246] eve/inc/TEveBoxSet.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveVSDStructs.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGeoNode.cxx,
	  eve/src/TEveGridStepperEditor.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx: Fix some CCVs.

2007-12-06 17:47  pcanal

	* [r21245] tutorials/gui/guitest.C: Cint does not support
	  interpreted function taking an array as parameter ... anyway a
	  pointer is sufficient in this case (AddShutterItem)

2007-12-06 17:28  moneta

	* [r21243] mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/LinkDef.h, mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx,
	  mathmore/test/testDerivation.cxx, mathmore/test/testFunctor.cxx,
	  mathmore/test/testIntegration.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx, test/Makefile,
	  test/stressMathCore.cxx, test/stressMathMore.cxx: - sync with dev
	  branch 21238.
	  - add stressMathMore
	  - fix constructor for Functor and have now GradFunctor class for
	  functions providing derivatives.
	  - add warning message in RootFinder when failed for passing max
	  interations

2007-12-06 17:13  ganis

	* [r21241] proof/src/TProofChain.cxx: Avoid recursive destruction
	  (fix bug #30608)

2007-12-06 17:13  pcanal

	* [r21240] test/dt_DrawTest.C: The old style split branch do not
	  store Double32_t with annotation with the same precision. since
	  the interface is deprecated skip the test

2007-12-06 17:09  pcanal

	* [r21239] hist/src/TFormula.cxx: From Ole Hansen:
	  Work around the fact there appears to be a subtle logic error in
	  the check for string arguments in
	  TFormula::Compile. With user-defined string variables, this may
	  cause silent
	  corruption of the formula leading to incorrect results or even
	  segfaults at
	  evaluation time.
	  See https://savannah.cern.ch/bugs/?31988

2007-12-06 16:47  pcanal

	* [r21237] hist/src/TFormula.cxx: From Ole Hansen:
	  Fix for the fact that a string literal argument to the strstr()
	  function
	  in a TFormula expression currently cannot contain a comma.
	  See https://savannah.cern.ch/bugs/?31985

2007-12-06 16:32  ganis

	* [r21236] proof/inc/TProof.h, proof/src/TDSet.cxx,
	  proof/src/TProof.cxx, proof/src/TProofServ.cxx,
	  proofplayer/src/TProofPlayer.cxx: Honour the stop/cancel requests
	  during lookup and during final merge collection; fix bug #23208

2007-12-06 16:14  ganis

	* [r21235] proofx/src/TXProofMgr.cxx, proofx/src/TXSlave.cxx: Fix
	  warnings on Solaris

2007-12-06 15:45  rdm

	* [r21234] configure, io/inc/TFileCacheRead.h,
	  netx/inc/TXNetFile.h, netx/inc/TXNetSystem.h,
	  netx/src/TXNetFile.cxx, netx/src/TXNetSystem.cxx,
	  xrootd/Module.mk, xrootd/src/xrootd-20071001-0000.src.tgz,
	  xrootd/src/xrootd-20071116-0000.src.tgz: From Gerri, Fabrizio,
	  Andreas:
	  - Fix problems with readv and async reading
	  - Add possibility to set the cache parameters "per instance"
	  - Proper locate implementation

2007-12-06 15:34  antcheva

	* [r21233] gui/inc/TGToolTip.h, gui/src/TGToolTip.cxx: Updated doc
	  about multiple lines feature of tooltips.

2007-12-06 15:27  wouter

	* [r21232] roofitcore/src/RooDataHist.cxx: o RooDataHist
	  
	  - Fix pointer hashing issue that caused mixup
	  in partial bin volume calculation when multiple
	  partial intergrals are calculated off the same object
	  Solves Savannah #31869

2007-12-06 15:22  rdm

	* [r21231] asimage/src/TASPaletteEditor.cxx, base/src/TBuffer.cxx,
	  base/src/TGuiFactory.cxx, base/src/TMacro.cxx,
	  base/src/TStyle.cxx, cont/src/TClassTable.cxx,
	  cont/src/TClonesArray.cxx, cont/src/TObjArray.cxx,
	  cont/src/TRefArray.cxx, gl/src/TGLBoxPainter.cxx,
	  gl/src/TGLContext.cxx, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLPShapeObjEditor.cxx, gl/src/TGLParametric.cxx,
	  gl/src/TGLSAViewer.cxx, gl/src/TGLSurfacePainter.cxx,
	  gl/src/TGLTF3Painter.cxx, gl/src/TGLWidget.cxx,
	  graf/src/TGraph.cxx, graf/src/TPaveText.cxx, hist/src/TF1.cxx,
	  hist/src/TH1.cxx, histpainter/src/THistPainter.cxx,
	  io/src/TDirectoryFile.cxx, matrix/src/TMatrixTBase.cxx,
	  matrix/src/TVectorT.cxx, proofplayer/src/TPerfStats.cxx,
	  qt/src/TQtWidget.cxx, roofitcore/src/RooAbsArg.cxx,
	  table/src/TGenericTable.cxx, treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx: change all occurances
	  where %x is used to format a pointer to %lx.

2007-12-06 15:19  couet

	* [r21230] test/stressGraphics.ref: - Changes needed for Solaris.

2007-12-06 14:36  couet

	* [r21228] test/stressGraphics.cxx, test/stressGraphics.ref: - Call
	  gStyle->Reset() in StartTest() to make sure the settings of one
	  test
	  do no affect the further tests.

2007-12-06 13:02  rdm

	* [r21227] pyroot/src/PyROOT.h: handle special case for MacOS 10.3.

2007-12-06 13:02  rdm

	* [r21226] treeplayer/src/TFormLeafInfo.cxx: fix fCopyFormat and
	  fDeleteFormat, use %lx instead of %x. Without l specifier
	  got truncation on Leopard 64-bit.

2007-12-06 10:54  brun

	* [r21225] test/stressGeometry.cxx: From Andrei:
	  - The fix in stressGeometry makes the algorithm of crossing
	  boundaries more stable with respect to geometry definition errors
	  (overlaps)

2007-12-06 10:49  rdm

	* [r21224] freetype/src: change ignore to new version.

2007-12-06 10:47  rdm

	* [r21223] freetype/Module.mk, freetype/src/freetype-2.1.9.tar.gz,
	  freetype/src/freetype-2.3.5.tar.gz,
	  freetype/src/win/freetype.dep, freetype/src/win/freetype.mak:
	  move to the latest freetype, previous version had security
	  issues.

2007-12-06 10:39  brun

	* [r21222] geom/src/TGeoNavigator.cxx: From Andrei:
	  -The fix in navigation adds protections in case of MANY overlaps
	  of divided volumes, plus precision-related changes like:
	  
	  if (snext<fStep) -> if (snext<fStep-gTolerance)
	  
	  This should fix the discrepancies found when running
	  stressGeometry.
	  see coming check-in.

2007-12-06 10:26  wouter

	* [r21221] roofitcore/inc/RooCustomizer.h,
	  roofitcore/inc/RooSimPdfBuilder.h,
	  roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooStreamParser.cxx: o RooSimPdfBuilder,
	  RooCustomizer
	  
	  - Clean up ownership bookkeeping of nodes that created vs
	  node that are imported. Fixes Savannah #31967
	  
	  o RooStreamParser
	  
	  - Fix uninitialized value that caused 'conditional jump on
	  uninitialized value' when valgrind test macro of Savannah #31967

2007-12-06 08:48  ganis

	* [r21220] proof/src/TProof.cxx: From Bertrand: avoid a crash when
	  deleting proof while using TSessionViewer GUI

2007-12-06 08:42  brun

	* [r21219] sessionviewer/src/TSessionViewer.cxx: From Bertrand:
	  - Properly update list tree when a session status change

2007-12-06 06:22  brun

	* [r21218] tmva/src/BinaryTree.cxx, tmva/test/network.C: From Joerg
	  Stelzer:
	  fix for the coding rule violation (missing docu) and a bug fix in
	  a macro in the tmva/test directory (we had hardcoded a filename
	  there).

2007-12-05 21:30  pcanal

	* [r21217] utils/src/rootcint.cxx: do not mistake the -pipe option
	  for -p

2007-12-05 17:19  matevz

	* [r21215] eve/inc/TEveBoxSet.h, eve/inc/TEveDigitSet.h,
	  eve/inc/TEveFrameBox.h, eve/inc/TEveGLText.h,
	  eve/inc/TEveGridStepper.h, eve/inc/TEveLine.h,
	  eve/inc/TEvePointSet.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveRGBAPalette.h,
	  eve/inc/TEveTrack.h, eve/inc/TEveTreeTools.h,
	  eve/inc/TEveVSDStructs.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveDigitSet.cxx,
	  eve/src/TEveFrameBox.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGridStepper.cxx,
	  eve/src/TEvePointSet.cxx, eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveProjectionManagerEditor.cxx,
	  eve/src/TEveProjections.cxx, eve/src/TEveQuadSet.cxx,
	  eve/src/TEveQuadSetGL.cxx, eve/src/TEveRGBAPalette.cxx,
	  eve/src/TEveTrack.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx,
	  eve/src/TEveVSDStructs.cxx: Prefix all enum values with 'k'.

2007-12-05 16:38  rdm

	* [r21213] pcre/src/pcre-7.4.tar.gz: From Bertrand:
	  Win32 build fixes.

2007-12-05 16:16  wouter

	* [r21212] roofitcore/inc/RooAbsOptTestStatistic.h,
	  roofitcore/inc/RooAbsTestStatistic.h,
	  roofitcore/inc/RooDataHist.h, roofitcore/inc/RooDataSet.h,
	  roofitcore/inc/RooFitResult.h, roofitcore/inc/RooPlot.h,
	  roofitcore/src/RooAbsTestStatistic.cxx,
	  roofitcore/src/RooDataHist.cxx, roofitcore/src/RooDataSet.cxx,
	  roofitcore/src/RooFitResult.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooRealSumPdf.cxx: o RooDataHist, RooDataSet,
	  RooFitResult
	  
	  - Overload SetName() and SetNameTitle() to remove
	  and append from associated directory
	  (Savannah bug #28906)
	  
	  
	  o RooPlot
	  
	  - Fix handling of SetName(), SetNameTitle()
	  as done above
	  
	  - Make sure that RooPlot is attached to gDirectory
	  and internal TH1 is not
	  
	  - Make sure that name changes apply to RooPlot and
	  not to TH1 (Savannah #31371)
	  
	  
	  o RooAbsTestStatistic, RooAbsOptTestStatistic
	  
	  - Fix bug in default value of _splitRange that is propagated
	  to client calculators in Simultaneous + MultiProcessor mode
	  (Savannah #31632)
	  
	  
	  o RooRealSumPdf
	  
	  - Fix bug in default ctor to allow persistence

2007-12-05 16:00  brun

	* [r21211] geom/inc/TGeoPhysicalNode.h, geom/src/TGeoManager.cxx,
	  geom/src/TGeoPhysicalNode.cxx: From Andrei:
	  adds a global matrix pointer to TGeoPNEntry objects - needed by
	  the alignment framework in ALICE.

2007-12-05 15:16  brun

	* [r21210] hist/inc/TH1.h, hist/src/TH1.cxx: Add a new getter
	  function
	  void TH1::GetBinXYZ(Int_t binglobal, Int_t &binx, Int_t &biny,
	  Int_t &binz) const
	  // return binx, biny, binz corresponding to the global bin number
	  globalbin

2007-12-05 10:19  couet

	* [r21208] test/stressGraphics.cxx, test/stressGraphics.ref: - New
	  test (inspired from waves.C) to test TPallette and TColor

2007-12-05 10:15  rdm

	* [r21207] zip/README, zip/inc/deflate.h, zip/inc/inflate.h,
	  zip/inc/inftrees.h, zip/inc/zconf.h, zip/inc/zlib.h,
	  zip/inc/zutil.h, zip/src/adler32.c, zip/src/compress.c,
	  zip/src/crc32.c, zip/src/deflate.c, zip/src/gzio.c,
	  zip/src/infback.c, zip/src/inffast.c, zip/src/inflate.c,
	  zip/src/inftrees.c, zip/src/trees.c, zip/src/zutil.c: upgrade to
	  version 1.2.3, the old 1.2.1 had security issues.

2007-12-05 10:15  rdm

	* [r21206] pcre/Module.mk: support pcre-7.4.

2007-12-05 10:14  rdm

	* [r21205] pcre/src, pcre/src/pcre-6.4.tar.gz,
	  pcre/src/pcre-7.4.tar.gz: upgrade to pcre-7.4, the old 6.4 had
	  severe security issues.

2007-12-05 09:43  wouter

	* [r21204] roofitcore/test/TestBasic11.cxx,
	  roofitcore/test/stressRooFit.cxx: Commit modular development
	  version of stressRooFit
	  in roofitcore/test

2007-12-05 09:08  brun

	* [r21203] tutorials/gui/CPUMeter.C, tutorials/gui/Slider3Demo.C,
	  tutorials/gui/WorldMap.C, tutorials/gui/buttonChangelabel.C,
	  tutorials/gui/buttonTest.C, tutorials/gui/buttongroupState.C,
	  tutorials/gui/buttonsLayout.C, tutorials/gui/calendar.C,
	  tutorials/gui/guiWithCINT.C, tutorials/gui/guilabels.C,
	  tutorials/gui/guitest.C, tutorials/gui/listBox.C,
	  tutorials/gui/mditest.C, tutorials/gui/numberEntry.C,
	  tutorials/gui/splitbuttonTest.C,
	  tutorials/gui/splitterHorizontal.C,
	  tutorials/gui/splitterVertical.C, tutorials/gui/statusBar.C,
	  tutorials/gui/textEntries.C: From Bertrand:
	  - Replace <tabs> by spaces
	  - Pass gClient->GetRoot() in TGMainFrame constructors
	  (instead of 0) to allow embedding any gui macro in
	  the new browser

2007-12-05 08:20  brun

	* [r21202] tutorials/math/limit.C: Fix a fatal typo (TFRame instead
	  of TFrame)

2007-12-05 07:57  brun

	* [r21201] gui/inc/TRootBrowser.h, gui/src/TRootBrowser.cxx: From
	  Matevz:
	  The StopEmbedding("Bla bla") did not work for tabs other than the
	  right one.
	  This patch fixes the problem.

2007-12-05 07:51  brun

	* [r21200] gdml/src/TGDMLParse.cxx: Fix coding convention

2007-12-05 07:30  brun

	* [r21199] hist/src/THnSparse.cxx: Fix coding conventions

2007-12-05 02:31  matevz

	* [r21198] eve/inc/TEveBoxSet.h, eve/inc/TEveDigitSet.h,
	  eve/inc/TEveFrameBox.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveGeoShapeExtract.h, eve/inc/TEveGridStepper.h,
	  eve/inc/TEveLine.h, eve/inc/TEvePointSet.h,
	  eve/inc/TEveProjectionManager.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveRGBAPalette.h,
	  eve/inc/TEveTrack.h, eve/inc/TEveTrackProjected.h,
	  eve/inc/TEveTrackProjectedGL.h, eve/inc/TEveTrackPropagator.h,
	  eve/inc/TEveTrans.h, eve/inc/TEveTreeTools.h, eve/inc/TEveVSD.h,
	  eve/inc/TEveVSDStructs.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBrowser.cxx, eve/src/TEveGeoNode.cxx,
	  eve/src/TEveGeoShapeExtract.cxx, eve/src/TEveGridStepper.cxx,
	  eve/src/TEveLine.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveProjectionManagerEditor.cxx,
	  eve/src/TEveProjectionManagerGL.cxx, eve/src/TEveProjections.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackGL.cxx, eve/src/TEveTrackProjected.cxx,
	  eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx, eve/src/TEveTrans.cxx,
	  eve/src/TEveVSD.cxx, eve/src/TEveVSDStructs.cxx: Prefix enum
	  types with 'E'.
	  
	  Fix fix member names to begin with f[A-Z].
	  
	  Fix function member names to begin with a capital letter.
	  
	  Add some docs.

2007-12-04 19:29  matevz

	* [r21197] eve/src/TEveManager.cxx: In TEveManager::Create() make
	  sure GUI system is initialized.
	  Needed when linking Eve into a stand-alone application (CMS
	  fireworks).

2007-12-04 18:26  axel

	* [r21194] cint/src/v6_newlink.cxx: Better sanity check for ifunc's
	  allifunc vs. maxifunc; fixes autoload problem with libPhysics.
	  As this fixes a nightlies = roottest failure I'm putting it into
	  svn even though everybody needs to rebuild all the dictionaries.

2007-12-04 18:11  axel

	* [r21193] cintex/inc/LinkDef.h, cintex/src/CINTSourceFile.h,
	  cintex/src/Cintex.cxx: Explicitely mention the class;
	  nestedclasses won;t trigger a rootmap entry.
	  Use CINT's enw interface to register a dummy src file.
	  Register that dummy source file for all Callbacks.

2007-12-04 17:39  ganis

	* [r21192] proof/src/TProofLog.cxx: Add missing ClassImp()

2007-12-04 16:16  brun

	* [r21189] gui/src/TGFileBrowser.cxx: From Bertrand:
	  Add protection in case there is no tab on the right
	  in TRootBrowser and user double-click on a file in
	  the list tree.
	  Thanks to Ilka for reporting this case.

2007-12-04 16:03  pcanal

	* [r21188] treeplayer/src/TTreeFormula.cxx: better test for when we
	  must avoid the switch to TLeafFormLeafInfo

2007-12-04 15:47  rdm

	* [r21187] etc/vmc/Makefile.macosx, etc/vmc/Makefile.macosx64:
	  corrections for gfortran usage. However, 64-bit version does not
	  work yet.
	  We need 64 bit version fo gfortran to get the correct run time
	  libs.

2007-12-04 15:05  moneta

	* [r21186] minuit2/build/inc_Math_Makefile.am: add file forgot with
	  previous commit

2007-12-04 14:56  moneta

	* [r21185] mathcore/build/INSTALL, mathcore/build/configure.in,
	  mathcore/build/src_Makefile.am, mathcore/inc/Math/Factory.h,
	  mathcore/inc/Math/Minimizer.h, mathcore/src/Factory.cxx,
	  mathcore/src/QuantFuncMathCore.cxx, mathmore/build/INSTALL,
	  mathmore/build/configure.in, mathmore/build/doc_Makefile.am,
	  mathmore/build/inc_Makefile.am,
	  mathmore/build/inc_Math_Makefile.am, mathmore/build/setup.sh,
	  mathmore/build/src_Makefile.am, mathmore/build/test_Makefile.am,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/MCIntegrationTypes.h, minuit2/build/INSTALL,
	  minuit2/build/configure.in, minuit2/build/doc_Makefile.am,
	  minuit2/build/inc_Makefile.am,
	  minuit2/build/inc_Minuit2_Makefile.am, minuit2/build/setup.sh,
	  minuit2/inc/LinkDef.h, minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnHesse.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinimize.h, minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/MnUserParameters.h,
	  minuit2/src/Minuit2Minimizer.cxx, minuit2/src/MnHesse.cxx,
	  smatrix/build/configure.in, smatrix/build/doc_Makefile.am: - fix
	  coding convention violation
	  - generate dictionaries for main Minuit2 classes
	  - add strategy to the propriety of Minimizer class
	  - update standalone builds for mathcore/mathmore/smatrix/minuit2

2007-12-04 14:50  rdm

	* [r21184] pyroot/src/PyROOT.h: fix in PY_SSIZE_T_FORMAT.

2007-12-04 14:46  couet

	* [r21183] tutorials/graphs/waves.C: - Better way to draw the arcs.

2007-12-04 14:23  axel

	* [r21182] reflex/python/genreflex/genreflex.py: Remove quotes for
	  gccxml parameters; they makes gccxml fail on windows when invoked
	  from cmd. Instead, path names with spaces are not supported. We
	  can fix that once someone needs it.

2007-12-04 14:16  wouter

	* [r21181] roofitcore/inc/RooRealSumPdf.h,
	  roofitcore/src/RooRealSumPdf.cxx: o RooRealSumPdf
	  
	  - Add default constructor to make persistence possible

2007-12-04 14:10  axel

	* [r21180] cint/inc/G__ci.h, cint/src/v6_loadfile.cxx: Add
	  interface to set a G__ifile context: G__setfilecontext(filename,
	  ifile). Sets G__ifile to filename (can be an artificial tag) and
	  stores the previous one in ifile

2007-12-04 14:04  wouter

	* [r21179] roofitcore/inc/RooProduct.h,
	  roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooRealIntegral.cxx: o RooProduct
	  
	  - Contributed upgrade by G. Raven that implements factorizing
	  analytical integration
	  
	  o RooRealIntegral
	  
	  - Small change in handling of analytical integration to make
	  RooProduct code work

2007-12-04 14:02  wouter

	* [r21178] roofit/src/RooNDKeysPdf.cxx: o RooNDKeysPdf
	  
	  - Fix for Solaris

2007-12-04 09:37  couet

	* [r21174] test/stressGraphics.cxx, test/stressGraphics.ref: - PNG
	  output

2007-12-04 09:05  rdm

	* [r21172] config/Makefile.macosx, config/Makefile.macosx64:
	  misplaced endif causing F77LIBS not to be defined in case of
	  gfortran.

2007-12-04 07:54  rdm

	* [r21171] eve/inc/TEveStraightLineSet.h: I guess Matevz forgot to
	  rename TEveLine to Line_t.

2007-12-04 07:45  brun

	* [r21170] gdml/src/TGDMLParse.cxx: Fix coding conventions

2007-12-04 07:40  brun

	* [r21169] math/src/TMath.cxx: Fix coding conventions

2007-12-04 02:40  matevz

	* [r21168] eve/inc/TEveBoxSet.h, eve/inc/TEveBoxSetGL.h,
	  eve/inc/TEveDigitSet.h, eve/inc/TEveGLText.h, eve/inc/TEveLine.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveQuadSetGL.h,
	  eve/inc/TEveStraightLineSet.h, eve/inc/TEveStraightLineSetGL.h,
	  eve/inc/TEveTrackPropagator.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveDigitSet.cxx,
	  eve/src/TEveDigitSetEditor.cxx, eve/src/TEveGLText.cxx,
	  eve/src/TEveLine.cxx, eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveQuadSetGL.cxx,
	  eve/src/TEveStraightLineSet.cxx,
	  eve/src/TEveStraightLineSetGL.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackPropagator.cxx: Rename structures to end with
	  '_t'.

2007-12-04 01:01  matevz

	* [r21167] eve/inc/TEveManager.h, eve/inc/TEveTrackGL.h,
	  eve/inc/TEveTrackPropagator.h, eve/src/TEveManager.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEveProjectionManager.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackGL.cxx, eve/src/TEveTrackProjected.cxx,
	  eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx: Fix warnings about size_t.
	  Add some docs.
	  Change magnetic field units from kGauss to Tesla.

2007-12-03 21:02  brun

	* [r21164] win32gdk/inc/TGWin32.h, win32gdk/src/TGWin32.cxx: From
	  Bertrand:
	  Remove limitation of only 1000 colors. Colors are now stored in a
	  TExMap
	  hash table, with the key being the TColor color index and the
	  value a pointer
	  to the associated XColor_t structure.

2007-12-03 17:45  wouter

	* [r21163] roofitcore/inc/RooAbsArg.h,
	  roofitcore/src/RooAbsArg.cxx: o RooAbsArg
	  
	  - Make non-inline accessor function for static boolean
	  _inhibitDirty

2007-12-03 17:38  pcanal

	* [r21162] cint/src/v6_decl.cxx: Support const T& operator()(const
	  Key& key) const;Support const T& operator()(const Key& key)
	  const;

2007-12-03 17:10  moneta

	* [r21161] minuit2/test/testNewMinimizer.cxx: fix a double delete
	  of Minimizer pointer in test program

2007-12-03 17:07  moneta

	* [r21160] mathcore/src/Integrator.cxx: fix a mistake with previous
	  commit

2007-12-03 17:06  wouter

	* [r21159] roofit/inc/LinkDef1.h, roofit/inc/RooNDKeysPdf.h,
	  roofit/src/RooNDKeysPdf.cxx: o RooNDKeysPdf
	  
	  - This class is a multidimensional generalization of RooKeysPdf
	  that can model distributions in any number of dimensions and
	  incorporates correlations into the kernal function.
	  
	  - Code contributed by Max Baak, based on the algorithms by Kyle
	  Cranmer.

2007-12-03 17:01  moneta

	* [r21158] mathcore/build/doc_Makefile.am,
	  mathcore/build/inc_Makefile.am,
	  mathcore/build/inc_Math_Makefile.am, mathcore/build/setup.sh,
	  mathcore/build/src_Makefile.am, mathcore/build/test_Makefile.am,
	  mathcore/inc/Math/AllIntegrationTypes.h,
	  mathcore/src/Integrator.cxx: - update documentation files and
	  stand-alone build system o work with new added files

2007-12-03 16:58  pcanal

	* [r21157] treeplayer/src/TTreeFormula.cxx: Add support for auto
	  use of AsDouble and AsString for top level objects

2007-12-03 16:58  pcanal

	* [r21156] hist/src/TFormula.cxx: operator== and != can not be
	  optimized (yet) for strings

2007-12-03 16:47  brun

	* [r21155] config/Makefile.depend: Change RooFit dependencies. The
	  coming new version by Wouter will depend on libMatrix.

2007-12-03 16:36  rdm

	* [r21154] Makefile, config/Makefile.macosx,
	  config/Makefile.macosx64: silence message that g77 is not found
	  in case no F77 compiler is found.

2007-12-03 16:34  rdm

	* [r21153] rootx/src/rootx.cxx, unix/src/TUnixSystem.cxx: utmp.h is
	  now deprecated on MacOS X, use utmpx.h (removes compiler
	  warning).

2007-12-03 16:30  brun

	* [r21152] geom/src/TGeoManager.cxx: From Andrei:
	  a patch for an error in TGeoManager::InsertPNEId() that was not
	  correcly handling the increase of the uid array.

2007-12-03 16:29  brun

	* [r21151] html/src/THtml.cxx, matrix/inc/LinkDef.h,
	  treeplayer/inc/LinkDef.h: From Axel:
	  Set module of mathmore, smatrix, treeplayer by hand for several
	  classes; change Linkdef.h for matrix and treeplayer to enable
	  autoload entry (and thus library) for all classes templated as
	  <Float_t>, <Double_t> by using <float>, <double> instead.

2007-12-03 16:29  brun

	* [r21150] base/inc/RVersion.h, build/version_number: Start
	  development cycle for version 5.17/07

2007-12-01 09:57  brun

	* [r21140] base/inc/RVersion.h, build/version_number: Make
	  development release 5.17/06

2007-12-01 08:56  brun

	* [r21139] etc/valgrind-root.supp: Add special zlib case to the
	  suppression file

2007-11-30 23:06  matevz

	* [r21138] eve/inc/TEvePolygonSetProjected.h,
	  eve/inc/TEveProjectionManagerEditor.h,
	  eve/inc/TEveProjectionManagerGL.h, eve/inc/TEveTrackProjected.h,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEveProjectionBases.cxx,
	  eve/src/TEveProjectionManagerGL.cxx,
	  eve/src/TEveTrackProjected.cxx: Alja: add documentation for the
	  projection classes.

2007-11-30 22:33  wouter

	* [r21136] roofitcore/inc/RooAbsCategory.h,
	  roofitcore/inc/RooResolutionModel.h,
	  roofitcore/inc/RooSimultaneous.h,
	  roofitcore/src/RooAbsCategory.cxx: o RooResolutionModel,
	  RooSimultaneous, RooAbsCategory
	  
	  - Fix uninitialized values in ctor

2007-11-30 20:45  wlav

	* [r21135] pyroot/src/Pythonize.cxx: Make sure to use full
	  namespace when for TClass::GetClass in
	  Pythonize.cxx

2007-11-30 19:57  brun

	* [r21134] hist/src/TH1.cxx: Fix all SetBinContent functions in
	  case of an axis with the time display option set. (thanks to
	  Robert Hatcher)

2007-11-30 18:09  brun

	* [r21133] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  - another mem. leak fix from Sasha

2007-11-30 18:04  brun

	* [r21132] asimage/Module.mk: From Valeriy:
	  - always use our own libungif (aka builtin-ungif)
	  which supports LZW compression.

2007-11-30 16:38  moneta

	* [r21131] minuit2/src/Minuit2Minimizer.cxx, minuit2/test/Makefile,
	  minuit2/test/testNewMinimizer.cxx: - add test of various
	  minimizers
	  - suppress some printout in Minuit2 when requested

2007-11-30 16:08  moneta

	* [r21130] mathcore/inc/Math/OneDimFunctionAdapter.h: fix a bug in
	  the adapter from multi-dim to one-dim functions

2007-11-30 14:41  moneta

	* [r21129] mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/QuantFuncMathCore.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathmore/inc/Math/QuantFuncMathMore.h,
	  mathmore/inc/Math/SpecFuncMathMore.h: - load automatically
	  libMathCore and libMathMore when running CINT and including the
	  header files for the
	  mathematical functions. This is done (thanks to Philippe) by
	  adding at the beginning of the header files:
	  
	  
	  #if defined(__CINT__) && !defined(__MAKECINT__)
	  // avoid to include header file when using CINT
	  #ifndef _WIN32
	  #include "../lib/libMathCore.so"
	  #else
	  #include "../bin/libMathCore.dll"
	  #endif
	  
	  #else
	  // normal header file

2007-11-30 10:05  moneta

	* [r21126] tutorials/math/limit.C, tutorials/math/mathcoreCDF.C,
	  tutorials/math/mathcoreGenVector.C,
	  tutorials/math/mathcoreSpecFunc.C,
	  tutorials/math/mathcoreVectorIO.C: fix (for running in compiled
	  mode) and improve some of the tutorials

2007-11-30 01:17  pcanal

	* [r21122] cint/src/v6_decl.cxx: support obj*&operator()(int)

2007-11-29 18:03  brun

	* [r21117] etc/plugins/ROOT@@Math@@Minimizer,
	  etc/plugins/ROOT@@Math@@Minimizer/P010_Minuit2Minimizer.C,
	  etc/plugins/ROOT@@Math@@Minimizer/P020_TMinuitMinimizer.C,
	  etc/plugins/ROOT@@Math@@Minimizer/P030_GSLMinimizer.C,
	  etc/plugins/ROOT@@Math@@Minimizer/P040_GSLNLSMinimizer.C,
	  etc/plugins/ROOT@@Math@@Minimizer/P050_GSLSimAnMinimizer.C: From
	  Lorenzo:
	  add a new plugins for Minimizer using GSL and Minuit2
	  minimization classes

2007-11-29 17:34  moneta

	* [r21116] test/stressMathCore.cxx: fix a problem with bad filename
	  char. for Windows

2007-11-29 17:25  moneta

	* [r21115] test/stressMathCore.cxx: do automatic removal of root
	  test files

2007-11-29 17:16  moneta

	* [r21114] mathcore/Module.mk, mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/DistFuncMathCore.h,
	  mathcore/inc/Math/Factory.h,
	  mathcore/inc/Math/FitMethodFunction.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/Integrator.h, mathcore/inc/Math/LinkDef.h,
	  mathcore/inc/Math/LinkDef_Func.h, mathcore/inc/Math/Math.h,
	  mathcore/inc/Math/Minimizer.h,
	  mathcore/inc/Math/OneDimFunctionAdapter.h,
	  mathcore/inc/Math/PdfFunc.h, mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/QuantFunc.h,
	  mathcore/inc/Math/QuantFuncMathCore.h,
	  mathcore/inc/Math/SpecFuncMathCore.h, mathcore/src/Factory.cxx,
	  mathcore/src/Integrator.cxx, mathcore/src/PdfFuncMathCore.cxx,
	  mathcore/src/ProbFuncMathCore.cxx,
	  mathcore/src/QuantFuncMathCore.cxx,
	  mathcore/src/SpecFuncCephesInv.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathmore/Module.mk,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_Func.h,
	  mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/QuantFuncMathMore.h,
	  mathmore/src/Derivator.cxx, mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/PdfFuncMathMore.cxx, mathmore/src/Polynomial.cxx,
	  mathmore/src/QuantFuncMathMore.cxx,
	  mathmore/test/testInterpolation.cxx,
	  minuit2/inc/Minuit2/FumiliFCNAdapter.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnUserTransformation.h,
	  minuit2/inc/Minuit2/SimplexParameters.h,
	  minuit2/src/Minuit2Minimizer.cxx, test/stressMathCore.cxx: -
	  syncronize mathcore, mathmore, minuit2 and test/stressMathCore
	  with development branches
	  
	  - main changes are:
	  
	  - move some remaining pdf (like beta and landau) from mathmore to
	  mathcore
	  - add missing landau_cdf
	  - fix a precision error with normal_cdf (and normal_cdf_c) for
	  small x (large x). Use the correct erf or erfc function according
	  to x
	  - move majority of quantiles functions from mathmore to mathcore
	  ( implementation is based on inverse functions from Cephes,
	  implemented in SpecFuncCephesInv.cxx)
	  
	  - add method to create Minimizer concreate classes via the plugin
	  manager
	  - add possibility to use multi-dim funciton type in one dim
	  integration
	  
	  - minuit2: add some missing include cassert

2007-11-29 14:45  brun

	* [r21108] test/stressRooFit.cxx: From Wouter:
	  test 11 which tests p.d.f. persistence.

2007-11-29 14:11  brun

	* [r21107] test/RootShower/GTitleFrame.cxx,
	  test/RootShower/GTitleFrame.h: From Bertrand:
	  Simplify the font settings for the title.

2007-11-29 13:47  couet

	* [r21106] test/stressGraphics.cxx, test/stressGraphics.ref: - Test
	  JPG

2007-11-29 10:30  brun

	* [r21105] gui/src/TGFont.cxx: From Bertrand:
	  This patch solve the problem reported at:
	  https://savannah.cern.ch/bugs/?31673

2007-11-29 09:33  axel

	* [r21104] test/stressRooFit.cxx: Prepend "SYS:" to uname output so
	  roottest can filter it.

2007-11-29 09:05  wouter

	* [r21103] roofitcore/src/RooBanner.cxx: increment RooFit version
	  tag to 2.23

2007-11-29 08:20  brun

	* [r21102] gpad/src/TPad.cxx: Protect Tpad::DrawFrame in case the
	  function is called on a pad/canvas that is not the current pad.
	  In this case, the call is forwarded to the current pad and a
	  Warning printed.

2007-11-28 23:41  rdm

	* [r21101] Makefile: fix ftgl, gl and eve dependency.

2007-11-28 22:55  pcanal

	* [r21100] cint/src/v6_newlink.cxx: properly handle pragma link of
	  operator in namespace

2007-11-28 20:05  pcanal

	* [r21099] meta/src/TCint.cxx: Support --prefix is TCint::IsLoaded

2007-11-28 18:07  pcanal

	* [r21098] cint/src/v6_struct.cxx: Prevent the autoloader from
	  destroying entries for templated classes that are defining in a
	  namespace and/or class

2007-11-28 17:31  brun

	* [r21097] Makefile: From Axel:
	  there is a problem with
	  the build system: libEve depends on libRGL, but gl/Module.mk gets
	  included after eve/Module.mk, so the dependency is not seen.
	  This patch fixes this problem.

2007-11-28 15:35  couet

	* [r21096] test/stressGraphics.ref: - Adjust for Mac

2007-11-28 15:28  couet

	* [r21095] test/stressGraphics.ref: - New version

2007-11-28 15:07  pcanal

	* [r21094] cint/lib/dll_stl/str.h, cint/lib/prec_stl/string: fix
	  for icc

2007-11-28 14:59  moneta

	* [r21093] test/Makefile, test/TrackMathCore.h,
	  test/TrackMathCoreRflx.xml: fix test also for using Reflex. CINT
	  dictionaries must not be loaded in that case

2007-11-28 14:07  brun

	* [r21092] main/src/hadd.cxx, proofplayer/src/TFileMerger.cxx: Add
	  support for files containing key names that are not the object
	  names.
	  see: <http://savannah.cern.ch/bugs/?31693>
	  Thanks to d.miskowiec@gsi.de

2007-11-28 12:31  moneta

	* [r21091] test/TrackMathCore.h, test/TrackMathCoreLinkDef.h,
	  test/stressMathCore.cxx: add more tests and include typedef
	  definition in dictionary of Track classes

2007-11-28 10:50  couet

	* [r21090] test/stressGraphics.cxx, test/stressGraphics.ref: - GIF
	  file for each test.

2007-11-28 08:36  brun

	* [r21088] gui/inc/TGTab.h, gui/src/TGTab.cxx: From Bertrand:
	  Add TGTab::AddTab with TGCompositeFrame in argument as requested
	  by the feature request at: https://savannah.cern.ch/bugs/?31668

2007-11-27 22:12  wouter

	* [r21087] roofitcore/src/RooMsgService.cxx: o RooMsgService
	  
	  - Fix bug in creation of singleton instance

2007-11-27 21:51  brun

	* [r21086] config/Makefile.depend: The RooFitCore lib does not
	  depend anymore on libHtml

2007-11-27 21:29  brun

	* [r21085] test/Makefile: Add a missing blank for Windows

2007-11-27 21:22  moneta

	* [r21084] test/stressMathCore.cxx: fix a warning on Solaris

2007-11-27 21:16  wouter

	* [r21083] roofitcore/Module.mk: o Module.mk
	  
	  - Forgotten last commit

2007-11-27 21:05  brun

	* [r21082] test/Makefile: stressTMVA requires lMinuit, lMLP,
	  lTreePlayer to link

2007-11-27 20:59  wouter

	* [r21081] roofitcore/inc/LinkDef1.h, roofitcore/inc/LinkDef2.h,
	  roofitcore/inc/RooAbsAnaConvPdf.h, roofitcore/inc/RooAbsArg.h,
	  roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooAbsGoodnessOfFit.h,
	  roofitcore/inc/RooAbsOptGoodnessOfFit.h,
	  roofitcore/inc/RooAbsOptTestStatistic.h,
	  roofitcore/inc/RooAbsTestStatistic.h,
	  roofitcore/inc/RooChi2Var.h, roofitcore/inc/RooFormulaVar.h,
	  roofitcore/inc/RooGraphEdge.h, roofitcore/inc/RooGraphNode.h,
	  roofitcore/inc/RooGraphSpring.h, roofitcore/inc/RooHtml.h,
	  roofitcore/inc/RooNLLVar.h, roofitcore/inc/RooRealMPFE.h,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsOptTestStatistic.cxx,
	  roofitcore/src/RooAbsTestStatistic.cxx,
	  roofitcore/src/RooChi2Var.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooNLLVar.cxx: o RooErrorVar
	  
	  - Fix compiler warning on linux/gcc
	  
	  
	  o RooFormulaVar, RooAbsAnaConvPdf
	  
	  - Fix for persistence
	  
	  
	  o RooGraphSpring, RooGraphEdge, RooGraphNode
	  
	  - Retired, since superceded by new vizGraphTree() functionality
	  
	  
	  o RooHtml
	  
	  - Retired since no longer needed
	  
	  
	  o RooAbsOptGoodnessOfFit, RooAbsGoodnesOfFit
	  
	  - Renamed to RooAbsOptTestStatistic, RooAbsTestStatistic to
	  better
	  cover actual functionality
	  
	  
	  o RooChi2Var, RooNLLVar
	  
	  - Follow base class name change
	  
	  
	  o RooRealMPFE, RooAbsData
	  
	  - Follow friend class name change
	  
	  
	  o Module.mk, inc/LinkDef[12].h
	  
	  - Remove references to deleted classes, follow name changes

2007-11-27 20:28  brun

	* [r21080] test/Makefile, test/stressTMVA.cxx: From Joerg Stelzer:
	  Add a test suite for TMVA.

2007-11-27 20:08  brun

	* [r21079] tmva/inc/BinarySearchTree.h,
	  tmva/inc/BinarySearchTreeNode.h, tmva/inc/Config.h,
	  tmva/inc/Configurable.h, tmva/inc/DecisionTreeNode.h,
	  tmva/inc/Event.h, tmva/inc/Factory.h, tmva/inc/MethodCuts.h,
	  tmva/inc/MethodPDERS.h, tmva/inc/MsgLogger.h, tmva/inc/Node.h,
	  tmva/inc/NodekNN.h, tmva/inc/Ranking.h,
	  tmva/inc/TActivationIdentity.h, tmva/src/BinarySearchTree.cxx,
	  tmva/src/BinarySearchTreeNode.cxx, tmva/src/BinaryTree.cxx,
	  tmva/src/Configurable.cxx, tmva/src/DataSet.cxx,
	  tmva/src/DecisionTreeNode.cxx, tmva/src/Factory.cxx,
	  tmva/src/GeneticAlgorithm.cxx, tmva/src/MethodBase.cxx,
	  tmva/src/MethodBayesClassifier.cxx, tmva/src/MethodCommittee.cxx,
	  tmva/src/MethodCuts.cxx, tmva/src/MethodKNN.cxx,
	  tmva/src/MethodLikelihood.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/MethodSVM.cxx, tmva/src/MethodVariable.cxx,
	  tmva/src/ModulekNN.cxx, tmva/src/MsgLogger.cxx,
	  tmva/src/Node.cxx, tmva/src/PDF.cxx, tmva/src/Ranking.cxx,
	  tmva/src/Reader.cxx, tmva/src/RuleEnsemble.cxx,
	  tmva/src/TSpline1.cxx, tmva/src/TSpline2.cxx, tmva/src/Timer.cxx,
	  tmva/src/Tools.cxx, tmva/src/VariablePCATransform.cxx,
	  tmva/src/VariableTransformBase.cxx, tmva/test/TMVAnalysis.C,
	  tmva/test/tmvaglob.C, tmva/test/variables.C: From Joerg Stelzer.
	  New version of TMVA (log file missing unfortunately)

2007-11-27 19:34  brun

	* [r21078] test/guitest.cxx, tutorials/gui/guitest.C: From
	  Bertrand:
	  Add protection against double-click on 'OK' and 'Cancel' buttons
	  in
	  guitest dialog, emitting the CloseWindow() signal twice...

2007-11-27 19:19  matevz

	* [r21077] eve/Module.mk, eve/inc/TEveUtil.h,
	  eve/src/SolarisCCDictHack.h: Undo previous hack for
	  std::exception conflict in dictionary file with solaris cc and
	  attempt a new one: put the exception define into
	  eve/src/SolarisCCDictHack.h and put it just in front of LinkDef.h
	  on the rootcint command line.

2007-11-27 17:58  matevz

	* [r21076] eve/inc/TEveBrowser.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveManager.h, eve/inc/TEvePointSet.h,
	  eve/inc/TEveTrack.h, eve/inc/TEveTrackPropagatorEditor.h,
	  eve/inc/TEveTriangleSetGL.h, eve/src/TEveStraightLineSetGL.cxx,
	  eve/src/TEveTrack.cxx: Fix some coding-rule violations.

2007-11-27 17:45  moneta

	* [r21075] test/TrackMathCore.h, test/TrackMathCoreLinkDef.h,
	  test/TrackMathCoreRflx.xml, test/stressMathCore.cxx: comment
	  un-necessary classes in xml file
	  remove some debug statements in stressMathCore.cxx

2007-11-27 17:32  moneta

	* [r21074] mathcore/test/Makefile, mathcore/test/Track.h,
	  mathcore/test/testVectorIO.cxx, smatrix/test/Makefile: - fix
	  problem in building IO tests
	  - test with LorentzVector<Double32_t,PxPyPzE4D>

2007-11-27 17:16  moneta

	* [r21072] smatrix/test/Makefile, smatrix/test/testIO.cxx: fix dep
	  problem in Makefile. Update testIO to avoid need to generate a
	  libSmatrixRflx

2007-11-27 17:08  moneta

	* [r21071] mathcore/test/Makefile, mathcore/test/TrackDict.xml: fix
	  a wrong commit in xml file and fix dependency on dict library in
	  Makefile

2007-11-27 15:45  moneta

	* [r21070] test/Makefile, test/TrackMathCore.h,
	  test/TrackMathCoreLinkDef.h, test/TrackMathCoreRflx.xml,
	  test/stressMathCore.cxx: - add test of a double 32 and of
	  composite object containing matrices and vectors. test both the
	  double and Double32_t cases using CINT and optionally reflex
	  - update Makefile to generate the CInt and reflex dictionary when
	  the env USE_REFLEX is set. gccxml must be available in the path
	  to use the reflex dictionary
	  (root must be configured with ./configure
	  --with-gccxml=$GCCXML_PATH )
	  - add linkdef and xml needed files

2007-11-27 15:19  moneta

	* [r21068] mathcore/inc/Math/LinkDef_GenVector32.h: add missing
	  dictionaries for vectors of Double32_t

2007-11-27 15:19  brun

	* [r21067] win32gdk/src/TGWin32.cxx: From Bertrand:
	  Fix 'Array bounds read' error reported by purify

2007-11-27 15:15  brun

	* [r21066] test/stressEntryList.cxx: From Anna:
	  There is a new test is stressEntryList to check for this (in the
	  second patch). This test might take some time for large files,
	  but there is no point in running it for small files.

2007-11-27 15:13  brun

	* [r21065] tree/inc/TEntryList.h, tree/src/TChain.cxx,
	  tree/src/TEntryList.cxx, tree/src/TEntryListBlock.cxx: From Anna:
	  fixes an issue with a seg. fault in SetEventList() ==>
	  SetEntryList(), another issue with full entry lists, with correct
	  resetting of "current" indices and with printing of empty entry
	  lists.

2007-11-27 13:49  wouter

	* [r21064] roofitcore/inc/RooMsgService.h,
	  roofitcore/src/Roo1DTable.cxx, roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgSet.cxx, roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCategory.cxx, roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx,
	  roofitcore/src/RooCmdConfig.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooEllipse.cxx,
	  roofitcore/src/RooErrorVar.cxx, roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooFitResult.cxx, roofitcore/src/RooFormula.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenericPdf.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooPolyVar.cxx, roofitcore/src/RooProdPdf.cxx,
	  roofitcore/src/RooProduct.cxx, roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealSumPdf.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx: o Most classes
	  
	  - Bulk migration from cout to RooMsgService
	  
	  
	  o RooSetProxy
	  
	  - Fix compiler warning on Windows
	  
	  
	  o RooSimPdfBuilder
	  
	  - Remove stray debug printouts

2007-11-27 09:56  couet

	* [r21062] test/stressGraphics.cxx: - Fix unused variable (found on
	  Mac).

2007-11-27 09:51  couet

	* [r21061] test/stressGraphics.cxx, test/stressGraphics.ref: - Test
	  the PDF output.
	  - New format for stressGraphics.ref.

2007-11-27 09:48  axel

	* [r21060] cintex/src/ROOTClassEnhancer.cxx: MSVC2003 forgot to
	  implement the stringstream::operator bool, so use good()

2007-11-27 09:45  matevz

	* [r21059] eve/inc/TEveUtil.h: Add workaround for solaris math.h
	  exception clashing with std::exception in dictionary (suggested
	  by Philippe).

2007-11-27 06:45  rdm

	* [r21058] etc/valgrind-root.supp: From Axel:
	  some additional valgrind suppressions.

2007-11-26 21:48  axel

	* [r21057] cintex/src/CINTCommentBuffer.h,
	  cintex/src/CINTVariableBuilder.cxx: Factor our CommentBuffer
	  Local typedef longlong (Reflex/Kernel.h's is now gone)

2007-11-26 19:48  matevz

	* [r21056] eve/inc/TEveTrans.h, eve/src/TEveBrowser.cxx,
	  eve/src/TEveManager.cxx, eve/src/TEveTrans.cxx: TEveTrans: coding
	  conventions. Fix warning by solaris cc.
	  
	  TEveBrowser: add missing ctor argument to TRootBrowser during
	  base
	  initialization (solaris cc).
	  
	  TEveManager: fix names of Eve components garbled by automatic
	  string
	  conversion.

2007-11-26 18:06  axel

	* [r21055] cintex/src/ROOTClassEnhancer.cxx: Add dictionary
	  property ClassVersion. In selection.xml write:
	  <class name="FOO" ClassVersion="42"/>
	  to set the class version of FOO's TClass object to 42, i.e.
	  TClass::GetClass("FOO")->GetClassVersion()
	  will return 42.

2007-11-26 18:00  matevz

	* [r21054] eve/inc/TEveBoxSet.h, eve/inc/TEveBoxSetGL.h,
	  eve/inc/TEveBrowser.h, eve/inc/TEveChunkManager.h,
	  eve/inc/TEveDigitSet.h, eve/inc/TEveDigitSetEditor.h,
	  eve/inc/TEveElement.h, eve/inc/TEveElementEditor.h,
	  eve/inc/TEveEventManager.h, eve/inc/TEveFrameBox.h,
	  eve/inc/TEveFrameBoxGL.h, eve/inc/TEveGLText.h,
	  eve/inc/TEveGLUtil.h, eve/inc/TEveGValuators.h,
	  eve/inc/TEveGedEditor.h, eve/inc/TEveGeoNode.h,
	  eve/inc/TEveGeoNodeEditor.h, eve/inc/TEveGeoShapeExtract.h,
	  eve/inc/TEveGridStepper.h, eve/inc/TEveGridStepperEditor.h,
	  eve/inc/TEveLine.h, eve/inc/TEveLineEditor.h,
	  eve/inc/TEveLineGL.h, eve/inc/TEveMacro.h, eve/inc/TEveManager.h,
	  eve/inc/TEvePad.h, eve/inc/TEvePointSet.h,
	  eve/inc/TEvePointSetArrayEditor.h,
	  eve/inc/TEvePointSetProjectedGL.h,
	  eve/inc/TEvePolygonSetProjected.h,
	  eve/inc/TEvePolygonSetProjectedEditor.h,
	  eve/inc/TEvePolygonSetProjectedGL.h,
	  eve/inc/TEveProjectionBases.h, eve/inc/TEveProjectionManager.h,
	  eve/inc/TEveProjectionManagerEditor.h,
	  eve/inc/TEveProjectionManagerGL.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveQuadSetGL.h,
	  eve/inc/TEveRGBAPalette.h, eve/inc/TEveRGBAPaletteEditor.h,
	  eve/inc/TEveScene.h, eve/inc/TEveSceneInfo.h,
	  eve/inc/TEveStraightLineSet.h,
	  eve/inc/TEveStraightLineSetEditor.h,
	  eve/inc/TEveStraightLineSetGL.h, eve/inc/TEveTrack.h,
	  eve/inc/TEveTrackEditor.h, eve/inc/TEveTrackGL.h,
	  eve/inc/TEveTrackProjected.h, eve/inc/TEveTrackProjectedGL.h,
	  eve/inc/TEveTrackPropagator.h,
	  eve/inc/TEveTrackPropagatorEditor.h, eve/inc/TEveTrans.h,
	  eve/inc/TEveTransEditor.h, eve/inc/TEveTreeTools.h,
	  eve/inc/TEveTriangleSet.h, eve/inc/TEveTriangleSetEditor.h,
	  eve/inc/TEveTriangleSetGL.h, eve/inc/TEveUtil.h,
	  eve/inc/TEveVSD.h, eve/inc/TEveVSDStructs.h,
	  eve/inc/TEveViewer.h, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveBrowser.cxx,
	  eve/src/TEveChunkManager.cxx, eve/src/TEveDigitSet.cxx,
	  eve/src/TEveDigitSetEditor.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveElementEditor.cxx, eve/src/TEveEventManager.cxx,
	  eve/src/TEveFrameBox.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGLUtil.cxx,
	  eve/src/TEveGValuators.cxx, eve/src/TEveGedEditor.cxx,
	  eve/src/TEveGeoNode.cxx, eve/src/TEveGeoNodeEditor.cxx,
	  eve/src/TEveGeoShapeExtract.cxx, eve/src/TEveGridStepper.cxx,
	  eve/src/TEveGridStepperEditor.cxx, eve/src/TEveLine.cxx,
	  eve/src/TEveLineEditor.cxx, eve/src/TEveLineGL.cxx,
	  eve/src/TEveMacro.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEvePad.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePointSetArrayEditor.cxx,
	  eve/src/TEvePointSetProjectedGL.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjectionBases.cxx,
	  eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveProjectionManagerEditor.cxx,
	  eve/src/TEveProjectionManagerGL.cxx, eve/src/TEveProjections.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveQuadSetGL.cxx,
	  eve/src/TEveRGBAPalette.cxx, eve/src/TEveRGBAPaletteEditor.cxx,
	  eve/src/TEveScene.cxx, eve/src/TEveSceneInfo.cxx,
	  eve/src/TEveStraightLineSet.cxx,
	  eve/src/TEveStraightLineSetEditor.cxx,
	  eve/src/TEveStraightLineSetGL.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackEditor.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrackProjected.cxx, eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx, eve/src/TEveTrans.cxx,
	  eve/src/TEveTransEditor.cxx, eve/src/TEveTreeTools.cxx,
	  eve/src/TEveTriangleSet.cxx, eve/src/TEveTriangleSetEditor.cxx,
	  eve/src/TEveTriangleSetGL.cxx, eve/src/TEveUtil.cxx,
	  eve/src/TEveVSD.cxx, eve/src/TEveVSDStructs.cxx,
	  eve/src/TEveViewer.cxx: When including ROOT header files use ""
	  instead of <>.
	  
	  Replace NULL with 0 in TEveGLText.
	  
	  TEveTrackPropagator: make public data-members protected and
	  provide
	  get/set methods. Second attempt at fixing Solaris cc errors: make
	  Helix and Vertex4d struct declarations public.

2007-11-26 17:54  axel

	* [r21053] reflex/src/Kernel.cxx: Move typedef (u)longlong from
	  Kernel.h to Kernel.cxx; make it local.

2007-11-26 17:54  axel

	* [r21052] reflex/inc/Reflex/Kernel.h: The definition of
	  ROOT::Reflex::longlong is now removed.
	  It is not needed by the Reflex API, and it interfers
	  with user code defining its own longlong, because
	  the dictionaries pull it in via "using namespace ROOT::Reflex".
	  Leave an "#if 0" in there, so it's easier to trace.
	  
	  Only Kernel.cxx needs the typedef.

2007-11-26 17:16  rdm

	* [r21051] build/unix/svninfo.sh: script needs bash.

2007-11-26 17:00  rdm

	* [r21050] base/inc/TSystem.h: workaround bug in gcc's effc++
	  option.

2007-11-26 16:48  matevz

	* [r21049] eve/inc/TEveChunkManager.h, eve/inc/TEveGridStepper.h,
	  eve/inc/TEveTrackPropagator.h, eve/inc/TEveUtil.h,
	  eve/src/TEveGridStepper.cxx, eve/src/TEveGridStepperEditor.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx: Fix errors reported by
	  Solaris cc.

2007-11-26 16:01  matevz

	* [r21048] eve/inc/TEveManager.h, eve/src/TEveManager.cxx,
	  tutorials/eve/lineset_test.C, tutorials/eve/quad_test.C,
	  tutorials/eve/triangleset.C, tutorials/eve/view3ds.C: Add static
	  function TEveManager::Create() and removed old
	  initialization scripts.
	  
	  Fix macros to use this new initialization method.

2007-11-26 15:58  brun

	* [r21047] gui/src/TGFrame.cxx: From Bertrand:
	  Fix 'Conditional jump or move depends on uninitialised value(s)'
	  reported by valgrind on gui in batch mode (sic)

2007-11-26 15:52  rdm

	* [r21046] base/src/TApplication.cxx: print warning in case a
	  macro.C or data.root file specified as argument
	  does not exist. Fixes issue 30632.

2007-11-26 15:51  rdm

	* [r21045] tmva/src/MethodVariable.cxx: fix gcc 4.2 warning.

2007-11-26 14:31  rdm

	* [r21044] Makefile, config/Makefile.depend, eve, eve/Module.mk,
	  eve/inc, eve/inc/LinkDef.h, eve/inc/TEveBoxSet.h,
	  eve/inc/TEveBoxSetGL.h, eve/inc/TEveBrowser.h,
	  eve/inc/TEveChunkManager.h, eve/inc/TEveDigitSet.h,
	  eve/inc/TEveDigitSetEditor.h, eve/inc/TEveElement.h,
	  eve/inc/TEveElementEditor.h, eve/inc/TEveEventManager.h,
	  eve/inc/TEveFrameBox.h, eve/inc/TEveFrameBoxGL.h,
	  eve/inc/TEveGLText.h, eve/inc/TEveGLUtil.h,
	  eve/inc/TEveGValuators.h, eve/inc/TEveGedEditor.h,
	  eve/inc/TEveGeoNode.h, eve/inc/TEveGeoNodeEditor.h,
	  eve/inc/TEveGeoShapeExtract.h, eve/inc/TEveGridStepper.h,
	  eve/inc/TEveGridStepperEditor.h, eve/inc/TEveLine.h,
	  eve/inc/TEveLineEditor.h, eve/inc/TEveLineGL.h,
	  eve/inc/TEveMacro.h, eve/inc/TEveManager.h, eve/inc/TEvePad.h,
	  eve/inc/TEvePointSet.h, eve/inc/TEvePointSetArrayEditor.h,
	  eve/inc/TEvePointSetProjectedGL.h,
	  eve/inc/TEvePolygonSetProjected.h,
	  eve/inc/TEvePolygonSetProjectedEditor.h,
	  eve/inc/TEvePolygonSetProjectedGL.h,
	  eve/inc/TEveProjectionBases.h, eve/inc/TEveProjectionManager.h,
	  eve/inc/TEveProjectionManagerEditor.h,
	  eve/inc/TEveProjectionManagerGL.h, eve/inc/TEveProjections.h,
	  eve/inc/TEveQuadSet.h, eve/inc/TEveQuadSetGL.h,
	  eve/inc/TEveRGBAPalette.h, eve/inc/TEveRGBAPaletteEditor.h,
	  eve/inc/TEveScene.h, eve/inc/TEveSceneInfo.h,
	  eve/inc/TEveStraightLineSet.h,
	  eve/inc/TEveStraightLineSetEditor.h,
	  eve/inc/TEveStraightLineSetGL.h, eve/inc/TEveTrack.h,
	  eve/inc/TEveTrackEditor.h, eve/inc/TEveTrackGL.h,
	  eve/inc/TEveTrackProjected.h, eve/inc/TEveTrackProjectedGL.h,
	  eve/inc/TEveTrackPropagator.h,
	  eve/inc/TEveTrackPropagatorEditor.h, eve/inc/TEveTrans.h,
	  eve/inc/TEveTransEditor.h, eve/inc/TEveTreeTools.h,
	  eve/inc/TEveTriangleSet.h, eve/inc/TEveTriangleSetEditor.h,
	  eve/inc/TEveTriangleSetGL.h, eve/inc/TEveUtil.h,
	  eve/inc/TEveVSD.h, eve/inc/TEveVSDStructs.h,
	  eve/inc/TEveViewer.h, eve/src, eve/src/TEveBoxSet.cxx,
	  eve/src/TEveBoxSetGL.cxx, eve/src/TEveBrowser.cxx,
	  eve/src/TEveChunkManager.cxx, eve/src/TEveDigitSet.cxx,
	  eve/src/TEveDigitSetEditor.cxx, eve/src/TEveElement.cxx,
	  eve/src/TEveElementEditor.cxx, eve/src/TEveEventManager.cxx,
	  eve/src/TEveFrameBox.cxx, eve/src/TEveFrameBoxGL.cxx,
	  eve/src/TEveGLText.cxx, eve/src/TEveGLUtil.cxx,
	  eve/src/TEveGValuators.cxx, eve/src/TEveGedEditor.cxx,
	  eve/src/TEveGeoNode.cxx, eve/src/TEveGeoNodeEditor.cxx,
	  eve/src/TEveGeoShapeExtract.cxx, eve/src/TEveGridStepper.cxx,
	  eve/src/TEveGridStepperEditor.cxx, eve/src/TEveLine.cxx,
	  eve/src/TEveLineEditor.cxx, eve/src/TEveLineGL.cxx,
	  eve/src/TEveMacro.cxx, eve/src/TEveManager.cxx,
	  eve/src/TEvePad.cxx, eve/src/TEvePointSet.cxx,
	  eve/src/TEvePointSetArrayEditor.cxx,
	  eve/src/TEvePointSetProjectedGL.cxx,
	  eve/src/TEvePolygonSetProjected.cxx,
	  eve/src/TEvePolygonSetProjectedEditor.cxx,
	  eve/src/TEvePolygonSetProjectedGL.cxx,
	  eve/src/TEveProjectionBases.cxx,
	  eve/src/TEveProjectionManager.cxx,
	  eve/src/TEveProjectionManagerEditor.cxx,
	  eve/src/TEveProjectionManagerGL.cxx, eve/src/TEveProjections.cxx,
	  eve/src/TEveQuadSet.cxx, eve/src/TEveQuadSetGL.cxx,
	  eve/src/TEveRGBAPalette.cxx, eve/src/TEveRGBAPaletteEditor.cxx,
	  eve/src/TEveScene.cxx, eve/src/TEveSceneInfo.cxx,
	  eve/src/TEveStraightLineSet.cxx,
	  eve/src/TEveStraightLineSetEditor.cxx,
	  eve/src/TEveStraightLineSetGL.cxx, eve/src/TEveTrack.cxx,
	  eve/src/TEveTrackEditor.cxx, eve/src/TEveTrackGL.cxx,
	  eve/src/TEveTrackProjected.cxx, eve/src/TEveTrackProjectedGL.cxx,
	  eve/src/TEveTrackPropagator.cxx,
	  eve/src/TEveTrackPropagatorEditor.cxx, eve/src/TEveTrans.cxx,
	  eve/src/TEveTransEditor.cxx, eve/src/TEveTreeTools.cxx,
	  eve/src/TEveTriangleSet.cxx, eve/src/TEveTriangleSetEditor.cxx,
	  eve/src/TEveTriangleSetGL.cxx, eve/src/TEveUtil.cxx,
	  eve/src/TEveVSD.cxx, eve/src/TEveVSDStructs.cxx,
	  eve/src/TEveViewer.cxx, fonts/eve_fontdefault.txf,
	  fonts/eve_fonthelvetica34.txf, icons/eve_pointset.xpm,
	  icons/eve_rnr00_t.xpm, icons/eve_rnr01_t.xpm,
	  icons/eve_rnr10_t.xpm, icons/eve_rnr11_t.xpm,
	  icons/eve_scene.xpm, icons/eve_track.xpm, icons/eve_viewer.xpm,
	  tutorials/eve, tutorials/eve/broken_torus.tring,
	  tutorials/eve/lineset_test.C, tutorials/eve/nasashuttle.3ds,
	  tutorials/eve/quad_test.C, tutorials/eve/triangleset.C,
	  tutorials/eve/view3ds.C: from Matevz:
	  add the TEve classes to the svn trunk. Code compiles without
	  warnings on
	  MacOS X, Linux and Windows XP. Tutorials still don't work, as
	  init code
	  is still missing (coming later today).

2007-11-26 14:27  rdm

	* [r21043] test: add .exe to the ignore list.

2007-11-26 13:20  brun

	* [r21042] README/CREDITS: Add Silvia Arcelli for her contribution
	  to THnSparse

2007-11-26 13:19  brun

	* [r21041] hist/inc/THnSparse.h, hist/src/THnSparse.cxx,
	  math/src/TMath.cxx: From Axel and Silvia Arcelli:
	  * implement rebinning, add, multiply, divide (incl. binomial)
	  * fix error calculation, now similar to TH1 etc
	  * allow for non-equal bin sizes: call constructor without bin
	  edges,
	  call SetBinEdges() afterwards

2007-11-26 11:27  moneta

	* [r21040] test/stressMathCore.cxx: fix a problem with upper cases
	  in Smatrix library name

2007-11-26 11:01  moneta

	* [r21039] test/stressMathCore.cxx: add tests of SMatrix and remove
	  the root files after reading

2007-11-25 13:35  rdm

	* [r21035] cont/src/TObjArray.cxx: fix in non-const operator[],
	  where the return value may be used as an lvalue,
	  set fLast and call Changed(). If you want to access array
	  elements and not
	  invalidate the sorting, use At() or UncheckedAt().

2007-11-25 09:16  rdm

	* [r21034] README/INSTALL: typo.

2007-11-25 08:35  rdm

	* [r21033] README/BUILDSYSTEM, README/INSTALL: change references to
	  CVS into Subversion.

2007-11-25 08:09  brun

	* [r21032] base/src/TAttFill.cxx: Document the special case when
	  the style fill area color is set to 0.
	  In this case, all objects fill area color is ignored and a
	  black&white output generated.

2007-11-24 09:56  brun

	* [r21031] math/src/TMath.cxx: Improve TMath::KolmogorovTest (Jason
	  Detwiler)
	  //
	  // Method Improvement by Jason A Detwiler (JADetwiler@lbl.gov)
	  // -----------------------------------------------------------
	  // The nuts-and-bolts of the TMath::KolmogorovTest() algorithm is
	  a for-loop
	  // over the two sorted arrays a and b representing empirical
	  distribution
	  // functions. The for-loop handles 3 cases: when the next points
	  to be
	  // evaluated satisfy a>b, a<b, or a=b:
	  //
	  // for (Int_t i=0;i<na+nb;i++) {
	  // if (a[ia-1] < b[ib-1]) {
	  // rdiff -= sa;
	  // ia++;
	  // if (ia > na) {ok = kTRUE; break;}
	  // } else if (a[ia-1] > b[ib-1]) {
	  // rdiff += sb;
	  // ib++;
	  // if (ib > nb) {ok = kTRUE; break;}
	  // } else {
	  // rdiff += sb - sa;
	  // ia++;
	  // ib++;
	  // if (ia > na) {ok = kTRUE; break;}
	  // if (ib > nb) {ok = kTRUE; break;}
	  // }
	  // rdmax = TMath::Max(rdmax,TMath::Abs(rdiff));
	  // }
	  //
	  // For the last case, a=b, the algorithm advances each array by
	  one index in an
	  // attempt to move through the equality. However, this is
	  incorrect when one or
	  // the other of a or b (or both) have a repeated value, call it
	  x. For the KS
	  // statistic to be computed properly, rdiff needs to be
	  calculated after all of
	  // the a and b at x have been tallied (this is due to the
	  definition of the
	  // empirical distribution function; another way to convince
	  yourself that the
	  // old CERNLIB method is wrong is that it implies that the
	  function defined as the
	  // difference between a and b is multi-valued at x -- besides
	  being ugly, this
	  // would invalidate Kolmogorov's theorem).
	  //
	  // The solution is to just add while-loops into the equality-case
	  handling to
	  // perform the tally:
	  //
	  // } else {
	  // double x = a[ia-1];
	  // while(a[ia-1] == x && ia <= na) {
	  // rdiff -= sa;
	  // ia++;
	  // }
	  // while(b[ib-1] == x && ib <= nb) {
	  // rdiff += sb;
	  // ib++;
	  // }
	  // if (ia > na) {ok = kTRUE; break;}
	  // if (ib > nb) {ok = kTRUE; break;}
	  // }

2007-11-23 11:43  wouter

	* [r21025] roofitcore/src/RooSimPdfBuilder.cxx: o RooSimPdfBuilder
	  
	  - Back out fix strtok_r problem by Matthew Langston, it doesn't
	  work OK.
	  Instead insert implementation of strtok_r if _WIN32 is defined.

2007-11-23 11:37  brun

	* [r21024] test/stressGeometry.cxx: Relax condition on difference
	  in number of steps

2007-11-23 11:15  rdm

	* [r21023] test/Makefile: if exists use ../MyConfig.mk to customize
	  build.

2007-11-23 10:46  rdm

	* [r21022] etc/valgrind-root.supp: From Axel:
	  valgrind suppression file for ROOT. To be used like:
	  valgrind --suppressions=$ROOTSYS/etc/valgrind-root.supp ...

2007-11-23 09:50  moneta

	* [r21021] test/Makefile, test/stressMathCore.cxx: - add
	  stressMathcore with tests for:
	  
	  - statistical functions (pdf and cdf) checking that numerical
	  integral of pdf = cdf
	  - all types of GenVectors (2,3, and 4D) including I/O

2007-11-23 09:15  brun

	* [r21016] geom/src/TGeoPgon.cxx: From Andrei:
	  fix for the problem in TGeoPgon that was not a mis-initialization
	  but it was algorithmic, due to the comparison of the (ideally)
	  same number computed in 2 different ways.

2007-11-23 08:07  ganis

	* [r21015] tutorials/proof/runProof.C: Do not define the unused
	  variable refloc (defined and used by getProof.C)

2007-11-22 23:09  ganis

	* [r21012] test/stressProof.cxx, tutorials/proof/getProof.C: Fix
	  problem on MAC; improve argument parsing

2007-11-22 21:45  rdm

	* [r21008] config/root-config.in, configure: the _REENTRANT flag
	  was not correctly set on Mac OS X, hence the
	  global mutexes were not active.

2007-11-22 21:44  wouter

	* [r21007] roofitcore/inc/RooAbsArg.h, roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAbsReal.h,
	  roofitcore/inc/RooAbsRealLValue.h, roofitcore/inc/RooChi2Var.h,
	  roofitcore/inc/RooCmdArg.h, roofitcore/inc/RooCmdConfig.h,
	  roofitcore/inc/RooGlobalFunc.h, roofitcore/inc/RooHistError.h,
	  roofitcore/inc/RooMCStudy.h, roofitcore/inc/RooMath.h,
	  roofitcore/inc/RooMsgService.h, roofitcore/inc/RooNLLVar.h,
	  roofitcore/inc/RooNameReg.h, roofitcore/inc/RooNumber.h,
	  roofitcore/inc/RooRealVar.h, roofitcore/inc/RooTreeData.h,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsPdf.cxx,
	  roofitcore/src/RooAbsReal.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMsgService.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNumber.cxx, roofitcore/src/RooRealVar.cxx: o
	  RooRealVar, RooAbsRealLValue, RooMCStudy, RooChi2Var, RooAbsData,
	  RooHistError, RooTreeData, RooAbsPdf, RooAbsArg, RooGlobalFunc,
	  RooCmdConfig, RooMath, RooNLLVar, RooAbsReal, RooNumber,
	  RooMsgService,
	  RooNameReg
	  
	  - Changes references to RooCmdArg::none to RooCmdArg::none()
	  
	  - Un-inline all static functions references static data members
	  
	  
	  o RooCmdArg
	  
	  - Rename static RooCmdArg none to _none and make protected. Add
	  public accessor function none()

2007-11-22 21:38  brun

	* [r21006] test/Makefile: Proof is not an optional package.

2007-11-22 21:29  brun

	* [r21005] test/Makefile: From Bertrand,
	  Do not build tragets line stressProof and stressRoofit if Proof
	  and RooFit have not been selected in configure.

2007-11-22 21:02  wouter

	* [r21004] roofitcore/inc/RooFitResult.h: o RooFitResult
	  
	  - Relax parameter comparison tolerance in isIdentical() from 1e-6
	  to 5e-5

2007-11-22 20:59  brun

	* [r21003] minuit/src/TMinuit.cxx: From Eddy:
	  In the default TMinuit constructor, preset fFCN=0

2007-11-22 20:40  wouter

	* [r21002] roofitcore/inc/RooTrace.h, roofitcore/src/RooTrace.cxx:
	  o RooTrace
	  
	  - Remove inlining of static control function as this appears
	  to give linking problems under Windows

2007-11-22 20:35  brun

	* [r21001] test/stressRooFit.cxx: Fix a compilation error on
	  Solaris.

2007-11-22 20:14  wouter

	* [r21000] roofitcore/inc/RooFitResult.h,
	  roofitcore/src/RooFitResult.cxx: o RooFitResult
	  
	  - Add seperate tolerance parameter in isIdentical() for
	  correlation
	  comparisons, with a default of 1e-4

2007-11-22 18:25  ganis

	* [r20999] proof/src/TProof.cxx, test/Makefile,
	  test/stressProof.cxx, tutorials/proof/ProofSimple.C,
	  tutorials/proof/ProofSimple.h: - First version of
	  'stressProof.cxx' and related changes in the test/Makefile
	  - Add missing protection in TProof to avoid starting the dialog
	  when in batch mode
	  - Add proper default initialization and destruction in
	  tutorials/proof/ProofSimple.C,.h

2007-11-22 17:03  brun

	* [r20996] test/Makefile: Fix for Windows

2007-11-22 17:02  rdm

	* [r20995] proofd/src/XrdProofWorker.cxx,
	  rpdutils/src/rpdutils.cxx: fix some gcc 4.2 warning.

2007-11-22 16:42  brun

	* [r20994] test/Makefile.win32: Add stressRooFit

2007-11-22 16:37  brun

	* [r20993] test/Makefile, test/stressRooFit.cxx: Add new stress
	  suite for RooFit (by Woter Verkerke)
	  Modify Makefile to build stressRooFit

2007-11-22 15:43  rdm

	* [r20992] tutorials/io/testMergeCont.C: set eol-style.

2007-11-22 15:30  couet

	* [r20991] test/stressGraphics.cxx: - On 64 bits linux machine
	  (lxplus) when stresssGraphics was ran une CINT,
	  valgrind showed many unitialized variables. This was due to
	  reasons:
	  * the Form() method (it seems to overwite memory ...).
	  * allocation of char arrays.
	  stressgraphics.cxx has been modified to work around these two
	  problems.
	  In compiled mode stressGraphics ran normally.

2007-11-22 15:24  couet

	* [r20990] test/stressGraphics.ref: - New version

2007-11-22 15:20  rdm

	* [r20989] tutorials/io/testMergeCont.C: From Andrei:
	  container merge test.

2007-11-22 14:54  wouter

	* [r20988] roofitcore/Module.mk, roofitcore/inc/LinkDef3.h,
	  roofitcore/inc/Roo1DTable.h, roofitcore/inc/RooAbsAnaConvPdf.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAddModel.h,
	  roofitcore/inc/RooArgSet.h, roofitcore/inc/RooConvCoefVar.h,
	  roofitcore/inc/RooCurve.h, roofitcore/inc/RooFitResult.h,
	  roofitcore/inc/RooGlobalFunc.h, roofitcore/inc/RooHist.h,
	  roofitcore/inc/RooMath.h, roofitcore/inc/RooMinuit.h,
	  roofitcore/inc/RooMsgService.h, roofitcore/inc/RooNameReg.h,
	  roofitcore/inc/RooNumIntConfig.h,
	  roofitcore/inc/RooNumIntFactory.h,
	  roofitcore/inc/RooObjCacheManager.h, roofitcore/inc/RooPlot.h,
	  roofitcore/inc/RooProdPdf.h, roofitcore/inc/RooProjectedPdf.h,
	  roofitcore/inc/RooRealConstant.h, roofitcore/inc/RooRealVar.h,
	  roofitcore/inc/RooRealVarSharedProperties.h,
	  roofitcore/inc/RooResolutionModel.h,
	  roofitcore/inc/RooSentinel.h, roofitcore/inc/RooSimPdfBuilder.h,
	  roofitcore/inc/RooTable.h, roofitcore/src/Roo1DTable.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooClassFactory.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGlobalFunc.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooPlot.cxx, roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSentinel.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx, roofitcore/src/RooTrace.cxx,
	  roofitcore/src/RooTreeData.cxx, roofitcore/src/RooWorkspace.cxx,
	  roofitcore/test, roofitcore/test/Makefile,
	  roofitcore/test/Makefile.arch, roofitcore/test/TestBasic1.cxx,
	  roofitcore/test/TestBasic10.cxx, roofitcore/test/TestBasic11.cxx,
	  roofitcore/test/TestBasic12.cxx, roofitcore/test/TestBasic13.cxx,
	  roofitcore/test/TestBasic14.cxx, roofitcore/test/TestBasic15.cxx,
	  roofitcore/test/TestBasic16.cxx, roofitcore/test/TestBasic17.cxx,
	  roofitcore/test/TestBasic18.cxx, roofitcore/test/TestBasic19.cxx,
	  roofitcore/test/TestBasic2.cxx, roofitcore/test/TestBasic20.cxx,
	  roofitcore/test/TestBasic21.cxx, roofitcore/test/TestBasic22.cxx,
	  roofitcore/test/TestBasic3.cxx, roofitcore/test/TestBasic4.cxx,
	  roofitcore/test/TestBasic5.cxx, roofitcore/test/TestBasic6.cxx,
	  roofitcore/test/TestBasic7.cxx, roofitcore/test/TestBasic8.cxx,
	  roofitcore/test/TestBasic9.cxx, roofitcore/test/stressRooFit.cxx:
	  ** Bringing trunk up-to-date w.r.t recent changes in
	  branches/dev/roofit branch **
	  
	  Aggregated messages from branch commits follow
	  
	  --- Date: Fri Oct 19 20:35:30 2007 New Revision: 20422 ---
	  
	  o RooAbsArg
	  
	  - Add debug level print statement in findConstantNodes()
	  
	  o RooAbsAnaConvPdf
	  
	  - Do not expose cached RooCoefVars to constant term finding
	  process.
	  
	  
	  
	  --- Date: Fri Oct 19 21:03:40 2007 New Revision: 20423 ---
	  
	  o RooPlot
	  
	  - Add forwarding function for all revent Set*() methods of TH1
	  
	  
	  
	  --- Date: Fri Oct 19 21:48:40 2007 New Revision: 20424 ---
	  
	  o RooAbsAnaConvPdf
	  
	  - Back out special handling of exposure of cached RooCoefVars
	  to constant term finding process.
	  
	  
	  o RooObjCacheManager
	  
	  - Do not perform constant term finding on cache contents
	  if cache manager is configured to perform clearOnRedirect
	  for server redirects.
	  
	  
	  
	  --- Date: Wed Oct 31 23:36:10 2007 New Revision: 20587 ---
	  
	  o RooAbsRealLValue
	  
	  - Remove stray debug print statements
	  
	  
	  o RooAddPdf
	  
	  - Add new default ctor to fix persistence introduced by
	  new cache management scheme
	  
	  - Add forgotten initializer to regular ctor
	  
	  
	  o RooAbsCachedPdf
	  
	  - Add formal server-link dependency on cache parameters to
	  RooHistPdf cache representation so that the constant term
	  optimizer can make the correct decision
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooObjCacheManager
	  
	  - Add debug message level information
	  
	  - Make _optCacheObservables a transient data member and
	  initialize
	  it in the default ctor.
	  
	  
	  o RooAbsPdf, RooProjectedPdf
	  
	  - Add new default ctor to fix persistence introduced by
	  new cache management scheme
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooAbsArg
	  
	  - Add methods graphVizTree() that produce input files
	  for AT&Ts graphViz to make graphical representation
	  of object tree. (To make actual graphics run 'dot -Tps -o
	  graph.ps %s'
	  where %s is argument passed to graphVizTree().
	  
	  o RooSetProxy
	  
	  - Remove stray debug print statements
	  
	  
	  o RooSimultaneous
	  
	  - Initialize forgotten data member in all ctors
	  
	  
	  o RooProdPdf, RooAbsAnaConvPdf
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooSuperCategory
	  
	  - Make contained iterator a transient data member
	  and initialize it in the default ctor.
	  
	  
	  o RooCacheManager
	  
	  - Add explicit separate default ctor.
	  
	  
	  o RooAddModel
	  
	  - Completely new implementation, based on existing RooAddPdf.
	  RooResolutionModel functionality (convolution(),basisCode())
	  taken from original RooAddModel. Reimplement integration strategy
	  with caching of integral objects, rather than implementing
	  only common analytical component
	  
	  o RooAbsAnaConvPdf,RooResolutionModel,RooAbsPdf
	  
	  - Remove special hook function that were required for functioning
	  of original RooAddModel
	  
	  o RooObjCacheManager
	  
	  - Keep all _optCacheObservables versions created alive in
	  separate owned list
	  and only delete at end in dtor to avoid dangling pointer in
	  complex
	  optimizations
	  
	  o RooAbsArg
	  
	  - In optimizeCacheMode() ignore nodes that already have been
	  const optimized.
	  Although const optimization normally happens first, late cache
	  optimization
	  that happen upon late creation of objects can take place after
	  const optimization.
	  
	  
	  
	  --- Date: Tue Nov 13 12:04:55 2007 New Revision: 20774 ---
	  
	  o RooAddModel
	  
	  - Completely new implementation, based on existing RooAddPdf.
	  RooResolutionModel functionality (convolution(),basisCode())
	  taken from original RooAddModel. Reimplement integration strategy
	  with caching of integral objects, rather than implementing
	  only common analytical component
	  
	  o RooAbsAnaConvPdf,RooResolutionModel,RooAbsPdf
	  
	  - Remove special hook function that were required for functioning
	  of original RooAddModel
	  
	  o RooObjCacheManager
	  
	  - Keep all _optCacheObservables versions created alive in
	  separate owned list
	  and only delete at end in dtor to avoid dangling pointer in
	  complex
	  optimizations
	  
	  o RooAbsArg
	  
	  - In optimizeCacheMode() ignore nodes that already have been
	  const optimized.
	  Although const optimization normally happens first, late cache
	  optimization
	  that happen upon late creation of objects can take place after
	  const optimization.
	  
	  o RooMsgService
	  
	  - Some restructuring to speed up code.
	  
	  - Change topic naming from string to enum.
	  
	  - Change debug-level print macros to take inline pre-decision
	  based on static RooMsgService boolean that indicates if any debug
	  stream is active. Also extend this speedup to doLogD() macro.
	  
	  - Allow multiple Topic specifications in a single stream using
	  bit-wise
	  or to reduce default number of streams from 6 to 2.
	  
	  - Terminate matching logic to streams early for 'universal'
	  streams
	  for which the logic does not depend on object properties.
	  
	  
	  o RooGlobalFunc
	  
	  - Change Topic() argument from RooMsgService::MsgTopic to Int_t
	  to allow specification
	  of multiple topics
	  
	  
	  o RooDataHist, RooMsgService, RooGenContext, RooAddModel,
	  RooFFTConvPdf
	  RooAbsAnaConvPdf, RooAbsReal, RooAddPdf, RooAbsOptGoodnessOfFit,
	  RooAbsCachedPdf
	  RooProfileLL, RooObjCacheManager, RooAbsArg, RooAbsPdf,
	  RooRealIntegral
	  RooAddGenContext, RooProdGenContext, RooConvGenContext,
	  RooProjectedPdf, RooClassFactory
	  RooWorkspace, RooTreeData
	  
	  - Follow change in RooMsgService interface
	  
	  
	  
	  --- Date: Tue Nov 13 13:13:05 2007 New Revision: 20776 ---
	  
	  
	  o RooMCStudy
	  
	  - Initialize _genParams in 2nd ctor (fixes savannah #31139)
	  
	  
	  
	  --- Date: Fri Nov 16 21:24:52 2007 New Revision: 20853 ---
	  
	  
	  o RooProdPdf, RooAddition
	  
	  - Fix memory leaks found with valgrind
	  
	  
	  o RooMsgService, RooRealConstant, RooNumIntFactory, RooMinuit,
	  RooNameReg, RooNumIntConfig, RooArgSet
	  
	  - Add cleanup() function to delete singleton at exit
	  
	  
	  o RooMinuit
	  
	  - Initialize _warnLevel data member (valgrind)
	  
	  
	  o RooAddModel
	  
	  - Disable coefficient projections in convolution mode
	  (savannah #31302)
	  
	  
	  o RooTrace
	  
	  - Remove messages about objects already deleted when not in
	  verbose mode
	  
	  
	  o RooSentinel
	  
	  - New class handling cleanup at exit
	  
	  
	  --- Date: Mon Nov 19 16:41:52 2007 New Revision: 20901 ---
	  
	  
	  o Makefile
	  
	  - Makefile to build stressRooFit
	  
	  
	  o Makefile.arch
	  
	  - Stolen from $ROOTSYS/test
	  
	  
	  o stressRooFit
	  
	  - Driver framework, base class of unit tests and
	  automatic plot, curve, fit result comparison tools
	  that unit tests can request
	  
	  
	  o TestBasic1
	  
	  - Basic test running fitting, generation and plotting on Gaussian
	  p.d.f
	  
	  
	  
	  --- Date: Wed Nov 21 17:58:28 2007 New Revision: 20965 ---
	  
	  o stressRooFit
	  
	  - Add regression test support for Double_t values
	  and RooTables
	  
	  - In post-test analysis mode, analyze count of
	  (silent) ERROR messages and fail test if they
	  occcur
	  
	  - Eliminate memory leaks in testing framework
	  
	  - Add arguments '-n <N>' to run single test and
	  argument '-mc' to run suite in memory checking
	  mode in which case no references files are opened
	  to avoid ROOT I/O related noise in valgrind leak reports.
	  
	  - Link in 21 new tests
	  
	  
	  o TestBasic2 ... TestBasic22
	  
	  - New stress testing modules. Modules 4,6,7,11,21 and 22
	  are empty for now. All others are fully functional.
	  
	  
	  
	  --- Date: Thu Nov 22 14:32:14 2007 New Revision: 20980 ---
	  
	  
	  o test/TestBasic15, test/TestBasic16, test/TestBasic20
	  
	  - Fix memory leak in test code itself
	  
	  
	  o test/stressRooFit
	  
	  - Activate RooFit internal memory tracing when run in memory
	  check mode
	  
	  
	  o RooDataHist
	  
	  - Fix memory leak
	  
	  
	  o RooMsgService
	  
	  - Add Tracing subject
	  
	  - Fix bug in printing of multi-subject streams
	  
	  - Keep track of total number of (silent) ERROR messages
	  
	  - Add method to access contents of stream configurations
	  
	  
	  o RooIntegrator1D, RooIntegrator2D, RooSegmentedIntegrator1D,
	  RooSegmentedIntegrator2D,
	  RooGaussKronrodIntegrator1D, RooAdaptiveGaussKronronIntegrator1D,
	  RooMCIntegrator, RooGrid
	  
	  - Fix default ctor to initialize all values used in dtor
	  
	  
	  o RooAddModel
	  
	  - Add optional boolean to ctor to take ownership of components.
	  Used
	  in RooAddModel::convolution()
	  
	  - Fix memory leak in convolution()
	  
	  
	  o RooFitResult
	  
	  - Migrations to RooMsgService
	  
	  - Add isIdentical() method for use in regression testing
	  
	  
	  o RooCurve, RooHist
	  
	  - Add isIdentical() method for use in regression testing
	  
	  
	  o Roo1DTable
	  
	  - Make persistable
	  
	  - Add isIdentical() method for use in regression testing
	  
	  
	  o RooMath
	  
	  - Migrations to RooMsgService
	  
	  - Register static memory allocation of CERF lookup table in
	  RooSentinel
	  for cleanup in atexit().
	  
	  
	  o RooAbsReal
	  
	  - Migrations to RooMsgService
	  
	  - Fix invalid read access due to wrong destructor order in
	  plotAsymOn()
	  
	  - Fix memory leak in plotOn()
	  
	  
	  o RooAbsCollection
	  
	  - Restrict creation of hash tables to deep-copy operations
	  or shallow copy operations of lists with >30 elements
	  
	  
	  o RooAddPdf, RooRealVar, RooDataProjBinding, RooFormulaVar,
	  RooTreeData
	  
	  - Migrations to RooMsgService
	  
	  
	  o RooAbsOptGoodnessOfFit
	  
	  - Fix memory leak
	  
	  
	  o RooAbsPdf
	  
	  - Migrations to RooMsgService
	  
	  - Fix memory leak in fitTo()
	  
	  
	  o RooNumIntFactory
	  
	  - Delete all owned prototype integrators in dtor
	  
	  
	  o RooBinning
	  
	  - Fix ctors to always initialize _xlo and _xhi
	  
	  
	  o RooResolutioModel
	  
	  - Register static identity RooFormulaVar with RooSentinel
	  for cleanup in atexit()
	  
	  
	  o RooSimPdfBuilder
	  
	  - Migrations to RooMsgService
	  
	  - Delete all fitCats and RooSimultaneous instances created
	  by builder in dtor
	  
	  - Return non-const top-level p.d.f. from buildPdf()
	  
	  
	  o RooLinkedList
	  
	  - First delete hash tables, then clear list instead of
	  reverse order to avoid invalid read problems with TList
	  
	  
	  o RooMinuit
	  
	  - Migrations to RooMsgService
	  
	  - Initialize MINUIT print levels to -1 if RooMsgService
	  is operating in silent mode
	  
	  - Trim initial error on parameters if param +/- 2*errors
	  is out of param range
	  
	  
	  o RooSentinel
	  
	  - Add cleanup hooks from RooMath and RooResolutionModel
	  
	  
	  o RooSimultaneous
	  
	  - Fix memory leak
	  
	  - Migrations to RooMsgService
	  
	  
	  o RooProjectedPdf
	  
	  - Implement RooProjectedPdf::CacheElem dtor
	  
	  
	  o RooTable
	  
	  - Add pure virtual isIdentical() interface

2007-11-22 14:47  ganis

	* [r20987] proof/inc/TProofLog.h: Add getters for the list of log
	  elements and the element TMacro

2007-11-22 14:42  rdm

	* [r20986] cont/inc/TSeqCollection.h, cont/src/TSeqCollection.cxx:
	  From Andrei:
	  implements Merge() method.

2007-11-22 14:35  rdm

	* [r20985] alien/inc/TAlienJobStatusList.h,
	  krb5auth/src/TKSocket.cxx, table/src/TTableMap.cxx: fix gcc 4.2
	  compilation warnings.

2007-11-22 14:29  rdm

	* [r20984] pyroot/src/PyROOT.h: fix Py_ssize_t and %u print format
	  warnings.

2007-11-22 14:02  antcheva

	* [r20983] test/guitest.cxx: Do not reuse the same cascaded menu on
	  different level.

2007-11-22 13:48  antcheva

	* [r20982] gui/src/TGButton.cxx, gui/src/TGNumberEntry.cxx,
	  gui/src/TGTextEntry.cxx: Handle multi-line tooltips in the
	  generated code.

2007-11-22 13:47  antcheva

	* [r20981] tutorials/gui/guitest.C: Do not reuse the same cascaded
	  menu on different level.

2007-11-22 11:36  axel

	* [r20979] cint/lib/dll_stl/str.h, cint/lib/prec_stl/string,
	  cint/src/fproto.h, cint/src/v6_func.cxx, cint/src/v6_newlink.cxx,
	  cint/src/v6_parse.cxx, cint/src/v6_pcode.cxx,
	  cint/src/v6_scrupto.cxx, cint/src/v6_typedef.cxx,
	  cint/src/v6_value.h, cint/src/v6_var.cxx, cint/stl/algobase.h:
	  From Philippe, Paul, Fons, Christian Holm, and me:
	  CINT v5-16-28 (actually: up to r2026)
	  * - support MacOSX 10.5 + macos64, rename macgcc to macos.
	  * - from Christian Holm Christensen:
	  * new MIPS and HPPA linux architectures supported
	  * - support MSVC2008
	  * - fix several problems discovered in CINT's test suite and with
	  valgrind
	  * - fix autoloading of templated classes with typedefs as
	  template argument
	  * - Add dictionary for std::string::(const_)reverse_iterator and
	  * std::string::iterator's operator ==, != also for GCC > 3.

2007-11-22 09:27  brun

	* [r20978] win32gdk/src/TGWin32.cxx: From Bertrand:
	  - Make sure event->fWindow is always set

2007-11-22 09:13  brun

	* [r20977] hist/inc/TH1.h, hist/src/TH1.cxx, main/src/hadd.cxx: Add
	  support for "average/efficiency" histograms in TH1::Add
	  // SPECIAL CASE (Average/Efficiency histograms)
	  // For histograms representing averages or efficiencies, one
	  should compute the average
	  // of the two histograms and not the sum. One can mark a
	  histogram to be an average
	  // histogram by setting its bit kIsAverage with
	  // myhist.SetBit(TH1::kIsAverage);
	  // Note that the two histograms must have their kIsAverage bit
	  set
	  
	  When the utility hadd is used, histograms with teh kIsAverage bit
	  set are averaged and not summed.

2007-11-22 09:11  brun

	* [r20976] gdml/src/TGDMLParse.cxx: Fix coding conventions

2007-11-22 08:59  moneta

	* [r20975] math/src/TMath.cxx: update documentation for
	  TMath::Gamma according to https://savannah.cern.ch/bugs/?31513

2007-11-22 07:29  brun

	* [r20974] asimage/src/TASImage.cxx: From Valeriy:
	  - fix a small mem.leak reported by purify

2007-11-21 22:27  wlav

	* [r20971] pyroot/inc/TPython.h: added static to declarations

2007-11-21 18:11  axel

	* [r20969] reflex/python/genreflex/gendict.py: From Scott Snyder:
	  Fix a problem with the dictionary generation when the default
	  arguments depends not just on the template name, but on earlier
	  template arguments:
	  ---------------------------------------------------------
	  #include "Reflex/Builder/DictSelection.h"
	  
	  template <class T>
	  class Default {};
	  
	  namespace ROOT { namespace Reflex { namespace Selection {
	  template <class T, class U> struct C;
	  }}}
	  
	  template <class T, class U = Default<T> >
	  class C
	  {
	  typedef typename
	  ROOT::Reflex::Selection::C<T, U>::self self;
	  };
	  
	  
	  namespace ROOT { namespace Reflex { namespace Selection {
	  template <class T, class U>
	  struct C
	  {
	  typedef C<T, U> self;
	  ROOT::Reflex::Selection::TEMPLATE_DEFAULTS<
	  ROOT::Reflex::Selection::NODEFAULT,
	  Default<T> > dum1;
	  ROOT::Reflex::Selection::NO_SELF_AUTOSELECT dum2;
	  };
	  }}}
	  
	  
	  struct foo
	  {
	  C<int> a;
	  C<float> b;
	  };
	  
	  ---------------------------------------------------------
	  <lcgdict>
	  <class name="C<int>"/>
	  <class name="C<float>"/>
	  </lcgdict>
	  ---------------------------------------------------------
	  resulted in the warning:
	  
	  --->> genreflex: WARNING: Class C<float> in selection file
	  selection.xml not generated.

2007-11-21 16:59  antcheva

	* [r20966] gui/src/TGFileBrowser.cxx: From Bertrand:
	  Fixed leaking pictures - seen in gObjectTable->Print().

2007-11-21 16:52  axel

	* [r20964] reflex/python/genreflex/genrootmap.py: For rootmap
	  entries: remove "std::" also for template parameters, otherwise
	  CINT won't identify our rootmap entries

2007-11-21 16:07  axel

	* [r20963] cintex/src/Cintex.cxx: Remove artificial CINT source
	  file used for Reflex->CINT type declaration for now; it has ugly
	  side effects for Reflex dictionaries loaded at start-up.
	  This effectively reverts r19811; I still have to find a solution
	  for late-converted dictionaries and thus leave CINTSourceFile in
	  for now.

2007-11-21 15:48  rdm

	* [r20962] gl/src/TGLHistPainter.cxx, gl/src/TGLParametric.cxx,
	  gl/src/TGLSurfacePainter.cxx, gl/src/TGLTF3Painter.cxx,
	  gl/src/TGLText.cxx: Fix gcc 4.2 compiler warnings.

2007-11-21 15:45  rdm

	* [r20961] proof/src/TProof.cxx, proof/src/TProofChain.cxx,
	  proof/src/TProofServ.cxx: remove compiler warnings.

2007-11-21 15:18  rdm

	* [r20960] tmva/inc/MethodCuts.h, tmva/inc/TActivationIdentity.h,
	  tmva/src/MethodBayesClassifier.cxx, tmva/src/MethodCuts.cxx,
	  tmva/src/Timer.cxx: remove number of gcc 4.2 warnings.

2007-11-21 15:14  antcheva

	* [r20959] gui/src/TGFileBrowser.cxx, gui/src/TRootBrowser.cxx:
	  From Bertrand:
	  Fixed more leaks...

2007-11-21 12:23  antcheva

	* [r20958] gui/src/TGTextEditor.cxx: From Bertrand:
	  Fixed memory leaks discovered with gObjectTable->Print().

2007-11-21 12:16  brun

	* [r20957] test/stressGeometry.cxx: Be ?\127?\127Relax the
	  constraints.

2007-11-21 11:53  brun

	* [r20955] win32gdk/src/TGWin32.cxx: From Bertrand:
	  Fix memory leak in drag & drop + code cleanup

2007-11-21 11:34  brun

	* [r20954] test/stressGeometry.cxx: Increase an internal buffer
	  size for fname

2007-11-21 11:20  brun

	* [r20952] test/stressGeometry.cxx: Use CACHEREAD option for the
	  reference files.

2007-11-21 10:48  brun

	* [r20951] test/stressGeometry.cxx: From Andrei.
	  Use the reference files from the http://root.cern.ch/files web
	  site instead of local copies

2007-11-21 10:42  brun

	* [r20949] win32gdk/src/TGWin32.cxx: From Bertrand:
	  - Revert previous changes (side effects) ++ fixes memory leaks

2007-11-21 10:34  antcheva

	* [r20948] gui/src/TGDNDManager.cxx, gui/src/TRootBrowser.cxx: From
	  Bertrand:
	  Memory leak fixes.

2007-11-21 09:17  brun

	* [r20947] gdml/inc/TGDMLParse.h, gdml/src/TGDMLParse.cxx: From
	  Zoltan Torzsok:
	  Fix for a problem with long expressions lines.

2007-11-21 08:48  brun

	* [r20945] geom/src/TGeoTube.cxx: Fix a bug in TGeoCtub::Safety.
	  The array saf is dimensioned as saf[4],
	  but TMath::LocMax(5,saf) was called instead of
	  TMath::Locmax(4,saf).

2007-11-21 06:12  brun

	* [r20944] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  New version from Sasha that should fix some of the recently
	  reported memory leaks.

2007-11-21 06:09  brun

	* [r20943] test/stressLinear.cxx: From Eddy:
	  Add a new test for TMatrixTSparse

2007-11-21 06:07  brun

	* [r20942] matrix/src/TMatrixTSparse.cxx: From Eddy:
	  Fix a bug in TMatrixTSparse::ExtractRow (symmetric to the bug
	  previously fixed
	  in TMatrixTSparse::InsertRow.

2007-11-21 00:59  wlav

	* [r20941] pyroot/inc/TPython.h, pyroot/src/TPython.cxx: extension
	  of programmer access to PyROOT

2007-11-20 22:26  ganis

	* [r20939] proofplayer/src/TFileMerger.cxx: Use
	  gSystem->TempDirectory() instead of /tmp

2007-11-20 17:39  rdm

	* [r20935] auth/src/TAuthenticate.cxx, base/src/TApplication.cxx,
	  base/src/TROOT.cxx, ged/src/TGedMarkerSelect.cxx,
	  geom/src/TGeoManager.cxx, gpad/src/TColorWheel.cxx,
	  io/src/TMapFile.cxx, meta/src/TCint.cxx, rint/src/TTabCom.cxx,
	  treeviewer/src/TParallelCoordVar.cxx: Remove gcc 4.2 compiler
	  warnings.

2007-11-20 17:11  rdm

	* [r20933] gui/inc/LinkDef3.h, gui/inc/TGCanvas.h,
	  gui/inc/TGDNDManager.h, gui/inc/TGFSContainer.h,
	  gui/inc/TGFrame.h, gui/inc/TGListTree.h, gui/inc/TGTextView.h,
	  gui/inc/TRootCanvas.h, gui/inc/TRootEmbeddedCanvas.h,
	  gui/src/TGCanvas.cxx, gui/src/TGDNDManager.cxx,
	  gui/src/TGFrame.cxx, gui/src/TGListTree.cxx,
	  gui/src/TGTextView.cxx, gui/src/TRootBrowserLite.cxx,
	  gui/src/TRootCanvas.cxx, gui/src/TRootEmbeddedCanvas.cxx: From
	  Bertrand:
	  fix naming conventions, after acronym, next word starts with
	  upper case.

2007-11-20 17:08  rdm

	* [r20932] gui/inc/TRootBrowser.h, gui/inc/TRootBrowserLite.h:
	  white space.

2007-11-20 17:08  rdm

	* [r20931] gui/inc/TGFileBrowser.h, gui/src/TGFileBrowser.cxx:
	  Added missing copyright notice. Still class description block
	  missing.

2007-11-20 15:52  brun

	* [r20930] win32gdk/src/TGWin32.cxx: From Bertrand:
	  Fix minor memory leaks and uninitialized variables

2007-11-20 15:28  antcheva

	* [r20928] gui/src/TGFrame.cxx, gui/src/TGLayout.cxx: Fixed
	  valgrind message: Conditional jump or move depends on
	  uninitialised value(s)

2007-11-20 14:36  antcheva

	* [r20927] tutorials/gui/CPUMeter.C: From Bertrand:
	  Fixed errors reported by valgrind (slc4/ia32) and purify (win32).

2007-11-20 14:10  brun

	* [r20926] proofplayer/src/TFileMerger.cxx: In a file containing
	  TRefs read and save TProcessIDs too

2007-11-20 14:10  brun

	* [r20925] main/src/hadd.cxx: In a file containing TRefs read and
	  save TProcessIDs too

2007-11-20 13:34  antcheva

	* [r20924] gui/src/TGScrollBar.cxx: Fixed errors reported by
	  valgrind.

2007-11-20 13:27  antcheva

	* [r20923] gui/src/TGListTree.cxx: Fixed a warning on solaris.

2007-11-20 12:41  antcheva

	* [r20922] gui/src/TGColorDialog.cxx: Fixed a worning reported by
	  Solaris.

2007-11-20 12:12  brun

	* [r20921] base/src/TColor.cxx: In the TColor destructor delete the
	  static palette when all colors have been deleted.

2007-11-20 12:10  rdm

	* [r20920] etc/proof/utils/circle.sh, etc/proof/utils/proofctl.sh,
	  etc/proof/utils/proofinstall.sh: First version of PROOF install
	  and control scripts. Not yet fully operational.

2007-11-20 11:41  brun

	* [r20919] treeplayer/src/TTreeFormula.cxx: Set offset to prevent a
	  compiler warning

2007-11-20 11:21  brun

	* [r20918] asimage/src/TASImage.cxx: From Valeriy:
	  Fix a mismatch between new/malloc and free/delete

2007-11-20 11:02  brun

	* [r20917] winnt/src/TWinNTSystem.cxx: From Bertrand:
	  - Remove memory leaks reported by Purify

2007-11-20 10:02  antcheva

	* [r20915] gui/src/TGListView.cxx: From Bertrand:
	  Fixed memory leak reported by Purify.

2007-11-20 09:41  couet

	* [r20914] histpainter/src/THistPainter.cxx: - Fix a memory leak in
	  PaintContour (found by Bertrand using "purify").

2007-11-20 09:27  antcheva

	* [r20913] gui/src/TRootEmbeddedCanvas.cxx: From Bertrand:
	  Added handling TKey objects in HandleDNDdrop.

2007-11-20 09:26  antcheva

	* [r20912] gui/src/TRootCanvas.cxx: From Bertrand:
	  Added handling TKey objects in HandleDNDdrop.

2007-11-20 09:26  antcheva

	* [r20911] gui/src/TGFileBrowser.cxx: From Bertrand:
	  Implemented the Drag and drom mechanism on list tree items.

2007-11-20 09:25  antcheva

	* [r20910] gui/src/TGDNDManager.cxx: From Bertrand:
	  Increased the Window search depth.

2007-11-20 09:24  antcheva

	* [r20909] gui/inc/TGListTree.h, gui/src/TGListTree.cxx: From
	  Bertrand:
	  ImplementED drag & drop in TGListTree
	  Simple example of how to use it:
	  // add an item in a list tree
	  TGListTreeItem *itm = fListTree->AddItem(item,fname,pic,pic);
	  // to set this item as a DND source:
	  itm->SetDNDSource(kTRUE);
	  // to set this item as a DND target:
	  itm->SetDNDTarget(kTRUE);
	  
	  Changes:
	  In class TGListTreeItem:
	  New data member Int_t fDNDState with its setters and getters:
	  SetDNDSource(), SetDNDTarget(), IsDNDSource(), IsDNDTarget()
	  
	  In class TGListTree:
	  New data members:
	  TBufferFile *fBuf; // buffer used for Drag and Drop
	  TDNDdata fDNDData; // Drag and Drop data
	  Atom_t *fDNDTypeList; // handles DND types
	  TGListTreeItem *fDropItem; // item on which DND is over
	  New methods:
	  HandleDNDdrop(), HandleDNDposition(), HandleDNDenter()
	  HandleDNDleave(), GetDNDdata()
	  New signal method: DataDropped(TGListTreeItem *item, TDNDdata
	  *data);

2007-11-20 06:18  brun

	* [r20907] matrix/src/TMatrixTSparse.cxx: From Eddy:
	  Fix a bug in TMatrixTSparse<Element>::ExtractRow reported by
	  Jiajie Ling.
	  At line 408 acoln+n was used instead of acoln+nr.

2007-11-19 21:03  pcanal

	* [r20906] mathmore/inc/Math/GSLNLSMinimizer.h: Correct a typo in
	  the name of an overloaded (abstract) member functions

2007-11-19 16:19  antcheva

	* [r20904] gui/src/TGTab.cxx: From Bertrand:
	  Fixed identation.

2007-11-19 16:10  brun

	* [r20903] asimage/src/TASImage.cxx: From Ilka:
	  fix of memory leak reported by valgrind

2007-11-19 14:49  brun

	* [r20900] asimage/src/TASImage.cxx, gui/src/TGCommandPlugin.cxx,
	  gui/src/TGTextEditor.cxx,
	  win32gdk/gdk/src/gdk/win32/gdkgc-win32.c: From Bertrand:
	  - Fixes uninitialized memory reads and memory leaks reported by
	  Rational
	  Purify

2007-11-19 14:42  couet

	* [r20899] test/stressGraphics.ref: - Fixes for Mac Intel

2007-11-19 14:18  brun

	* [r20898] tree/inc/TChain.h: From Leandro:
	  Don't redefine default parameters.

2007-11-19 13:47  couet

	* [r20897] gl/src/TGLHistPainter.cxx: - Fix compilation's warning
	  on Solaris.

2007-11-19 13:43  couet

	* [r20896] graf/src/TGraphPolar.cxx: - Fix compilation's warnings
	  on Solaris.

2007-11-19 13:40  couet

	* [r20895] gl/src/TGLText.cxx: - Fix compilation's warning on
	  Solaris.

2007-11-19 13:37  rdm

	* [r20894] base/src/TROOT.cxx: From Axel:
	  fix small memory leak.

2007-11-19 13:36  couet

	* [r20893] gl/src/TGLTF3Painter.cxx: - Fix compilation's warning on
	  Solaris.

2007-11-19 13:35  couet

	* [r20892] gl/src/TGLSurfacePainter.cxx: - Fix compilation's
	  warning on Solaris.

2007-11-19 13:30  couet

	* [r20891] gl/src/TGLParametric.cxx: - Fix compilation's warning on
	  Solaris.

2007-11-19 13:23  couet

	* [r20890] gpad/src/TColorWheel.cxx: - Fix Solaris compilation's
	  warning.

2007-11-19 13:19  couet

	* [r20889] treeviewer/src/TParallelCoordVar.cxx: - Fix Solaris
	  compilation's warning.

2007-11-19 12:54  brun

	* [r20888] geom/src/TGeoManager.cxx: From Andrei:
	  Fix warning on Solaris

2007-11-19 12:08  rdm

	* [r20887] Makefile: etc/svninfo.txt was not deleted in distclean.

2007-11-19 12:08  rdm

	* [r20886] cint/Module.mk: sys/types.h and systypes.h were not
	  deleted in distclean.

2007-11-19 12:07  rdm

	* [r20885] reflex/Module.mk: G__Reflex..cxx and .h were not deleted
	  in distclean.

2007-11-19 12:06  rdm

	* [r20884] smatrix/Module.mk: G__Smatrix32.cxx and .h were not
	  deleted in distclean.

2007-11-19 11:52  rdm

	* [r20883] LICENSE, README/BUILDSYSTEM, README/COPYING.CINT,
	  README/CREDITS, README/ChangeLog-2-24, README/INSTALL,
	  README/README, README/README.ALIEN, README/README.AUTH,
	  README/README.GLOBUS, README/README.MONALISA,
	  README/README.PROOF, README/README.SELECTOR, README/cfortran.doc,
	  configure, reflex/Module.mk, reflex/build/Makefile.am,
	  reflex/doc/Makefile.am, reflex/inc/LinkDef.h,
	  reflex/inc/Makefile.am, reflex/inc/Reflex/Any.h,
	  reflex/inc/Reflex/Base.h,
	  reflex/inc/Reflex/Builder/ClassBuilder.h,
	  reflex/inc/Reflex/Builder/CollectionProxy.h,
	  reflex/inc/Reflex/Builder/DictSelection.h,
	  reflex/inc/Reflex/Builder/EnumBuilder.h,
	  reflex/inc/Reflex/Builder/FunctionBuilder.h,
	  reflex/inc/Reflex/Builder/Makefile.am,
	  reflex/inc/Reflex/Builder/NamespaceBuilder.h,
	  reflex/inc/Reflex/Builder/NewDelFunctions.h,
	  reflex/inc/Reflex/Builder/ReflexBuilder.h,
	  reflex/inc/Reflex/Builder/TypeBuilder.h,
	  reflex/inc/Reflex/Builder/TypedefBuilder.h,
	  reflex/inc/Reflex/Builder/UnionBuilder.h,
	  reflex/inc/Reflex/Builder/VariableBuilder.h,
	  reflex/inc/Reflex/Callback.h,
	  reflex/inc/Reflex/DictionaryGenerator.h,
	  reflex/inc/Reflex/Kernel.h, reflex/inc/Reflex/Makefile.am,
	  reflex/inc/Reflex/Member.h, reflex/inc/Reflex/MemberTemplate.h,
	  reflex/inc/Reflex/Object.h, reflex/inc/Reflex/PluginService.h,
	  reflex/inc/Reflex/PropertyList.h, reflex/inc/Reflex/Reflex.h,
	  reflex/inc/Reflex/Scope.h, reflex/inc/Reflex/SharedLibrary.h,
	  reflex/inc/Reflex/Tools.h, reflex/inc/Reflex/Type.h,
	  reflex/inc/Reflex/TypeTemplate.h,
	  reflex/inc/Reflex/ValueObject.h,
	  reflex/inc/Reflex/internal/InternalTools.h,
	  reflex/inc/Reflex/internal/Makefile.am,
	  reflex/inc/Reflex/internal/MemberBase.h,
	  reflex/inc/Reflex/internal/MemberTemplateImpl.h,
	  reflex/inc/Reflex/internal/MemberTemplateName.h,
	  reflex/inc/Reflex/internal/OwnedMember.h,
	  reflex/inc/Reflex/internal/OwnedMemberTemplate.h,
	  reflex/inc/Reflex/internal/OwnedPropertyList.h,
	  reflex/inc/Reflex/internal/PropertyListImpl.h,
	  reflex/inc/Reflex/internal/ScopeBase.h,
	  reflex/inc/Reflex/internal/ScopeName.h,
	  reflex/inc/Reflex/internal/TypeBase.h,
	  reflex/inc/Reflex/internal/TypeName.h,
	  reflex/inc/Reflex/internal/TypeTemplateImpl.h,
	  reflex/inc/Reflex/internal/TypeTemplateName.h,
	  reflex/python/Makefile.am, reflex/python/genreflex/Makefile.am,
	  reflex/python/genreflex/gccdemangler.py,
	  reflex/python/genreflex/gencapa.py,
	  reflex/python/genreflex/gendict.py,
	  reflex/python/genreflex/gendict06.py,
	  reflex/python/genreflex/genheader.py,
	  reflex/python/genreflex/genreflex-rootcint.py,
	  reflex/python/genreflex/genreflex.py,
	  reflex/python/genreflex/genreflex06.py,
	  reflex/python/genreflex/genrootmap.py,
	  reflex/python/genreflex/selclass.py, reflex/src/Any.cxx,
	  reflex/src/Array.cxx, reflex/src/Array.h, reflex/src/Base.cxx,
	  reflex/src/Callback.cxx, reflex/src/Class.cxx,
	  reflex/src/Class.h, reflex/src/ClassBuilder.cxx,
	  reflex/src/ClassTemplateInstance.cxx,
	  reflex/src/ClassTemplateInstance.h, reflex/src/DataMember.cxx,
	  reflex/src/DataMember.h, reflex/src/DictionaryGenerator.cxx,
	  reflex/src/Enum.cxx, reflex/src/Enum.h,
	  reflex/src/EnumBuilder.cxx, reflex/src/FuncHandler.cxx,
	  reflex/src/FuncHandler.h, reflex/src/Function.cxx,
	  reflex/src/Function.h, reflex/src/FunctionBuilder.cxx,
	  reflex/src/FunctionMember.cxx, reflex/src/FunctionMember.h,
	  reflex/src/FunctionMemberTemplateInstance.cxx,
	  reflex/src/FunctionMemberTemplateInstance.h,
	  reflex/src/Fundamental.cxx, reflex/src/Fundamental.h,
	  reflex/src/Kernel.cxx, reflex/src/Makefile.am,
	  reflex/src/Member.cxx, reflex/src/MemberBase.cxx,
	  reflex/src/MemberTemplate.cxx, reflex/src/MemberTemplateImpl.cxx,
	  reflex/src/MemberTemplateName.cxx, reflex/src/NameLookup.cxx,
	  reflex/src/NameLookup.h, reflex/src/Namespace.cxx,
	  reflex/src/Namespace.h, reflex/src/NamespaceBuilder.cxx,
	  reflex/src/Object.cxx, reflex/src/PluginFactoryMap.cxx,
	  reflex/src/PluginFactoryMap.h, reflex/src/PluginService.cxx,
	  reflex/src/Pointer.cxx, reflex/src/Pointer.h,
	  reflex/src/PointerToMember.cxx, reflex/src/PointerToMember.h,
	  reflex/src/PropertyList.cxx, reflex/src/PropertyListImpl.cxx,
	  reflex/src/Scope.cxx, reflex/src/ScopeBase.cxx,
	  reflex/src/ScopeName.cxx, reflex/src/TemplateInstance.cxx,
	  reflex/src/TemplateInstance.h, reflex/src/Tools.cxx,
	  reflex/src/Type.cxx, reflex/src/TypeBase.cxx,
	  reflex/src/TypeBuilder.cxx, reflex/src/TypeName.cxx,
	  reflex/src/TypeTemplate.cxx, reflex/src/TypeTemplateImpl.cxx,
	  reflex/src/TypeTemplateName.cxx, reflex/src/Typedef.cxx,
	  reflex/src/Typedef.h, reflex/src/TypedefBuilder.cxx,
	  reflex/src/Union.cxx, reflex/src/Union.h,
	  reflex/src/UnionBuilder.cxx, reflex/src/VariableBuilder.cxx,
	  reflex/src/dir_manip.h, reflex/src/genmap/genmap.cxx,
	  reflex/src/stl_hash.h, reflex/test/CppUnit_testdriver.cpp,
	  reflex/test/Makefile.am, reflex/test/dictionary_generator.cpp,
	  reflex/test/testDict1/Makefile.am,
	  reflex/test/testDict1/Reflex.h,
	  reflex/test/testDict2/Class2Dict.h,
	  reflex/test/testDict2/ClassA.h, reflex/test/testDict2/ClassB.h,
	  reflex/test/testDict2/ClassC.h, reflex/test/testDict2/ClassD.h,
	  reflex/test/testDict2/ClassE.h, reflex/test/testDict2/ClassF.h,
	  reflex/test/testDict2/ClassG.h, reflex/test/testDict2/ClassH.h,
	  reflex/test/testDict2/ClassI.h, reflex/test/testDict2/ClassJ.h,
	  reflex/test/testDict2/ClassK.h, reflex/test/testDict2/ClassL.h,
	  reflex/test/testDict2/ClassM.h, reflex/test/testDict2/ClassN.h,
	  reflex/test/testDict2/ClassO.h,
	  reflex/test/testDict2/ClassSelections.h,
	  reflex/test/testDict2/ClassT.h,
	  reflex/test/testDict2/Functions.h,
	  reflex/test/testDict2/InheritanceTree.txt,
	  reflex/test/testDict2/Makefile.am,
	  reflex/test/testDict2/MemberPointer.h,
	  reflex/test/testDict2/TemplatedClasses.h,
	  reflex/test/testDict2/TestClasses.h,
	  reflex/test/testPlugins/ICommon.h,
	  reflex/test/testPlugins/plugin1.cxx,
	  reflex/test/testPlugins/plugin1bis.cxx,
	  reflex/test/testPlugins/plugin2.cxx,
	  reflex/test/testPlugins/plugin3.cxx,
	  reflex/test/test_ReflexBuilder_unit.cxx,
	  reflex/test/test_Reflex_generate.cxx,
	  reflex/test/test_Reflex_lookup.cxx,
	  reflex/test/test_Reflex_plugins.cxx,
	  reflex/test/test_Reflex_simple1.cxx,
	  reflex/test/test_Reflex_simple2.cxx,
	  reflex/test/test_Reflex_unit.cxx: et property svn:eol-style LF on
	  all source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:31  rdm

	* [r20882] Makefile, alien/Module.mk, alien/inc/LinkDef.h,
	  alien/inc/TAlien.h, alien/inc/TAlienCollection.h,
	  alien/inc/TAlienDirectory.h, alien/inc/TAlienFile.h,
	  alien/inc/TAlienJDL.h, alien/inc/TAlienJob.h,
	  alien/inc/TAlienJobStatus.h, alien/inc/TAlienJobStatusList.h,
	  alien/inc/TAlienMasterJob.h, alien/inc/TAlienMasterJobStatus.h,
	  alien/inc/TAlienResult.h, alien/inc/TAlienSystem.h,
	  alien/src/TAlien.cxx, alien/src/TAlienCollection.cxx,
	  alien/src/TAlienDirectory.cxx, alien/src/TAlienFile.cxx,
	  alien/src/TAlienJDL.cxx, alien/src/TAlienJob.cxx,
	  alien/src/TAlienJobStatus.cxx, alien/src/TAlienJobStatusList.cxx,
	  alien/src/TAlienMasterJob.cxx,
	  alien/src/TAlienMasterJobStatus.cxx, alien/src/TAlienResult.cxx,
	  alien/src/TAlienSystem.cxx, asimage/Module.mk,
	  asimage/inc/LinkDef.h, asimage/inc/LinkDefGS.h,
	  asimage/inc/LinkDefGui.h, asimage/inc/TASImage.h,
	  asimage/inc/TASImagePlugin.h, asimage/inc/TASPaletteEditor.h,
	  asimage/inc/TASPluginGS.h, asimage/src/TASImage.cxx,
	  asimage/src/TASPaletteEditor.cxx, asimage/src/TASPluginGS.cxx,
	  asimage/src/TASPolyUtils.c, auth/Module.mk, auth/inc/AFSAuth.h,
	  auth/inc/AFSAuthTypes.h, auth/inc/AuthConst.h,
	  auth/inc/DaemonUtils.h, auth/inc/LinkDefAFS.h,
	  auth/inc/LinkDefRoot.h, auth/inc/TAFS.h,
	  auth/inc/TAuthenticate.h, auth/inc/THostAuth.h,
	  auth/inc/TRootAuth.h, auth/inc/TRootSecContext.h,
	  auth/inc/rsaaux.h, auth/inc/rsadef.h, auth/inc/rsafun.h,
	  auth/inc/rsalib.h, auth/src/AFSAuth.cxx,
	  auth/src/DaemonUtils.cxx, auth/src/TAFS.cxx,
	  auth/src/TAuthenticate.cxx, auth/src/THostAuth.cxx,
	  auth/src/TRootAuth.cxx, auth/src/TRootSecContext.cxx,
	  auth/src/rsaaux.cxx, auth/src/rsafun.cxx, auth/src/rsalib.cxx,
	  build/Module.mk, build/package/lib/makebuilddepend.sh,
	  build/package/lib/makedebdir.sh, build/package/lib/makelists.sh,
	  build/package/lib/makerpmspec.sh, build/package/msi/makemsi.cxx,
	  build/package/msi/makemsi.sh, build/rmkdepend/cppsetup.c,
	  build/rmkdepend/def.h, build/rmkdepend/ifparser.c,
	  build/rmkdepend/ifparser.h, build/rmkdepend/imakemdep.h,
	  build/rmkdepend/include.c, build/rmkdepend/main.c,
	  build/rmkdepend/mainroot.cxx, build/rmkdepend/parse.c,
	  build/rmkdepend/pr.c, build/unix/compiledata.sh,
	  build/unix/distfilelist.sh, build/unix/importcint.sh,
	  build/unix/makechangelog.sh, build/unix/makecintdll.sh,
	  build/unix/makedist.sh, build/unix/makedistsrc.sh,
	  build/unix/makehtml.sh, build/unix/makelib.sh,
	  build/unix/makeloghtml.sh, build/unix/makestatic.sh,
	  build/unix/makeversion.sh, build/unix/reconfigure.sh,
	  build/unix/svn2cl.sh, build/unix/svninfo.sh,
	  build/unix/wingcc_ld.sh, build/version.cxx,
	  build/win/bindexplib/bindexplib.cxx, build/win/compiledata.sh,
	  build/win/f77.sh, build/win/ld.sh, build/win/makelib.sh,
	  build/win/w32pragma.h, castor/Module.mk, castor/inc/LinkDef.h,
	  castor/inc/TCastorFile.h, castor/src/TCastorFile.cxx,
	  chirp/Module.mk, chirp/inc/LinkDef.h, chirp/inc/TChirpFile.h,
	  chirp/src/TChirpFile.cxx, cintex/Module.mk,
	  cintex/inc/Cintex/Cintex.h, cintex/inc/LinkDef.h,
	  cintex/python/PyCintex.py, cintex/src/CINTClassBuilder.cxx,
	  cintex/src/CINTClassBuilder.h, cintex/src/CINTEnumBuilder.cxx,
	  cintex/src/CINTEnumBuilder.h, cintex/src/CINTFunctionBuilder.cxx,
	  cintex/src/CINTFunctionBuilder.h, cintex/src/CINTFunctional.cxx,
	  cintex/src/CINTFunctional.h, cintex/src/CINTScopeBuilder.cxx,
	  cintex/src/CINTScopeBuilder.h, cintex/src/CINTSourceFile.h,
	  cintex/src/CINTTypedefBuilder.cxx,
	  cintex/src/CINTTypedefBuilder.h, cintex/src/CINTUtils.cxx,
	  cintex/src/CINTVariableBuilder.cxx,
	  cintex/src/CINTVariableBuilder.h, cintex/src/CINTdefs.h,
	  cintex/src/Cintex.cxx, cintex/src/ROOTClassEnhancer.cxx,
	  cintex/src/ROOTClassEnhancer.h, cintex/test/dict/CintexTest.h,
	  cintex/test/test_Cintex.C, cintex/test/test_Persistency.C,
	  cintex/test/test_PyCintex_basics.py, cintex/test/test_all.sh,
	  clarens/Module.mk, clarens/inc/LinkDef.h, clarens/inc/TClProxy.h,
	  clarens/inc/TClSession.h, clarens/inc/TClarens.h,
	  clarens/inc/TEcho.h, clarens/inc/TGM.h, clarens/inc/TLM.h,
	  clarens/inc/TSAM.h, clarens/inc/TXmlRpc.h,
	  clarens/src/TClProxy.cxx, clarens/src/TClSession.cxx,
	  clarens/src/TClarens.cxx, clarens/src/TEcho.cxx,
	  clarens/src/TGM.cxx, clarens/src/TLM.cxx, clarens/src/TSAM.cxx,
	  clarens/src/TXmlRpc.cxx, clib/Module.mk, clib/inc/Demangle.h,
	  clib/inc/Getline.h, clib/inc/LinkDef.h, clib/inc/mmalloc.h,
	  clib/inc/mmconfig.h, clib/inc/mmprivate.h, clib/inc/snprintf.h,
	  clib/src/Demangle.c, clib/src/Getline.c, clib/src/attach.c,
	  clib/src/detach.c, clib/src/getpagesize.c, clib/src/keys.c,
	  clib/src/mcalloc.c, clib/src/mfree.c, clib/src/mmalloc.c,
	  clib/src/mmapsup.c, clib/src/mmcheck.c, clib/src/mmemalign.c,
	  clib/src/mmstats.c, clib/src/mmtrace.c, clib/src/mrealloc.c,
	  clib/src/mvalloc.c, clib/src/sbrksup.c, clib/src/snprintf.c,
	  config/Makefile.aix, config/Makefile.aix5,
	  config/Makefile.aixgcc, config/Makefile.alphacxx6,
	  config/Makefile.alphagcc, config/Makefile.alphakcc,
	  config/Makefile.depend, config/Makefile.freebsd4,
	  config/Makefile.freebsd5, config/Makefile.hpuxacc,
	  config/Makefile.hpuxgcc, config/Makefile.hpuxia64acc,
	  config/Makefile.hurddeb, config/Makefile.in,
	  config/Makefile.linux, config/Makefile.linuxalphagcc,
	  config/Makefile.linuxarm, config/Makefile.linuxdeb2ppc,
	  config/Makefile.linuxia64ecc, config/Makefile.linuxia64gcc,
	  config/Makefile.linuxia64sgi, config/Makefile.linuxicc,
	  config/Makefile.linuxkcc, config/Makefile.linuxpgcc,
	  config/Makefile.linuxppc64gcc, config/Makefile.linuxppcgcc,
	  config/Makefile.linuxx8664gcc, config/Makefile.linuxx8664icc,
	  config/Makefile.lynxos, config/Makefile.macosx,
	  config/Makefile.macosx64, config/Makefile.macosxicc,
	  config/Makefile.macosxxlc, config/Makefile.openbsd,
	  config/Makefile.precomp, config/Makefile.sgicc,
	  config/Makefile.sgicc64, config/Makefile.sgikcc,
	  config/Makefile.sgin32gcc, config/Makefile.solaris,
	  config/Makefile.solarisCC5, config/Makefile.solarisgcc,
	  config/Makefile.solariskcc, config/Makefile.win32,
	  config/Makefile.win32gcc, config/thisroot.sh, cont/Module.mk,
	  cont/doc/index.txt, cont/inc/LinkDef.h, cont/inc/TArray.h,
	  cont/inc/TArrayC.h, cont/inc/TArrayD.h, cont/inc/TArrayF.h,
	  cont/inc/TArrayI.h, cont/inc/TArrayL.h, cont/inc/TArrayL64.h,
	  cont/inc/TArrayS.h, cont/inc/TBits.h, cont/inc/TBtree.h,
	  cont/inc/TClassTable.h, cont/inc/TClonesArray.h,
	  cont/inc/TCollection.h, cont/inc/TCollectionProxyInfo.h,
	  cont/inc/TExMap.h, cont/inc/THashList.h, cont/inc/THashTable.h,
	  cont/inc/TIterator.h, cont/inc/TList.h, cont/inc/TMap.h,
	  cont/inc/TObjArray.h, cont/inc/TObjectTable.h,
	  cont/inc/TOrdCollection.h, cont/inc/TRefArray.h,
	  cont/inc/TRefTable.h, cont/inc/TSeqCollection.h,
	  cont/inc/TSortedList.h, cont/inc/TVirtualCollectionProxy.h,
	  cont/src/TArray.cxx, cont/src/TArrayC.cxx, cont/src/TArrayD.cxx,
	  cont/src/TArrayF.cxx, cont/src/TArrayI.cxx, cont/src/TArrayL.cxx,
	  cont/src/TArrayL64.cxx, cont/src/TArrayS.cxx, cont/src/TBits.cxx,
	  cont/src/TBtree.cxx, cont/src/TClassTable.cxx,
	  cont/src/TClonesArray.cxx, cont/src/TCollection.cxx,
	  cont/src/TExMap.cxx, cont/src/THashList.cxx,
	  cont/src/THashTable.cxx, cont/src/TIterator.cxx,
	  cont/src/TList.cxx, cont/src/TMap.cxx, cont/src/TObjArray.cxx,
	  cont/src/TObjectTable.cxx, cont/src/TOrdCollection.cxx,
	  cont/src/TRefArray.cxx, cont/src/TRefTable.cxx,
	  cont/src/TSeqCollection.cxx, cont/src/TSortedList.cxx,
	  dcache/Module.mk, dcache/inc/LinkDef.h, dcache/inc/TDCacheFile.h,
	  dcache/src/TDCacheFile.cxx, eg/Module.mk, eg/inc/Hepevt.h,
	  eg/inc/LinkDef.h, eg/inc/TAttParticle.h, eg/inc/TDatabasePDG.h,
	  eg/inc/TDecayChannel.h, eg/inc/TGenerator.h, eg/inc/TParticle.h,
	  eg/inc/TParticleClassPDG.h, eg/inc/TParticlePDG.h,
	  eg/inc/TPrimary.h, eg/inc/TVirtualMCDecayer.h, eg/inc/cfortran.h,
	  eg/src/TAttParticle.cxx, eg/src/TDatabasePDG.cxx,
	  eg/src/TDecayChannel.cxx, eg/src/TGenerator.cxx,
	  eg/src/TParticle.cxx, eg/src/TParticleClassPDG.cxx,
	  eg/src/TParticlePDG.cxx, eg/src/TPrimary.cxx,
	  eg/src/TVirtualMCDecayer.cxx, etc/RadioNuclides.txt,
	  etc/gdb-backtrace.sh, etc/pdg_table.txt,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P020_GSLMCIntegrator.C,
	  etc/plugins/TAFS/P010_TAFS.C,
	  etc/plugins/TApplication/P010_TApplicationRemote.C,
	  etc/plugins/TApplication/P020_TApplicationServer.C,
	  etc/plugins/TArchiveFile/P010_TZIPFile.C,
	  etc/plugins/TBrowserImp/P010_TRootBrowser.C,
	  etc/plugins/TBrowserImp/P020_TRootBrowserLite.C,
	  etc/plugins/TChain/P010_TProofChain.C,
	  etc/plugins/TDataProgressDialog/P010_TDataProgressDialog.C,
	  etc/plugins/TFile/P010_TWebFile.C,
	  etc/plugins/TFile/P020_TRFIOFile.C,
	  etc/plugins/TFile/P030_TCastorFile.C,
	  etc/plugins/TFile/P040_TDCacheFile.C,
	  etc/plugins/TFile/P050_TGFALFile.C,
	  etc/plugins/TFile/P060_TChirpFile.C,
	  etc/plugins/TFile/P070_TAlienFile.C,
	  etc/plugins/TFile/P080_TXMLFile.C,
	  etc/plugins/TFile/P090_TSQLFile.C,
	  etc/plugins/TFile/P100_TXNetFile.C,
	  etc/plugins/TFileDrawMap/P010_TFileDrawMap.C,
	  etc/plugins/TFileStager/P010_TXNetFileStager.C,
	  etc/plugins/TFitEditor/P010_TFitEditor.C,
	  etc/plugins/TGLHistPainter/P010_TGLHistPainter.C,
	  etc/plugins/TGLManager/P010_TX11GLManager.C,
	  etc/plugins/TGLManager/P020_TGWin32GLManager.C,
	  etc/plugins/TGPasswdDialog/P010_TGPasswdDialog.C,
	  etc/plugins/TGeoManagerEditor/P010_TGeoManagerEditor.C,
	  etc/plugins/TGrid/P010_TAlien.C,
	  etc/plugins/TGuiBuilder/P010_TRootGuiBuilder.C,
	  etc/plugins/TGuiFactory/P010_TRootGuiFactory.C,
	  etc/plugins/TGuiFactory/P020_TQtRootGuiFactory.C,
	  etc/plugins/TImage/P010_TASImage.C,
	  etc/plugins/TImagePlugin/P010_TASPluginGS.C,
	  etc/plugins/TMinuitGraph/P010_TGraph.C,
	  etc/plugins/TPaletteEditor/P010_TASPaletteEditor.C,
	  etc/plugins/TProof/P010_TProofCondor.C,
	  etc/plugins/TProof/P020_TProofSuperMaster.C,
	  etc/plugins/TProof/P030_TProofPEAC.C,
	  etc/plugins/TProof/P040_TProof.C,
	  etc/plugins/TProofMgr/P010_TXProofMgr.C,
	  etc/plugins/TProofProgressDialog/P010_TProofProgressDialog.C,
	  etc/plugins/TProofServ/P010_TXProofServ.C,
	  etc/plugins/TSQLServer/P010_TMySQLServer.C,
	  etc/plugins/TSQLServer/P020_TPgSQLServer.C,
	  etc/plugins/TSQLServer/P030_TSapDBServer.C,
	  etc/plugins/TSQLServer/P040_TOracleServer.C,
	  etc/plugins/TSQLServer/P050_TODBCServer.C,
	  etc/plugins/TSessionViewer/P010_TSessionViewer.C,
	  etc/plugins/TSlave/P010_TXSlave.C,
	  etc/plugins/TSystem/P010_TRFIOSystem.C,
	  etc/plugins/TSystem/P020_TDCacheSystem.C,
	  etc/plugins/TSystem/P030_TAlienSystem.C,
	  etc/plugins/TSystem/P040_TXNetSystem.C,
	  etc/plugins/TView/P010_TView3D.C,
	  etc/plugins/TViewerX3D/P010_TViewerX3D.C,
	  etc/plugins/TViewerX3D/P020_TQtViewerX3D.C,
	  etc/plugins/TVirtualAuth/P010_TRootAuth.C,
	  etc/plugins/TVirtualDragManager/P010_TGuiBldDragManager.C,
	  etc/plugins/TVirtualFFT/P010_TFFTComplex.C,
	  etc/plugins/TVirtualFFT/P020_TFFTComplexReal.C,
	  etc/plugins/TVirtualFFT/P030_TFFTRealComplex.C,
	  etc/plugins/TVirtualFFT/P040_TFFTReal.C,
	  etc/plugins/TVirtualFitter/P010_TFitter.C,
	  etc/plugins/TVirtualFitter/P020_TFumili.C,
	  etc/plugins/TVirtualFitter/P030_TFitterMinuit.C,
	  etc/plugins/TVirtualFitter/P040_TFitterFumili.C,
	  etc/plugins/TVirtualGLImp/P010_TX11GL.C,
	  etc/plugins/TVirtualGLImp/P020_TGWin32GL.C,
	  etc/plugins/TVirtualGeoPainter/P010_TGeoPainter.C,
	  etc/plugins/TVirtualHistPainter/P010_THistPainter.C,
	  etc/plugins/TVirtualMonitoringWriter/P010_TMonaLisaWriter.C,
	  etc/plugins/TVirtualMonitoringWriter/P020_TSQLMonitoringWriter.C,
	  etc/plugins/TVirtualPS/P010_TPostScript.C,
	  etc/plugins/TVirtualPS/P020_TSVG.C,
	  etc/plugins/TVirtualPS/P030_TPDF.C,
	  etc/plugins/TVirtualPS/P040_TImageDump.C,
	  etc/plugins/TVirtualPad/P010_TPad.C,
	  etc/plugins/TVirtualPadEditor/P010_TGedEditor.C,
	  etc/plugins/TVirtualProofPlayer/P010_TProofPlayer.C,
	  etc/plugins/TVirtualProofPlayer/P020_TProofPlayerRemote.C,
	  etc/plugins/TVirtualProofPlayer/P030_TProofPlayerLocal.C,
	  etc/plugins/TVirtualProofPlayer/P040_TProofPlayerSlave.C,
	  etc/plugins/TVirtualProofPlayer/P050_TProofPlayerSuperMaster.C,
	  etc/plugins/TVirtualStreamerInfo/P010_TStreamerInfo.C,
	  etc/plugins/TVirtualTreePlayer/P010_TTreePlayer.C,
	  etc/plugins/TVirtualTreeViewer/P010_TTreeViewer.C,
	  etc/plugins/TVirtualViewer3D/P010_TViewerX3D.C,
	  etc/plugins/TVirtualViewer3D/P020_TGLSAViewer.C,
	  etc/plugins/TVirtualViewer3D/P030_TGLViewer.C,
	  etc/plugins/TVirtualX/P010_TGX11.C,
	  etc/plugins/TVirtualX/P020_TGX11TTF.C,
	  etc/plugins/TVirtualX/P030_TGWin32.C,
	  etc/plugins/TVirtualX/P040_TGQt.C, etc/vmc/MakeExe,
	  etc/vmc/MakeMacros, etc/vmc/MakeRules, etc/vmc/Makedepend,
	  fftw/Module.mk, fftw/inc/LinkDef.h, fftw/inc/TFFTComplex.h,
	  fftw/inc/TFFTComplexReal.h, fftw/inc/TFFTReal.h,
	  fftw/inc/TFFTRealComplex.h, fftw/src/TFFTComplex.cxx,
	  fftw/src/TFFTComplexReal.cxx, fftw/src/TFFTReal.cxx,
	  fftw/src/TFFTRealComplex.cxx, fitpanel/Module.mk,
	  fitpanel/inc/LinkDef.h, fitpanel/inc/TFitEditor.h,
	  fitpanel/inc/TFitParametersDialog.h, fitpanel/src/TFitEditor.cxx,
	  fitpanel/src/TFitParametersDialog.cxx, foam/Module.mk,
	  foam/doc/index.txt, foam/inc/LinkDef.h, foam/inc/TFoam.h,
	  foam/inc/TFoamCell.h, foam/inc/TFoamIntegrand.h,
	  foam/inc/TFoamMaxwt.h, foam/inc/TFoamVect.h, foam/src/TFoam.cxx,
	  foam/src/TFoamCell.cxx, foam/src/TFoamIntegrand.cxx,
	  foam/src/TFoamMaxwt.cxx, foam/src/TFoamVect.cxx,
	  freetype/Module.mk, ftgl/Module.mk, ftgl/inc/FTBBox.h,
	  ftgl/inc/FTBitmapGlyph.h, ftgl/inc/FTCharToGlyphIndexMap.h,
	  ftgl/inc/FTCharmap.h, ftgl/inc/FTContour.h,
	  ftgl/inc/FTExtrdGlyph.h, ftgl/inc/FTFace.h, ftgl/inc/FTFont.h,
	  ftgl/inc/FTGL.h, ftgl/inc/FTGLBitmapFont.h,
	  ftgl/inc/FTGLExtrdFont.h, ftgl/inc/FTGLOutlineFont.h,
	  ftgl/inc/FTGLPixmapFont.h, ftgl/inc/FTGLPolygonFont.h,
	  ftgl/inc/FTGLTextureFont.h, ftgl/inc/FTGlyph.h,
	  ftgl/inc/FTGlyphContainer.h, ftgl/inc/FTLibrary.h,
	  ftgl/inc/FTList.h, ftgl/inc/FTOutlineGlyph.h,
	  ftgl/inc/FTPixmapGlyph.h, ftgl/inc/FTPoint.h,
	  ftgl/inc/FTPolyGlyph.h, ftgl/inc/FTSize.h,
	  ftgl/inc/FTTextureGlyph.h, ftgl/inc/FTVector.h,
	  ftgl/inc/FTVectoriser.h, ftgl/src/FTBitmapGlyph.cxx,
	  ftgl/src/FTCharmap.cxx, ftgl/src/FTContour.cxx,
	  ftgl/src/FTExtrdGlyph.cxx, ftgl/src/FTFace.cxx,
	  ftgl/src/FTFont.cxx, ftgl/src/FTGLBitmapFont.cxx,
	  ftgl/src/FTGLExtrdFont.cxx, ftgl/src/FTGLOutlineFont.cxx,
	  ftgl/src/FTGLPixmapFont.cxx, ftgl/src/FTGLPolygonFont.cxx,
	  ftgl/src/FTGLTextureFont.cxx, ftgl/src/FTGlyph.cxx,
	  ftgl/src/FTGlyphContainer.cxx, ftgl/src/FTLibrary.cxx,
	  ftgl/src/FTOutlineGlyph.cxx, ftgl/src/FTPixmapGlyph.cxx,
	  ftgl/src/FTPoint.cxx, ftgl/src/FTPolyGlyph.cxx,
	  ftgl/src/FTSize.cxx, ftgl/src/FTTextureGlyph.cxx,
	  ftgl/src/FTVectoriser.cxx, fumili/Module.mk,
	  fumili/inc/LinkDef.h, fumili/inc/TFumili.h,
	  fumili/src/TFumili.cxx, g3d/Module.mk, g3d/inc/LinkDef.h,
	  g3d/inc/TAxis3D.h, g3d/inc/TBRIK.h, g3d/inc/TCONE.h,
	  g3d/inc/TCONS.h, g3d/inc/TCTUB.h, g3d/inc/TELTU.h,
	  g3d/inc/TGTRA.h, g3d/inc/TGeometry.h, g3d/inc/THYPE.h,
	  g3d/inc/THelix.h, g3d/inc/TMarker3DBox.h, g3d/inc/TMaterial.h,
	  g3d/inc/TMixture.h, g3d/inc/TNode.h, g3d/inc/TNodeDiv.h,
	  g3d/inc/TPARA.h, g3d/inc/TPCON.h, g3d/inc/TPGON.h,
	  g3d/inc/TPointSet3D.h, g3d/inc/TPoints3DABC.h,
	  g3d/inc/TPolyLine3D.h, g3d/inc/TPolyMarker3D.h,
	  g3d/inc/TRotMatrix.h, g3d/inc/TSPHE.h, g3d/inc/TShape.h,
	  g3d/inc/TTRAP.h, g3d/inc/TTRD1.h, g3d/inc/TTRD2.h,
	  g3d/inc/TTUBE.h, g3d/inc/TTUBS.h, g3d/inc/TView3D.h,
	  g3d/inc/TXTRU.h, g3d/inc/X3DBuffer.h, g3d/inc/X3DDefs.h,
	  g3d/src/TAxis3D.cxx, g3d/src/TBRIK.cxx, g3d/src/TCONE.cxx,
	  g3d/src/TCONS.cxx, g3d/src/TCTUB.cxx, g3d/src/TELTU.cxx,
	  g3d/src/TGTRA.cxx, g3d/src/TGeometry.cxx, g3d/src/THYPE.cxx,
	  g3d/src/THelix.cxx, g3d/src/TMarker3DBox.cxx,
	  g3d/src/TMaterial.cxx, g3d/src/TMixture.cxx, g3d/src/TNode.cxx,
	  g3d/src/TNodeDiv.cxx, g3d/src/TPARA.cxx, g3d/src/TPCON.cxx,
	  g3d/src/TPGON.cxx, g3d/src/TPointSet3D.cxx,
	  g3d/src/TPoints3DABC.cxx, g3d/src/TPolyLine3D.cxx,
	  g3d/src/TPolyMarker3D.cxx, g3d/src/TRotMatrix.cxx,
	  g3d/src/TSPHE.cxx, g3d/src/TShape.cxx, g3d/src/TTRAP.cxx,
	  g3d/src/TTRD1.cxx, g3d/src/TTRD2.cxx, g3d/src/TTUBE.cxx,
	  g3d/src/TTUBS.cxx, g3d/src/TView3D.cxx, g3d/src/TXTRU.cxx,
	  g3d/src/X3DBuffer.c, g4root/Module.mk, g4root/g4libs.C,
	  g4root/inc/LinkDef.h, g4root/inc/TG4RootDetectorConstruction.h,
	  g4root/inc/TG4RootNavMgr.h, g4root/inc/TG4RootNavigator.h,
	  g4root/inc/TG4RootSolid.h,
	  g4root/src/TG4RootDetectorConstruction.cxx,
	  g4root/src/TG4RootNavMgr.cxx, g4root/src/TG4RootNavigator.cxx,
	  g4root/src/TG4RootSolid.cxx, g4root/test/drawTracks.C,
	  g4root/test/exN06/Makefile, gdml/Module.mk, gdml/ROOTwriter.py,
	  gdml/inc/LinkDef.h, gdml/inc/TGDMLParse.h,
	  gdml/src/TGDMLParse.cxx, gdml/writer.py, ged/Module.mk,
	  ged/inc/HelpSMText.h, ged/inc/LinkDef.h, ged/inc/TArrowEditor.h,
	  ged/inc/TAttFillEditor.h, ged/inc/TAttLineEditor.h,
	  ged/inc/TAttMarkerEditor.h, ged/inc/TAttTextEditor.h,
	  ged/inc/TAxisEditor.h, ged/inc/TCurlyArcEditor.h,
	  ged/inc/TCurlyLineEditor.h, ged/inc/TF1Editor.h,
	  ged/inc/TFrameEditor.h, ged/inc/TFunctionParametersDialog.h,
	  ged/inc/TGedEditor.h, ged/inc/TGedFrame.h,
	  ged/inc/TGedMarkerSelect.h, ged/inc/TGedPatternSelect.h,
	  ged/inc/TGraphEditor.h, ged/inc/TH1Editor.h, ged/inc/TH2Editor.h,
	  ged/inc/TLineEditor.h, ged/inc/TPadEditor.h,
	  ged/inc/TPaveStatsEditor.h, ged/inc/TStyleDialog.h,
	  ged/inc/TStyleManager.h, ged/inc/TStylePreview.h,
	  ged/src/HelpSMText.cxx, ged/src/TArrowEditor.cxx,
	  ged/src/TAttFillEditor.cxx, ged/src/TAttLineEditor.cxx,
	  ged/src/TAttMarkerEditor.cxx, ged/src/TAttTextEditor.cxx,
	  ged/src/TAxisEditor.cxx, ged/src/TCurlyArcEditor.cxx,
	  ged/src/TCurlyLineEditor.cxx, ged/src/TF1Editor.cxx,
	  ged/src/TFrameEditor.cxx, ged/src/TFunctionParametersDialog.cxx,
	  ged/src/TGedEditor.cxx, ged/src/TGedFrame.cxx,
	  ged/src/TGedMarkerSelect.cxx, ged/src/TGedPatternSelect.cxx,
	  ged/src/TGraphEditor.cxx, ged/src/TH1Editor.cxx,
	  ged/src/TH2Editor.cxx, ged/src/TLineEditor.cxx,
	  ged/src/TPadEditor.cxx, ged/src/TPaveStatsEditor.cxx,
	  ged/src/TStyleDialog.cxx, ged/src/TStyleManager.cxx,
	  ged/src/TStylePreview.cxx, geom/Module.mk, geom/doc/index.txt,
	  geom/inc/LinkDef1.h, geom/inc/LinkDef2.h, geom/inc/TGeoArb8.h,
	  geom/inc/TGeoAtt.h, geom/inc/TGeoBBox.h, geom/inc/TGeoBoolNode.h,
	  geom/inc/TGeoBuilder.h, geom/inc/TGeoCache.h,
	  geom/inc/TGeoCompositeShape.h, geom/inc/TGeoCone.h,
	  geom/inc/TGeoElement.h, geom/inc/TGeoEltu.h,
	  geom/inc/TGeoHalfSpace.h, geom/inc/TGeoHelix.h,
	  geom/inc/TGeoHype.h, geom/inc/TGeoManager.h,
	  geom/inc/TGeoMaterial.h, geom/inc/TGeoMatrix.h,
	  geom/inc/TGeoMedium.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPara.h,
	  geom/inc/TGeoParaboloid.h, geom/inc/TGeoPatternFinder.h,
	  geom/inc/TGeoPcon.h, geom/inc/TGeoPgon.h,
	  geom/inc/TGeoPhysicalNode.h, geom/inc/TGeoPolygon.h,
	  geom/inc/TGeoScaledShape.h, geom/inc/TGeoShape.h,
	  geom/inc/TGeoShapeAssembly.h, geom/inc/TGeoSphere.h,
	  geom/inc/TGeoTorus.h, geom/inc/TGeoTrd1.h, geom/inc/TGeoTrd2.h,
	  geom/inc/TGeoTube.h, geom/inc/TGeoVolume.h,
	  geom/inc/TGeoVoxelFinder.h, geom/inc/TGeoXtru.h,
	  geom/inc/TVirtualGeoPainter.h, geom/inc/TVirtualGeoTrack.h,
	  geom/src/TGeoArb8.cxx, geom/src/TGeoAtt.cxx,
	  geom/src/TGeoBBox.cxx, geom/src/TGeoBoolNode.cxx,
	  geom/src/TGeoBuilder.cxx, geom/src/TGeoCache.cxx,
	  geom/src/TGeoCompositeShape.cxx, geom/src/TGeoCone.cxx,
	  geom/src/TGeoElement.cxx, geom/src/TGeoEltu.cxx,
	  geom/src/TGeoHalfSpace.cxx, geom/src/TGeoHelix.cxx,
	  geom/src/TGeoHype.cxx, geom/src/TGeoManager.cxx,
	  geom/src/TGeoMaterial.cxx, geom/src/TGeoMatrix.cxx,
	  geom/src/TGeoMedium.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoPara.cxx,
	  geom/src/TGeoParaboloid.cxx, geom/src/TGeoPatternFinder.cxx,
	  geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoPhysicalNode.cxx, geom/src/TGeoPolygon.cxx,
	  geom/src/TGeoScaledShape.cxx, geom/src/TGeoShape.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoSphere.cxx,
	  geom/src/TGeoTorus.cxx, geom/src/TGeoTrd1.cxx,
	  geom/src/TGeoTrd2.cxx, geom/src/TGeoTube.cxx,
	  geom/src/TGeoVolume.cxx, geom/src/TGeoVoxelFinder.cxx,
	  geom/src/TGeoXtru.cxx, geom/src/TVirtualGeoPainter.cxx,
	  geom/src/TVirtualGeoTrack.cxx, geombuilder/Module.mk,
	  geombuilder/inc/LinkDef.h, geombuilder/inc/TGeoBBoxEditor.h,
	  geombuilder/inc/TGeoConeEditor.h,
	  geombuilder/inc/TGeoEltuEditor.h, geombuilder/inc/TGeoGedFrame.h,
	  geombuilder/inc/TGeoHypeEditor.h,
	  geombuilder/inc/TGeoManagerEditor.h,
	  geombuilder/inc/TGeoMaterialEditor.h,
	  geombuilder/inc/TGeoMatrixEditor.h,
	  geombuilder/inc/TGeoMediumEditor.h,
	  geombuilder/inc/TGeoNodeEditor.h,
	  geombuilder/inc/TGeoParaEditor.h,
	  geombuilder/inc/TGeoPconEditor.h,
	  geombuilder/inc/TGeoPgonEditor.h,
	  geombuilder/inc/TGeoSphereEditor.h,
	  geombuilder/inc/TGeoTabManager.h,
	  geombuilder/inc/TGeoTorusEditor.h,
	  geombuilder/inc/TGeoTrapEditor.h,
	  geombuilder/inc/TGeoTrd1Editor.h,
	  geombuilder/inc/TGeoTrd2Editor.h,
	  geombuilder/inc/TGeoTubeEditor.h,
	  geombuilder/inc/TGeoVolumeEditor.h,
	  geombuilder/src/TGeoBBoxEditor.cxx,
	  geombuilder/src/TGeoConeEditor.cxx,
	  geombuilder/src/TGeoEltuEditor.cxx,
	  geombuilder/src/TGeoGedFrame.cxx,
	  geombuilder/src/TGeoHypeEditor.cxx,
	  geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoMaterialEditor.cxx,
	  geombuilder/src/TGeoMatrixEditor.cxx,
	  geombuilder/src/TGeoMediumEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoParaEditor.cxx,
	  geombuilder/src/TGeoPconEditor.cxx,
	  geombuilder/src/TGeoPgonEditor.cxx,
	  geombuilder/src/TGeoSphereEditor.cxx,
	  geombuilder/src/TGeoTabManager.cxx,
	  geombuilder/src/TGeoTorusEditor.cxx,
	  geombuilder/src/TGeoTrapEditor.cxx,
	  geombuilder/src/TGeoTrd1Editor.cxx,
	  geombuilder/src/TGeoTrd2Editor.cxx,
	  geombuilder/src/TGeoTubeEditor.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx, geompainter/Module.mk,
	  geompainter/inc/LinkDef.h, geompainter/inc/TGeoChecker.h,
	  geompainter/inc/TGeoOverlap.h, geompainter/inc/TGeoPainter.h,
	  geompainter/inc/TGeoTrack.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoOverlap.cxx, geompainter/src/TGeoPainter.cxx,
	  geompainter/src/TGeoTrack.cxx, gfal/Module.mk,
	  gfal/inc/LinkDef.h, gfal/inc/TGFALFile.h, gfal/src/TGFALFile.cxx,
	  gl/Module.mk, gl/inc/CsgOps.h, gl/inc/LinkDef.h,
	  gl/inc/TArcBall.h, gl/inc/TF2GL.h, gl/inc/TGLAdapter.h,
	  gl/inc/TGLAxis.h, gl/inc/TGLBoundingBox.h,
	  gl/inc/TGLBoxPainter.h, gl/inc/TGLCamera.h, gl/inc/TGLClip.h,
	  gl/inc/TGLClipSetEditor.h, gl/inc/TGLContext.h,
	  gl/inc/TGLContextPrivate.h, gl/inc/TGLCylinder.h,
	  gl/inc/TGLFaceSet.h, gl/inc/TGLFormat.h, gl/inc/TGLHistPainter.h,
	  gl/inc/TGLIncludes.h, gl/inc/TGLLegoPainter.h,
	  gl/inc/TGLLightSet.h, gl/inc/TGLLightSetEditor.h,
	  gl/inc/TGLLockable.h, gl/inc/TGLLogicalShape.h,
	  gl/inc/TGLManip.h, gl/inc/TGLManipSet.h, gl/inc/TGLObject.h,
	  gl/inc/TGLOrthoCamera.h, gl/inc/TGLOutput.h, gl/inc/TGLOverlay.h,
	  gl/inc/TGLPShapeObj.h, gl/inc/TGLPShapeObjEditor.h,
	  gl/inc/TGLPShapeRef.h, gl/inc/TGLParametric.h,
	  gl/inc/TGLParametricEquationGL.h, gl/inc/TGLPerspectiveCamera.h,
	  gl/inc/TGLPhysicalShape.h, gl/inc/TGLPlotBox.h,
	  gl/inc/TGLPlotPainter.h, gl/inc/TGLPolyLine.h,
	  gl/inc/TGLPolyMarker.h, gl/inc/TGLQuadric.h, gl/inc/TGLRnrCtx.h,
	  gl/inc/TGLRotateManip.h, gl/inc/TGLSAFrame.h,
	  gl/inc/TGLSAViewer.h, gl/inc/TGLScaleManip.h, gl/inc/TGLScene.h,
	  gl/inc/TGLSceneBase.h, gl/inc/TGLSceneInfo.h,
	  gl/inc/TGLScenePad.h, gl/inc/TGLSelectBuffer.h,
	  gl/inc/TGLSelectRecord.h, gl/inc/TGLSphere.h,
	  gl/inc/TGLStopwatch.h, gl/inc/TGLSurfacePainter.h,
	  gl/inc/TGLTF3Painter.h, gl/inc/TGLText.h, gl/inc/TGLTransManip.h,
	  gl/inc/TGLUtil.h, gl/inc/TGLViewer.h, gl/inc/TGLViewerBase.h,
	  gl/inc/TGLViewerEditor.h, gl/inc/TGLWidget.h, gl/inc/TH2GL.h,
	  gl/inc/TPointSet3DGL.h, gl/inc/TX11GL.h, gl/inc/gl2ps.h,
	  gl/src/CsgOps.cxx, gl/src/TArcBall.cxx, gl/src/TF2GL.cxx,
	  gl/src/TGLAdapter.cxx, gl/src/TGLAxis.cxx,
	  gl/src/TGLBoundingBox.cxx, gl/src/TGLBoxPainter.cxx,
	  gl/src/TGLCamera.cxx, gl/src/TGLClip.cxx,
	  gl/src/TGLClipSetEditor.cxx, gl/src/TGLContext.cxx,
	  gl/src/TGLContextPrivate.cxx, gl/src/TGLCylinder.cxx,
	  gl/src/TGLFaceSet.cxx, gl/src/TGLFormat.cxx,
	  gl/src/TGLHistPainter.cxx, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLLightSet.cxx, gl/src/TGLLightSetEditor.cxx,
	  gl/src/TGLLockable.cxx, gl/src/TGLLogicalShape.cxx,
	  gl/src/TGLManip.cxx, gl/src/TGLManipSet.cxx,
	  gl/src/TGLObject.cxx, gl/src/TGLOrthoCamera.cxx,
	  gl/src/TGLOutput.cxx, gl/src/TGLOverlay.cxx,
	  gl/src/TGLPShapeObj.cxx, gl/src/TGLPShapeObjEditor.cxx,
	  gl/src/TGLPShapeRef.cxx, gl/src/TGLParametric.cxx,
	  gl/src/TGLParametricEquationGL.cxx,
	  gl/src/TGLPerspectiveCamera.cxx, gl/src/TGLPhysicalShape.cxx,
	  gl/src/TGLPlotBox.cxx, gl/src/TGLPlotPainter.cxx,
	  gl/src/TGLPolyLine.cxx, gl/src/TGLPolyMarker.cxx,
	  gl/src/TGLQuadric.cxx, gl/src/TGLRnrCtx.cxx,
	  gl/src/TGLRotateManip.cxx, gl/src/TGLSAFrame.cxx,
	  gl/src/TGLSAViewer.cxx, gl/src/TGLScaleManip.cxx,
	  gl/src/TGLScene.cxx, gl/src/TGLSceneBase.cxx,
	  gl/src/TGLSceneInfo.cxx, gl/src/TGLScenePad.cxx,
	  gl/src/TGLSelectBuffer.cxx, gl/src/TGLSelectRecord.cxx,
	  gl/src/TGLSphere.cxx, gl/src/TGLStopwatch.cxx,
	  gl/src/TGLSurfacePainter.cxx, gl/src/TGLTF3Painter.cxx,
	  gl/src/TGLText.cxx, gl/src/TGLTransManip.cxx, gl/src/TGLUtil.cxx,
	  gl/src/TGLViewer.cxx, gl/src/TGLViewerBase.cxx,
	  gl/src/TGLViewerEditor.cxx, gl/src/TGLWidget.cxx,
	  gl/src/TH2GL.cxx, gl/src/TPointSet3DGL.cxx, gl/src/TX11GL.cxx,
	  gl/src/gl2ps.c, globusauth/Module.mk,
	  globusauth/src/GlobusAuth.cxx,
	  globusauth/src/patches/globus_gsi_credential/0.5/globus_gsi_credential.c,
	  globusauth/src/patches/globus_gsi_credential/0.5/include/globus_i_gsi_credential.h,
	  globusauth/src/patches/globus_gsi_credential/0.5/include/version.h,
	  globusauth/src/patches/globus_gsi_credential/0.7/globus_gsi_credential.c,
	  globusauth/src/patches/globus_gsi_credential/0.7/include/globus_i_gsi_credential.h,
	  globusauth/src/patches/globus_gsi_credential/0.7/include/version.h,
	  globusauth/src/patches/globus_gsi_credential/0.8/globus_gsi_credential.c,
	  globusauth/src/patches/globus_gsi_credential/0.8/include/globus_i_gsi_credential.h,
	  globusauth/src/patches/globus_gsi_credential/0.8/include/version.h,
	  globusauth/src/patches/globus_gsi_credential/0.9/globus_gsi_credential.c,
	  globusauth/src/patches/globus_gsi_credential/0.9/include/globus_i_gsi_credential.h,
	  globusauth/src/patches/globus_gsi_credential/0.9/include/version.h,
	  gpad/Module.mk, gpad/inc/LinkDef.h, gpad/inc/TAttCanvas.h,
	  gpad/inc/TButton.h, gpad/inc/TCanvas.h, gpad/inc/TClassTree.h,
	  gpad/inc/TColorWheel.h, gpad/inc/TControlBar.h,
	  gpad/inc/TControlBarButton.h, gpad/inc/TCreatePrimitives.h,
	  gpad/inc/TDialogCanvas.h, gpad/inc/TGroupButton.h,
	  gpad/inc/TInspectCanvas.h, gpad/inc/TPad.h,
	  gpad/inc/TPaveClass.h, gpad/inc/TSlider.h, gpad/inc/TSliderBox.h,
	  gpad/inc/TView.h, gpad/inc/TViewer3DPad.h,
	  gpad/src/TAttCanvas.cxx, gpad/src/TButton.cxx,
	  gpad/src/TCanvas.cxx, gpad/src/TClassTree.cxx,
	  gpad/src/TColorWheel.cxx, gpad/src/TControlBar.cxx,
	  gpad/src/TControlBarButton.cxx, gpad/src/TCreatePrimitives.cxx,
	  gpad/src/TDialogCanvas.cxx, gpad/src/TGroupButton.cxx,
	  gpad/src/TInspectCanvas.cxx, gpad/src/TPad.cxx,
	  gpad/src/TPaveClass.cxx, gpad/src/TSlider.cxx,
	  gpad/src/TSliderBox.cxx, gpad/src/TView.cxx,
	  gpad/src/TViewer3DPad.cxx, graf/Module.mk, graf/doc/index.txt,
	  graf/doc/macros/greekletters.C, graf/doc/macros/mathsymbols.C,
	  graf/inc/LinkDef1.h, graf/inc/LinkDef2.h, graf/inc/TArc.h,
	  graf/inc/TArrow.h, graf/inc/TAttImage.h, graf/inc/TBox.h,
	  graf/inc/TCrown.h, graf/inc/TCurlyArc.h, graf/inc/TCurlyLine.h,
	  graf/inc/TCutG.h, graf/inc/TDiamond.h, graf/inc/TEllipse.h,
	  graf/inc/TFrame.h, graf/inc/TGaxis.h, graf/inc/TGraph.h,
	  graf/inc/TGraphAsymmErrors.h, graf/inc/TGraphBentErrors.h,
	  graf/inc/TGraphErrors.h, graf/inc/TGraphPolar.h,
	  graf/inc/TGraphQQ.h, graf/inc/TGraphSmooth.h, graf/inc/TImage.h,
	  graf/inc/TImagePlugin.h, graf/inc/TLatex.h, graf/inc/TLegend.h,
	  graf/inc/TLegendEntry.h, graf/inc/TLine.h, graf/inc/TLink.h,
	  graf/inc/TMarker.h, graf/inc/TMultiGraph.h, graf/inc/TPave.h,
	  graf/inc/TPaveLabel.h, graf/inc/TPaveStats.h,
	  graf/inc/TPaveText.h, graf/inc/TPavesText.h, graf/inc/TPie.h,
	  graf/inc/TPieSlice.h, graf/inc/TPoints.h, graf/inc/TPolyLine.h,
	  graf/inc/TSpline.h, graf/inc/TTF.h, graf/inc/TText.h,
	  graf/inc/TWbox.h, graf/src/TArc.cxx, graf/src/TArrow.cxx,
	  graf/src/TAttImage.cxx, graf/src/TBox.cxx, graf/src/TCrown.cxx,
	  graf/src/TCurlyArc.cxx, graf/src/TCurlyLine.cxx,
	  graf/src/TCutG.cxx, graf/src/TDiamond.cxx, graf/src/TEllipse.cxx,
	  graf/src/TFrame.cxx, graf/src/TGaxis.cxx, graf/src/TGraph.cxx,
	  graf/src/TGraphAsymmErrors.cxx, graf/src/TGraphBentErrors.cxx,
	  graf/src/TGraphErrors.cxx, graf/src/TGraphPolar.cxx,
	  graf/src/TGraphQQ.cxx, graf/src/TGraphSmooth.cxx,
	  graf/src/TImage.cxx, graf/src/TLatex.cxx, graf/src/TLegend.cxx,
	  graf/src/TLegendEntry.cxx, graf/src/TLine.cxx,
	  graf/src/TLink.cxx, graf/src/TMarker.cxx,
	  graf/src/TMultiGraph.cxx, graf/src/TPave.cxx,
	  graf/src/TPaveLabel.cxx, graf/src/TPaveStats.cxx,
	  graf/src/TPaveText.cxx, graf/src/TPavesText.cxx,
	  graf/src/TPie.cxx, graf/src/TPieSlice.cxx, graf/src/TPoints.cxx,
	  graf/src/TPolyLine.cxx, graf/src/TSpline.cxx, graf/src/TTF.cxx,
	  graf/src/TText.cxx, graf/src/TWbox.cxx, gui/Module.mk,
	  gui/doc/index.txt, gui/inc/HelpText.h, gui/inc/LinkDef1.h,
	  gui/inc/LinkDef2.h, gui/inc/LinkDef3.h, gui/inc/TG3DLine.h,
	  gui/inc/TGApplication.h, gui/inc/TGButton.h,
	  gui/inc/TGButtonGroup.h, gui/inc/TGCanvas.h, gui/inc/TGClient.h,
	  gui/inc/TGColorDialog.h, gui/inc/TGColorSelect.h,
	  gui/inc/TGComboBox.h, gui/inc/TGCommandPlugin.h,
	  gui/inc/TGDNDManager.h, gui/inc/TGDimension.h,
	  gui/inc/TGDockableFrame.h, gui/inc/TGDoubleSlider.h,
	  gui/inc/TGFSComboBox.h, gui/inc/TGFSContainer.h,
	  gui/inc/TGFileBrowser.h, gui/inc/TGFileDialog.h,
	  gui/inc/TGFont.h, gui/inc/TGFontDialog.h, gui/inc/TGFrame.h,
	  gui/inc/TGGC.h, gui/inc/TGIcon.h, gui/inc/TGIdleHandler.h,
	  gui/inc/TGImageMap.h, gui/inc/TGInputDialog.h, gui/inc/TGLabel.h,
	  gui/inc/TGLayout.h, gui/inc/TGListBox.h, gui/inc/TGListTree.h,
	  gui/inc/TGListView.h, gui/inc/TGMdi.h, gui/inc/TGMdiDecorFrame.h,
	  gui/inc/TGMdiFrame.h, gui/inc/TGMdiMainFrame.h,
	  gui/inc/TGMdiMenu.h, gui/inc/TGMenu.h, gui/inc/TGMimeTypes.h,
	  gui/inc/TGMsgBox.h, gui/inc/TGNumberEntry.h, gui/inc/TGObject.h,
	  gui/inc/TGPasswdDialog.h, gui/inc/TGPicture.h,
	  gui/inc/TGProgressBar.h, gui/inc/TGRedirectOutputGuard.h,
	  gui/inc/TGResourcePool.h, gui/inc/TGScrollBar.h,
	  gui/inc/TGShutter.h, gui/inc/TGSlider.h, gui/inc/TGSpeedo.h,
	  gui/inc/TGSplitter.h, gui/inc/TGStatusBar.h, gui/inc/TGString.h,
	  gui/inc/TGTab.h, gui/inc/TGTableLayout.h, gui/inc/TGText.h,
	  gui/inc/TGTextBuffer.h, gui/inc/TGTextEdit.h,
	  gui/inc/TGTextEditDialogs.h, gui/inc/TGTextEditor.h,
	  gui/inc/TGTextEntry.h, gui/inc/TGTextView.h, gui/inc/TGToolBar.h,
	  gui/inc/TGToolTip.h, gui/inc/TGTripleSlider.h, gui/inc/TGView.h,
	  gui/inc/TGWidget.h, gui/inc/TGWindow.h, gui/inc/TGXYLayout.h,
	  gui/inc/TGuiBuilder.h, gui/inc/TRootApplication.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootBrowserLite.h,
	  gui/inc/TRootCanvas.h, gui/inc/TRootContextMenu.h,
	  gui/inc/TRootControlBar.h, gui/inc/TRootDialog.h,
	  gui/inc/TRootEmbeddedCanvas.h, gui/inc/TRootGuiFactory.h,
	  gui/inc/TRootHelpDialog.h, gui/inc/TVirtualDragManager.h,
	  gui/inc/WidgetMessageTypes.h, gui/src/HelpText.cxx,
	  gui/src/TG3DLine.cxx, gui/src/TGApplication.cxx,
	  gui/src/TGButton.cxx, gui/src/TGButtonGroup.cxx,
	  gui/src/TGCanvas.cxx, gui/src/TGClient.cxx,
	  gui/src/TGColorDialog.cxx, gui/src/TGColorSelect.cxx,
	  gui/src/TGComboBox.cxx, gui/src/TGCommandPlugin.cxx,
	  gui/src/TGDNDManager.cxx, gui/src/TGDimension.cxx,
	  gui/src/TGDockableFrame.cxx, gui/src/TGDoubleSlider.cxx,
	  gui/src/TGFSComboBox.cxx, gui/src/TGFSContainer.cxx,
	  gui/src/TGFileBrowser.cxx, gui/src/TGFileDialog.cxx,
	  gui/src/TGFont.cxx, gui/src/TGFontDialog.cxx,
	  gui/src/TGFrame.cxx, gui/src/TGGC.cxx, gui/src/TGIcon.cxx,
	  gui/src/TGIdleHandler.cxx, gui/src/TGImageMap.cxx,
	  gui/src/TGInputDialog.cxx, gui/src/TGLabel.cxx,
	  gui/src/TGLayout.cxx, gui/src/TGListBox.cxx,
	  gui/src/TGListTree.cxx, gui/src/TGListView.cxx,
	  gui/src/TGMdiDecorFrame.cxx, gui/src/TGMdiFrame.cxx,
	  gui/src/TGMdiMainFrame.cxx, gui/src/TGMdiMenu.cxx,
	  gui/src/TGMenu.cxx, gui/src/TGMimeTypes.cxx,
	  gui/src/TGMsgBox.cxx, gui/src/TGNumberEntry.cxx,
	  gui/src/TGObject.cxx, gui/src/TGPasswdDialog.cxx,
	  gui/src/TGPicture.cxx, gui/src/TGProgressBar.cxx,
	  gui/src/TGRedirectOutputGuard.cxx, gui/src/TGResourcePool.cxx,
	  gui/src/TGScrollBar.cxx, gui/src/TGShutter.cxx,
	  gui/src/TGSlider.cxx, gui/src/TGSpeedo.cxx,
	  gui/src/TGSplitter.cxx, gui/src/TGStatusBar.cxx,
	  gui/src/TGString.cxx, gui/src/TGTab.cxx,
	  gui/src/TGTableLayout.cxx, gui/src/TGText.cxx,
	  gui/src/TGTextBuffer.cxx, gui/src/TGTextEdit.cxx,
	  gui/src/TGTextEditDialogs.cxx, gui/src/TGTextEditor.cxx,
	  gui/src/TGTextEntry.cxx, gui/src/TGTextView.cxx,
	  gui/src/TGToolBar.cxx, gui/src/TGToolTip.cxx,
	  gui/src/TGTripleSlider.cxx, gui/src/TGView.cxx,
	  gui/src/TGWidget.cxx, gui/src/TGWindow.cxx,
	  gui/src/TGXYLayout.cxx, gui/src/TGuiBuilder.cxx,
	  gui/src/TRootApplication.cxx, gui/src/TRootBrowser.cxx,
	  gui/src/TRootBrowserLite.cxx, gui/src/TRootCanvas.cxx,
	  gui/src/TRootContextMenu.cxx, gui/src/TRootControlBar.cxx,
	  gui/src/TRootDialog.cxx, gui/src/TRootEmbeddedCanvas.cxx,
	  gui/src/TRootGuiFactory.cxx, gui/src/TRootHelpDialog.cxx,
	  gui/src/TVirtualDragManager.cxx, guibuilder/Module.mk,
	  guibuilder/doc/index.txt, guibuilder/inc/LinkDef.h,
	  guibuilder/inc/TGuiBldDragManager.h,
	  guibuilder/inc/TGuiBldEditor.h,
	  guibuilder/inc/TGuiBldHintsButton.h,
	  guibuilder/inc/TGuiBldHintsEditor.h,
	  guibuilder/inc/TGuiBldNameFrame.h,
	  guibuilder/inc/TRootGuiBuilder.h,
	  guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldEditor.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx,
	  guibuilder/src/TGuiBldNameFrame.cxx,
	  guibuilder/src/TRootGuiBuilder.cxx, guihtml/Module.mk,
	  guihtml/doc/index.txt, guihtml/inc/LinkDef.h,
	  guihtml/inc/TGHtml.h, guihtml/inc/TGHtmlBrowser.h,
	  guihtml/inc/TGHtmlTokens.h, guihtml/inc/TGHtmlUri.h,
	  guihtml/src/TGHtml.cxx, guihtml/src/TGHtmlBrowser.cxx,
	  guihtml/src/TGHtmlDraw.cxx, guihtml/src/TGHtmlElement.cxx,
	  guihtml/src/TGHtmlForm.cxx, guihtml/src/TGHtmlImage.cxx,
	  guihtml/src/TGHtmlIndex.cxx, guihtml/src/TGHtmlLayout.cxx,
	  guihtml/src/TGHtmlParse.cxx, guihtml/src/TGHtmlSizer.cxx,
	  guihtml/src/TGHtmlTable.cxx, guihtml/src/TGHtmlTokenMap.cxx,
	  guihtml/src/TGHtmlUri.cxx, hbook/Module.mk, hbook/doc/index.txt,
	  hbook/inc/LinkDef.h, hbook/inc/THbookBranch.h,
	  hbook/inc/THbookFile.h, hbook/inc/THbookKey.h,
	  hbook/inc/THbookTree.h, hbook/src/THbookBranch.cxx,
	  hbook/src/THbookFile.cxx, hbook/src/THbookKey.cxx,
	  hbook/src/THbookTree.cxx, hbook/src/hntvar2.f, hist/Module.mk,
	  hist/doc/index.txt, hist/inc/Foption.h, hist/inc/LinkDef.h,
	  hist/inc/TAxis.h, hist/inc/TBinomialEfficiencyFitter.h,
	  hist/inc/TConfidenceLevel.h, hist/inc/TF1.h, hist/inc/TF12.h,
	  hist/inc/TF2.h, hist/inc/TF3.h, hist/inc/TFormula.h,
	  hist/inc/TFormulaPrimitive.h, hist/inc/TFractionFitter.h,
	  hist/inc/TGraph2D.h, hist/inc/TGraph2DErrors.h,
	  hist/inc/TGraphDelaunay.h, hist/inc/TH1.h, hist/inc/TH1C.h,
	  hist/inc/TH1D.h, hist/inc/TH1F.h, hist/inc/TH1I.h,
	  hist/inc/TH1K.h, hist/inc/TH1S.h, hist/inc/TH2.h,
	  hist/inc/TH2C.h, hist/inc/TH2D.h, hist/inc/TH2F.h,
	  hist/inc/TH2I.h, hist/inc/TH2S.h, hist/inc/TH3.h,
	  hist/inc/TH3C.h, hist/inc/TH3D.h, hist/inc/TH3F.h,
	  hist/inc/TH3I.h, hist/inc/TH3S.h, hist/inc/THLimitsFinder.h,
	  hist/inc/THStack.h, hist/inc/THnSparse.h, hist/inc/TLimit.h,
	  hist/inc/TLimitDataSource.h, hist/inc/TMultiDimFit.h,
	  hist/inc/TPolyMarker.h, hist/inc/TPrincipal.h,
	  hist/inc/TProfile.h, hist/inc/TProfile2D.h,
	  hist/inc/TProfile3D.h, hist/inc/TVirtualHistPainter.h,
	  hist/src/Haxis.cxx, hist/src/TAxis.cxx,
	  hist/src/TBinomialEfficiencyFitter.cxx,
	  hist/src/TConfidenceLevel.cxx, hist/src/TF1.cxx,
	  hist/src/TF12.cxx, hist/src/TF1Helper.cxx, hist/src/TF1Helper.h,
	  hist/src/TF2.cxx, hist/src/TF3.cxx, hist/src/TFormula.cxx,
	  hist/src/TFormulaMathInterface.cxx,
	  hist/src/TFormulaPrimitive.cxx, hist/src/TFractionFitter.cxx,
	  hist/src/TGraph2D.cxx, hist/src/TGraph2DErrors.cxx,
	  hist/src/TGraphDelaunay.cxx, hist/src/TH1.cxx, hist/src/TH1K.cxx,
	  hist/src/TH2.cxx, hist/src/TH3.cxx, hist/src/THLimitsFinder.cxx,
	  hist/src/THStack.cxx, hist/src/THnSparse.cxx,
	  hist/src/TLimit.cxx, hist/src/TLimitDataSource.cxx,
	  hist/src/TMultiDimFit.cxx, hist/src/TPolyMarker.cxx,
	  hist/src/TPrincipal.cxx, hist/src/TProfile.cxx,
	  hist/src/TProfile2D.cxx, hist/src/TProfile3D.cxx,
	  hist/src/TVirtualHistPainter.cxx, histpainter/Module.mk,
	  histpainter/inc/Hoption.h, histpainter/inc/Hparam.h,
	  histpainter/inc/LinkDef.h, histpainter/inc/TGraphPainter.h,
	  histpainter/inc/THistPainter.h, histpainter/inc/TLego.h,
	  histpainter/inc/TPainter3dAlgorithms.h,
	  histpainter/inc/TPaletteAxis.h,
	  histpainter/src/TGraphPainter.cxx,
	  histpainter/src/THistPainter.cxx,
	  histpainter/src/TPainter3dAlgorithms.cxx,
	  histpainter/src/TPaletteAxis.cxx, html/Module.mk,
	  html/doc/index.txt, html/doc/macros/testmacro.C,
	  html/inc/LinkDef.h, html/inc/TClassDocOutput.h,
	  html/inc/TDocDirective.h, html/inc/TDocInfo.h,
	  html/inc/TDocOutput.h, html/inc/TDocParser.h, html/inc/THtml.h,
	  html/src/TClassDocOutput.cxx, html/src/TDocDirective.cxx,
	  html/src/TDocInfo.cxx, html/src/TDocOutput.cxx,
	  html/src/TDocParser.cxx, html/src/THtml.cxx, io/Module.mk,
	  io/doc/index.txt, io/inc/LinkDef.h, io/inc/TArchiveFile.h,
	  io/inc/TBufferFile.h, io/inc/TCollectionProxyFactory.h,
	  io/inc/TContainerConverters.h, io/inc/TDirectoryFile.h,
	  io/inc/TEmulatedCollectionProxy.h, io/inc/TEmulatedMapProxy.h,
	  io/inc/TFile.h, io/inc/TFileCacheRead.h,
	  io/inc/TFileCacheWrite.h, io/inc/TFree.h,
	  io/inc/TGenCollectionProxy.h, io/inc/TGenCollectionStreamer.h,
	  io/inc/TKey.h, io/inc/TKeyMapFile.h, io/inc/TMapFile.h,
	  io/inc/TStreamerInfo.h, io/inc/TZIPFile.h,
	  io/src/TArchiveFile.cxx, io/src/TBufferFile.cxx,
	  io/src/TCollectionProxyFactory.cxx,
	  io/src/TContainerConverters.cxx, io/src/TDirectoryFile.cxx,
	  io/src/TEmulatedCollectionProxy.cxx,
	  io/src/TEmulatedMapProxy.cxx, io/src/TFile.cxx,
	  io/src/TFileCacheRead.cxx, io/src/TFileCacheWrite.cxx,
	  io/src/TFree.cxx, io/src/TGenCollectionProxy.cxx,
	  io/src/TGenCollectionStreamer.cxx, io/src/TKey.cxx,
	  io/src/TKeyMapFile.cxx, io/src/TMapFile.cxx,
	  io/src/TStreamerInfo.cxx, io/src/TStreamerInfoReadBuffer.cxx,
	  io/src/TStreamerInfoWriteBuffer.cxx, io/src/TZIPFile.cxx,
	  krb5auth/Module.mk, krb5auth/inc/Krb5Auth.h,
	  krb5auth/inc/LinkDef.h, krb5auth/inc/TKSocket.h,
	  krb5auth/src/Krb5Auth.cxx, krb5auth/src/TKSocket.cxx,
	  ldap/Module.mk, ldap/inc/CintLDAP.h, ldap/inc/LinkDef.h,
	  ldap/inc/TLDAPAttribute.h, ldap/inc/TLDAPEntry.h,
	  ldap/inc/TLDAPResult.h, ldap/inc/TLDAPServer.h,
	  ldap/src/TLDAPAttribute.cxx, ldap/src/TLDAPEntry.cxx,
	  ldap/src/TLDAPResult.cxx, ldap/src/TLDAPServer.cxx,
	  macros/Dialogs.C, main/Module.mk, main/src/cppmain.cxx,
	  main/src/g2root.f, main/src/g2rootold.f, main/src/h2root.cxx,
	  main/src/hadd.cxx, main/src/pmain.cxx, main/src/proofserv.sh,
	  main/src/rmain.cxx, main/src/roots.cxx, main/src/roots.sh,
	  main/src/setpawc.c, main/src/ssh2rpd.cxx, main/win32/cfget.c,
	  main/win32/cfgeto.c, main/win32/cfopei.c, main/win32/cfput.c,
	  main/win32/cfputo.c, main/win32/setpawc.c, main/win32/tzvers.f,
	  math/Module.mk, math/doc/index.txt, math/inc/LinkDef.h,
	  math/inc/Math/ParamFunctor.h, math/inc/TComplex.h,
	  math/inc/TMath.h, math/inc/TRandom.h, math/inc/TRandom1.h,
	  math/inc/TRandom2.h, math/inc/TRandom3.h, math/src/TComplex.cxx,
	  math/src/TMath.cxx, math/src/TRandom.cxx, math/src/TRandom1.cxx,
	  math/src/TRandom2.cxx, math/src/TRandom3.cxx, mathcore/Module.mk,
	  mathcore/build/Makefile.am, mathcore/build/setup.sh,
	  mathcore/doc/index.txt,
	  mathcore/inc/Math/AdaptiveIntegratorMultiDim.h,
	  mathcore/inc/Math/AllIntegrationTypes.h,
	  mathcore/inc/Math/AxisAngle.h, mathcore/inc/Math/Boost.h,
	  mathcore/inc/Math/BoostX.h, mathcore/inc/Math/BoostY.h,
	  mathcore/inc/Math/BoostZ.h, mathcore/inc/Math/Cartesian2D.h,
	  mathcore/inc/Math/Cartesian3D.h,
	  mathcore/inc/Math/Cylindrical3D.h,
	  mathcore/inc/Math/CylindricalEta3D.h,
	  mathcore/inc/Math/DisplacementVector2D.h,
	  mathcore/inc/Math/DisplacementVector3D.h,
	  mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/DistFuncMathCore.h, mathcore/inc/Math/Error.h,
	  mathcore/inc/Math/EulerAngles.h,
	  mathcore/inc/Math/FitMethodFunction.h,
	  mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/3DConversions.h,
	  mathcore/inc/Math/GenVector/3DDistances.h,
	  mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/AxisAnglefwd.h,
	  mathcore/inc/Math/GenVector/BitReproducible.h,
	  mathcore/inc/Math/GenVector/Boost.h,
	  mathcore/inc/Math/GenVector/BoostX.h,
	  mathcore/inc/Math/GenVector/BoostXfwd.h,
	  mathcore/inc/Math/GenVector/BoostY.h,
	  mathcore/inc/Math/GenVector/BoostYfwd.h,
	  mathcore/inc/Math/GenVector/BoostZ.h,
	  mathcore/inc/Math/GenVector/BoostZfwd.h,
	  mathcore/inc/Math/GenVector/Boostfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian2D.h,
	  mathcore/inc/Math/GenVector/Cartesian2Dfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/GenVector/Cartesian3Dfwd.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/GenVector/Cylindrical3D.h,
	  mathcore/inc/Math/GenVector/Cylindrical3Dfwd.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3D.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/EulerAnglesfwd.h,
	  mathcore/inc/Math/GenVector/GenVectorIO.h,
	  mathcore/inc/Math/GenVector/GenVector_exception.h,
	  mathcore/inc/Math/GenVector/LorentzRotation.h,
	  mathcore/inc/Math/GenVector/LorentzRotationfwd.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/LorentzVectorfwd.h,
	  mathcore/inc/Math/GenVector/Plane3D.h,
	  mathcore/inc/Math/GenVector/Polar2D.h,
	  mathcore/inc/Math/GenVector/Polar2Dfwd.h,
	  mathcore/inc/Math/GenVector/Polar3D.h,
	  mathcore/inc/Math/GenVector/Polar3Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/PositionVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4Dfwd.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Quaternionfwd.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/Rotation3Dfwd.h,
	  mathcore/inc/Math/GenVector/RotationX.h,
	  mathcore/inc/Math/GenVector/RotationXfwd.h,
	  mathcore/inc/Math/GenVector/RotationY.h,
	  mathcore/inc/Math/GenVector/RotationYfwd.h,
	  mathcore/inc/Math/GenVector/RotationZ.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h,
	  mathcore/inc/Math/GenVector/RotationZYXfwd.h,
	  mathcore/inc/Math/GenVector/RotationZfwd.h,
	  mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/inc/Math/GenVector/VectorUtil.h,
	  mathcore/inc/Math/GenVector/eta.h,
	  mathcore/inc/Math/GenVector/etaMax.h,
	  mathcore/inc/Math/IFunction.h, mathcore/inc/Math/IFunctionfwd.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IParamFunctionfwd.h,
	  mathcore/inc/Math/Integrator.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/LinkDef_GenVector.h,
	  mathcore/inc/Math/LinkDef_GenVector32.h,
	  mathcore/inc/Math/LinkDef_Point3D.h,
	  mathcore/inc/Math/LinkDef_Rotation.h,
	  mathcore/inc/Math/LinkDef_Vector3D.h,
	  mathcore/inc/Math/LinkDef_Vector4D.h,
	  mathcore/inc/Math/LorentzRotation.h,
	  mathcore/inc/Math/LorentzVector.h, mathcore/inc/Math/Math.h,
	  mathcore/inc/Math/Minimizer.h, mathcore/inc/Math/PdfFunc.h,
	  mathcore/inc/Math/PdfFuncMathCore.h, mathcore/inc/Math/Plane3D.h,
	  mathcore/inc/Math/Point2D.h, mathcore/inc/Math/Point2Dfwd.h,
	  mathcore/inc/Math/Point3D.h, mathcore/inc/Math/Point3Dfwd.h,
	  mathcore/inc/Math/Polar2D.h, mathcore/inc/Math/Polar3D.h,
	  mathcore/inc/Math/PositionVector2D.h,
	  mathcore/inc/Math/PositionVector3D.h,
	  mathcore/inc/Math/ProbFunc.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/PtEtaPhiE4D.h, mathcore/inc/Math/PtEtaPhiM4D.h,
	  mathcore/inc/Math/PxPyPzE4D.h, mathcore/inc/Math/PxPyPzM4D.h,
	  mathcore/inc/Math/Quaternion.h, mathcore/inc/Math/Rotation3D.h,
	  mathcore/inc/Math/RotationX.h, mathcore/inc/Math/RotationY.h,
	  mathcore/inc/Math/RotationZ.h, mathcore/inc/Math/RotationZYX.h,
	  mathcore/inc/Math/SpecFunc.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/Transform3D.h,
	  mathcore/inc/Math/Translation3D.h, mathcore/inc/Math/Util.h,
	  mathcore/inc/Math/Vector2D.h, mathcore/inc/Math/Vector2Dfwd.h,
	  mathcore/inc/Math/Vector3D.h, mathcore/inc/Math/Vector3Dfwd.h,
	  mathcore/inc/Math/Vector4D.h, mathcore/inc/Math/Vector4Dfwd.h,
	  mathcore/inc/Math/VectorUtil.h,
	  mathcore/inc/Math/VectorUtil_Cint.h,
	  mathcore/inc/Math/VirtualIntegrator.h,
	  mathcore/inc/Math/WrappedFunction.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/3DConversions.cxx, mathcore/src/3DDistances.cxx,
	  mathcore/src/AdaptiveIntegratorMultiDim.cxx,
	  mathcore/src/AxisAngle.cxx, mathcore/src/AxisAngleXother.cxx,
	  mathcore/src/BitReproducible.cxx, mathcore/src/Boost.cxx,
	  mathcore/src/BoostX.cxx, mathcore/src/BoostY.cxx,
	  mathcore/src/BoostZ.cxx, mathcore/src/EulerAngles.cxx,
	  mathcore/src/GenVector_exception.cxx,
	  mathcore/src/Integrator.cxx, mathcore/src/LorentzRotation.cxx,
	  mathcore/src/PdfFuncMathCore.cxx, mathcore/src/Plane3D.cxx,
	  mathcore/src/ProbFuncMathCore.cxx, mathcore/src/Quaternion.cxx,
	  mathcore/src/QuaternionXaxial.cxx, mathcore/src/Rotation3D.cxx,
	  mathcore/src/Rotation3DxAxial.cxx, mathcore/src/RotationZYX.cxx,
	  mathcore/src/SpecFuncCephes.cxx, mathcore/src/SpecFuncCephes.h,
	  mathcore/src/SpecFuncCephesInv.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathcore/src/Transform3D.cxx,
	  mathcore/src/Translation3D.cxx, mathcore/src/VectorUtil.cxx,
	  mathcore/test/CoordinateTraits.h, mathcore/test/Makefile,
	  mathcore/test/RotationTraits.h, mathcore/test/Track.h,
	  mathcore/test/TrackLinkDef.h, mathcore/test/coordinates3D.cxx,
	  mathcore/test/coordinates4D.cxx,
	  mathcore/test/rotationApplication.cxx,
	  mathcore/test/stress2D.cxx, mathcore/test/stress3D.cxx,
	  mathcore/test/testBoost.cxx, mathcore/test/testGenVector.cxx,
	  mathcore/test/testIntegration.cxx,
	  mathcore/test/testIterator.cxx, mathcore/test/testVectorIO.cxx,
	  mathcore/test/vectorOperation.cxx, mathmore/Module.mk,
	  mathmore/build/Makefile.am, mathmore/build/setup.sh,
	  mathmore/doc/index.txt, mathmore/inc/Math/Chebyshev.h,
	  mathmore/inc/Math/Derivator.h,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLFunctionAdapter.h,
	  mathmore/inc/Math/GSLIntegrator.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/GSLRootHelper.h,
	  mathmore/inc/Math/GSLSimAnMinimizer.h,
	  mathmore/inc/Math/GSLSimAnnealing.h,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/InterpolationTypes.h,
	  mathmore/inc/Math/Interpolator.h,
	  mathmore/inc/Math/KelvinFunctions.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_RootFinding.h,
	  mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/MCIntegrationTypes.h,
	  mathmore/inc/Math/MCParameters.h,
	  mathmore/inc/Math/Minimizer1D.h,
	  mathmore/inc/Math/NumGradFunction.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/QuantFuncMathMore.h,
	  mathmore/inc/Math/Random.h, mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/inc/Math/WrappedMultiTF1.h,
	  mathmore/inc/Math/WrappedTF1.h, mathmore/src/Chebyshev.cxx,
	  mathmore/src/Derivator.cxx, mathmore/src/GSL1DMinimizer.h,
	  mathmore/src/GSLChebSeries.h, mathmore/src/GSLDerivator.cxx,
	  mathmore/src/GSLDerivator.h, mathmore/src/GSLError.h,
	  mathmore/src/GSLFunctionWrapper.h,
	  mathmore/src/GSLIntegrationWorkspace.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLInterpolator.cxx,
	  mathmore/src/GSLInterpolator.h,
	  mathmore/src/GSLMCIntegrationWorkspace.h,
	  mathmore/src/GSLMCIntegrator.cxx, mathmore/src/GSLMinimizer.cxx,
	  mathmore/src/GSLMonteFunctionAdapter.h,
	  mathmore/src/GSLMonteFunctionWrapper.h,
	  mathmore/src/GSLMultiFit.h,
	  mathmore/src/GSLMultiFitFunctionAdapter.h,
	  mathmore/src/GSLMultiFitFunctionWrapper.h,
	  mathmore/src/GSLMultiMinFunctionAdapter.h,
	  mathmore/src/GSLMultiMinFunctionWrapper.h,
	  mathmore/src/GSLMultiMinimizer.h,
	  mathmore/src/GSLNLSMinimizer.cxx,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRngWrapper.h,
	  mathmore/src/GSLRootFSolver.h, mathmore/src/GSLRootFdFSolver.h,
	  mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx,
	  mathmore/src/GSLRootHelper.cxx,
	  mathmore/src/GSLSimAnMinimizer.cxx,
	  mathmore/src/GSLSimAnnealing.cxx, mathmore/src/Interpolator.cxx,
	  mathmore/src/KelvinFunctions.cxx, mathmore/src/Minimizer1D.cxx,
	  mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/ParamFunction.cxx, mathmore/src/PdfFuncMathMore.cxx,
	  mathmore/src/Polynomial.cxx, mathmore/src/QuantFuncMathMore.cxx,
	  mathmore/src/RootFinderAlgorithms.cxx,
	  mathmore/src/SpecFuncMathMore.cxx,
	  mathmore/src/complex_quartic.h, mathmore/test/Makefile,
	  mathmore/test/UnuRanDist.h, mathmore/test/piRandom.C,
	  mathmore/test/pirndm.C, mathmore/test/simanTSP.cxx,
	  mathmore/test/testChebyshev.cxx,
	  mathmore/test/testDerivation.cxx, mathmore/test/testFunctor.cxx,
	  mathmore/test/testIntegration.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx,
	  mathmore/test/testInterpolation.cxx,
	  mathmore/test/testMinimization1D.cxx,
	  mathmore/test/testRandom.cxx, mathmore/test/testRandomDist.cxx,
	  mathmore/test/testRootFinder.cxx, mathmore/test/testSpecFunc.cxx,
	  mathmore/test/testStatFunc.cxx, matrix/Module.mk,
	  matrix/doc/index.txt, matrix/inc/LinkDef.h,
	  matrix/inc/TDecompBK.h, matrix/inc/TDecompBase.h,
	  matrix/inc/TDecompChol.h, matrix/inc/TDecompLU.h,
	  matrix/inc/TDecompQRH.h, matrix/inc/TDecompSVD.h,
	  matrix/inc/TDecompSparse.h, matrix/inc/TMatrix.h,
	  matrix/inc/TMatrixD.h, matrix/inc/TMatrixDBase.h,
	  matrix/inc/TMatrixDBasefwd.h, matrix/inc/TMatrixDEigen.h,
	  matrix/inc/TMatrixDLazy.h, matrix/inc/TMatrixDSparse.h,
	  matrix/inc/TMatrixDSparsefwd.h, matrix/inc/TMatrixDSym.h,
	  matrix/inc/TMatrixDSymEigen.h, matrix/inc/TMatrixDSymfwd.h,
	  matrix/inc/TMatrixDUtils.h, matrix/inc/TMatrixDUtilsfwd.h,
	  matrix/inc/TMatrixDfwd.h, matrix/inc/TMatrixF.h,
	  matrix/inc/TMatrixFBase.h, matrix/inc/TMatrixFBasefwd.h,
	  matrix/inc/TMatrixFLazy.h, matrix/inc/TMatrixFSparse.h,
	  matrix/inc/TMatrixFSparsefwd.h, matrix/inc/TMatrixFSym.h,
	  matrix/inc/TMatrixFSymfwd.h, matrix/inc/TMatrixFUtils.h,
	  matrix/inc/TMatrixFUtilsfwd.h, matrix/inc/TMatrixFfwd.h,
	  matrix/inc/TMatrixT.h, matrix/inc/TMatrixTBase.h,
	  matrix/inc/TMatrixTCramerInv.h, matrix/inc/TMatrixTLazy.h,
	  matrix/inc/TMatrixTSparse.h, matrix/inc/TMatrixTSym.h,
	  matrix/inc/TMatrixTSymCramerInv.h, matrix/inc/TMatrixTUtils.h,
	  matrix/inc/TVector.h, matrix/inc/TVectorD.h,
	  matrix/inc/TVectorDfwd.h, matrix/inc/TVectorF.h,
	  matrix/inc/TVectorFfwd.h, matrix/inc/TVectorT.h,
	  matrix/inc/TVectorfwd.h, matrix/src/TDecompBK.cxx,
	  matrix/src/TDecompBase.cxx, matrix/src/TDecompChol.cxx,
	  matrix/src/TDecompLU.cxx, matrix/src/TDecompQRH.cxx,
	  matrix/src/TDecompSVD.cxx, matrix/src/TDecompSparse.cxx,
	  matrix/src/TMatrixDEigen.cxx, matrix/src/TMatrixDSymEigen.cxx,
	  matrix/src/TMatrixT.cxx, matrix/src/TMatrixTBase.cxx,
	  matrix/src/TMatrixTCramerInv.cxx, matrix/src/TMatrixTLazy.cxx,
	  matrix/src/TMatrixTSparse.cxx, matrix/src/TMatrixTSym.cxx,
	  matrix/src/TMatrixTSymCramerInv.cxx,
	  matrix/src/TMatrixTUtils.cxx, matrix/src/TVectorT.cxx,
	  meta/Module.mk, meta/doc/index.txt, meta/inc/LinkDef.h,
	  meta/inc/TBaseClass.h, meta/inc/TCint.h, meta/inc/TClass.h,
	  meta/inc/TClassGenerator.h, meta/inc/TClassMenuItem.h,
	  meta/inc/TClassRef.h, meta/inc/TClassStreamer.h,
	  meta/inc/TDataMember.h, meta/inc/TDataType.h,
	  meta/inc/TDictionary.h, meta/inc/TFunction.h,
	  meta/inc/TGenericClassInfo.h, meta/inc/TGlobal.h,
	  meta/inc/TInterpreter.h, meta/inc/TIsAProxy.h,
	  meta/inc/TMemberStreamer.h, meta/inc/TMethod.h,
	  meta/inc/TMethodArg.h, meta/inc/TMethodCall.h,
	  meta/inc/TRealData.h, meta/inc/TStreamer.h,
	  meta/inc/TStreamerElement.h, meta/inc/TToggle.h,
	  meta/inc/TToggleGroup.h, meta/inc/TVirtualIsAProxy.h,
	  meta/inc/TVirtualRefProxy.h, meta/inc/TVirtualStreamerInfo.h,
	  meta/src/TBaseClass.cxx, meta/src/TCint.cxx, meta/src/TClass.cxx,
	  meta/src/TClassGenerator.cxx, meta/src/TClassMenuItem.cxx,
	  meta/src/TClassRef.cxx, meta/src/TDataMember.cxx,
	  meta/src/TDataType.cxx, meta/src/TDictionary.cxx,
	  meta/src/TFunction.cxx, meta/src/TGenericClassInfo.cxx,
	  meta/src/TGlobal.cxx, meta/src/TInterpreter.cxx,
	  meta/src/TIsAProxy.cxx, meta/src/TMethod.cxx,
	  meta/src/TMethodArg.cxx, meta/src/TMethodCall.cxx,
	  meta/src/TRealData.cxx, meta/src/TStreamerElement.cxx,
	  meta/src/TToggle.cxx, meta/src/TToggleGroup.cxx,
	  meta/src/TVirtualStreamerInfo.cxx, metautils/Module.mk,
	  metautils/inc/LinkDef.h, metautils/inc/TClassEdit.h,
	  metautils/src/TClassEdit.cxx, metautils/src/dequeLinkdef.h,
	  metautils/src/listLinkdef.h, metautils/src/mapLinkdef.h,
	  metautils/src/multimapLinkdef.h, metautils/src/multisetLinkdef.h,
	  metautils/src/setLinkdef.h, metautils/src/valarrayLinkdef.h,
	  metautils/src/vectorLinkdef.h, minuit/Module.mk,
	  minuit/doc/index.txt, minuit/inc/LinkDef.h, minuit/inc/TFitter.h,
	  minuit/inc/TLinearFitter.h, minuit/inc/TMinuit.h,
	  minuit/src/TFitter.cxx, minuit/src/TLinearFitter.cxx,
	  minuit/src/TMinuit.cxx, mlp/Module.mk, mlp/inc/LinkDef.h,
	  mlp/inc/TMLPAnalyzer.h, mlp/inc/TMultiLayerPerceptron.h,
	  mlp/inc/TNeuron.h, mlp/inc/TSynapse.h, mlp/src/TMLPAnalyzer.cxx,
	  mlp/src/TMultiLayerPerceptron.cxx, mlp/src/TNeuron.cxx,
	  mlp/src/TSynapse.cxx, monalisa/Module.mk, monalisa/inc/LinkDef.h,
	  monalisa/inc/TMonaLisaReader.h, monalisa/inc/TMonaLisaWriter.h,
	  monalisa/src/TMonaLisaReader.cxx,
	  monalisa/src/TMonaLisaWriter.cxx, mysql/Module.mk,
	  mysql/inc/LinkDef.h, mysql/inc/TMySQLResult.h,
	  mysql/inc/TMySQLRow.h, mysql/inc/TMySQLServer.h,
	  mysql/inc/TMySQLStatement.h, mysql/src/TMySQLResult.cxx,
	  mysql/src/TMySQLRow.cxx, mysql/src/TMySQLServer.cxx,
	  mysql/src/TMySQLStatement.cxx, net/Module.mk, net/doc/index.txt,
	  net/inc/LinkDef.h, net/inc/NetErrors.h,
	  net/inc/RRemoteProtocol.h, net/inc/TApplicationRemote.h,
	  net/inc/TApplicationServer.h, net/inc/TFTP.h,
	  net/inc/TFileStager.h, net/inc/TGrid.h,
	  net/inc/TGridCollection.h, net/inc/TGridJDL.h,
	  net/inc/TGridJob.h, net/inc/TGridJobStatus.h,
	  net/inc/TGridJobStatusList.h, net/inc/TGridResult.h,
	  net/inc/TMessage.h, net/inc/TMonitor.h, net/inc/TNetFile.h,
	  net/inc/TPServerSocket.h, net/inc/TPSocket.h,
	  net/inc/TSQLColumnInfo.h, net/inc/TSQLMonitoring.h,
	  net/inc/TSQLResult.h, net/inc/TSQLRow.h, net/inc/TSQLServer.h,
	  net/inc/TSQLStatement.h, net/inc/TSQLTableInfo.h,
	  net/inc/TSecContext.h, net/inc/TServerSocket.h,
	  net/inc/TSocket.h, net/inc/TWebFile.h, net/src/NetErrors.cxx,
	  net/src/TApplicationRemote.cxx, net/src/TApplicationServer.cxx,
	  net/src/TFTP.cxx, net/src/TFileStager.cxx, net/src/TGrid.cxx,
	  net/src/TGridJDL.cxx, net/src/TGridJob.cxx,
	  net/src/TGridJobStatus.cxx, net/src/TGridJobStatusList.cxx,
	  net/src/TGridResult.cxx, net/src/TMessage.cxx,
	  net/src/TMonitor.cxx, net/src/TNetFile.cxx,
	  net/src/TPServerSocket.cxx, net/src/TPSocket.cxx,
	  net/src/TSQLColumnInfo.cxx, net/src/TSQLMonitoring.cxx,
	  net/src/TSQLResult.cxx, net/src/TSQLRow.cxx,
	  net/src/TSQLServer.cxx, net/src/TSQLStatement.cxx,
	  net/src/TSQLTableInfo.cxx, net/src/TSecContext.cxx,
	  net/src/TServerSocket.cxx, net/src/TSocket.cxx,
	  net/src/TWebFile.cxx, netx/Module.mk, netx/inc/LinkDef.h,
	  netx/inc/TXNetFile.h, netx/inc/TXNetFileStager.h,
	  netx/inc/TXNetSystem.h, netx/src/TXNetFile.cxx,
	  netx/src/TXNetFileStager.cxx, netx/src/TXNetSystem.cxx,
	  newdelete/Module.mk, newdelete/inc/MemCheck.h,
	  newdelete/src/MemCheck.cxx, newdelete/src/NewDelete.cxx,
	  odbc/Module.mk, odbc/inc/LinkDef.h, odbc/inc/TODBCResult.h,
	  odbc/inc/TODBCRow.h, odbc/inc/TODBCServer.h,
	  odbc/inc/TODBCStatement.h, odbc/src/TODBCResult.cxx,
	  odbc/src/TODBCRow.cxx, odbc/src/TODBCServer.cxx,
	  odbc/src/TODBCStatement.cxx, oracle/Module.mk,
	  oracle/inc/LinkDef.h, oracle/inc/TOracleResult.h,
	  oracle/inc/TOracleRow.h, oracle/inc/TOracleServer.h,
	  oracle/inc/TOracleStatement.h, oracle/src/TOracleResult.cxx,
	  oracle/src/TOracleRow.cxx, oracle/src/TOracleServer.cxx,
	  oracle/src/TOracleStatement.cxx, pcre/Module.mk, peac/Module.mk,
	  peac/inc/LinkDef.h, peac/inc/LinkDefGui.h, peac/inc/TPEAC.h,
	  peac/inc/TProofPEAC.h, peac/inc/TProofStartupDialog.h,
	  peac/src/TPEAC.cxx, peac/src/TProofPEAC.cxx,
	  peac/src/TProofStartupDialog.cxx, pgsql/Module.mk,
	  pgsql/inc/LinkDef.h, pgsql/inc/TPgSQLResult.h,
	  pgsql/inc/TPgSQLRow.h, pgsql/inc/TPgSQLServer.h,
	  pgsql/inc/TPgSQLStatement.h, pgsql/src/TPgSQLResult.cxx,
	  pgsql/src/TPgSQLRow.cxx, pgsql/src/TPgSQLServer.cxx,
	  pgsql/src/TPgSQLStatement.cxx, physics/Module.mk,
	  physics/doc/index.txt, physics/inc/LinkDef.h,
	  physics/inc/TFeldmanCousins.h, physics/inc/TGenPhaseSpace.h,
	  physics/inc/TLorentzRotation.h, physics/inc/TLorentzVector.h,
	  physics/inc/TQuaternion.h, physics/inc/TRobustEstimator.h,
	  physics/inc/TRolke.h, physics/inc/TRotation.h,
	  physics/inc/TVector2.h, physics/inc/TVector3.h,
	  physics/src/TFeldmanCousins.cxx, physics/src/TGenPhaseSpace.cxx,
	  physics/src/TLorentzRotation.cxx, physics/src/TLorentzVector.cxx,
	  physics/src/TQuaternion.cxx, physics/src/TRobustEstimator.cxx,
	  physics/src/TRolke.cxx, physics/src/TRotation.cxx,
	  physics/src/TVector2.cxx, physics/src/TVector3.cxx,
	  postscript/Module.mk, postscript/inc/LinkDef.h,
	  postscript/inc/TImageDump.h, postscript/inc/TPDF.h,
	  postscript/inc/TPostScript.h, postscript/inc/TSVG.h,
	  postscript/src/TImageDump.cxx, postscript/src/TPDF.cxx,
	  postscript/src/TPostScript.cxx, postscript/src/TSVG.cxx,
	  proof/Module.mk, proof/doc/index.txt, proof/inc/LinkDef.h,
	  proof/inc/TCondor.h, proof/inc/TDSet.h, proof/inc/TDSetProxy.h,
	  proof/inc/TProof.h, proof/inc/TProofChain.h,
	  proof/inc/TProofCondor.h, proof/inc/TProofDebug.h,
	  proof/inc/TProofLog.h, proof/inc/TProofMgr.h,
	  proof/inc/TProofNodeInfo.h, proof/inc/TProofQueryResult.h,
	  proof/inc/TProofResources.h, proof/inc/TProofResourcesStatic.h,
	  proof/inc/TProofServ.h, proof/inc/TProofSuperMaster.h,
	  proof/inc/TSlave.h, proof/inc/TVirtualProofPlayer.h,
	  proof/src/TCondor.cxx, proof/src/TDSet.cxx,
	  proof/src/TDSetProxy.cxx, proof/src/TProof.cxx,
	  proof/src/TProofChain.cxx, proof/src/TProofCondor.cxx,
	  proof/src/TProofDebug.cxx, proof/src/TProofLog.cxx,
	  proof/src/TProofMgr.cxx, proof/src/TProofNodeInfo.cxx,
	  proof/src/TProofQueryResult.cxx,
	  proof/src/TProofResourcesStatic.cxx, proof/src/TProofServ.cxx,
	  proof/src/TProofSuperMaster.cxx, proof/src/TSlave.cxx,
	  proof/src/TVirtualProofPlayer.cxx, proofd/Module.mk,
	  proofd/inc/XProofProtUtils.h, proofd/inc/XProofProtocol.h,
	  proofd/inc/XrdProofConn.h, proofd/inc/XrdProofGroup.h,
	  proofd/inc/XrdProofPhyConn.h, proofd/inc/XrdProofSched.h,
	  proofd/inc/XrdProofServProxy.h, proofd/inc/XrdProofWorker.h,
	  proofd/inc/XrdProofdAux.h, proofd/inc/XrdProofdClient.h,
	  proofd/inc/XrdProofdManager.h, proofd/inc/XrdProofdPlatform.h,
	  proofd/inc/XrdProofdProtocol.h, proofd/inc/XrdProofdResponse.h,
	  proofd/inc/XrdProofdTrace.h, proofd/inc/XrdROOT.h,
	  proofd/inc/XrdSysToOuc.h, proofd/inc/proofdp.h,
	  proofd/src/XProofProtUtils.cxx, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofGroup.cxx, proofd/src/XrdProofPhyConn.cxx,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofd/src/XrdProofdResponse.cxx, proofd/src/XrdROOT.cxx,
	  proofd/src/proofd.cxx, proofplayer/Module.mk,
	  proofplayer/inc/LinkDef.h, proofplayer/inc/LinkDefDraw.h,
	  proofplayer/inc/TDrawFeedback.h, proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TFileMerger.h, proofplayer/inc/TPacketizer.h,
	  proofplayer/inc/TPacketizerAdaptive.h,
	  proofplayer/inc/TPacketizerProgressive.h,
	  proofplayer/inc/TPacketizerUnit.h, proofplayer/inc/TPerfStats.h,
	  proofplayer/inc/TProofDraw.h, proofplayer/inc/TProofFile.h,
	  proofplayer/inc/TProofLimitsFinder.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/inc/TStatus.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TDrawFeedback.cxx,
	  proofplayer/src/TEventIter.cxx, proofplayer/src/TFileMerger.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TPacketizerUnit.cxx,
	  proofplayer/src/TPerfStats.cxx, proofplayer/src/TProofDraw.cxx,
	  proofplayer/src/TProofFile.cxx,
	  proofplayer/src/TProofLimitsFinder.cxx,
	  proofplayer/src/TProofPlayer.cxx, proofplayer/src/TStatus.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx, proofx/Module.mk,
	  proofx/inc/LinkDef.h, proofx/inc/TXHandler.h,
	  proofx/inc/TXProofMgr.h, proofx/inc/TXProofServ.h,
	  proofx/inc/TXSlave.h, proofx/inc/TXSocket.h,
	  proofx/inc/TXSocketHandler.h, proofx/inc/TXUnixSocket.h,
	  proofx/src/TXHandler.cxx, proofx/src/TXProofMgr.cxx,
	  proofx/src/TXProofServ.cxx, proofx/src/TXSlave.cxx,
	  proofx/src/TXSocket.cxx, proofx/src/TXSocketHandler.cxx,
	  proofx/src/TXUnixSocket.cxx, pyroot/Module.mk, pyroot/ROOT.py,
	  pyroot/doc/index.txt, pyroot/inc/LinkDef.h,
	  pyroot/inc/TPyDispatcher.h, pyroot/inc/TPyException.h,
	  pyroot/inc/TPyROOTApplication.h, pyroot/inc/TPyReturn.h,
	  pyroot/inc/TPython.h, pyroot/src/Adapters.cxx,
	  pyroot/src/Adapters.h, pyroot/src/ClassMethodHolder.cxx,
	  pyroot/src/ClassMethodHolder.h, pyroot/src/ConstructorHolder.cxx,
	  pyroot/src/ConstructorHolder.h, pyroot/src/Converters.cxx,
	  pyroot/src/Converters.h, pyroot/src/Executors.cxx,
	  pyroot/src/Executors.h, pyroot/src/FunctionHolder.cxx,
	  pyroot/src/FunctionHolder.h, pyroot/src/MemoryRegulator.cxx,
	  pyroot/src/MemoryRegulator.h, pyroot/src/MethodHolder.cxx,
	  pyroot/src/MethodHolder.h, pyroot/src/MethodProxy.cxx,
	  pyroot/src/MethodProxy.h, pyroot/src/ObjectProxy.cxx,
	  pyroot/src/ObjectProxy.h, pyroot/src/PropertyProxy.cxx,
	  pyroot/src/PropertyProxy.h, pyroot/src/PyBufferFactory.cxx,
	  pyroot/src/PyBufferFactory.h, pyroot/src/PyCallable.h,
	  pyroot/src/PyROOT.h, pyroot/src/PyRootType.cxx,
	  pyroot/src/PyRootType.h, pyroot/src/Pythonize.cxx,
	  pyroot/src/Pythonize.h, pyroot/src/RootModule.cxx,
	  pyroot/src/RootWrapper.cxx, pyroot/src/RootWrapper.h,
	  pyroot/src/TCustomPyTypes.cxx, pyroot/src/TCustomPyTypes.h,
	  pyroot/src/TPyClassGenerator.cxx, pyroot/src/TPyClassGenerator.h,
	  pyroot/src/TPyDispatcher.cxx, pyroot/src/TPyException.cxx,
	  pyroot/src/TPyROOTApplication.cxx, pyroot/src/TPyReturn.cxx,
	  pyroot/src/TPython.cxx, pyroot/src/TRflxCallback.cxx,
	  pyroot/src/TRflxCallback.h, pyroot/src/TSetItemHolder.cxx,
	  pyroot/src/TSetItemHolder.h, pyroot/src/Utility.cxx,
	  pyroot/src/Utility.h, pythia6/Module.mk, pythia6/inc/LinkDef.h,
	  pythia6/inc/TMCParticle.h, pythia6/inc/TPythia6.h,
	  pythia6/inc/TPythia6Calls.h, pythia6/inc/TPythia6Decayer.h,
	  pythia6/src/TMCParticle.cxx, pythia6/src/TPythia6.cxx,
	  pythia6/src/TPythia6Decayer.cxx, qt/Module.mk, qt/inc/LinkDef.h,
	  qt/inc/TGQt.h, qt/inc/TObjectExecute.h, qt/inc/TQMimeTypes.h,
	  qt/inc/TQUserEvent.h, qt/inc/TQtApplication.h, qt/inc/TQtBrush.h,
	  qt/inc/TQtClientFilter.h, qt/inc/TQtClientGuard.h,
	  qt/inc/TQtClientWidget.h, qt/inc/TQtEmitter.h, qt/inc/TQtEvent.h,
	  qt/inc/TQtEventQueue.h, qt/inc/TQtLock.h, qt/inc/TQtLockGuard.h,
	  qt/inc/TQtMarker.h, qt/inc/TQtRConfig.h,
	  qt/inc/TQtRootApplication.h, qt/inc/TQtRootSlot.h,
	  qt/inc/TQtSymbolCodec.h, qt/inc/TQtTimer.h, qt/inc/TQtUtil.h,
	  qt/inc/TQtWidget.h, qt/inc/TVirtualX.interface.h,
	  qt/inc/TWaitCondition.h, qt/src/GQtGUI.cxx, qt/src/TGQt.cxx,
	  qt/src/TGQtDummy.cxx, qt/src/TQMimeTypes.cxx,
	  qt/src/TQtApplication.cxx, qt/src/TQtBrush.cxx,
	  qt/src/TQtClientFilter.cxx, qt/src/TQtClientGuard.cxx,
	  qt/src/TQtClientWidget.cxx, qt/src/TQtEvent.cxx,
	  qt/src/TQtEventQueue.cxx, qt/src/TQtMarker.cxx,
	  qt/src/TQtRootApplication.cxx, qt/src/TQtRootSlot.cxx,
	  qt/src/TQtSymbolCodec.cxx, qt/src/TQtTimer.cxx,
	  qt/src/TQtWidget.cxx, qtgsi/Module.mk, qtgsi/inc/LinkDef.h,
	  qtgsi/inc/TQApplication.h, qtgsi/inc/TQCanvasImp.h,
	  qtgsi/inc/TQCanvasMenu.h, qtgsi/inc/TQRootApplication.h,
	  qtgsi/inc/TQRootCanvas.h, qtgsi/inc/TQRootDialog.h,
	  qtgsi/inc/TQRootGuiFactory.h, qtgsi/src/TQApplication.cxx,
	  qtgsi/src/TQCanvasImp.cxx, qtgsi/src/TQCanvasMenu.cxx,
	  qtgsi/src/TQRootApplication.cxx, qtgsi/src/TQRootCanvas.cxx,
	  qtgsi/src/TQRootDialog.cxx, qtgsi/src/TQRootGuiFactory.cxx,
	  qtgsi/test/Makefile, qtgsi/test/Makefile.win,
	  qtgsi/test/example1/Makefile, qtgsi/test/example1/Makefile.win,
	  qtgsi/test/example1/guitest.cpp, qtgsi/test/example1/guitest.h,
	  qtgsi/test/example1/main.cpp, qtgsi/test/example1/qtroot.cpp,
	  qtgsi/test/example1/qtroot.h, qtgsi/test/example2/Makefile,
	  qtgsi/test/example2/Makefile.win, qtgsi/test/example2/main.cpp,
	  qtgsi/test/example2/qtrootexample1.ui.h, qtroot/Module.mk,
	  qtroot/inc/LinkDef.h, qtroot/inc/TQtRootGuiFactory.h,
	  qtroot/src/TQtRootGuiFactory.cxx, quadp/Module.mk,
	  quadp/inc/LinkDef.h, quadp/inc/TGondzioSolver.h,
	  quadp/inc/TMehrotraSolver.h, quadp/inc/TQpDataBase.h,
	  quadp/inc/TQpDataDens.h, quadp/inc/TQpDataSparse.h,
	  quadp/inc/TQpLinSolverBase.h, quadp/inc/TQpLinSolverDens.h,
	  quadp/inc/TQpLinSolverSparse.h, quadp/inc/TQpProbBase.h,
	  quadp/inc/TQpProbDens.h, quadp/inc/TQpProbSparse.h,
	  quadp/inc/TQpResidual.h, quadp/inc/TQpSolverBase.h,
	  quadp/inc/TQpVar.h, quadp/src/TGondzioSolver.cxx,
	  quadp/src/TMehrotraSolver.cxx, quadp/src/TQpDataBase.cxx,
	  quadp/src/TQpDataDens.cxx, quadp/src/TQpDataSparse.cxx,
	  quadp/src/TQpLinSolverBase.cxx, quadp/src/TQpLinSolverDens.cxx,
	  quadp/src/TQpLinSolverSparse.cxx, quadp/src/TQpProbBase.cxx,
	  quadp/src/TQpProbDens.cxx, quadp/src/TQpProbSparse.cxx,
	  quadp/src/TQpResidual.cxx, quadp/src/TQpSolverBase.cxx,
	  quadp/src/TQpVar.cxx, rfio/Module.mk, rfio/inc/LinkDef.h,
	  rfio/inc/TRFIOFile.h, rfio/src/TRFIOFile.cxx, rint/Module.mk,
	  rint/inc/LinkDef.h, rint/inc/TRint.h, rint/inc/TTabCom.h,
	  rint/src/TRint.cxx, rint/src/TTabCom.cxx, rootd/Module.mk,
	  rootd/inc/rootdp.h, rootd/src/rootd.cxx, roots/inc/TGXClient.h,
	  roots/inc/TGXServer.h, roots/src/TGXClient.cxx,
	  roots/src/TGXServer.cxx, roots/src/roots.cxx, rootx/Module.mk,
	  rootx/src/rootx.cxx, rootx/src/rootxx.cxx, rpdutils/Module.mk,
	  rpdutils/inc/rpddefs.h, rpdutils/inc/rpderr.h,
	  rpdutils/inc/rpdp.h, rpdutils/src/daemon.cxx,
	  rpdutils/src/error.cxx, rpdutils/src/globus.cxx,
	  rpdutils/src/net.cxx, rpdutils/src/netpar.cxx,
	  rpdutils/src/rpdutils.cxx, rpdutils/src/ssh.cxx, ruby/Module.mk,
	  ruby/doc/index.txt, ruby/inc/LinkDef.h, ruby/inc/TRuby.h,
	  ruby/src/TRuby.cxx, ruby/src/drr.cxx, ruby/src/rrcommon.h,
	  ruby/src/rrenums.h, sapdb/Module.mk, sapdb/inc/LinkDef.h,
	  sapdb/inc/TSapDBResult.h, sapdb/inc/TSapDBRow.h,
	  sapdb/inc/TSapDBServer.h, sapdb/src/TSapDBResult.cxx,
	  sapdb/src/TSapDBRow.cxx, sapdb/src/TSapDBServer.cxx,
	  sessionviewer/Module.mk, sessionviewer/inc/LinkDef.h,
	  sessionviewer/inc/TProofProgressDialog.h,
	  sessionviewer/inc/TProofProgressLog.h,
	  sessionviewer/inc/TSessionDialogs.h,
	  sessionviewer/inc/TSessionLogView.h,
	  sessionviewer/inc/TSessionViewer.h,
	  sessionviewer/src/TProofProgressDialog.cxx,
	  sessionviewer/src/TProofProgressLog.cxx,
	  sessionviewer/src/TSessionDialogs.cxx,
	  sessionviewer/src/TSessionLogView.cxx,
	  sessionviewer/src/TSessionViewer.cxx, smatrix/CreateBinaryOp.sh,
	  smatrix/CreateUnaryOp.sh, smatrix/Module.mk,
	  smatrix/build/Makefile.am, smatrix/build/setup.sh,
	  smatrix/doc/index.txt, smatrix/inc/LinkDef.h,
	  smatrix/inc/LinkDefD32.h, smatrix/inc/Math/BinaryOpPolicy.h,
	  smatrix/inc/Math/BinaryOperators.h, smatrix/inc/Math/Dfact.h,
	  smatrix/inc/Math/Dfactir.h, smatrix/inc/Math/Dfinv.h,
	  smatrix/inc/Math/Dinv.h, smatrix/inc/Math/Dsfact.h,
	  smatrix/inc/Math/Dsinv.h, smatrix/inc/Math/Expression.h,
	  smatrix/inc/Math/Functions.h, smatrix/inc/Math/HelperOps.h,
	  smatrix/inc/Math/MConfig.h, smatrix/inc/Math/MatrixFunctions.h,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SMatrixDfwd.h,
	  smatrix/inc/Math/SMatrixFfwd.h, smatrix/inc/Math/SVector.h,
	  smatrix/inc/Math/StaticCheck.h,
	  smatrix/inc/Math/UnaryOperators.h, smatrix/src/Dict.h,
	  smatrix/test/Makefile, smatrix/test/TestTimer.h,
	  smatrix/test/Track.h, smatrix/test/TrackLinkDef.h,
	  smatrix/test/kalman.C, smatrix/test/matrixOperations.C,
	  smatrix/test/matrix_op.h, smatrix/test/matrix_util.h,
	  smatrix/test/stressKalman.cxx, smatrix/test/stressOperations.cxx,
	  smatrix/test/testIO.cxx, smatrix/test/testKalman.cxx,
	  smatrix/test/testOperations.cxx, smatrix/test/testSMatrix.cxx,
	  spectrum/Module.mk, spectrum/inc/LinkDef.h,
	  spectrum/inc/TSpectrum.h, spectrum/inc/TSpectrum2.h,
	  spectrum/inc/TSpectrum2Fit.h, spectrum/inc/TSpectrum2Transform.h,
	  spectrum/inc/TSpectrum3.h, spectrum/inc/TSpectrumFit.h,
	  spectrum/inc/TSpectrumTransform.h, spectrum/src/TSpectrum.cxx,
	  spectrum/src/TSpectrum2.cxx, spectrum/src/TSpectrum2Fit.cxx,
	  spectrum/src/TSpectrum2Transform.cxx,
	  spectrum/src/TSpectrum3.cxx, spectrum/src/TSpectrumFit.cxx,
	  spectrum/src/TSpectrumTransform.cxx, spectrumpainter/Module.mk,
	  spectrumpainter/inc/LinkDef.h,
	  spectrumpainter/inc/TSpectrum2Painter.h,
	  spectrumpainter/src/TSpectrum2Painter.cxx, splot/Module.mk,
	  splot/inc/LinkDef.h, splot/inc/TSPlot.h, splot/src/TSPlot.cxx,
	  sql/Module.mk, sql/inc/LinkDef.h, sql/inc/TBufferSQL2.h,
	  sql/inc/TKeySQL.h, sql/inc/TSQLClassInfo.h, sql/inc/TSQLFile.h,
	  sql/inc/TSQLObjectData.h, sql/inc/TSQLStructure.h,
	  sql/src/TBufferSQL2.cxx, sql/src/TKeySQL.cxx,
	  sql/src/TSQLClassInfo.cxx, sql/src/TSQLFile.cxx,
	  sql/src/TSQLObjectData.cxx, sql/src/TSQLStructure.cxx,
	  srputils/Module.mk, srputils/src/SRPAuth.cxx,
	  srputils/src/rpasswd.c, srputils/src/rtconf.c, table/Module.mk,
	  table/inc/LinkDef.h, table/inc/TCernLib.h, table/inc/TChair.h,
	  table/inc/TColumnView.h, table/inc/TDataSet.h,
	  table/inc/TDataSetIter.h, table/inc/TDsKey.h,
	  table/inc/TFileIter.h, table/inc/TFileSet.h,
	  table/inc/TGenericTable.h, table/inc/TIndexTable.h,
	  table/inc/TObjectSet.h, table/inc/TPoints3D.h,
	  table/inc/TPointsArray3D.h, table/inc/TPolyLineShape.h,
	  table/inc/TResponseTable.h, table/inc/TTable.h,
	  table/inc/TTable3Points.h, table/inc/TTableDescriptor.h,
	  table/inc/TTableIter.h, table/inc/TTableMap.h,
	  table/inc/TTablePadView3D.h, table/inc/TTablePoints.h,
	  table/inc/TTableSorter.h, table/inc/TVolume.h,
	  table/inc/TVolumePosition.h, table/inc/TVolumeView.h,
	  table/inc/TVolumeViewIter.h, table/inc/Ttypes.h,
	  table/inc/tableDescriptor.h, table/src/TCernLib.cxx,
	  table/src/TChair.cxx, table/src/TColumnView.cxx,
	  table/src/TDataSet.cxx, table/src/TDataSetIter.cxx,
	  table/src/TDsKey.cxx, table/src/TFileIter.cxx,
	  table/src/TFileSet.cxx, table/src/TGenericTable.cxx,
	  table/src/TIndexTable.cxx, table/src/TObjectSet.cxx,
	  table/src/TPoints3D.cxx, table/src/TPointsArray3D.cxx,
	  table/src/TPolyLineShape.cxx, table/src/TResponseTable.cxx,
	  table/src/TTable.cxx, table/src/TTable3Points.cxx,
	  table/src/TTableDescriptor.cxx, table/src/TTableIter.cxx,
	  table/src/TTableMap.cxx, table/src/TTablePadView3D.cxx,
	  table/src/TTablePoints.cxx, table/src/TTableSorter.cxx,
	  table/src/TVolume.cxx, table/src/TVolumePosition.cxx,
	  table/src/TVolumeView.cxx, table/src/TVolumeViewIter.cxx,
	  test/Aclock.cxx, test/Aclock.h, test/DrawTest.sh, test/Event.cxx,
	  test/Event.h, test/EventLinkDef.h, test/GetWebHistogram.C,
	  test/Hello.cxx, test/Hello.h, test/MainEvent.cxx, test/Makefile,
	  test/Makefile.arch, test/Makefile.win32,
	  test/ProofBench/Draw_PerfProfiles.C,
	  test/ProofBench/Draw_Slave_Access.C,
	  test/ProofBench/Draw_Time_Hists.C,
	  test/ProofBench/EventTree_NoProc.C,
	  test/ProofBench/EventTree_NoProc.h,
	  test/ProofBench/EventTree_Proc.C,
	  test/ProofBench/EventTree_Proc.h,
	  test/ProofBench/EventTree_ProcOpt.C,
	  test/ProofBench/EventTree_ProcOpt.h,
	  test/ProofBench/Makefile_event, test/ProofBench/Run_Node_Tests.C,
	  test/ProofBench/Run_Simple_Test.C,
	  test/ProofBench/SavePerfInfo.C,
	  test/ProofBench/make_event_par.sh,
	  test/ProofBench/make_event_trees.C, test/ProofBench/make_tdset.C,
	  test/QpRandomDriver.cxx, test/RootIDE/LinkDef.h,
	  test/RootIDE/Makefile, test/RootIDE/TGRootIDE.cxx,
	  test/RootIDE/TGRootIDE.h, test/RootIDE/main.cxx,
	  test/RootShower/GButtonFrame.cxx, test/RootShower/GButtonFrame.h,
	  test/RootShower/GTitleFrame.cxx, test/RootShower/GTitleFrame.h,
	  test/RootShower/Makefile, test/RootShower/MyDetector.cxx,
	  test/RootShower/MyDetector.h, test/RootShower/MyEvent.cxx,
	  test/RootShower/MyEvent.h, test/RootShower/MyParticle.cxx,
	  test/RootShower/MyParticle.h, test/RootShower/ParticlesDef.h,
	  test/RootShower/RSAbout.cxx, test/RootShower/RSAbout.h,
	  test/RootShower/RSHelpText.cxx, test/RootShower/RSHelpText.h,
	  test/RootShower/RSLinkDef.h, test/RootShower/RSMsgBox.cxx,
	  test/RootShower/RSMsgBox.h, test/RootShower/RSVersion.h,
	  test/RootShower/RootShower.cxx, test/RootShower/RootShower.h,
	  test/RootShower/SettingsDlg.cxx, test/RootShower/SettingsDlg.h,
	  test/RootShower/constants.h, test/TBench.cxx, test/TBench.h,
	  test/TestVectors.cxx, test/Tetris.cxx, test/Tetris.h,
	  test/bench.cxx, test/benchLinkDef.h, test/ctorture.cxx,
	  test/dt_DrawTest.C, test/dt_MakeFiles.sh, test/dt_MakeRef.C,
	  test/dt_RunDrawTest.C, test/dt_RunDrawTest.sh, test/dt_build.C,
	  test/dt_wrap.C, test/eventa.cxx, test/eventb.cxx,
	  test/eventload.cxx, test/guitest.cxx, test/guiviewer.cxx,
	  test/guiviewer.h, test/guiviewerLinkDef.h, test/hsimple.cxx,
	  test/hworld.cxx, test/hworld2.cxx, test/minexam.cxx,
	  test/rhtml/LinkDef.h, test/rhtml/Makefile, test/rhtml/rhtml.cxx,
	  test/rhtml/rhtml.h, test/stress.cxx, test/stressEntryList.cxx,
	  test/stressFit.cxx, test/stressGeometry.cxx,
	  test/stressGraphics.cxx, test/stressHepix.cxx,
	  test/stressLinear.cxx, test/stressShapes.cxx,
	  test/stressSpectrum.cxx, test/stressVector.cxx, test/tcollbm.cxx,
	  test/tcollex.cxx, test/test2html.cxx, test/testbits.cxx,
	  test/threads.cxx, test/tstring.cxx, test/vlazy.cxx,
	  test/vmatrix.cxx, test/vvector.cxx, thread/Module.mk,
	  thread/doc/index.txt, thread/inc/LinkDef.h,
	  thread/inc/PosixThreadInc.h, thread/inc/TAtomicCount.h,
	  thread/inc/TAtomicCountGcc.h, thread/inc/TAtomicCountPthread.h,
	  thread/inc/TAtomicCountWin32.h, thread/inc/TCondition.h,
	  thread/inc/TConditionImp.h, thread/inc/TLockFile.h,
	  thread/inc/TMutex.h, thread/inc/TMutexImp.h,
	  thread/inc/TPosixCondition.h, thread/inc/TPosixMutex.h,
	  thread/inc/TPosixThread.h, thread/inc/TPosixThreadFactory.h,
	  thread/inc/TRWLock.h, thread/inc/TSemaphore.h,
	  thread/inc/TThread.h, thread/inc/TThreadFactory.h,
	  thread/inc/TThreadImp.h, thread/inc/TWin32Condition.h,
	  thread/inc/TWin32Mutex.h, thread/inc/TWin32Thread.h,
	  thread/inc/TWin32ThreadFactory.h, thread/src/TCondition.cxx,
	  thread/src/TConditionImp.cxx, thread/src/TLockFile.cxx,
	  thread/src/TMutex.cxx, thread/src/TMutexImp.cxx,
	  thread/src/TPosixCondition.cxx, thread/src/TPosixMutex.cxx,
	  thread/src/TPosixThread.cxx, thread/src/TPosixThreadFactory.cxx,
	  thread/src/TRWLock.cxx, thread/src/TSemaphore.cxx,
	  thread/src/TThread.cxx, thread/src/TThreadFactory.cxx,
	  thread/src/TThreadImp.cxx, thread/src/TWin32Condition.cxx,
	  thread/src/TWin32Mutex.cxx, thread/src/TWin32Thread.cxx,
	  thread/src/TWin32ThreadFactory.cxx, tmva/Module.mk,
	  tmva/doc/index.txt, tmva/inc/BinarySearchTree.h,
	  tmva/inc/BinarySearchTreeNode.h, tmva/inc/BinaryTree.h,
	  tmva/inc/Config.h, tmva/inc/Configurable.h,
	  tmva/inc/CrossEntropy.h, tmva/inc/DataSet.h,
	  tmva/inc/DecisionTree.h, tmva/inc/DecisionTreeNode.h,
	  tmva/inc/Event.h, tmva/inc/Factory.h, tmva/inc/FitterBase.h,
	  tmva/inc/GeneticAlgorithm.h, tmva/inc/GeneticFitter.h,
	  tmva/inc/GeneticGenes.h, tmva/inc/GeneticPopulation.h,
	  tmva/inc/GeneticRange.h, tmva/inc/GiniIndex.h,
	  tmva/inc/IFitterTarget.h, tmva/inc/IMethod.h, tmva/inc/IMetric.h,
	  tmva/inc/Interval.h, tmva/inc/KDEKernel.h, tmva/inc/LinkDef.h,
	  tmva/inc/MCFitter.h, tmva/inc/MethodANNBase.h,
	  tmva/inc/MethodBDT.h, tmva/inc/MethodBase.h,
	  tmva/inc/MethodBayesClassifier.h, tmva/inc/MethodCFMlpANN.h,
	  tmva/inc/MethodCFMlpANN_Utils.h, tmva/inc/MethodCFMlpANN_def.h,
	  tmva/inc/MethodCommittee.h, tmva/inc/MethodCuts.h,
	  tmva/inc/MethodFDA.h, tmva/inc/MethodFisher.h,
	  tmva/inc/MethodHMatrix.h, tmva/inc/MethodKNN.h,
	  tmva/inc/MethodLikelihood.h, tmva/inc/MethodMLP.h,
	  tmva/inc/MethodPDERS.h, tmva/inc/MethodRuleFit.h,
	  tmva/inc/MethodSVM.h, tmva/inc/MethodSeedDistance.h,
	  tmva/inc/MethodTMlpANN.h, tmva/inc/MethodVariable.h,
	  tmva/inc/Methods.h, tmva/inc/MetricEuler.h,
	  tmva/inc/MetricManhattan.h, tmva/inc/MinuitFitter.h,
	  tmva/inc/MinuitWrapper.h, tmva/inc/MisClassificationError.h,
	  tmva/inc/ModulekNN.h, tmva/inc/MsgLogger.h, tmva/inc/Node.h,
	  tmva/inc/NodekNN.h, tmva/inc/Option.h, tmva/inc/PDF.h,
	  tmva/inc/Ranking.h, tmva/inc/Reader.h, tmva/inc/RootFinder.h,
	  tmva/inc/Rule.h, tmva/inc/RuleCut.h, tmva/inc/RuleEnsemble.h,
	  tmva/inc/RuleFit.h, tmva/inc/RuleFitAPI.h,
	  tmva/inc/RuleFitParams.h, tmva/inc/SdivSqrtSplusB.h,
	  tmva/inc/SeedDistance.h, tmva/inc/SeparationBase.h,
	  tmva/inc/SimulatedAnnealing.h,
	  tmva/inc/SimulatedAnnealingFitter.h, tmva/inc/TActivation.h,
	  tmva/inc/TActivationChooser.h, tmva/inc/TActivationIdentity.h,
	  tmva/inc/TActivationRadial.h, tmva/inc/TActivationSigmoid.h,
	  tmva/inc/TActivationTanh.h, tmva/inc/TNeuron.h,
	  tmva/inc/TNeuronInput.h, tmva/inc/TNeuronInputAbs.h,
	  tmva/inc/TNeuronInputChooser.h, tmva/inc/TNeuronInputSqSum.h,
	  tmva/inc/TNeuronInputSum.h, tmva/inc/TSpline1.h,
	  tmva/inc/TSpline2.h, tmva/inc/TSynapse.h, tmva/inc/Timer.h,
	  tmva/inc/Tools.h, tmva/inc/Types.h,
	  tmva/inc/VariableDecorrTransform.h,
	  tmva/inc/VariableIdentityTransform.h, tmva/inc/VariableInfo.h,
	  tmva/inc/VariablePCATransform.h,
	  tmva/inc/VariableTransformBase.h, tmva/inc/Version.h,
	  tmva/inc/Volume.h, tmva/src/BinarySearchTree.cxx,
	  tmva/src/BinarySearchTreeNode.cxx, tmva/src/BinaryTree.cxx,
	  tmva/src/Config.cxx, tmva/src/Configurable.cxx,
	  tmva/src/CrossEntropy.cxx, tmva/src/DataSet.cxx,
	  tmva/src/DecisionTree.cxx, tmva/src/DecisionTreeNode.cxx,
	  tmva/src/Event.cxx, tmva/src/Factory.cxx,
	  tmva/src/FitterBase.cxx, tmva/src/GeneticAlgorithm.cxx,
	  tmva/src/GeneticFitter.cxx, tmva/src/GeneticGenes.cxx,
	  tmva/src/GeneticPopulation.cxx, tmva/src/GeneticRange.cxx,
	  tmva/src/GiniIndex.cxx, tmva/src/IFitterTarget.cxx,
	  tmva/src/IMethod.cxx, tmva/src/IMetric.cxx,
	  tmva/src/Interval.cxx, tmva/src/KDEKernel.cxx,
	  tmva/src/MCFitter.cxx, tmva/src/MethodANNBase.cxx,
	  tmva/src/MethodBDT.cxx, tmva/src/MethodBase.cxx,
	  tmva/src/MethodBayesClassifier.cxx, tmva/src/MethodCFMlpANN.cxx,
	  tmva/src/MethodCFMlpANN_Utils.cxx, tmva/src/MethodCommittee.cxx,
	  tmva/src/MethodCuts.cxx, tmva/src/MethodFDA.cxx,
	  tmva/src/MethodFisher.cxx, tmva/src/MethodHMatrix.cxx,
	  tmva/src/MethodKNN.cxx, tmva/src/MethodLikelihood.cxx,
	  tmva/src/MethodMLP.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/MethodRuleFit.cxx, tmva/src/MethodSVM.cxx,
	  tmva/src/MethodSeedDistance.cxx, tmva/src/MethodTMlpANN.cxx,
	  tmva/src/MethodVariable.cxx, tmva/src/MetricEuler.cxx,
	  tmva/src/MetricManhattan.cxx, tmva/src/MinuitFitter.cxx,
	  tmva/src/MinuitWrapper.cxx, tmva/src/MisClassificationError.cxx,
	  tmva/src/ModulekNN.cxx, tmva/src/MsgLogger.cxx,
	  tmva/src/Node.cxx, tmva/src/Option.cxx, tmva/src/PDF.cxx,
	  tmva/src/Ranking.cxx, tmva/src/Reader.cxx,
	  tmva/src/RootFinder.cxx, tmva/src/Rule.cxx, tmva/src/RuleCut.cxx,
	  tmva/src/RuleEnsemble.cxx, tmva/src/RuleFit.cxx,
	  tmva/src/RuleFitAPI.cxx, tmva/src/RuleFitParams.cxx,
	  tmva/src/SdivSqrtSplusB.cxx, tmva/src/SeedDistance.cxx,
	  tmva/src/SeparationBase.cxx, tmva/src/SimulatedAnnealing.cxx,
	  tmva/src/SimulatedAnnealingFitter.cxx,
	  tmva/src/TActivationIdentity.cxx, tmva/src/TActivationRadial.cxx,
	  tmva/src/TActivationSigmoid.cxx, tmva/src/TActivationTanh.cxx,
	  tmva/src/TNeuron.cxx, tmva/src/TSpline1.cxx,
	  tmva/src/TSpline2.cxx, tmva/src/TSynapse.cxx, tmva/src/Timer.cxx,
	  tmva/src/Tools.cxx, tmva/src/Types.cxx,
	  tmva/src/VariableDecorrTransform.cxx,
	  tmva/src/VariableIdentityTransform.cxx,
	  tmva/src/VariableInfo.cxx, tmva/src/VariablePCATransform.cxx,
	  tmva/src/VariableTransformBase.cxx, tmva/src/Volume.cxx,
	  tmva/test/BDT.C, tmva/test/ClassApplication.C,
	  tmva/test/CorrGui.C, tmva/test/TMVAGui.C, tmva/test/TMVAlogon.C,
	  tmva/test/TMVAnalysis.C, tmva/test/TMVAnalysis.py,
	  tmva/test/TMVApplication.C, tmva/test/annconvergencetest.C,
	  tmva/test/compareanapp.C, tmva/test/correlations.C,
	  tmva/test/correlationscatters.C, tmva/test/efficiencies.C,
	  tmva/test/likelihoodrefs.C, tmva/test/loader.C,
	  tmva/test/mutransform.C, tmva/test/mvaeffs.C, tmva/test/mvas.C,
	  tmva/test/mvaweights.C, tmva/test/network.C, tmva/test/plotall.C,
	  tmva/test/probas.C, tmva/test/rulevis.C, tmva/test/rulevisCorr.C,
	  tmva/test/rulevisHists.C, tmva/test/tmvaglob.C,
	  tmva/test/variables.C, tree/Module.mk, tree/doc/index.txt,
	  tree/doc/macros/entrylist_figure1.C,
	  tree/doc/macros/entrylist_figure2.C,
	  tree/doc/macros/entrylistblock_figure1.C, tree/inc/LinkDef.h,
	  tree/inc/LinkDef2.h, tree/inc/TBasket.h, tree/inc/TBasketSQL.h,
	  tree/inc/TBranch.h, tree/inc/TBranchBrowsable.h,
	  tree/inc/TBranchClones.h, tree/inc/TBranchElement.h,
	  tree/inc/TBranchObject.h, tree/inc/TBranchRef.h,
	  tree/inc/TBufferSQL.h, tree/inc/TChain.h,
	  tree/inc/TChainElement.h, tree/inc/TCut.h, tree/inc/TEntryList.h,
	  tree/inc/TEntryListBlock.h, tree/inc/TEntryListFromFile.h,
	  tree/inc/TEventList.h, tree/inc/TFriendElement.h,
	  tree/inc/TLeaf.h, tree/inc/TLeafB.h, tree/inc/TLeafC.h,
	  tree/inc/TLeafD.h, tree/inc/TLeafElement.h, tree/inc/TLeafF.h,
	  tree/inc/TLeafI.h, tree/inc/TLeafL.h, tree/inc/TLeafO.h,
	  tree/inc/TLeafObject.h, tree/inc/TLeafS.h, tree/inc/TNtuple.h,
	  tree/inc/TNtupleD.h, tree/inc/TQueryResult.h,
	  tree/inc/TSelector.h, tree/inc/TSelectorCint.h,
	  tree/inc/TSelectorList.h, tree/inc/TSelectorScalar.h,
	  tree/inc/TTree.h, tree/inc/TTreeCache.h, tree/inc/TTreeCloner.h,
	  tree/inc/TTreeResult.h, tree/inc/TTreeRow.h, tree/inc/TTreeSQL.h,
	  tree/inc/TVirtualIndex.h, tree/inc/TVirtualTreePlayer.h,
	  tree/src/ManualTree2.cxx, tree/src/ManualTree2.h,
	  tree/src/ManualTree2Body.h, tree/src/TBasket.cxx,
	  tree/src/TBasketSQL.cxx, tree/src/TBranch.cxx,
	  tree/src/TBranchBrowsable.cxx, tree/src/TBranchClones.cxx,
	  tree/src/TBranchElement.cxx, tree/src/TBranchObject.cxx,
	  tree/src/TBranchRef.cxx, tree/src/TBufferSQL.cxx,
	  tree/src/TChain.cxx, tree/src/TChainElement.cxx,
	  tree/src/TCut.cxx, tree/src/TEntryList.cxx,
	  tree/src/TEntryListBlock.cxx, tree/src/TEntryListFromFile.cxx,
	  tree/src/TEventList.cxx, tree/src/TFriendElement.cxx,
	  tree/src/TLeaf.cxx, tree/src/TLeafB.cxx, tree/src/TLeafC.cxx,
	  tree/src/TLeafD.cxx, tree/src/TLeafElement.cxx,
	  tree/src/TLeafF.cxx, tree/src/TLeafI.cxx, tree/src/TLeafL.cxx,
	  tree/src/TLeafO.cxx, tree/src/TLeafObject.cxx,
	  tree/src/TLeafS.cxx, tree/src/TNtuple.cxx, tree/src/TNtupleD.cxx,
	  tree/src/TQueryResult.cxx, tree/src/TSelector.cxx,
	  tree/src/TSelectorCint.cxx, tree/src/TSelectorList.cxx,
	  tree/src/TSelectorScalar.cxx, tree/src/TTree.cxx,
	  tree/src/TTreeCache.cxx, tree/src/TTreeCloner.cxx,
	  tree/src/TTreeResult.cxx, tree/src/TTreeRow.cxx,
	  tree/src/TTreeSQL.cxx, tree/src/TVirtualIndex.cxx,
	  tree/src/TVirtualTreePlayer.cxx, treeplayer/Module.mk,
	  treeplayer/inc/LinkDef.h, treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyDescriptor.h,
	  treeplayer/inc/TBranchProxyDirector.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/inc/TChainIndex.h, treeplayer/inc/TFileDrawMap.h,
	  treeplayer/inc/TFormLeafInfo.h,
	  treeplayer/inc/TFormLeafInfoReference.h,
	  treeplayer/inc/TFriendProxy.h,
	  treeplayer/inc/TFriendProxyDescriptor.h,
	  treeplayer/inc/TRefArrayProxy.h, treeplayer/inc/TRefProxy.h,
	  treeplayer/inc/TSelectorDraw.h,
	  treeplayer/inc/TSelectorEntries.h,
	  treeplayer/inc/TTreeDrawArgsParser.h,
	  treeplayer/inc/TTreeFormula.h,
	  treeplayer/inc/TTreeFormulaManager.h,
	  treeplayer/inc/TTreeIndex.h, treeplayer/inc/TTreePlayer.h,
	  treeplayer/inc/TTreeProxyGenerator.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TBranchProxyDirector.cxx,
	  treeplayer/src/TChainIndex.cxx, treeplayer/src/TFileDrawMap.cxx,
	  treeplayer/src/TFormLeafInfo.cxx,
	  treeplayer/src/TFormLeafInfoReference.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx,
	  treeplayer/src/TRefArrayProxy.cxx, treeplayer/src/TRefProxy.cxx,
	  treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TSelectorEntries.cxx,
	  treeplayer/src/TTreeDrawArgsParser.cxx,
	  treeplayer/src/TTreeFormula.cxx,
	  treeplayer/src/TTreeFormulaManager.cxx,
	  treeplayer/src/TTreeIndex.cxx, treeplayer/src/TTreePlayer.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx, treeviewer/Module.mk,
	  treeviewer/inc/HelpTextTV.h, treeviewer/inc/LinkDef.h,
	  treeviewer/inc/LinkDefWin32.h, treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordEditor.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h, treeviewer/inc/TSpider.h,
	  treeviewer/inc/TSpiderEditor.h, treeviewer/inc/TTVLVContainer.h,
	  treeviewer/inc/TTVSession.h, treeviewer/inc/TTreeViewer.h,
	  treeviewer/src/HelpTextTV.cxx, treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx, treeviewer/src/TSpider.cxx,
	  treeviewer/src/TSpiderEditor.cxx,
	  treeviewer/src/TTVLVContainer.cxx, treeviewer/src/TTVSession.cxx,
	  treeviewer/src/TTreeViewer.cxx, unix/Module.mk,
	  unix/inc/LinkDef.h, unix/inc/TUnixSystem.h,
	  unix/src/TUnixSystem.cxx, unuran/Module.mk, unuran/doc/index.txt,
	  unuran/inc/LinkDef.h, unuran/inc/TUnuran.h,
	  unuran/inc/TUnuranBaseDist.h, unuran/inc/TUnuranContDist.h,
	  unuran/inc/TUnuranDiscrDist.h, unuran/inc/TUnuranEmpDist.h,
	  unuran/inc/TUnuranMultiContDist.h, unuran/src/TUnuran.cxx,
	  unuran/src/TUnuranContDist.cxx, unuran/src/TUnuranDiscrDist.cxx,
	  unuran/src/TUnuranEmpDist.cxx,
	  unuran/src/TUnuranMultiContDist.cxx, unuran/src/UnuranDistr.h,
	  unuran/src/UnuranDistrAdapter.h, unuran/src/UnuranRng.h,
	  unuran/test/Makefile, unuran/test/unuranDiscrete.cxx,
	  unuran/test/unuranDistr.cxx, unuran/test/unuranHist.cxx,
	  unuran/test/unuranMulti2D.cxx, unuran/test/unuranMultiDim.cxx,
	  unuran/test/unuranSimple.cxx, utils/Module.mk,
	  utils/src/RStl.cxx, utils/src/RStl.h, utils/src/rlibmap.cxx,
	  utils/src/rootcint.cxx, vmc/Module.mk, vmc/doc/index.txt,
	  vmc/inc/LinkDef.h, vmc/inc/TGeoMCGeometry.h,
	  vmc/inc/TMCOptical.h, vmc/inc/TMCParticleType.h,
	  vmc/inc/TMCProcess.h, vmc/inc/TMCVerbose.h, vmc/inc/TPDGCode.h,
	  vmc/inc/TVirtualMC.h, vmc/inc/TVirtualMCApplication.h,
	  vmc/inc/TVirtualMCGeometry.h, vmc/inc/TVirtualMCStack.h,
	  vmc/src/TGeoMCGeometry.cxx, vmc/src/TMCVerbose.cxx,
	  vmc/src/TVirtualMC.cxx, vmc/src/TVirtualMCApplication.cxx,
	  vmc/src/TVirtualMCGeometry.cxx, vmc/src/TVirtualMCStack.cxx,
	  win32gdk/Module.mk, win32gdk/gdk/src/gdk/config.h,
	  win32gdk/gdk/src/gdk/gdk.c, win32gdk/gdk/src/gdk/gdk.h,
	  win32gdk/gdk/src/gdk/gdkcc.h, win32gdk/gdk/src/gdk/gdkcolor.c,
	  win32gdk/gdk/src/gdk/gdkcolor.h,
	  win32gdk/gdk/src/gdk/gdkcompat.h,
	  win32gdk/gdk/src/gdk/gdkconfig.h,
	  win32gdk/gdk/src/gdk/gdkcursor.c,
	  win32gdk/gdk/src/gdk/gdkcursor.h,
	  win32gdk/gdk/src/gdk/gdkcursors.h, win32gdk/gdk/src/gdk/gdkdnd.h,
	  win32gdk/gdk/src/gdk/gdkdraw.c,
	  win32gdk/gdk/src/gdk/gdkdrawable.h,
	  win32gdk/gdk/src/gdk/gdkevents.c,
	  win32gdk/gdk/src/gdk/gdkevents.h, win32gdk/gdk/src/gdk/gdkfont.c,
	  win32gdk/gdk/src/gdk/gdkfont.h, win32gdk/gdk/src/gdk/gdkgc.c,
	  win32gdk/gdk/src/gdk/gdkgc.h, win32gdk/gdk/src/gdk/gdkglobals.c,
	  win32gdk/gdk/src/gdk/gdki18n.h, win32gdk/gdk/src/gdk/gdkim.h,
	  win32gdk/gdk/src/gdk/gdkimage.c, win32gdk/gdk/src/gdk/gdkimage.h,
	  win32gdk/gdk/src/gdk/gdkinput.h,
	  win32gdk/gdk/src/gdk/gdkkeysyms.h,
	  win32gdk/gdk/src/gdk/gdkpixmap.h,
	  win32gdk/gdk/src/gdk/gdkprivate.h,
	  win32gdk/gdk/src/gdk/gdkproperty.h,
	  win32gdk/gdk/src/gdk/gdkrectangle.c,
	  win32gdk/gdk/src/gdk/gdkregion.h, win32gdk/gdk/src/gdk/gdkrgb.c,
	  win32gdk/gdk/src/gdk/gdkrgb.h,
	  win32gdk/gdk/src/gdk/gdkselection.h,
	  win32gdk/gdk/src/gdk/gdktypes.h,
	  win32gdk/gdk/src/gdk/gdkvisual.h,
	  win32gdk/gdk/src/gdk/gdkwindow.c,
	  win32gdk/gdk/src/gdk/gdkwindow.h, win32gdk/gdk/src/gdk/testgdk.c,
	  win32gdk/gdk/src/gdk/win32/gdkcc-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkcolor-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkcursor-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkdnd-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkdrawable-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkevents-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkfont-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkgc-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkglobals-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkim-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkimage-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkinput-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkinputprivate.h,
	  win32gdk/gdk/src/gdk/win32/gdkmain-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkpixmap-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkprivate-win32.h,
	  win32gdk/gdk/src/gdk/win32/gdkproperty-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkregion-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkselection-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkvisual-win32.c,
	  win32gdk/gdk/src/gdk/win32/gdkwin32.h,
	  win32gdk/gdk/src/gdk/win32/gdkwin32id.c,
	  win32gdk/gdk/src/gdk/win32/gdkwindow-win32.c,
	  win32gdk/gdk/src/gdk/win32/surrogate-dimm.h,
	  win32gdk/gdk/src/glib/acconfig.h,
	  win32gdk/gdk/src/glib/g_types.h, win32gdk/gdk/src/glib/galloca.h,
	  win32gdk/gdk/src/glib/garray.h,
	  win32gdk/gdk/src/glib/gasyncqueue.h,
	  win32gdk/gdk/src/glib/gbacktrace.h,
	  win32gdk/gdk/src/glib/gcache.h, win32gdk/gdk/src/glib/gcompat.h,
	  win32gdk/gdk/src/glib/gcompletion.h,
	  win32gdk/gdk/src/glib/gconvert.h,
	  win32gdk/gdk/src/glib/gdataset.h, win32gdk/gdk/src/glib/gdate.h,
	  win32gdk/gdk/src/glib/gerror.h,
	  win32gdk/gdk/src/glib/gfileutils.h,
	  win32gdk/gdk/src/glib/ghash.h, win32gdk/gdk/src/glib/ghook.h,
	  win32gdk/gdk/src/glib/giochannel.h,
	  win32gdk/gdk/src/glib/glib-object.h,
	  win32gdk/gdk/src/glib/glib.h, win32gdk/gdk/src/glib/glibconfig.h,
	  win32gdk/gdk/src/glib/glist.h, win32gdk/gdk/src/glib/gmacros.h,
	  win32gdk/gdk/src/glib/gmain.h, win32gdk/gdk/src/glib/gmarkup.h,
	  win32gdk/gdk/src/glib/gmem.h, win32gdk/gdk/src/glib/gmessages.h,
	  win32gdk/gdk/src/glib/gnode.h, win32gdk/gdk/src/glib/gprimes.h,
	  win32gdk/gdk/src/glib/gqsort.h, win32gdk/gdk/src/glib/gquark.h,
	  win32gdk/gdk/src/glib/gqueue.h, win32gdk/gdk/src/glib/grand.h,
	  win32gdk/gdk/src/glib/grel.h, win32gdk/gdk/src/glib/gscanner.h,
	  win32gdk/gdk/src/glib/gshell.h, win32gdk/gdk/src/glib/gslist.h,
	  win32gdk/gdk/src/glib/gspawn.h,
	  win32gdk/gdk/src/glib/gstrfuncs.h,
	  win32gdk/gdk/src/glib/gstring.h, win32gdk/gdk/src/glib/gthread.h,
	  win32gdk/gdk/src/glib/gthreadpool.h,
	  win32gdk/gdk/src/glib/gtimer.h, win32gdk/gdk/src/glib/gtree.h,
	  win32gdk/gdk/src/glib/gunibreak.h,
	  win32gdk/gdk/src/glib/gunichartables.h,
	  win32gdk/gdk/src/glib/gunicode.h,
	  win32gdk/gdk/src/glib/gunidecomp.h,
	  win32gdk/gdk/src/glib/gutils.h, win32gdk/gdk/src/glib/gwin32.h,
	  win32gdk/inc/LinkDef.h, win32gdk/inc/TGWin32.h,
	  win32gdk/inc/TGWin32GL.h, win32gdk/inc/TGWin32InterpreterProxy.h,
	  win32gdk/inc/TGWin32ProxyBase.h, win32gdk/inc/TGWin32ProxyDefs.h,
	  win32gdk/inc/TGWin32VirtualGLProxy.h,
	  win32gdk/inc/TGWin32VirtualXProxy.h, win32gdk/inc/xatom.h,
	  win32gdk/src/TGWin32.cxx, win32gdk/src/TGWin32GL.cxx,
	  win32gdk/src/TGWin32InterpreterProxy.cxx,
	  win32gdk/src/TGWin32ProxyBase.cxx,
	  win32gdk/src/TGWin32VirtualGLProxy.cxx,
	  win32gdk/src/TGWin32VirtualXProxy.cxx, win32gdk/src/gifdecode.c,
	  win32gdk/src/gifencode.c, win32gdk/src/gifquantize.c,
	  winnt/Module.mk, winnt/inc/LinkDef.h,
	  winnt/inc/TWin32SplashThread.h, winnt/inc/TWinNTSystem.h,
	  winnt/inc/Win32Constants.h, winnt/src/TWin32SplashThread.cxx,
	  winnt/src/TWinNTSystem.cxx, winnt/src/Win32Splash.cxx,
	  x11/Module.mk, x11/inc/LinkDef.h, x11/inc/TGX11.h, x11/inc/Xpm.h,
	  x11/src/GX11Gui.cxx, x11/src/Rotated.cxx, x11/src/TGX11.cxx,
	  x11/src/gifdecode.c, x11/src/gifencode.c, x11/src/gifquantize.c,
	  x11ttf/Module.mk, x11ttf/inc/LinkDef.h, x11ttf/inc/TGX11TTF.h,
	  x11ttf/src/TGX11TTF.cxx, x3d/Module.mk, x3d/inc/LinkDef.h,
	  x3d/inc/TViewerX3D.h, x3d/inc/TX3DFrame.h, x3d/inc/x3d.h,
	  x3d/src/TViewerX3D.cxx, x3d/src/TX3DFrame.cxx, x3d/src/x3d.c,
	  xml/Module.mk, xml/inc/LinkDef.h, xml/inc/TBufferXML.h,
	  xml/inc/TKeyXML.h, xml/inc/TXMLEngine.h, xml/inc/TXMLFile.h,
	  xml/inc/TXMLPlayer.h, xml/inc/TXMLSetup.h,
	  xml/src/TBufferXML.cxx, xml/src/TKeyXML.cxx,
	  xml/src/TXMLEngine.cxx, xml/src/TXMLFile.cxx,
	  xml/src/TXMLPlayer.cxx, xml/src/TXMLSetup.cxx,
	  xmlparser/Module.mk, xmlparser/inc/LinkDef.h,
	  xmlparser/inc/TDOMParser.h, xmlparser/inc/TSAXParser.h,
	  xmlparser/inc/TXMLAttr.h, xmlparser/inc/TXMLDocument.h,
	  xmlparser/inc/TXMLNode.h, xmlparser/inc/TXMLParser.h,
	  xmlparser/src/TDOMParser.cxx, xmlparser/src/TSAXParser.cxx,
	  xmlparser/src/TXMLAttr.cxx, xmlparser/src/TXMLDocument.cxx,
	  xmlparser/src/TXMLNode.cxx, xmlparser/src/TXMLParser.cxx,
	  xrootd/Module.mk, zip/Module.mk, zip/inc/Bits.h,
	  zip/inc/Tailor.h, zip/inc/ZDeflate.h, zip/inc/ZIP.h,
	  zip/inc/ZTrees.h, zip/inc/crc32.h, zip/inc/deflate.h,
	  zip/inc/inffast.h, zip/inc/inffixed.h, zip/inc/inflate.h,
	  zip/inc/inftrees.h, zip/inc/trees.h, zip/inc/zconf.h,
	  zip/inc/zlib.h, zip/inc/zutil.h, zip/src/ZDeflate.c,
	  zip/src/ZInflate.c, zip/src/adler32.c, zip/src/compress.c,
	  zip/src/crc32.c, zip/src/deflate.c, zip/src/gzio.c,
	  zip/src/infback.c, zip/src/inffast.c, zip/src/inflate.c,
	  zip/src/inftrees.c, zip/src/trees.c, zip/src/uncompr.c,
	  zip/src/zutil.c: Set property svn:eol-style LF on all source and
	  Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:23  rdm

	* [r20881] tutorials/MyTasks.cxx, tutorials/benchmarks.C,
	  tutorials/demos.C, tutorials/demoshelp.C, tutorials/fft/FFT.C,
	  tutorials/fit/ConfidenceIntervals.C,
	  tutorials/fit/ErrorIntegral.C, tutorials/fit/FittingDemo.C,
	  tutorials/fit/Ifit.C, tutorials/fit/RoofitDemo.C,
	  tutorials/fit/TestBinomial.C, tutorials/fit/TwoHistoFit2D.C,
	  tutorials/fit/fit1.C, tutorials/fit/fit1_C.C,
	  tutorials/fit/fit2.C, tutorials/fit/fit2a.C,
	  tutorials/fit/fit2d.C, tutorials/fit/fit2dHist.C,
	  tutorials/fit/fitCircle.C, tutorials/fit/fitExclude.C,
	  tutorials/fit/fitLinear.C, tutorials/fit/fitLinear2.C,
	  tutorials/fit/fitLinearRobust.C, tutorials/fit/fitMultiGraph.C,
	  tutorials/fit/fitcont.C, tutorials/fit/fithist.C,
	  tutorials/fit/fitslicesy.C, tutorials/fit/graph2dfit.C,
	  tutorials/fit/langaus.C, tutorials/fit/minuit2FitBench.C,
	  tutorials/fit/minuit2FitBench2D.C,
	  tutorials/fit/minuit2GausFit.C, tutorials/fit/multidimfit.C,
	  tutorials/fit/multifit.C, tutorials/fit/myfit.C,
	  tutorials/foam/foam_demo.C, tutorials/foam/foam_demopers.C,
	  tutorials/foam/foam_kanwa.C, tutorials/geant3tasks.C,
	  tutorials/geom/RadioNuclides.C, tutorials/geom/assembly.C,
	  tutorials/geom/building.C, tutorials/geom/cheongwadae.C,
	  tutorials/geom/csgdemo.C, tutorials/geom/geodemo.C,
	  tutorials/geom/geomAlice.C, tutorials/geom/geomAlice_itsv.C,
	  tutorials/geom/geomAtlas.C, tutorials/geom/geomBrahms.C,
	  tutorials/geom/geometry.C, tutorials/geom/lego.C,
	  tutorials/geom/mp3player.C, tutorials/geom/na49.C,
	  tutorials/geom/na49geomfile.C, tutorials/geom/na49view.C,
	  tutorials/geom/robot.C, tutorials/geom/rootgeom.C,
	  tutorials/geom/shapes.C, tutorials/geom/shapesAnim.C,
	  tutorials/geom/south_gate.C, tutorials/geom/station1.C,
	  tutorials/geom/station2.C, tutorials/geom/tank.C,
	  tutorials/geom/xtruDraw.C, tutorials/geom/xtruSamples.C,
	  tutorials/gl/glViewerExercise.C, tutorials/gl/glViewerLOD.C,
	  tutorials/gl/glbox.C, tutorials/gl/gldemos.C,
	  tutorials/gl/glparametric.C, tutorials/gl/glrose.C,
	  tutorials/gl/glsurfaces.C, tutorials/gl/gltf3.C,
	  tutorials/gl/nucleus.C, tutorials/gl/viewer3DLocal.C,
	  tutorials/gl/viewer3DMaster.C, tutorials/graphics/analyze.C,
	  tutorials/graphics/anim.C, tutorials/graphics/archi.C,
	  tutorials/graphics/arrow.C, tutorials/graphics/basic3d.C,
	  tutorials/graphics/canvas.C, tutorials/graphics/compile.C,
	  tutorials/graphics/earth.C, tutorials/graphics/ellipse.C,
	  tutorials/graphics/eval.C, tutorials/graphics/event.C,
	  tutorials/graphics/feynman.C, tutorials/graphics/first.C,
	  tutorials/graphics/formula1.C, tutorials/graphics/framework.C,
	  tutorials/graphics/gaxis.C, tutorials/graphics/gtime.C,
	  tutorials/graphics/latex.C, tutorials/graphics/latex2.C,
	  tutorials/graphics/latex3.C, tutorials/graphics/latex4.C,
	  tutorials/graphics/latex5.C, tutorials/graphics/mandelbrot.C,
	  tutorials/graphics/manyaxis.C,
	  tutorials/graphics/markerwarning.C,
	  tutorials/graphics/piechart.C, tutorials/graphics/pstable.C,
	  tutorials/graphics/psview.C, tutorials/graphics/quarks.C,
	  tutorials/graphics/tornado.C, tutorials/graphics/triangles.C,
	  tutorials/graphs/approx.C, tutorials/graphs/bent.C,
	  tutorials/graphs/exclusiongraph.C,
	  tutorials/graphs/exclusiongraph2.C, tutorials/graphs/gerrors.C,
	  tutorials/graphs/gerrors2.C, tutorials/graphs/graph.C,
	  tutorials/graphs/graph2derrorsfit.C,
	  tutorials/graphs/graphApply.C, tutorials/graphs/graphpolar.C,
	  tutorials/graphs/labels1.C, tutorials/graphs/labels2.C,
	  tutorials/graphs/motorcycle.C, tutorials/graphs/multigraph.C,
	  tutorials/graphs/seism.C, tutorials/graphs/splines.C,
	  tutorials/graphs/surfaces.C, tutorials/graphs/timeonaxis.C,
	  tutorials/graphs/timeonaxis2.C, tutorials/graphs/waves.C,
	  tutorials/graphs/zdemo.C, tutorials/graphs/zones.C,
	  tutorials/gui/CPUMeter.C, tutorials/gui/QtFileDialog.C,
	  tutorials/gui/QtMultiFileDialog.C, tutorials/gui/Slider3Demo.C,
	  tutorials/gui/WorldMap.C, tutorials/gui/buttonChangelabel.C,
	  tutorials/gui/buttonTest.C, tutorials/gui/buttongroupState.C,
	  tutorials/gui/buttonsLayout.C, tutorials/gui/calendar.C,
	  tutorials/gui/customContextMenu.C,
	  tutorials/gui/customTH1Fmenu.C, tutorials/gui/exec3.C,
	  tutorials/gui/games.C, tutorials/gui/guiWithCINT.C,
	  tutorials/gui/guilabels.C, tutorials/gui/guitest.C,
	  tutorials/gui/iconAsXPMData.C, tutorials/gui/listBox.C,
	  tutorials/gui/mditest.C, tutorials/gui/numberEntry.C,
	  tutorials/gui/splitbuttonTest.C,
	  tutorials/gui/splitterHorizontal.C,
	  tutorials/gui/splitterVertical.C, tutorials/gui/statusBar.C,
	  tutorials/gui/textEntries.C, tutorials/hist/ContourList.C,
	  tutorials/hist/DynamicSlice.C, tutorials/hist/FirstContour.C,
	  tutorials/hist/draw2dopt.C, tutorials/hist/exec1.C,
	  tutorials/hist/exec2.C, tutorials/hist/fillrandom.C,
	  tutorials/hist/greyscale.C, tutorials/hist/h1draw.C,
	  tutorials/hist/hbars.C, tutorials/hist/hksimple.C,
	  tutorials/hist/hlabels1.C, tutorials/hist/hlabels2.C,
	  tutorials/hist/hstack.C, tutorials/hist/hsum.C,
	  tutorials/hist/hsumTimer.C, tutorials/hist/logscales.C,
	  tutorials/hist/multicolor.C, tutorials/hist/sparsehist.C,
	  tutorials/hist/transpad.C, tutorials/hist/twoscales.C,
	  tutorials/hsimple.C, tutorials/htmlex.C,
	  tutorials/image/galaxy_image.C, tutorials/image/hist2image.C,
	  tutorials/image/hsumanim.C, tutorials/image/img2pad.C,
	  tutorials/image/imgconv.C, tutorials/image/pad2png.C,
	  tutorials/image/rose_image.C, tutorials/image/trans_graph.C,
	  tutorials/io/copyFiles.C, tutorials/io/dirs.C,
	  tutorials/io/double32.C, tutorials/io/fildir.C,
	  tutorials/io/file.C, tutorials/io/hadd.C,
	  tutorials/io/importCode.C, tutorials/io/loopdir.C,
	  tutorials/io/readCode.C, tutorials/math/Bessel.C,
	  tutorials/math/FeldmanCousins.C, tutorials/math/GammaFun.C,
	  tutorials/math/Legendre.C, tutorials/math/LegendreAssoc.C,
	  tutorials/math/Rolke.C, tutorials/math/binomial.C,
	  tutorials/math/chi2test.C, tutorials/math/exampleFunctor.C,
	  tutorials/math/limit.C, tutorials/math/mathBeta.C,
	  tutorials/math/mathGammaNormal.C, tutorials/math/mathLaplace.C,
	  tutorials/math/mathStudent.C, tutorials/math/mathcoreCDF.C,
	  tutorials/math/mathcoreGenVector.C,
	  tutorials/math/mathcoreSpecFunc.C,
	  tutorials/math/mathcoreStatFunc.C,
	  tutorials/math/mathcoreVectorCollection.C,
	  tutorials/math/mathcoreVectorFloatIO.C,
	  tutorials/math/mathcoreVectorIO.C,
	  tutorials/math/mathmoreIntegration.C,
	  tutorials/math/normalDist.C, tutorials/math/permute.C,
	  tutorials/math/principal.C, tutorials/math/quantiles.C,
	  tutorials/math/tStudent.C, tutorials/math/testrandom.C,
	  tutorials/math/vavilov.C, tutorials/matrix/invertMatrix.C,
	  tutorials/matrix/solveLinear.C, tutorials/mlp/mlpHiggs.C,
	  tutorials/mlp/mlpRegression.C, tutorials/net/LDAPExample.C,
	  tutorials/net/TUriTest.C, tutorials/net/TestAuth.C,
	  tutorials/net/alien.C, tutorials/net/authclient.C,
	  tutorials/net/authserv.C, tutorials/net/hclient.C,
	  tutorials/net/hcons.C, tutorials/net/hprod.C,
	  tutorials/net/hserv.C, tutorials/net/hserv2.C,
	  tutorials/net/pclient.C, tutorials/net/pserv.C,
	  tutorials/net/spy.C, tutorials/net/spyserv.C,
	  tutorials/physics/PhaseSpace.C, tutorials/proof/ProofSimple.C,
	  tutorials/proof/ProofSimple.h, tutorials/proof/finalizeProof.C,
	  tutorials/proof/getProof.C, tutorials/proof/runProof.C,
	  tutorials/pyroot/DynamicSlice.py, tutorials/pyroot/aptuple.txt,
	  tutorials/pyroot/benchmarks.py, tutorials/pyroot/demo.py,
	  tutorials/pyroot/demoshelp.py, tutorials/pyroot/fildir.py,
	  tutorials/pyroot/file.py, tutorials/pyroot/fillrandom.py,
	  tutorials/pyroot/first.py, tutorials/pyroot/fit1.py,
	  tutorials/pyroot/formula1.py, tutorials/pyroot/framework.py,
	  tutorials/pyroot/geometry.py, tutorials/pyroot/gerrors.py,
	  tutorials/pyroot/graph.py, tutorials/pyroot/gui_ex.py,
	  tutorials/pyroot/h1draw.py, tutorials/pyroot/hsimple.py,
	  tutorials/pyroot/hsum.py, tutorials/pyroot/mrt.py,
	  tutorials/pyroot/multifit.py, tutorials/pyroot/na49geomfile.py,
	  tutorials/pyroot/na49view.py, tutorials/pyroot/na49visible.py,
	  tutorials/pyroot/ntuple1.py, tutorials/pyroot/qtexample.py,
	  tutorials/pyroot/rootmarks.py, tutorials/pyroot/shapes.py,
	  tutorials/pyroot/staff.py, tutorials/pyroot/surfaces.py,
	  tutorials/pyroot/test.py, tutorials/pyroot/tornado.py,
	  tutorials/pyroot/tree.py, tutorials/pyroot/zdemo.py,
	  tutorials/pythia/pythiaExample.C, tutorials/quadp/Quad.cxx,
	  tutorials/quadp/Quad.h, tutorials/quadp/portfolio.C,
	  tutorials/regexp.C, tutorials/rootalias.C, tutorials/rootenv.C,
	  tutorials/rootlogoff.C, tutorials/rootlogon.C,
	  tutorials/rootmarks.C, tutorials/spectrum/peaks.C,
	  tutorials/spectrum/peaks2.C,
	  tutorials/spectrum/spectrumpainter.C,
	  tutorials/splot/TestSPlot.C, tutorials/sql/sqlcanvas.C,
	  tutorials/sql/sqlcreatedb.C, tutorials/sql/sqlfilldb.C,
	  tutorials/sql/sqlselect.C, tutorials/sql/sqltables.C,
	  tutorials/tasks.C, tutorials/thread/threads.C,
	  tutorials/thread/threadsh1.C, tutorials/tree/JetEvent.cxx,
	  tutorials/tree/JetEvent.h, tutorials/tree/basic.C,
	  tutorials/tree/basic2.C, tutorials/tree/bill.C,
	  tutorials/tree/cernbuild.C, tutorials/tree/cernstaff.C,
	  tutorials/tree/circular.C, tutorials/tree/clonesA_Event.C,
	  tutorials/tree/clonesA_Event.cxx, tutorials/tree/clonesA_Event.h,
	  tutorials/tree/copytree.C, tutorials/tree/copytree2.C,
	  tutorials/tree/copytree3.C, tutorials/tree/drawsparse.C,
	  tutorials/tree/h1analysis.C, tutorials/tree/h1analysis.h,
	  tutorials/tree/h1analysisProxy.C,
	  tutorials/tree/h1analysisProxy.h,
	  tutorials/tree/h1analysisProxyCut.C, tutorials/tree/h1chain.C,
	  tutorials/tree/hsimpleProxy.C, tutorials/tree/htest.C,
	  tutorials/tree/jets.C, tutorials/tree/ntuple1.C,
	  tutorials/tree/parallelcoord.C, tutorials/tree/spider.C,
	  tutorials/tree/staff.C, tutorials/tree/tcl.C,
	  tutorials/tree/tree.C, tutorials/tree/tree0.C,
	  tutorials/tree/tree1.C, tutorials/tree/tree2.C,
	  tutorials/tree/tree2a.C, tutorials/tree/tree3.C,
	  tutorials/tree/tree4.C, tutorials/tree/treefriend.C,
	  tutorials/tree/tv3.C, tutorials/tree/tvdemo.C,
	  tutorials/unuran/unuranDemo.C, tutorials/unuran/unuranFoamTest.C,
	  tutorials/xml/DOMParsePerson.C, tutorials/xml/DOMRecursive.C,
	  tutorials/xml/SAXHandler.C, tutorials/xml/xmlnewfile.C,
	  tutorials/xml/xmlreadfile.C: Set property svn:eol-style LF on all
	  source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:23  rdm

	* [r20880] minuit2/Module.mk, minuit2/build/Makefile.am,
	  minuit2/build/setup.sh, minuit2/doc/index.txt,
	  minuit2/inc/LinkDef.h, minuit2/inc/Minuit2/ABObj.h,
	  minuit2/inc/Minuit2/ABProd.h, minuit2/inc/Minuit2/ABSum.h,
	  minuit2/inc/Minuit2/ABTypes.h,
	  minuit2/inc/Minuit2/AnalyticalGradientCalculator.h,
	  minuit2/inc/Minuit2/BasicFunctionGradient.h,
	  minuit2/inc/Minuit2/BasicFunctionMinimum.h,
	  minuit2/inc/Minuit2/BasicMinimumError.h,
	  minuit2/inc/Minuit2/BasicMinimumParameters.h,
	  minuit2/inc/Minuit2/BasicMinimumSeed.h,
	  minuit2/inc/Minuit2/BasicMinimumState.h,
	  minuit2/inc/Minuit2/CombinedMinimizer.h,
	  minuit2/inc/Minuit2/CombinedMinimumBuilder.h,
	  minuit2/inc/Minuit2/ContoursError.h,
	  minuit2/inc/Minuit2/DavidonErrorUpdator.h,
	  minuit2/inc/Minuit2/FCNAdapter.h, minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FCNGradAdapter.h,
	  minuit2/inc/Minuit2/FCNGradientBase.h,
	  minuit2/inc/Minuit2/FumiliBuilder.h,
	  minuit2/inc/Minuit2/FumiliChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliErrorUpdator.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/FumiliGradientCalculator.h,
	  minuit2/inc/Minuit2/FumiliMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FumiliMinimizer.h,
	  minuit2/inc/Minuit2/FumiliStandardChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliStandardMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FunctionGradient.h,
	  minuit2/inc/Minuit2/FunctionMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/GenericFunction.h,
	  minuit2/inc/Minuit2/GradientCalculator.h,
	  minuit2/inc/Minuit2/HessianGradientCalculator.h,
	  minuit2/inc/Minuit2/InitialGradientCalculator.h,
	  minuit2/inc/Minuit2/LASymMatrix.h,
	  minuit2/inc/Minuit2/LAVector.h, minuit2/inc/Minuit2/LaInverse.h,
	  minuit2/inc/Minuit2/LaOuterProduct.h,
	  minuit2/inc/Minuit2/LaProd.h, minuit2/inc/Minuit2/LaSum.h,
	  minuit2/inc/Minuit2/MatrixInverse.h,
	  minuit2/inc/Minuit2/MinimumBuilder.h,
	  minuit2/inc/Minuit2/MinimumError.h,
	  minuit2/inc/Minuit2/MinimumErrorUpdator.h,
	  minuit2/inc/Minuit2/MinimumParameters.h,
	  minuit2/inc/Minuit2/MinimumSeed.h,
	  minuit2/inc/Minuit2/MinimumSeedGenerator.h,
	  minuit2/inc/Minuit2/MinimumState.h,
	  minuit2/inc/Minuit2/MinosError.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnConfig.h, minuit2/inc/Minuit2/MnContours.h,
	  minuit2/inc/Minuit2/MnCovarianceSqueeze.h,
	  minuit2/inc/Minuit2/MnCross.h, minuit2/inc/Minuit2/MnEigen.h,
	  minuit2/inc/Minuit2/MnFcn.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnFunctionCross.h,
	  minuit2/inc/Minuit2/MnGlobalCorrelationCoeff.h,
	  minuit2/inc/Minuit2/MnHesse.h,
	  minuit2/inc/Minuit2/MnLineSearch.h,
	  minuit2/inc/Minuit2/MnMachinePrecision.h,
	  minuit2/inc/Minuit2/MnMatrix.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinimize.h, minuit2/inc/Minuit2/MnMinos.h,
	  minuit2/inc/Minuit2/MnParabola.h,
	  minuit2/inc/Minuit2/MnParabolaFactory.h,
	  minuit2/inc/Minuit2/MnParabolaPoint.h,
	  minuit2/inc/Minuit2/MnParameterScan.h,
	  minuit2/inc/Minuit2/MnPlot.h, minuit2/inc/Minuit2/MnPosDef.h,
	  minuit2/inc/Minuit2/MnPrint.h,
	  minuit2/inc/Minuit2/MnRefCountedPointer.h,
	  minuit2/inc/Minuit2/MnReferenceCounter.h,
	  minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSeedGenerator.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnStrategy.h, minuit2/inc/Minuit2/MnTiny.h,
	  minuit2/inc/Minuit2/MnUserCovariance.h,
	  minuit2/inc/Minuit2/MnUserFcn.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/MnUserParameters.h,
	  minuit2/inc/Minuit2/MnUserTransformation.h,
	  minuit2/inc/Minuit2/MnVectorTransform.h,
	  minuit2/inc/Minuit2/ModularFunctionMinimizer.h,
	  minuit2/inc/Minuit2/NegativeG2LineSearch.h,
	  minuit2/inc/Minuit2/Numerical2PGradientCalculator.h,
	  minuit2/inc/Minuit2/ParametricFunction.h,
	  minuit2/inc/Minuit2/ScanBuilder.h,
	  minuit2/inc/Minuit2/ScanMinimizer.h,
	  minuit2/inc/Minuit2/SimplexBuilder.h,
	  minuit2/inc/Minuit2/SimplexMinimizer.h,
	  minuit2/inc/Minuit2/SimplexParameters.h,
	  minuit2/inc/Minuit2/SimplexSeedGenerator.h,
	  minuit2/inc/Minuit2/SinParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtLowParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtUpParameterTransformation.h,
	  minuit2/inc/Minuit2/StackAllocator.h,
	  minuit2/inc/Minuit2/VariableMetricBuilder.h,
	  minuit2/inc/Minuit2/VariableMetricEDMEstimator.h,
	  minuit2/inc/Minuit2/VariableMetricMinimizer.h,
	  minuit2/inc/Minuit2/VectorOuterProduct.h,
	  minuit2/inc/TBinLikelihoodFCN.h, minuit2/inc/TChi2ExtendedFCN.h,
	  minuit2/inc/TChi2ExtendedFitData.h, minuit2/inc/TChi2FCN.h,
	  minuit2/inc/TChi2FitData.h, minuit2/inc/TFcnAdapter.h,
	  minuit2/inc/TFitterFumili.h, minuit2/inc/TFitterMinuit.h,
	  minuit2/inc/TFumiliFCN.h,
	  minuit2/src/AnalyticalGradientCalculator.cxx,
	  minuit2/src/BasicMinimumError.cxx,
	  minuit2/src/CombinedMinimumBuilder.cxx,
	  minuit2/src/DavidonErrorUpdator.cxx, minuit2/src/FitterUtil.cxx,
	  minuit2/src/FitterUtil.h, minuit2/src/FumiliBuilder.cxx,
	  minuit2/src/FumiliErrorUpdator.cxx,
	  minuit2/src/FumiliGradientCalculator.cxx,
	  minuit2/src/FumiliMinimizer.cxx,
	  minuit2/src/FumiliStandardChi2FCN.cxx,
	  minuit2/src/FumiliStandardMaximumLikelihoodFCN.cxx,
	  minuit2/src/HessianGradientCalculator.cxx,
	  minuit2/src/InitialGradientCalculator.cxx,
	  minuit2/src/LaEigenValues.cxx, minuit2/src/LaInnerProduct.cxx,
	  minuit2/src/LaInverse.cxx, minuit2/src/LaOuterProduct.cxx,
	  minuit2/src/LaSumOfElements.cxx,
	  minuit2/src/LaVtMVSimilarity.cxx,
	  minuit2/src/Minuit2Minimizer.cxx, minuit2/src/MnApplication.cxx,
	  minuit2/src/MnContours.cxx, minuit2/src/MnCovarianceSqueeze.cxx,
	  minuit2/src/MnEigen.cxx, minuit2/src/MnFcn.cxx,
	  minuit2/src/MnFumiliMinimize.cxx,
	  minuit2/src/MnFunctionCross.cxx,
	  minuit2/src/MnGlobalCorrelationCoeff.cxx,
	  minuit2/src/MnHesse.cxx, minuit2/src/MnLineSearch.cxx,
	  minuit2/src/MnMachinePrecision.cxx, minuit2/src/MnMinos.cxx,
	  minuit2/src/MnParabolaFactory.cxx,
	  minuit2/src/MnParameterScan.cxx, minuit2/src/MnPlot.cxx,
	  minuit2/src/MnPosDef.cxx, minuit2/src/MnPrint.cxx,
	  minuit2/src/MnScan.cxx, minuit2/src/MnSeedGenerator.cxx,
	  minuit2/src/MnStrategy.cxx, minuit2/src/MnTiny.cxx,
	  minuit2/src/MnUserFcn.cxx, minuit2/src/MnUserParameterState.cxx,
	  minuit2/src/MnUserParameters.cxx,
	  minuit2/src/MnUserTransformation.cxx,
	  minuit2/src/ModularFunctionMinimizer.cxx,
	  minuit2/src/NegativeG2LineSearch.cxx,
	  minuit2/src/Numerical2PGradientCalculator.cxx,
	  minuit2/src/ParametricFunction.cxx, minuit2/src/ScanBuilder.cxx,
	  minuit2/src/SimplexBuilder.cxx,
	  minuit2/src/SimplexParameters.cxx,
	  minuit2/src/SimplexSeedGenerator.cxx,
	  minuit2/src/SinParameterTransformation.cxx,
	  minuit2/src/SqrtLowParameterTransformation.cxx,
	  minuit2/src/SqrtUpParameterTransformation.cxx,
	  minuit2/src/TBinLikelihoodFCN.cxx,
	  minuit2/src/TChi2ExtendedFCN.cxx,
	  minuit2/src/TChi2ExtendedFitData.cxx, minuit2/src/TChi2FCN.cxx,
	  minuit2/src/TChi2FitData.cxx, minuit2/src/TFcnAdapter.cxx,
	  minuit2/src/TFitterFumili.cxx, minuit2/src/TFitterMinuit.cxx,
	  minuit2/src/TFumiliFCN.cxx,
	  minuit2/src/VariableMetricBuilder.cxx,
	  minuit2/src/VariableMetricEDMEstimator.cxx,
	  minuit2/src/mnbins.cxx, minuit2/src/mndasum.cxx,
	  minuit2/src/mndaxpy.cxx, minuit2/src/mnddot.cxx,
	  minuit2/src/mndscal.cxx, minuit2/src/mndspmv.cxx,
	  minuit2/src/mndspr.cxx, minuit2/src/mnlsame.cxx,
	  minuit2/src/mnteigen.cxx, minuit2/src/mntplot.cxx,
	  minuit2/src/mnvert.cxx, minuit2/src/mnxerbla.cxx,
	  minuit2/test/Makefile, minuit2/test/MnSim/DemoFumili.cxx,
	  minuit2/test/MnSim/DemoGaussSim.cxx,
	  minuit2/test/MnSim/FlatRandomGen.h,
	  minuit2/test/MnSim/GaussDataGen.cxx,
	  minuit2/test/MnSim/GaussDataGen.h,
	  minuit2/test/MnSim/GaussFcn.cxx, minuit2/test/MnSim/GaussFcn.h,
	  minuit2/test/MnSim/GaussFcn2.cxx, minuit2/test/MnSim/GaussFcn2.h,
	  minuit2/test/MnSim/GaussFunction.h,
	  minuit2/test/MnSim/GaussRandomGen.h,
	  minuit2/test/MnSim/GaussianModelFunction.h,
	  minuit2/test/MnSim/PaulTest.cxx,
	  minuit2/test/MnSim/PaulTest2.cxx,
	  minuit2/test/MnSim/PaulTest3.cxx,
	  minuit2/test/MnSim/PaulTest4.cxx,
	  minuit2/test/MnSim/ReneTest.cxx, minuit2/test/MnSim/paul.txt,
	  minuit2/test/MnSim/paul2.txt, minuit2/test/MnSim/paul3.txt,
	  minuit2/test/MnSim/paul4.txt, minuit2/test/MnTutorial/Quad12F.h,
	  minuit2/test/MnTutorial/Quad12FMain.cxx,
	  minuit2/test/MnTutorial/Quad1F.h,
	  minuit2/test/MnTutorial/Quad1FMain.cxx,
	  minuit2/test/MnTutorial/Quad4F.h,
	  minuit2/test/MnTutorial/Quad4FMain.cxx,
	  minuit2/test/MnTutorial/Quad8F.h,
	  minuit2/test/MnTutorial/Quad8FMain.cxx,
	  minuit2/test/testGraph.cxx, minuit2/test/testMinimize.cxx,
	  minuit2/test/testUserFunc.cxx: Set property svn:eol-style LF on
	  all source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:22  rdm

	* [r20879] roofitcore/Module.mk, roofitcore/doc/index.txt,
	  roofitcore/inc/LinkDef1.h, roofitcore/inc/LinkDef2.h,
	  roofitcore/inc/LinkDef3.h, roofitcore/inc/Roo1DTable.h,
	  roofitcore/inc/RooAICRegistry.h,
	  roofitcore/inc/RooAbsAnaConvPdf.h, roofitcore/inc/RooAbsArg.h,
	  roofitcore/inc/RooAbsBinning.h, roofitcore/inc/RooAbsCache.h,
	  roofitcore/inc/RooAbsCacheElement.h,
	  roofitcore/inc/RooAbsCachedPdf.h,
	  roofitcore/inc/RooAbsCategory.h,
	  roofitcore/inc/RooAbsCategoryLValue.h,
	  roofitcore/inc/RooAbsCollection.h, roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooAbsFunc.h, roofitcore/inc/RooAbsGenContext.h,
	  roofitcore/inc/RooAbsGoodnessOfFit.h,
	  roofitcore/inc/RooAbsHiddenReal.h,
	  roofitcore/inc/RooAbsIntegrator.h, roofitcore/inc/RooAbsLValue.h,
	  roofitcore/inc/RooAbsMCStudyModule.h,
	  roofitcore/inc/RooAbsOptGoodnessOfFit.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAbsProxy.h,
	  roofitcore/inc/RooAbsReal.h, roofitcore/inc/RooAbsRealLValue.h,
	  roofitcore/inc/RooAbsRootFinder.h,
	  roofitcore/inc/RooAbsSelfCachedPdf.h,
	  roofitcore/inc/RooAbsString.h, roofitcore/inc/RooAcceptReject.h,
	  roofitcore/inc/RooAdaptiveGaussKronrodIntegrator1D.h,
	  roofitcore/inc/RooAddGenContext.h, roofitcore/inc/RooAddModel.h,
	  roofitcore/inc/RooAddPdf.h, roofitcore/inc/RooAddition.h,
	  roofitcore/inc/RooArgList.h, roofitcore/inc/RooArgProxy.h,
	  roofitcore/inc/RooArgSet.h, roofitcore/inc/RooBanner.h,
	  roofitcore/inc/RooBinning.h, roofitcore/inc/RooBrentRootFinder.h,
	  roofitcore/inc/RooCacheManager.h, roofitcore/inc/RooCachedPdf.h,
	  roofitcore/inc/RooCatType.h, roofitcore/inc/RooCategory.h,
	  roofitcore/inc/RooCategoryProxy.h,
	  roofitcore/inc/RooCategorySharedProperties.h,
	  roofitcore/inc/RooChi2Var.h, roofitcore/inc/RooClassFactory.h,
	  roofitcore/inc/RooCmdArg.h, roofitcore/inc/RooCmdConfig.h,
	  roofitcore/inc/RooComplex.h, roofitcore/inc/RooConstVar.h,
	  roofitcore/inc/RooConvCoefVar.h,
	  roofitcore/inc/RooConvGenContext.h,
	  roofitcore/inc/RooConvIntegrandBinding.h,
	  roofitcore/inc/RooCurve.h, roofitcore/inc/RooCustomizer.h,
	  roofitcore/inc/RooDLLSignificanceMCSModule.h,
	  roofitcore/inc/RooDataHist.h,
	  roofitcore/inc/RooDataHistSliceIter.h,
	  roofitcore/inc/RooDataProjBinding.h, roofitcore/inc/RooDataSet.h,
	  roofitcore/inc/RooDataSetSliceIter.h,
	  roofitcore/inc/RooDirItem.h, roofitcore/inc/RooDouble.h,
	  roofitcore/inc/RooEffGenContext.h, roofitcore/inc/RooEffProd.h,
	  roofitcore/inc/RooEfficiency.h, roofitcore/inc/RooEllipse.h,
	  roofitcore/inc/RooErrorHandler.h, roofitcore/inc/RooErrorVar.h,
	  roofitcore/inc/RooExtendPdf.h, roofitcore/inc/RooExtendedTerm.h,
	  roofitcore/inc/RooFFTConvPdf.h, roofitcore/inc/RooFit.h,
	  roofitcore/inc/RooFitCore_LinkDef.h,
	  roofitcore/inc/RooFitResult.h, roofitcore/inc/RooFormula.h,
	  roofitcore/inc/RooFormulaVar.h,
	  roofitcore/inc/RooGaussKronrodIntegrator1D.h,
	  roofitcore/inc/RooGenCategory.h, roofitcore/inc/RooGenContext.h,
	  roofitcore/inc/RooGenProdProj.h, roofitcore/inc/RooGenericPdf.h,
	  roofitcore/inc/RooGlobalFunc.h, roofitcore/inc/RooGraphEdge.h,
	  roofitcore/inc/RooGraphNode.h, roofitcore/inc/RooGraphSpring.h,
	  roofitcore/inc/RooGrid.h, roofitcore/inc/RooHashTable.h,
	  roofitcore/inc/RooHist.h, roofitcore/inc/RooHistError.h,
	  roofitcore/inc/RooHistPdf.h, roofitcore/inc/RooHtml.h,
	  roofitcore/inc/RooImproperIntegrator1D.h,
	  roofitcore/inc/RooInt.h, roofitcore/inc/RooIntegrator1D.h,
	  roofitcore/inc/RooIntegrator2D.h,
	  roofitcore/inc/RooIntegratorBinding.h,
	  roofitcore/inc/RooInvTransform.h,
	  roofitcore/inc/RooLinTransBinning.h,
	  roofitcore/inc/RooLinearVar.h, roofitcore/inc/RooLinkedList.h,
	  roofitcore/inc/RooLinkedListElem.h,
	  roofitcore/inc/RooLinkedListIter.h, roofitcore/inc/RooList.h,
	  roofitcore/inc/RooListProxy.h, roofitcore/inc/RooMCIntegrator.h,
	  roofitcore/inc/RooMCStudy.h, roofitcore/inc/RooMPSentinel.h,
	  roofitcore/inc/RooMapCatEntry.h,
	  roofitcore/inc/RooMappedCategory.h, roofitcore/inc/RooMath.h,
	  roofitcore/inc/RooMinuit.h, roofitcore/inc/RooMsgService.h,
	  roofitcore/inc/RooMultiCatIter.h,
	  roofitcore/inc/RooMultiCategory.h, roofitcore/inc/RooNLLVar.h,
	  roofitcore/inc/RooNameReg.h, roofitcore/inc/RooNameSet.h,
	  roofitcore/inc/RooNormListManager.h,
	  roofitcore/inc/RooNormManager.h,
	  roofitcore/inc/RooNormSetCache.h, roofitcore/inc/RooNumConvPdf.h,
	  roofitcore/inc/RooNumConvolution.h,
	  roofitcore/inc/RooNumIntConfig.h,
	  roofitcore/inc/RooNumIntFactory.h, roofitcore/inc/RooNumber.h,
	  roofitcore/inc/RooObjCacheManager.h, roofitcore/inc/RooPlot.h,
	  roofitcore/inc/RooPlotable.h, roofitcore/inc/RooPolyVar.h,
	  roofitcore/inc/RooPrintable.h,
	  roofitcore/inc/RooProdGenContext.h, roofitcore/inc/RooProdPdf.h,
	  roofitcore/inc/RooProduct.h, roofitcore/inc/RooProfileLL.h,
	  roofitcore/inc/RooProjectedPdf.h, roofitcore/inc/RooPullVar.h,
	  roofitcore/inc/RooQuasiRandomGenerator.h,
	  roofitcore/inc/RooRandom.h,
	  roofitcore/inc/RooRandomizeParamMCSModule.h,
	  roofitcore/inc/RooRangeBinning.h,
	  roofitcore/inc/RooRealAnalytic.h,
	  roofitcore/inc/RooRealBinding.h,
	  roofitcore/inc/RooRealConstant.h,
	  roofitcore/inc/RooRealIntegral.h, roofitcore/inc/RooRealMPFE.h,
	  roofitcore/inc/RooRealProxy.h, roofitcore/inc/RooRealSumPdf.h,
	  roofitcore/inc/RooRealVar.h,
	  roofitcore/inc/RooRealVarSharedProperties.h,
	  roofitcore/inc/RooRefCountList.h,
	  roofitcore/inc/RooResolutionModel.h,
	  roofitcore/inc/RooScaledFunc.h,
	  roofitcore/inc/RooSegmentedIntegrator1D.h,
	  roofitcore/inc/RooSegmentedIntegrator2D.h,
	  roofitcore/inc/RooSetPair.h, roofitcore/inc/RooSetProxy.h,
	  roofitcore/inc/RooSharedProperties.h,
	  roofitcore/inc/RooSharedPropertiesList.h,
	  roofitcore/inc/RooSimGenContext.h,
	  roofitcore/inc/RooSimPdfBuilder.h,
	  roofitcore/inc/RooSimultaneous.h,
	  roofitcore/inc/RooStreamParser.h, roofitcore/inc/RooStringVar.h,
	  roofitcore/inc/RooSuperCategory.h, roofitcore/inc/RooTObjWrap.h,
	  roofitcore/inc/RooTable.h, roofitcore/inc/RooThreshEntry.h,
	  roofitcore/inc/RooThresholdCategory.h, roofitcore/inc/RooTrace.h,
	  roofitcore/inc/RooTreeData.h, roofitcore/inc/RooTruthModel.h,
	  roofitcore/inc/RooUniformBinning.h,
	  roofitcore/inc/RooWorkspace.h, roofitcore/src/Roo1DTable.cxx,
	  roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCache.cxx,
	  roofitcore/src/RooAbsCacheElement.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsSelfCachedPdf.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBanner.cxx, roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooCachedPdf.cxx, roofitcore/src/RooCatType.cxx,
	  roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataHistSliceIter.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooExtendedTerm.cxx,
	  roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooFitResult.cxx, roofitcore/src/RooFormula.cxx,
	  roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooPlot.cxx, roofitcore/src/RooPlotable.cxx,
	  roofitcore/src/RooPolyVar.cxx, roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooProfileLL.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx: Set property svn:eol-style LF on
	  all source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:22  rdm

	* [r20878] roofit/Module.mk, roofit/doc/index.txt,
	  roofit/inc/LinkDef1.h, roofit/inc/Roo2DKeysPdf.h,
	  roofit/inc/RooArgusBG.h, roofit/inc/RooBCPEffDecay.h,
	  roofit/inc/RooBCPGenDecay.h, roofit/inc/RooBDecay.h,
	  roofit/inc/RooBMixDecay.h, roofit/inc/RooBifurGauss.h,
	  roofit/inc/RooBlindTools.h, roofit/inc/RooBreitWigner.h,
	  roofit/inc/RooBukinPdf.h, roofit/inc/RooCBShape.h,
	  roofit/inc/RooChebychev.h, roofit/inc/RooDecay.h,
	  roofit/inc/RooDstD0BG.h, roofit/inc/RooExponential.h,
	  roofit/inc/RooGExpModel.h, roofit/inc/RooGaussModel.h,
	  roofit/inc/RooGaussian.h, roofit/inc/RooKeysPdf.h,
	  roofit/inc/RooLandau.h, roofit/inc/RooNonCPEigenDecay.h,
	  roofit/inc/RooNovosibirsk.h,
	  roofit/inc/RooParametricStepFunction.h,
	  roofit/inc/RooPolynomial.h, roofit/inc/RooUnblindCPAsymVar.h,
	  roofit/inc/RooUnblindOffset.h, roofit/inc/RooUnblindPrecision.h,
	  roofit/inc/RooUnblindUniform.h, roofit/inc/RooVoigtian.h,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooKeysPdf.cxx, roofit/src/RooLandau.cxx,
	  roofit/src/RooNonCPEigenDecay.cxx, roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx: Set
	  property svn:eol-style LF on all source and Makefiles. This
	  should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:17  rdm

	* [r20877] base/Module.mk, base/doc/macros/fillpatterns.C,
	  base/doc/macros/fonts.C, base/doc/macros/textalign.C,
	  base/doc/macros/textangle.C, base/inc/Bswapcpy.h,
	  base/inc/Buttons.h, base/inc/Bytes.h, base/inc/Byteswap.h,
	  base/inc/DllImport.h, base/inc/GLConstants.h, base/inc/Gtypes.h,
	  base/inc/GuiTypes.h, base/inc/Htypes.h, base/inc/KeySymbols.h,
	  base/inc/LinkDef1.h, base/inc/LinkDef2.h, base/inc/LinkDef3.h,
	  base/inc/LinkDef4.h, base/inc/Match.h, base/inc/MessageTypes.h,
	  base/inc/RConfig.h, base/inc/RQ_OBJECT.h, base/inc/RStipples.h,
	  base/inc/RVersion.h, base/inc/Riosfwd.h, base/inc/Riostream.h,
	  base/inc/Rpair.h, base/inc/Rstrstream.h, base/inc/Rtypeinfo.h,
	  base/inc/Rtypes.h, base/inc/RtypesCint.h, base/inc/RtypesImp.h,
	  base/inc/Strlen.h, base/inc/TApplication.h,
	  base/inc/TApplicationImp.h, base/inc/TAtt3D.h,
	  base/inc/TAttAxis.h, base/inc/TAttBBox.h, base/inc/TAttFill.h,
	  base/inc/TAttLine.h, base/inc/TAttMarker.h, base/inc/TAttPad.h,
	  base/inc/TAttText.h, base/inc/TBenchmark.h, base/inc/TBrowser.h,
	  base/inc/TBrowserImp.h, base/inc/TBuffer.h, base/inc/TBuffer3D.h,
	  base/inc/TBuffer3DTypes.h, base/inc/TCanvasImp.h,
	  base/inc/TColor.h, base/inc/TContextMenu.h,
	  base/inc/TContextMenuImp.h, base/inc/TControlBarImp.h,
	  base/inc/TDatime.h, base/inc/TDirectory.h, base/inc/TEnv.h,
	  base/inc/TError.h, base/inc/TException.h, base/inc/TExec.h,
	  base/inc/TFileCollection.h, base/inc/TFileInfo.h,
	  base/inc/TFolder.h, base/inc/TGuiFactory.h,
	  base/inc/TInetAddress.h, base/inc/TInspectorImp.h,
	  base/inc/TMD5.h, base/inc/TMacro.h, base/inc/TMathBase.h,
	  base/inc/TMemberInspector.h, base/inc/TMessageHandler.h,
	  base/inc/TNamed.h, base/inc/TObjString.h, base/inc/TObject.h,
	  base/inc/TObjectSpy.h, base/inc/TPRegexp.h,
	  base/inc/TParameter.h, base/inc/TPluginManager.h,
	  base/inc/TPoint.h, base/inc/TProcessID.h,
	  base/inc/TProcessUUID.h, base/inc/TQClass.h,
	  base/inc/TQCommand.h, base/inc/TQConnection.h,
	  base/inc/TQObject.h, base/inc/TROOT.h,
	  base/inc/TRedirectOutputGuard.h, base/inc/TRef.h,
	  base/inc/TRefCnt.h, base/inc/TRegexp.h, base/inc/TRemoteObject.h,
	  base/inc/TRootIOCtor.h, base/inc/TStopwatch.h,
	  base/inc/TStorage.h, base/inc/TString.h, base/inc/TStringLong.h,
	  base/inc/TStyle.h, base/inc/TSysEvtHandler.h, base/inc/TSystem.h,
	  base/inc/TSystemDirectory.h, base/inc/TSystemFile.h,
	  base/inc/TTask.h, base/inc/TTime.h, base/inc/TTimeStamp.h,
	  base/inc/TTimer.h, base/inc/TUUID.h, base/inc/TUri.h,
	  base/inc/TUrl.h, base/inc/TVersionCheck.h,
	  base/inc/TVirtualAuth.h, base/inc/TVirtualFFT.h,
	  base/inc/TVirtualFitter.h, base/inc/TVirtualGL.h,
	  base/inc/TVirtualMonitoring.h, base/inc/TVirtualMutex.h,
	  base/inc/TVirtualPS.h, base/inc/TVirtualPad.h,
	  base/inc/TVirtualPadEditor.h, base/inc/TVirtualPerfStats.h,
	  base/inc/TVirtualViewer3D.h, base/inc/TVirtualX.h,
	  base/inc/Varargs.h, base/inc/Windows4Root.h, base/inc/config.h,
	  base/src/InitGui.cxx, base/src/ManualBase4.cxx,
	  base/src/ManualBase4.h, base/src/ManualBase4Body.h,
	  base/src/Match.cxx, base/src/String.cxx, base/src/Stringio.cxx,
	  base/src/TApplication.cxx, base/src/TApplicationImp.cxx,
	  base/src/TAtt3D.cxx, base/src/TAttAxis.cxx,
	  base/src/TAttBBox.cxx, base/src/TAttFill.cxx,
	  base/src/TAttLine.cxx, base/src/TAttMarker.cxx,
	  base/src/TAttPad.cxx, base/src/TAttText.cxx,
	  base/src/TBenchmark.cxx, base/src/TBrowser.cxx,
	  base/src/TBrowserImp.cxx, base/src/TBuffer.cxx,
	  base/src/TBuffer3D.cxx, base/src/TCanvasImp.cxx,
	  base/src/TColor.cxx, base/src/TContextMenu.cxx,
	  base/src/TContextMenuImp.cxx, base/src/TControlBarImp.cxx,
	  base/src/TDatime.cxx, base/src/TDirectory.cxx, base/src/TEnv.cxx,
	  base/src/TError.cxx, base/src/TException.cxx, base/src/TExec.cxx,
	  base/src/TFileCollection.cxx, base/src/TFileInfo.cxx,
	  base/src/TFolder.cxx, base/src/TGuiFactory.cxx,
	  base/src/TInetAddress.cxx, base/src/TInspectorImp.cxx,
	  base/src/TMD5.cxx, base/src/TMacro.cxx, base/src/TMathBase.cxx,
	  base/src/TMemberInspector.cxx, base/src/TMessageHandler.cxx,
	  base/src/TNamed.cxx, base/src/TObjString.cxx,
	  base/src/TObject.cxx, base/src/TObjectSpy.cxx,
	  base/src/TPRegexp.cxx, base/src/TParameter.cxx,
	  base/src/TPluginManager.cxx, base/src/TProcessID.cxx,
	  base/src/TProcessUUID.cxx, base/src/TQCommand.cxx,
	  base/src/TQConnection.cxx, base/src/TQObject.cxx,
	  base/src/TRef.cxx, base/src/TRefCnt.cxx, base/src/TRegexp.cxx,
	  base/src/TRemoteObject.cxx, base/src/TStopwatch.cxx,
	  base/src/TStorage.cxx, base/src/TString.cxx,
	  base/src/TStringLong.cxx, base/src/TStyle.cxx,
	  base/src/TSysEvtHandler.cxx, base/src/TSystem.cxx,
	  base/src/TSystemDirectory.cxx, base/src/TSystemFile.cxx,
	  base/src/TTask.cxx, base/src/TTime.cxx, base/src/TTimeStamp.cxx,
	  base/src/TTimer.cxx, base/src/TUUID.cxx, base/src/TUri.cxx,
	  base/src/TUrl.cxx, base/src/TVirtualFFT.cxx,
	  base/src/TVirtualFitter.cxx, base/src/TVirtualGL.cxx,
	  base/src/TVirtualMonitoring.cxx, base/src/TVirtualMutex.cxx,
	  base/src/TVirtualPS.cxx, base/src/TVirtualPad.cxx,
	  base/src/TVirtualPadEditor.cxx, base/src/TVirtualPerfStats.cxx,
	  base/src/TVirtualViewer3D.cxx, base/src/TVirtualX.cxx,
	  base/src/precompile.cxx: Set property svn:eol-style LF on all
	  source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:16  rdm

	* [r20876] cint7/Cint.mk, cint7/FAQ.txt, cint7/Makefile,
	  cint7/Module.mk, cint7/README.txt, cint7/RELNOTE.txt,
	  cint7/configcint.mk, cint7/demo/README.txt,
	  cint7/demo/Win32App/TestApp/ReadMe.txt,
	  cint7/demo/Win32App/TestApp/StdAfx.cpp,
	  cint7/demo/Win32App/TestApp/StdAfx.h,
	  cint7/demo/Win32App/TestApp/TestApp.cpp,
	  cint7/demo/Win32App/TestApp/TestApp.h,
	  cint7/demo/Win32App/TestApp/resource.h,
	  cint7/demo/Win32App/TestApp/script.cxx,
	  cint7/demo/Win32App/graph01/CompiledLib.c,
	  cint7/demo/Win32App/graph01/CompiledLib.h,
	  cint7/demo/Win32App/graph01/README.txt,
	  cint7/demo/Win32App/graph01/Script.c,
	  cint7/demo/Win32App/graph01/StdAfx.h,
	  cint7/demo/Win32App/graph01/WinMain.c,
	  cint7/demo/Win32App/graph01/WndProc.c,
	  cint7/demo/Win32App/graph01/WndProc.h,
	  cint7/demo/Win32App/graph01/resource.h,
	  cint7/demo/debug/README.txt, cint7/demo/debug/debug.c,
	  cint7/demo/debug/debug2.cxx, cint7/demo/errpipe/README.txt,
	  cint7/demo/errpipe/errpipe.cxx, cint7/demo/errpipe/errpipe.h,
	  cint7/demo/exception/Makefile, cint7/demo/exception/README.txt,
	  cint7/demo/exception/ehdemo.cxx, cint7/demo/exception/ehdemo.h,
	  cint7/demo/gl/README.txt, cint7/demo/gl/display0.h,
	  cint7/demo/gl/display1.h, cint7/demo/gl/display2.h,
	  cint7/demo/gl/test0.c, cint7/demo/gl/test1.c,
	  cint7/demo/gl/test2.c, cint7/demo/graphs/FFT.c,
	  cint7/demo/graphs/README.txt, cint7/demo/graphs/dft.c,
	  cint7/demo/graphs/eular.c, cint7/demo/graphs/fir.c,
	  cint7/demo/graphs/fir2.c, cint7/demo/graphs/jitter.c,
	  cint7/demo/graphs/modulation.c, cint7/demo/graphs/sin.c,
	  cint7/demo/graphs/sin123.c, cint7/demo/graphs/skineffect.c,
	  cint7/demo/graphs/stripline.c, cint7/demo/intprt_cint/cint.sh,
	  cint7/demo/intprt_cint/simple.c,
	  cint7/demo/intprt_cint/simple.cxx,
	  cint7/demo/intprt_cint/testmain.c, cint7/demo/ipc/README.txt,
	  cint7/demo/ipc/common.cxx, cint7/demo/ipc/proc1.cxx,
	  cint7/demo/ipc/proc2.cxx, cint7/demo/makecint/Array/Array.C,
	  cint7/demo/makecint/Array/Array.h,
	  cint7/demo/makecint/Array/Fundament.C,
	  cint7/demo/makecint/Array/Fundament.h,
	  cint7/demo/makecint/Array/Makefile,
	  cint7/demo/makecint/Array/README.txt,
	  cint7/demo/makecint/Array/inherit.C,
	  cint7/demo/makecint/Array/loopcompile.c,
	  cint7/demo/makecint/Array/loopcompile0.c,
	  cint7/demo/makecint/Array/loopcompile1.c,
	  cint7/demo/makecint/Array/test.C,
	  cint7/demo/makecint/Complex/Complex.C,
	  cint7/demo/makecint/Complex/Complex.h,
	  cint7/demo/makecint/Complex/Makefile,
	  cint7/demo/makecint/Complex/README.txt,
	  cint7/demo/makecint/Complex/temp.C,
	  cint7/demo/makecint/Complex/test.C,
	  cint7/demo/makecint/DArray/DArray.C,
	  cint7/demo/makecint/DArray/DArray.h,
	  cint7/demo/makecint/DArray/Makefile,
	  cint7/demo/makecint/DArray/README.txt,
	  cint7/demo/makecint/DArray/test.C,
	  cint7/demo/makecint/KRcc/Complex.c,
	  cint7/demo/makecint/KRcc/Complex.h,
	  cint7/demo/makecint/KRcc/Makefile,
	  cint7/demo/makecint/KRcc/README.txt,
	  cint7/demo/makecint/KRcc/stub.c, cint7/demo/makecint/KRcc/stub.h,
	  cint7/demo/makecint/KRcc/test.c, cint7/demo/makecint/README.txt,
	  cint7/demo/makecint/ReadFile/Common.h,
	  cint7/demo/makecint/ReadFile/Makefile,
	  cint7/demo/makecint/ReadFile/README.txt,
	  cint7/demo/makecint/ReadFile/ReadFile.C,
	  cint7/demo/makecint/ReadFile/ReadFile.h,
	  cint7/demo/makecint/ReadFile/test.C,
	  cint7/demo/makecint/Stub/Makefile,
	  cint7/demo/makecint/Stub/README.txt,
	  cint7/demo/makecint/Stub/Src.C, cint7/demo/makecint/Stub/Src.h,
	  cint7/demo/makecint/Stub/Stub.C, cint7/demo/makecint/Stub/Stub.h,
	  cint7/demo/makecint/Stub2/Make1, cint7/demo/makecint/Stub2/Make2,
	  cint7/demo/makecint/Stub2/README.txt,
	  cint7/demo/makecint/Stub2/compiled.cxx,
	  cint7/demo/makecint/Stub2/compiled.h,
	  cint7/demo/makecint/Stub2/dmy.h,
	  cint7/demo/makecint/Stub2/main.cxx,
	  cint7/demo/makecint/Stub2/stub.h,
	  cint7/demo/makecint/UserMain/README.txt,
	  cint7/demo/makecint/UserMain/UserMain.cxx,
	  cint7/demo/makecint/UserMain/UserMain.h,
	  cint7/demo/makecint/UserMain/script.cxx,
	  cint7/demo/makecint/exception/README.txt,
	  cint7/demo/makecint/exception/eh.cxx,
	  cint7/demo/makecint/exception/eh.h,
	  cint7/demo/makecint/p2f/Makefile,
	  cint7/demo/makecint/p2f/README.txt,
	  cint7/demo/makecint/p2f/p2f.C, cint7/demo/makecint/p2f/p2f.h,
	  cint7/demo/makecint/p2f/test.C, cint7/demo/makecint/stl/Makefile,
	  cint7/demo/makecint/stl/sample.h,
	  cint7/demo/makecint/stl/test.cxx, cint7/demo/mthread/README.txt,
	  cint7/demo/mthread/fork.cxx, cint7/demo/mthread/mtlib.h,
	  cint7/demo/mthread/mtmain.cxx, cint7/demo/mthread/ptlib.h,
	  cint7/demo/mthread/ptmain.cxx,
	  cint7/demo/multilibcint/README.txt,
	  cint7/demo/multilibcint/main.cxx, cint7/demo/multilibcint/mt.c,
	  cint7/demo/multilibcint/mt.h, cint7/demo/multilibcint/test1.cxx,
	  cint7/demo/multilibcint/test2.cxx,
	  cint7/demo/perlawk/parseplot.c, cint7/demo/posix/readdir.cxx,
	  cint7/demo/qt/README.txt, cint7/demo/qt/cannon.cpp,
	  cint7/demo/qt/cannon.h, cint7/demo/qt/lcdrange.cpp,
	  cint7/demo/qt/lcdrange.h, cint7/demo/qt/moc_cannon.cpp,
	  cint7/demo/qt/qcompactstyle.h, cint7/demo/qt/qtstatic.cxx,
	  cint7/demo/qt/test0.cxx, cint7/demo/qt/test1.cxx,
	  cint7/demo/qt/test2.cxx, cint7/demo/qt/test3.cxx,
	  cint7/demo/qt/test4.cxx, cint7/demo/qt/test5.cxx,
	  cint7/demo/qt/test6.cxx, cint7/demo/qt/test7.cxx,
	  cint7/demo/qt/test7.h, cint7/demo/qt/test8.cxx,
	  cint7/demo/qt/test8.h, cint7/demo/qt/test9.cxx,
	  cint7/demo/simple/HelloWorld.c, cint7/demo/simple/HelloWorld.cxx,
	  cint7/demo/simple/NativeCalc.c, cint7/demo/simple/README.txt,
	  cint7/demo/simple/access0.c, cint7/demo/simple/array.c,
	  cint7/demo/simple/csum.c, cint7/demo/simple/inherit1.c,
	  cint7/demo/simple/init.c, cint7/demo/simple/oprovld.c,
	  cint7/demo/simple/oprovld0.c, cint7/demo/simple/scope0.c,
	  cint7/demo/simple/staticmem0.c, cint7/demo/simple/template0.c,
	  cint7/demo/simple/template2.c, cint7/demo/simple/text2tex.c,
	  cint7/demo/simple/virtualfunc1.c, cint7/demo/stl/README.txt,
	  cint7/demo/stl/array2.cxx, cint7/demo/stl/array4.cxx,
	  cint7/demo/stl/deque0.cxx, cint7/demo/stl/deque1.cxx,
	  cint7/demo/stl/deque1i.cxx, cint7/demo/stl/list0.cxx,
	  cint7/demo/stl/list1.cxx, cint7/demo/stl/list2.cxx,
	  cint7/demo/stl/list3.cxx, cint7/demo/stl/list4.cxx,
	  cint7/demo/stl/map0.cxx, cint7/demo/stl/stl0.cxx,
	  cint7/demo/stl/stl1.cxx, cint7/demo/stl/stl2.cxx,
	  cint7/demo/stl/stl3.cxx, cint7/demo/stl/stl3x.cxx,
	  cint7/demo/stl/stl4.cxx, cint7/demo/stl/stl5.cxx,
	  cint7/demo/stl/string0.cxx, cint7/demo/stl/vec0.cxx,
	  cint7/demo/stl/vec1.cxx, cint7/demo/stl/vec1s.cxx,
	  cint7/demo/stl/vec1u.cxx, cint7/demo/stl/vec2.cxx,
	  cint7/demo/stl/vec3.cxx, cint7/demo/stl/vec3t.cxx,
	  cint7/demo/stl/vec4.cxx, cint7/demo/tcpip/README.txt,
	  cint7/demo/tcpip/client.cxx, cint7/demo/tcpip/server.cxx,
	  cint7/demo/xlib/README.txt, cint7/demo/xlib/test.c,
	  cint7/doc/bytecode.txt, cint7/doc/cint.txt,
	  cint7/doc/cintapi.txt, cint7/doc/extlib.txt, cint7/doc/ifdef.txt,
	  cint7/doc/limitati.txt, cint7/doc/limitnum.txt,
	  cint7/doc/makecint.txt, cint7/doc/message.txt, cint7/doc/ref.txt,
	  cint7/inc/Api.h, cint7/inc/BaseCls.h, cint7/inc/CallFunc.h,
	  cint7/inc/Class.h, cint7/inc/DataMbr.h, cint7/inc/G__ci.h,
	  cint7/inc/G__ci_fproto.h, cint7/inc/G__security.h,
	  cint7/inc/Method.h, cint7/inc/MethodAr.h, cint7/inc/Property.h,
	  cint7/inc/Token.h, cint7/inc/Type.h, cint7/inc/Typedf.h,
	  cint7/include/Common.h, cint7/include/GL/gl.h,
	  cint7/include/GL/glu.h, cint7/include/GL/glut.h,
	  cint7/include/GL/xmesa.h, cint7/include/README.txt,
	  cint7/include/ReadF.C, cint7/include/ReadF.cxx,
	  cint7/include/ReadF.h, cint7/include/RegE.C,
	  cint7/include/RegE.cxx, cint7/include/RegE.h,
	  cint7/include/X11/Xlib.h, cint7/include/X11/Xutil.h,
	  cint7/include/X11/keysym.h, cint7/include/X11/xos.h,
	  cint7/include/_complex.h, cint7/include/_exception.h,
	  cint7/include/_stdexcept.h, cint7/include/api.h,
	  cint7/include/array.c, cint7/include/array.h,
	  cint7/include/arrayiostream.h, cint7/include/assert.h,
	  cint7/include/bool.h, cint7/include/boolean.h,
	  cint7/include/carray.c, cint7/include/carray.h,
	  cint7/include/complex.h, cint7/include/constants.h,
	  cint7/include/ctype.h, cint7/include/darray.cxx,
	  cint7/include/darray.h, cint7/include/ertti.h,
	  cint7/include/exception.h, cint7/include/fcntl.h,
	  cint7/include/fft.c, cint7/include/fft.h,
	  cint7/include/fstream.h, cint7/include/graphbuf.h,
	  cint7/include/iomanip.h, cint7/include/iosenum.cxx,
	  cint7/include/iosfwd.h, cint7/include/iostream.h,
	  cint7/include/lsm.c, cint7/include/lsm.h, cint7/include/makeit.c,
	  cint7/include/matrix.cxx, cint7/include/matrix.h,
	  cint7/include/matrixstream.h, cint7/include/mkincld.c,
	  cint7/include/new.h, cint7/include/platform.h,
	  cint7/include/pthread.h, cint7/include/readfile.h,
	  cint7/include/regex.h, cint7/include/regexp.h,
	  cint7/include/setjmp.h, cint7/include/socket.h,
	  cint7/include/spice.h, cint7/include/statistics.c,
	  cint7/include/statistics.h, cint7/include/stdarg.h,
	  cint7/include/stdiostream.h, cint7/include/stream.h,
	  cint7/include/string.h, cint7/include/striostream.h,
	  cint7/include/strstream.h, cint7/include/sys/cdefs.h,
	  cint7/include/sys/file.h, cint7/include/sys/ipc.h,
	  cint7/include/sys/msg.h, cint7/include/sys/sem.h,
	  cint7/include/sys/shm.h, cint7/include/sys/stat.h,
	  cint7/include/termios.h, cint7/include/timespec.h,
	  cint7/include/typeinfo.h, cint7/include/unistd.h,
	  cint7/include/windows.h, cint7/include/winsock.h,
	  cint7/include/xgraph.c, cint7/include/xygraphbuf.h,
	  cint7/lib/Makefile, cint7/lib/README.txt,
	  cint7/lib/WildCard/AppInit.c, cint7/lib/WildCard/Main.c,
	  cint7/lib/WildCard/Main.cxx, cint7/lib/WildCard/Makefile,
	  cint7/lib/WildCard/TCLMACRO.h, cint7/lib/WildCard/TCLTK.h,
	  cint7/lib/WildCard/TKMACRO.h, cint7/lib/WildCard/TOP.h,
	  cint7/lib/WildCard/TclIns.c, cint7/lib/WildCard/TkInit.c,
	  cint7/lib/WildCard/WildCard.c, cint7/lib/WildCard/test.c,
	  cint7/lib/WildCard/tktest.c, cint7/lib/WildCard/tktest1.c,
	  cint7/lib/WildCard/tktest2.c, cint7/lib/accstrm/Makefile,
	  cint7/lib/accstrm/README.txt, cint7/lib/accstrm/fstrm.h,
	  cint7/lib/accstrm/iostrm.h, cint7/lib/accstrm/linkdef.h,
	  cint7/lib/accstrm/sstrm.h, cint7/lib/alphastrm/Makefile,
	  cint7/lib/alphastrm/README.txt, cint7/lib/alphastrm/fstrm.h,
	  cint7/lib/alphastrm/iostrm.h, cint7/lib/alphastrm/linkdef.h,
	  cint7/lib/alphastrm/sstrm.h, cint7/lib/bcstream/Makefile,
	  cint7/lib/bcstream/fstrm.h, cint7/lib/bcstream/iostrm.h,
	  cint7/lib/bcstream/stdiostr.h, cint7/lib/bcstream/strm.h,
	  cint7/lib/bcstream/strstrm.h, cint7/lib/cbstream/Makefile,
	  cint7/lib/cbstream/fstrm.h, cint7/lib/cbstream/iostrm.h,
	  cint7/lib/cbstream/linkdef.h, cint7/lib/cbstream/readme.txt,
	  cint7/lib/cbstream/strstrm.h, cint7/lib/cintocx/CintocxCtl.cpp,
	  cint7/lib/cintocx/CintocxCtl.h, cint7/lib/cintocx/CintocxPpg.cpp,
	  cint7/lib/cintocx/CintocxPpg.h, cint7/lib/cintocx/README.txt,
	  cint7/lib/cintocx/Resource.h, cint7/lib/cintocx/StdAfx.cpp,
	  cint7/lib/cintocx/StdAfx.h, cint7/lib/cintocx/cintocx.cpp,
	  cint7/lib/cintocx/cintocx.h, cint7/lib/dll_stl/README.txt,
	  cint7/lib/dll_stl/cinteh.h, cint7/lib/dll_stl/clim.h,
	  cint7/lib/dll_stl/cmplx.h, cint7/lib/dll_stl/dqu.h,
	  cint7/lib/dll_stl/iter.h, cint7/lib/dll_stl/lst.h,
	  cint7/lib/dll_stl/mp.h, cint7/lib/dll_stl/multmp.h,
	  cint7/lib/dll_stl/multst.h, cint7/lib/dll_stl/pr.h,
	  cint7/lib/dll_stl/que.h, cint7/lib/dll_stl/se.h,
	  cint7/lib/dll_stl/st.h, cint7/lib/dll_stl/stk.h,
	  cint7/lib/dll_stl/str.h, cint7/lib/dll_stl/suncc5_deque.h,
	  cint7/lib/dll_stl/suncc5_string.h, cint7/lib/dll_stl/vary.h,
	  cint7/lib/dll_stl/vec.h, cint7/lib/dll_stl/vecbool.h,
	  cint7/lib/gcc3strm/Makefile, cint7/lib/gcc3strm/README.txt,
	  cint7/lib/gcc3strm/fstrm.h, cint7/lib/gcc3strm/iostrm.h,
	  cint7/lib/gcc3strm/linkdef.h, cint7/lib/gcc3strm/sstrm.h,
	  cint7/lib/gl/GL.h, cint7/lib/gl/README.txt, cint7/lib/gl/TOP.h,
	  cint7/lib/gl/cintGL.h, cint7/lib/iccstrm/Makefile,
	  cint7/lib/iccstrm/README.txt, cint7/lib/iccstrm/fstrm.h,
	  cint7/lib/iccstrm/iostrm.h, cint7/lib/iccstrm/linkdef.h,
	  cint7/lib/iccstrm/sstrm.h, cint7/lib/ipc/README.txt,
	  cint7/lib/ipc/ipcif.h, cint7/lib/longlong/README.txt,
	  cint7/lib/longlong/longdbl.h, cint7/lib/longlong/longlong.h,
	  cint7/lib/posix/README.txt, cint7/lib/posix/exten.c,
	  cint7/lib/posix/exten.h, cint7/lib/posix/mktypes.c,
	  cint7/lib/posix/posix.h, cint7/lib/posix/winposix.c,
	  cint7/lib/posix/winposix.h, cint7/lib/prec_stl/README.txt,
	  cint7/lib/pthread/Makefile, cint7/lib/pthread/README.txt,
	  cint7/lib/pthread/pthd.h, cint7/lib/pthread/thread.h,
	  cint7/lib/qt/Makefile, cint7/lib/qt/README.txt,
	  cint7/lib/qt/qcompactstyle.h, cint7/lib/qt/qconfig.h,
	  cint7/lib/qt/qmodules.h, cint7/lib/qt/qplatformdefs.h,
	  cint7/lib/qt/qtcint.h, cint7/lib/qt/qtclasses.h,
	  cint7/lib/qt/qtdummy.h, cint7/lib/qt/qtfunctions.h,
	  cint7/lib/qt/qtglobals.h, cint7/lib/qt/qtstatic.cxx,
	  cint7/lib/socket/README.txt, cint7/lib/socket/cintsock.c,
	  cint7/lib/socket/cintsock.h, cint7/lib/socket/mksockh.c,
	  cint7/lib/stdstrct/Makefile, cint7/lib/stdstrct/stdcxxfunc.h,
	  cint7/lib/stdstrct/stdfunc.h, cint7/lib/stdstrct/stdstr.h,
	  cint7/lib/stream/Makefile, cint7/lib/stream/fstrm.h,
	  cint7/lib/stream/iostrm.h, cint7/lib/stream/stdiostr.h,
	  cint7/lib/stream/strm.h, cint7/lib/stream/strstrm.h,
	  cint7/lib/sunstrm/Makefile, cint7/lib/sunstrm/fstrm.h,
	  cint7/lib/sunstrm/iostrm.h, cint7/lib/sunstrm/length.cxx,
	  cint7/lib/sunstrm/linkdef.h, cint7/lib/sunstrm/readme.txt,
	  cint7/lib/sunstrm/sstrm.h, cint7/lib/vc7strm/Makefile,
	  cint7/lib/vc7strm/README.txt, cint7/lib/vc7strm/fstrm.h,
	  cint7/lib/vc7strm/iostrm.h, cint7/lib/vc7strm/linkdef.h,
	  cint7/lib/vc7strm/sstrm.h, cint7/lib/vcstream/Makefile,
	  cint7/lib/vcstream/Makefileold, cint7/lib/vcstream/fstrm.h,
	  cint7/lib/vcstream/iostrm.h, cint7/lib/vcstream/stdiostr.h,
	  cint7/lib/vcstream/strm.h, cint7/lib/vcstream/strstrm.h,
	  cint7/lib/win32api/cintwin.h, cint7/lib/win32api/readme.txt,
	  cint7/lib/win32api/winfunc.h, cint7/lib/wintcldl/README.txt,
	  cint7/lib/wintcldl/cintlib.c, cint7/lib/wintcldl/tclmacro.h,
	  cint7/lib/wintcldl/tcltk.h, cint7/lib/wintcldl/test.c,
	  cint7/lib/wintcldl/tkmacro.h, cint7/lib/wintcldl/top.h,
	  cint7/lib/wintcldl83/README.txt, cint7/lib/wintcldl83/cintlib.c,
	  cint7/lib/wintcldl83/tclmacro.h, cint7/lib/wintcldl83/tcltk.h,
	  cint7/lib/wintcldl83/test.c, cint7/lib/wintcldl83/tkmacro.h,
	  cint7/lib/wintcldl83/top.h, cint7/lib/xlib/README.txt,
	  cint7/lib/xlib/TOP.h, cint7/lib/xlib/XLIB.h,
	  cint7/lib/xlib/x11const.h, cint7/lib/xlib/x11mfunc.h,
	  cint7/libCint.mk, cint7/libReflex.mk, cint7/main/G__main.c,
	  cint7/main/G__setup.c, cint7/main/cppmain.cxx, cint7/src/Api.cxx,
	  cint7/src/Apiif.cxx, cint7/src/Apiif.h, cint7/src/BaseCls.cxx,
	  cint7/src/CallFunc.cxx, cint7/src/Class.cxx,
	  cint7/src/DataMbr.cxx, cint7/src/Dict.cxx, cint7/src/Dict.h,
	  cint7/src/Makebcdict, cint7/src/Makefile,
	  cint7/src/Makefile.base, cint7/src/Makefile.base.nec,
	  cint7/src/Makefile.base.sgi, cint7/src/Method.cxx,
	  cint7/src/MethodAr.cxx, cint7/src/README.txt,
	  cint7/src/Shadow.cxx, cint7/src/Token.cxx, cint7/src/Type.cxx,
	  cint7/src/Typedf.cxx, cint7/src/accstrm.cxx, cint7/src/accstrm.h,
	  cint7/src/allstrm.cxx, cint7/src/alphastrm.cxx,
	  cint7/src/alphastrm.h, cint7/src/bc_assign.cxx,
	  cint7/src/bc_assign.h, cint7/src/bc_autoobj.cxx,
	  cint7/src/bc_autoobj.h, cint7/src/bc_cfunc.cxx,
	  cint7/src/bc_cfunc.h, cint7/src/bc_debug.cxx,
	  cint7/src/bc_debug.h, cint7/src/bc_eh.cxx, cint7/src/bc_eh.h,
	  cint7/src/bc_exec.cxx, cint7/src/bc_exec.h,
	  cint7/src/bc_exec_asm.h, cint7/src/bc_inst.cxx,
	  cint7/src/bc_inst.h, cint7/src/bc_item.cxx, cint7/src/bc_item.h,
	  cint7/src/bc_linkdef.h, cint7/src/bc_parse.cxx,
	  cint7/src/bc_parse.h, cint7/src/bc_reader.cxx,
	  cint7/src/bc_reader.h, cint7/src/bc_type.cxx,
	  cint7/src/bc_type.h, cint7/src/bc_vtbl.cxx, cint7/src/bc_vtbl.h,
	  cint7/src/bcstrm.cxx, cint7/src/bcstrm.h, cint7/src/cbstrm.cpp,
	  cint7/src/cbstrm.h, cint7/src/common.h, cint7/src/dllrev.h,
	  cint7/src/fakestrm.cxx, cint7/src/fproto.h, cint7/src/g__cfunc.c,
	  cint7/src/gcc3strm.cxx, cint7/src/gcc3strm.h, cint7/src/global.h,
	  cint7/src/header.h, cint7/src/iccstrm.cxx, cint7/src/iccstrm.h,
	  cint7/src/kccstrm.cxx, cint7/src/kccstrm.h,
	  cint7/src/libstrm.cxx, cint7/src/libstrm.h, cint7/src/longif.cxx,
	  cint7/src/longif.h, cint7/src/longif3.cxx, cint7/src/longif3.h,
	  cint7/src/memo.txt, cint7/src/memo2.txt, cint7/src/memtest.h,
	  cint7/src/newsos.h, cint7/src/precedence.txt,
	  cint7/src/rflx_gendict.cxx, cint7/src/rflx_gendict.h,
	  cint7/src/rflx_gensrc.cxx, cint7/src/rflx_gensrc.h,
	  cint7/src/rflx_tools.cxx, cint7/src/rflx_tools.h,
	  cint7/src/stdstrct.h, cint7/src/sun5strm.cxx, cint7/src/sunos.h,
	  cint7/src/sunstrm.cxx, cint7/src/sunstrm.h, cint7/src/typesym.h,
	  cint7/src/v6_auxu.cxx, cint7/src/v6_cast.cxx,
	  cint7/src/v6_debug.cxx, cint7/src/v6_decl.cxx,
	  cint7/src/v6_disp.cxx, cint7/src/v6_dmyinit.cxx,
	  cint7/src/v6_dmystrct.cxx, cint7/src/v6_dmystrm.cxx,
	  cint7/src/v6_dump.cxx, cint7/src/v6_end.cxx,
	  cint7/src/v6_error.cxx, cint7/src/v6_expr.cxx,
	  cint7/src/v6_fread.cxx, cint7/src/v6_func.cxx,
	  cint7/src/v6_gcoll.cxx, cint7/src/v6_global1.cxx,
	  cint7/src/v6_global2.cxx, cint7/src/v6_ifunc.cxx,
	  cint7/src/v6_inherit.cxx, cint7/src/v6_init.cxx,
	  cint7/src/v6_input.cxx, cint7/src/v6_intrpt.cxx,
	  cint7/src/v6_loadfile.cxx, cint7/src/v6_macos.cxx,
	  cint7/src/v6_macro.cxx, cint7/src/v6_malloc.cxx,
	  cint7/src/v6_memtest.cxx, cint7/src/v6_new.cxx,
	  cint7/src/v6_newlink.cxx, cint7/src/v6_newsos.cxx,
	  cint7/src/v6_oldlink.cxx, cint7/src/v6_opr.cxx,
	  cint7/src/v6_parse.cxx, cint7/src/v6_pause.cxx,
	  cint7/src/v6_pcode.cxx, cint7/src/v6_pragma.cxx,
	  cint7/src/v6_quote.cxx, cint7/src/v6_rflxutil.cxx,
	  cint7/src/v6_scrupto.cxx, cint7/src/v6_shl.cxx,
	  cint7/src/v6_sizeof.cxx, cint7/src/v6_stdstrct.cxx,
	  cint7/src/v6_struct.cxx, cint7/src/v6_stub.cxx,
	  cint7/src/v6_sunos.cxx, cint7/src/v6_tmplt.cxx,
	  cint7/src/v6_typedef.cxx, cint7/src/v6_val2a.cxx,
	  cint7/src/v6_value.cxx, cint7/src/v6_var.cxx,
	  cint7/src/v6_winnt.cxx, cint7/src/vararg.h,
	  cint7/src/vc7strm.cxx, cint7/src/vc7strm.h, cint7/src/vcstrm.cxx,
	  cint7/src/vcstrm.h, cint7/src/vcstrmold.cxx,
	  cint7/src/vcstrmold.h, cint7/stl/G__postprocess.h,
	  cint7/stl/README.txt, cint7/stl/_climits.h, cint7/stl/_deque.h,
	  cint7/stl/_iterator.h, cint7/stl/_list.h, cint7/stl/_map.h,
	  cint7/stl/_memory.h, cint7/stl/_multimap.h,
	  cint7/stl/_multiset.h, cint7/stl/_pair.h, cint7/stl/_set.h,
	  cint7/stl/_stack.h, cint7/stl/_utility.h, cint7/stl/_vector.h,
	  cint7/stl/algo.h, cint7/stl/algobase.h, cint7/stl/bstring.h,
	  cint7/stl/bvector.h, cint7/stl/defalloc.h, cint7/stl/deque.h,
	  cint7/stl/faralloc.h, cint7/stl/fdeque.h, cint7/stl/flist.h,
	  cint7/stl/fmap.h, cint7/stl/fmultmap.h, cint7/stl/fmultset.h,
	  cint7/stl/fset.h, cint7/stl/function.h, cint7/stl/hdeque.h,
	  cint7/stl/heap.h, cint7/stl/hlist.h, cint7/stl/hmap.h,
	  cint7/stl/hmultmap.h, cint7/stl/hmultset.h, cint7/stl/hset.h,
	  cint7/stl/hugalloc.h, cint7/stl/hvector.h, cint7/stl/iterator.h,
	  cint7/stl/lbvector.h, cint7/stl/ldeque.h, cint7/stl/list.h,
	  cint7/stl/llist.h, cint7/stl/lmap.h, cint7/stl/lmultmap.h,
	  cint7/stl/lmultset.h, cint7/stl/lngalloc.h, cint7/stl/lset.h,
	  cint7/stl/map.h, cint7/stl/multimap.h, cint7/stl/multiset.h,
	  cint7/stl/neralloc.h, cint7/stl/nmap.h, cint7/stl/nmultmap.h,
	  cint7/stl/nmultset.h, cint7/stl/nset.h, cint7/stl/pair.h,
	  cint7/stl/projectn.h, cint7/stl/random.cpp, cint7/stl/set.h,
	  cint7/stl/stack.h, cint7/stl/tempbuf.cpp, cint7/stl/tempbuf.h,
	  cint7/stl/teststl.c, cint7/stl/tree.h, cint7/stl/utility.h,
	  cint7/stl/vector.h, cint7/test/Complex.cxx, cint7/test/Complex.h,
	  cint7/test/IPair.cpp, cint7/test/IPair.h, cint7/test/MyAlgo0.h,
	  cint7/test/MyString.cxx, cint7/test/MyString.h,
	  cint7/test/README.txt, cint7/test/Test0.cxx,
	  cint7/test/Test1.cxx, cint7/test/VArray.cxx, cint7/test/VArray.h,
	  cint7/test/VCompany.cxx, cint7/test/VCompany.h,
	  cint7/test/VObject.cxx, cint7/test/VObject.h,
	  cint7/test/VPerson.cxx, cint7/test/VPerson.h,
	  cint7/test/VPersonTest.cxx, cint7/test/VString.cxx,
	  cint7/test/VString.h, cint7/test/VType.h, cint7/test/access0.cxx,
	  cint7/test/anonunion.cxx, cint7/test/aoki0.cxx,
	  cint7/test/aryinit0.cxx, cint7/test/aryinit1.cxx,
	  cint7/test/autocc.cxx, cint7/test/baseconv0.cxx,
	  cint7/test/bitfield.cxx, cint7/test/borg1.cxx,
	  cint7/test/borg2.cxx, cint7/test/bruce1.cxx,
	  cint7/test/btmplt.cxx, cint7/test/complex1.cxx,
	  cint7/test/complex1.h, cint7/test/const.cxx,
	  cint7/test/constary.cxx, cint7/test/convopr0.cxx,
	  cint7/test/cout1.cxx, cint7/test/cpp0.cxx, cint7/test/cpp1.cxx,
	  cint7/test/cpp2.cxx, cint7/test/cpp3.cxx, cint7/test/cpp4.cxx,
	  cint7/test/cpp5.cxx, cint7/test/cpp6.cxx, cint7/test/cpp8.cxx,
	  cint7/test/delete0.cxx, cint7/test/eh1.cxx,
	  cint7/test/enumscope.cxx, cint7/test/explicitdtor.cxx,
	  cint7/test/fons3.cxx, cint7/test/friend0.cxx,
	  cint7/test/funcmacro.cxx, cint7/test/fwdtmplt.cxx,
	  cint7/test/idxscope0.cxx, cint7/test/ifs.cxx,
	  cint7/test/include.cxx, cint7/test/inherit0.cxx,
	  cint7/test/inherit1.cxx, cint7/test/inherit2.cxx,
	  cint7/test/init1.cxx, cint7/test/init2.cxx,
	  cint7/test/longlong.cxx, cint7/test/loopcompile1.cxx,
	  cint7/test/loopcompile2.cxx, cint7/test/loopcompile3.cxx,
	  cint7/test/loopcompile4.cxx, cint7/test/loopcompile5.cxx,
	  cint7/test/maincmplx.cxx, cint7/test/maptest.cxx,
	  cint7/test/maptest.h, cint7/test/memo.txt,
	  cint7/test/mfstatic.cxx, cint7/test/minexam.cxx,
	  cint7/test/minherit0.cxx, cint7/test/mkcmain.cxx,
	  cint7/test/new0.cxx, cint7/test/nick3.cxx, cint7/test/nick4.cxx,
	  cint7/test/nstmplt1.cxx, cint7/test/oprovld0.cxx,
	  cint7/test/oprovld2.cxx, cint7/test/ostream.cxx,
	  cint7/test/pb19.cxx, cint7/test/refassign.cxx,
	  cint7/test/scope0.cxx, cint7/test/setw0.cxx,
	  cint7/test/staticary.cxx, cint7/test/staticmem0.cxx,
	  cint7/test/staticmem1.cxx, cint7/test/t1002.cxx,
	  cint7/test/t1002.h, cint7/test/t1004.cxx, cint7/test/t1011.cxx,
	  cint7/test/t1011.h, cint7/test/t1015.cxx, cint7/test/t1016.cxx,
	  cint7/test/t1016.h, cint7/test/t1023.cxx, cint7/test/t1024.cxx,
	  cint7/test/t1024.h, cint7/test/t1025.cxx, cint7/test/t1025.h,
	  cint7/test/t1026.cxx, cint7/test/t1026.h, cint7/test/t1027.cxx,
	  cint7/test/t1027.h, cint7/test/t1030.cxx, cint7/test/t1030.h,
	  cint7/test/t1031.cxx, cint7/test/t1031.h, cint7/test/t1032.cxx,
	  cint7/test/t1033.cxx, cint7/test/t1034.cxx, cint7/test/t1035.cxx,
	  cint7/test/t1035.h, cint7/test/t1036.cxx, cint7/test/t1040.cxx,
	  cint7/test/t1040.h, cint7/test/t1042.cxx, cint7/test/t1046.cxx,
	  cint7/test/t1046.h, cint7/test/t1047.cxx, cint7/test/t1047.h,
	  cint7/test/t1048.cxx, cint7/test/t1048.h, cint7/test/t1049.cxx,
	  cint7/test/t1054.cxx, cint7/test/t1055.cxx, cint7/test/t1061.cxx,
	  cint7/test/t1061.h, cint7/test/t1062.cxx, cint7/test/t1062.h,
	  cint7/test/t1067.cxx, cint7/test/t1067.h, cint7/test/t1068.cxx,
	  cint7/test/t1068.h, cint7/test/t1079.cxx, cint7/test/t1079.h,
	  cint7/test/t1084.cxx, cint7/test/t1085.cxx, cint7/test/t1086.cxx,
	  cint7/test/t1088.cxx, cint7/test/t1094.cxx, cint7/test/t1101.cxx,
	  cint7/test/t1115.cxx, cint7/test/t1115.h, cint7/test/t1124.cxx,
	  cint7/test/t1125.cxx, cint7/test/t1126.cxx, cint7/test/t1127.cxx,
	  cint7/test/t1127.h, cint7/test/t1128.cxx, cint7/test/t1129.cxx,
	  cint7/test/t1134.cxx, cint7/test/t1136.cxx, cint7/test/t1140.cxx,
	  cint7/test/t1143.cxx, cint7/test/t1144.cxx, cint7/test/t1148.cxx,
	  cint7/test/t1157.cxx, cint7/test/t1158.cxx, cint7/test/t1160.cxx,
	  cint7/test/t1164.cxx, cint7/test/t1165.cxx, cint7/test/t1178.cxx,
	  cint7/test/t1178.h, cint7/test/t1187.cxx, cint7/test/t1187.h,
	  cint7/test/t1192.cxx, cint7/test/t1193.cxx, cint7/test/t1193.h,
	  cint7/test/t1200.h, cint7/test/t1203.cxx, cint7/test/t1205.cxx,
	  cint7/test/t1205.h, cint7/test/t1213.cxx, cint7/test/t1214.cxx,
	  cint7/test/t1215.cxx, cint7/test/t1215.h, cint7/test/t1221.cxx,
	  cint7/test/t1222.cxx, cint7/test/t1223.cxx, cint7/test/t1224.cxx,
	  cint7/test/t1228.cxx, cint7/test/t1247.cxx, cint7/test/t1247.h,
	  cint7/test/t1247a.h, cint7/test/t1276.cxx, cint7/test/t1276.h,
	  cint7/test/t1277.cxx, cint7/test/t1277.h, cint7/test/t1278.cxx,
	  cint7/test/t1279.cxx, cint7/test/t1280.cxx, cint7/test/t1281.cxx,
	  cint7/test/t1282.cxx, cint7/test/t215.cxx, cint7/test/t358.cxx,
	  cint7/test/t488.cxx, cint7/test/t516.cxx, cint7/test/t516.h,
	  cint7/test/t603.cxx, cint7/test/t627.cxx, cint7/test/t627.h,
	  cint7/test/t630.cxx, cint7/test/t633.cxx, cint7/test/t633.h,
	  cint7/test/t634.cxx, cint7/test/t648.cxx, cint7/test/t674.cxx,
	  cint7/test/t674.h, cint7/test/t676.cxx, cint7/test/t694.cxx,
	  cint7/test/t694.h, cint7/test/t695.cxx, cint7/test/t705.cxx,
	  cint7/test/t705.h, cint7/test/t714.cxx, cint7/test/t733.cxx,
	  cint7/test/t733.h, cint7/test/t749.cxx, cint7/test/t751.cxx,
	  cint7/test/t764.cxx, cint7/test/t767.cxx, cint7/test/t776.cxx,
	  cint7/test/t777.cxx, cint7/test/t784.cxx, cint7/test/t825.cxx,
	  cint7/test/t910.cxx, cint7/test/t916.cxx, cint7/test/t927.cxx,
	  cint7/test/t927.h, cint7/test/t928.cxx, cint7/test/t928.h,
	  cint7/test/t928a.h, cint7/test/t928b.h, cint7/test/t930.cxx,
	  cint7/test/t938.cxx, cint7/test/t958.cxx, cint7/test/t958.h,
	  cint7/test/t959.cxx, cint7/test/t961.cxx, cint7/test/t961.h,
	  cint7/test/t963.cxx, cint7/test/t963.h, cint7/test/t966.cxx,
	  cint7/test/t966.h, cint7/test/t968.cxx, cint7/test/t968.h,
	  cint7/test/t970.cxx, cint7/test/t970.h, cint7/test/t972.cxx,
	  cint7/test/t972a.h, cint7/test/t972b.h, cint7/test/t976.cxx,
	  cint7/test/t976.h, cint7/test/t977.cxx, cint7/test/t977.h,
	  cint7/test/t980.cxx, cint7/test/t980.h, cint7/test/t986.cxx,
	  cint7/test/t987.cxx, cint7/test/t987.h, cint7/test/t991.cxx,
	  cint7/test/t991.h, cint7/test/t991a.h, cint7/test/t991b.h,
	  cint7/test/t991c.h, cint7/test/t992.cxx, cint7/test/t992.h,
	  cint7/test/t993.c, cint7/test/t993.h, cint7/test/t995.cxx,
	  cint7/test/t995.h, cint7/test/t996.cxx, cint7/test/t996.h,
	  cint7/test/t998.cxx, cint7/test/telea0.cxx,
	  cint7/test/telea1.cxx, cint7/test/telea2.cxx,
	  cint7/test/telea3.cxx, cint7/test/telea5.cxx,
	  cint7/test/telea6.cxx, cint7/test/telea7.cxx,
	  cint7/test/telea8.cxx, cint7/test/temp.cxx,
	  cint7/test/template.cxx, cint7/test/template.h,
	  cint7/test/template0.cxx, cint7/test/template1.cxx,
	  cint7/test/template2.cxx, cint7/test/template3.cxx,
	  cint7/test/template4.cxx, cint7/test/template5.cxx,
	  cint7/test/template6.cxx, cint7/test/testall.cxx,
	  cint7/test/vbase.cxx, cint7/test/vbase.h, cint7/test/vbase1.cxx,
	  cint7/test/vbase1.h, cint7/test/vec3d.cxx, cint7/test/vec3d.h,
	  cint7/test/virtualfunc0.cxx, cint7/test/virtualfunc1.cxx,
	  cint7/test/virtualfunc2.cxx, cint7/tool/batch.c,
	  cint7/tool/chmod.cxx, cint7/tool/cxx2cpp.c,
	  cint7/tool/ifdef/Makefile.base, cint7/tool/ifdef/Makefile.bcc5,
	  cint7/tool/ifdef/get.c, cint7/tool/ifdef/ifdef.cxx,
	  cint7/tool/makecint.cxx, cint7/tool/rmkdepend/cppsetup.c,
	  cint7/tool/rmkdepend/def.h, cint7/tool/rmkdepend/ifparser.c,
	  cint7/tool/rmkdepend/ifparser.h,
	  cint7/tool/rmkdepend/imakemdep.h, cint7/tool/rmkdepend/include.c,
	  cint7/tool/rmkdepend/main.c, cint7/tool/rmkdepend/mainroot.cxx,
	  cint7/tool/rmkdepend/parse.c, cint7/tool/rmkdepend/pr.c: Set
	  property svn:eol-style LF on all source and Makefiles. This
	  should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 11:15  rdm

	* [r20875] cint/Module.mk, cint/cintdlls.mk, cint/configcint.mk,
	  cint/inc/Api.h, cint/inc/BaseCls.h, cint/inc/CallFunc.h,
	  cint/inc/Class.h, cint/inc/DataMbr.h, cint/inc/G__ci.h,
	  cint/inc/Method.h, cint/inc/MethodAr.h, cint/inc/Property.h,
	  cint/inc/Shadow.h, cint/inc/Token.h, cint/inc/Type.h,
	  cint/inc/Typedf.h, cint/include/Common.h, cint/include/GL/gl.h,
	  cint/include/GL/glu.h, cint/include/GL/glut.h,
	  cint/include/GL/xmesa.h, cint/include/README.txt,
	  cint/include/ReadF.C, cint/include/ReadF.cxx,
	  cint/include/ReadF.h, cint/include/RegE.C, cint/include/RegE.cxx,
	  cint/include/RegE.h, cint/include/X11/Xlib.h,
	  cint/include/X11/Xutil.h, cint/include/X11/keysym.h,
	  cint/include/X11/xos.h, cint/include/_complex.h,
	  cint/include/_exception.h, cint/include/_stdexcept.h,
	  cint/include/api.h, cint/include/array.c, cint/include/array.h,
	  cint/include/arrayiostream.h, cint/include/assert.h,
	  cint/include/bool.h, cint/include/boolean.h,
	  cint/include/carray.c, cint/include/carray.h,
	  cint/include/complex.h, cint/include/constants.h,
	  cint/include/ctype.h, cint/include/darray.cxx,
	  cint/include/darray.h, cint/include/errno.h,
	  cint/include/ertti.h, cint/include/exception.h,
	  cint/include/fcntl.h, cint/include/fft.c, cint/include/fft.h,
	  cint/include/float.h, cint/include/fstream.h,
	  cint/include/graphbuf.h, cint/include/iomanip.h,
	  cint/include/iosfwd.h, cint/include/iostream.h,
	  cint/include/limits.h, cint/include/locale.h, cint/include/lsm.c,
	  cint/include/lsm.h, cint/include/makeit.c, cint/include/math.h,
	  cint/include/matrix.cxx, cint/include/matrix.h,
	  cint/include/matrixstream.h, cint/include/mkincld.c,
	  cint/include/new.h, cint/include/platform.h,
	  cint/include/pthread.h, cint/include/readfile.h,
	  cint/include/regex.h, cint/include/regexp.h,
	  cint/include/setjmp.h, cint/include/signal.h,
	  cint/include/socket.h, cint/include/spice.h,
	  cint/include/statistics.c, cint/include/statistics.h,
	  cint/include/stdarg.h, cint/include/stddef.h,
	  cint/include/stdio.h, cint/include/stdiostream.h,
	  cint/include/stdlib.h, cint/include/stream.h,
	  cint/include/string.h, cint/include/striostream.h,
	  cint/include/strstream.h, cint/include/sys/cdefs.h,
	  cint/include/sys/file.h, cint/include/sys/ipc.h,
	  cint/include/sys/msg.h, cint/include/sys/sem.h,
	  cint/include/sys/shm.h, cint/include/sys/stat.h,
	  cint/include/termios.h, cint/include/time.h,
	  cint/include/timespec.h, cint/include/typeinfo.h,
	  cint/include/unistd.h, cint/include/windows.h,
	  cint/include/winsock.h, cint/include/xgraph.c,
	  cint/include/xygraphbuf.h, cint/iosenum/iosenum.cxx,
	  cint/lib/Makefile, cint/lib/README.txt,
	  cint/lib/accstrm/Makefile, cint/lib/accstrm/README.txt,
	  cint/lib/accstrm/fstrm.h, cint/lib/accstrm/iostrm.h,
	  cint/lib/accstrm/linkdef.h, cint/lib/accstrm/sstrm.h,
	  cint/lib/alphastrm/Makefile, cint/lib/alphastrm/README.txt,
	  cint/lib/alphastrm/fstrm.h, cint/lib/alphastrm/iostrm.h,
	  cint/lib/alphastrm/linkdef.h, cint/lib/alphastrm/sstrm.h,
	  cint/lib/bcstream/Makefile, cint/lib/bcstream/fstrm.h,
	  cint/lib/bcstream/iostrm.h, cint/lib/bcstream/stdiostr.h,
	  cint/lib/bcstream/strm.h, cint/lib/bcstream/strstrm.h,
	  cint/lib/cbstream/Makefile, cint/lib/cbstream/fstrm.h,
	  cint/lib/cbstream/iostrm.h, cint/lib/cbstream/linkdef.h,
	  cint/lib/cbstream/readme.txt, cint/lib/cbstream/strstrm.h,
	  cint/lib/dll_stl/README.txt, cint/lib/dll_stl/cinteh.h,
	  cint/lib/dll_stl/clim.h, cint/lib/dll_stl/cmplx.h,
	  cint/lib/dll_stl/dqu.h, cint/lib/dll_stl/iter.h,
	  cint/lib/dll_stl/lst.h, cint/lib/dll_stl/mp.h,
	  cint/lib/dll_stl/multmp.h, cint/lib/dll_stl/multst.h,
	  cint/lib/dll_stl/pr.h, cint/lib/dll_stl/que.h,
	  cint/lib/dll_stl/se.h, cint/lib/dll_stl/st.h,
	  cint/lib/dll_stl/stk.h, cint/lib/dll_stl/str.h,
	  cint/lib/dll_stl/suncc5_deque.h,
	  cint/lib/dll_stl/suncc5_string.h, cint/lib/dll_stl/vary.h,
	  cint/lib/dll_stl/vec.h, cint/lib/dll_stl/vecbool.h,
	  cint/lib/gcc3strm/Makefile, cint/lib/gcc3strm/README.txt,
	  cint/lib/gcc3strm/fstrm.h, cint/lib/gcc3strm/iostrm.h,
	  cint/lib/gcc3strm/linkdef.h, cint/lib/gcc3strm/sstrm.h,
	  cint/lib/gcc4strm/Makefile, cint/lib/gcc4strm/README.txt,
	  cint/lib/gcc4strm/fstrm.h, cint/lib/gcc4strm/iostrm.h,
	  cint/lib/gcc4strm/linkdef.h, cint/lib/gcc4strm/sstrm.h,
	  cint/lib/gl/GL.h, cint/lib/gl/README.txt, cint/lib/gl/TOP.h,
	  cint/lib/gl/cintGL.h, cint/lib/iccstrm/Makefile,
	  cint/lib/iccstrm/README.txt, cint/lib/iccstrm/fstrm.h,
	  cint/lib/iccstrm/iostrm.h, cint/lib/iccstrm/linkdef.h,
	  cint/lib/iccstrm/sstrm.h, cint/lib/ipc/README.txt,
	  cint/lib/ipc/ipcif.h, cint/lib/longlong/README.txt,
	  cint/lib/longlong/longdbl.h, cint/lib/longlong/longlong.h,
	  cint/lib/posix/README.txt, cint/lib/posix/exten.c,
	  cint/lib/posix/exten.h, cint/lib/posix/mktypes.c,
	  cint/lib/posix/posix.h, cint/lib/posix/winposix.c,
	  cint/lib/posix/winposix.h, cint/lib/prec_stl/README.txt,
	  cint/lib/pthread/Makefile, cint/lib/pthread/README.txt,
	  cint/lib/pthread/pthd.h, cint/lib/pthread/thread.h,
	  cint/lib/qt/Makefile, cint/lib/qt/README.txt,
	  cint/lib/qt/qcompactstyle.h, cint/lib/qt/qconfig.h,
	  cint/lib/qt/qmodules.h, cint/lib/qt/qplatformdefs.h,
	  cint/lib/qt/qtcint.h, cint/lib/qt/qtclasses.h,
	  cint/lib/qt/qtdummy.h, cint/lib/qt/qtfunctions.h,
	  cint/lib/qt/qtglobals.h, cint/lib/qt/qtstatic.cxx,
	  cint/lib/socket/README.txt, cint/lib/socket/cintsock.c,
	  cint/lib/socket/cintsock.h, cint/lib/socket/mksockh.c,
	  cint/lib/stdstrct/Makefile, cint/lib/stdstrct/stdcxxfunc.h,
	  cint/lib/stdstrct/stdfunc.h, cint/lib/stdstrct/stdstr.h,
	  cint/lib/stream/Makefile, cint/lib/stream/fstrm.h,
	  cint/lib/stream/iostrm.h, cint/lib/stream/stdiostr.h,
	  cint/lib/stream/strm.h, cint/lib/stream/strstrm.h,
	  cint/lib/sunstrm/Makefile, cint/lib/sunstrm/fstrm.h,
	  cint/lib/sunstrm/iostrm.h, cint/lib/sunstrm/length.cxx,
	  cint/lib/sunstrm/linkdef.h, cint/lib/sunstrm/readme.txt,
	  cint/lib/sunstrm/sstrm.h, cint/lib/vc7strm/Makefile,
	  cint/lib/vc7strm/README.txt, cint/lib/vc7strm/fstrm.h,
	  cint/lib/vc7strm/iostrm.h, cint/lib/vc7strm/linkdef.h,
	  cint/lib/vc7strm/sstrm.h, cint/lib/vcstream/Makefile,
	  cint/lib/vcstream/Makefileold, cint/lib/vcstream/fstrm.h,
	  cint/lib/vcstream/iostrm.h, cint/lib/vcstream/stdiostr.h,
	  cint/lib/vcstream/strm.h, cint/lib/vcstream/strstrm.h,
	  cint/lib/win32api/cintwin.h, cint/lib/win32api/readme.txt,
	  cint/lib/win32api/winfunc.h, cint/lib/xlib/README.txt,
	  cint/lib/xlib/TOP.h, cint/lib/xlib/XLIB.h,
	  cint/lib/xlib/x11const.h, cint/lib/xlib/x11mfunc.h,
	  cint/main/G__main.c, cint/main/G__setup.c, cint/main/cppmain.cxx,
	  cint/src/Api.cxx, cint/src/Apiif.cxx, cint/src/Apiif.h,
	  cint/src/Apiifold.cxx, cint/src/Apiifold.h, cint/src/BaseCls.cxx,
	  cint/src/CallFunc.cxx, cint/src/Class.cxx, cint/src/DataMbr.cxx,
	  cint/src/Method.cxx, cint/src/MethodAr.cxx, cint/src/Shadow.cxx,
	  cint/src/Token.cxx, cint/src/Type.cxx, cint/src/Typedf.cxx,
	  cint/src/accstrm.cxx, cint/src/accstrm.h, cint/src/allstrm.cxx,
	  cint/src/alphastrm.cxx, cint/src/alphastrm.h,
	  cint/src/bc_assign.cxx, cint/src/bc_assign.h,
	  cint/src/bc_autoobj.cxx, cint/src/bc_autoobj.h,
	  cint/src/bc_cfunc.cxx, cint/src/bc_cfunc.h,
	  cint/src/bc_debug.cxx, cint/src/bc_debug.h, cint/src/bc_eh.cxx,
	  cint/src/bc_eh.h, cint/src/bc_exec.cxx, cint/src/bc_exec.h,
	  cint/src/bc_exec_asm.h, cint/src/bc_inst.cxx, cint/src/bc_inst.h,
	  cint/src/bc_item.cxx, cint/src/bc_item.h, cint/src/bc_linkdef.h,
	  cint/src/bc_parse.cxx, cint/src/bc_parse.h,
	  cint/src/bc_reader.cxx, cint/src/bc_reader.h,
	  cint/src/bc_type.cxx, cint/src/bc_type.h, cint/src/bc_vtbl.cxx,
	  cint/src/bc_vtbl.h, cint/src/bcstrm.cxx, cint/src/bcstrm.h,
	  cint/src/cbstrm.cpp, cint/src/cbstrm.h, cint/src/common.h,
	  cint/src/dllrev.h, cint/src/fakestrm.cxx, cint/src/fproto.h,
	  cint/src/g__cfunc.c, cint/src/gcc3strm.cxx, cint/src/gcc3strm.h,
	  cint/src/gcc4strm.cxx, cint/src/gcc4strm.h, cint/src/global.h,
	  cint/src/header.h, cint/src/iccstrm.cxx, cint/src/iccstrm.h,
	  cint/src/kccstrm.cxx, cint/src/kccstrm.h, cint/src/libstrm.cxx,
	  cint/src/libstrm.h, cint/src/longif.cxx, cint/src/longif.h,
	  cint/src/longif3.cxx, cint/src/longif3.h, cint/src/memtest.h,
	  cint/src/newsos.h, cint/src/rflx_gendict.cxx,
	  cint/src/rflx_gendict.h, cint/src/rflx_gensrc.cxx,
	  cint/src/rflx_gensrc.h, cint/src/rflx_tools.cxx,
	  cint/src/rflx_tools.h, cint/src/security.h, cint/src/stdstrct.h,
	  cint/src/sun5strm.cxx, cint/src/sunos.h, cint/src/sunstrm.cxx,
	  cint/src/sunstrm.h, cint/src/typesym.h, cint/src/v6_auxu.cxx,
	  cint/src/v6_cast.cxx, cint/src/v6_debug.cxx,
	  cint/src/v6_decl.cxx, cint/src/v6_disp.cxx, cint/src/v6_dump.cxx,
	  cint/src/v6_end.cxx, cint/src/v6_error.cxx, cint/src/v6_expr.cxx,
	  cint/src/v6_fread.cxx, cint/src/v6_func.cxx,
	  cint/src/v6_gcoll.cxx, cint/src/v6_global1.cxx,
	  cint/src/v6_global2.cxx, cint/src/v6_ifunc.cxx,
	  cint/src/v6_inherit.cxx, cint/src/v6_init.cxx,
	  cint/src/v6_input.cxx, cint/src/v6_intrpt.cxx,
	  cint/src/v6_loadfile.cxx, cint/src/v6_macos.cxx,
	  cint/src/v6_macro.cxx, cint/src/v6_malloc.cxx,
	  cint/src/v6_memtest.cxx, cint/src/v6_new.cxx,
	  cint/src/v6_newlink.cxx, cint/src/v6_newsos.cxx,
	  cint/src/v6_oldlink.cxx, cint/src/v6_opr.cxx,
	  cint/src/v6_parse.cxx, cint/src/v6_pause.cxx,
	  cint/src/v6_pcode.cxx, cint/src/v6_pragma.cxx,
	  cint/src/v6_quote.cxx, cint/src/v6_random.cxx,
	  cint/src/v6_scrupto.cxx, cint/src/v6_shl.cxx,
	  cint/src/v6_sizeof.cxx, cint/src/v6_stdstrct.cxx,
	  cint/src/v6_struct.cxx, cint/src/v6_stub.cxx,
	  cint/src/v6_sunos.cxx, cint/src/v6_tmplt.cxx,
	  cint/src/v6_typedef.cxx, cint/src/v6_val2a.cxx,
	  cint/src/v6_value.cxx, cint/src/v6_value.h, cint/src/v6_var.cxx,
	  cint/src/v6_winnt.cxx, cint/src/vc7strm.cxx, cint/src/vc7strm.h,
	  cint/src/vcstrm.cxx, cint/src/vcstrm.h, cint/src/vcstrmold.cxx,
	  cint/src/vcstrmold.h, cint/stl/G__postprocess.h,
	  cint/stl/README.txt, cint/stl/_climits.h, cint/stl/_deque.h,
	  cint/stl/_iterator.h, cint/stl/_list.h, cint/stl/_map.h,
	  cint/stl/_memory.h, cint/stl/_multimap.h, cint/stl/_multiset.h,
	  cint/stl/_pair.h, cint/stl/_set.h, cint/stl/_stack.h,
	  cint/stl/_utility.h, cint/stl/_vector.h, cint/stl/algo.h,
	  cint/stl/algobase.h, cint/stl/bstring.h, cint/stl/bvector.h,
	  cint/stl/defalloc.h, cint/stl/deque.h, cint/stl/faralloc.h,
	  cint/stl/fdeque.h, cint/stl/flist.h, cint/stl/fmap.h,
	  cint/stl/fmultmap.h, cint/stl/fmultset.h, cint/stl/fset.h,
	  cint/stl/function.h, cint/stl/hdeque.h, cint/stl/heap.h,
	  cint/stl/hlist.h, cint/stl/hmap.h, cint/stl/hmultmap.h,
	  cint/stl/hmultset.h, cint/stl/hset.h, cint/stl/hugalloc.h,
	  cint/stl/hvector.h, cint/stl/iterator.h, cint/stl/lbvector.h,
	  cint/stl/ldeque.h, cint/stl/list.h, cint/stl/llist.h,
	  cint/stl/lmap.h, cint/stl/lmultmap.h, cint/stl/lmultset.h,
	  cint/stl/lngalloc.h, cint/stl/lset.h, cint/stl/map.h,
	  cint/stl/multimap.h, cint/stl/multiset.h, cint/stl/neralloc.h,
	  cint/stl/nmap.h, cint/stl/nmultmap.h, cint/stl/nmultset.h,
	  cint/stl/nset.h, cint/stl/pair.h, cint/stl/projectn.h,
	  cint/stl/random.cpp, cint/stl/set.h, cint/stl/stack.h,
	  cint/stl/tempbuf.cpp, cint/stl/tempbuf.h, cint/stl/teststl.c,
	  cint/stl/tree.h, cint/stl/utility.h, cint/stl/vector.h,
	  cint/tool/chmod.cxx, cint/tool/ifdef/Makefile.base,
	  cint/tool/ifdef/Makefile.bcc5, cint/tool/ifdef/get.c,
	  cint/tool/ifdef/ifdef.cxx, cint/tool/makecint.cxx: Set property
	  svn:eol-style LF on all source and Makefiles. This should avoid
	  problems with Win32 line endings ending up in the repository. All
	  MS tools
	  support LF eols fine.

2007-11-19 10:50  brun

	* [r20873] win32gdk/src/TGWin32.cxx: From Bertrand:
	  - Fixes uninitialized memory reads reported by Rational Purify.

2007-11-19 10:36  couet

	* [r20872] test/stressGraphics.cxx: - TestReport2 does not need any
	  input parameter. It uses gPad to generate
	  the PS file.

2007-11-19 09:58  ganis

	* [r20871] xrootd/src/xrootd-20071001-0000.src.tgz: Still missing a
	  piece needed by Mac OS X 64-bit

2007-11-19 08:11  antcheva

	* [r20869] gui/inc/TGTextEdit.h, gui/src/TGTextEdit.cxx: Added new
	  data member and corresponding methods allowing to hide cursor in
	  the TGTextEditor window when when focus went out from its window.
	  (Requested by a user at
	  http://root.cern.ch/phpBB2/viewtopic.php?p=23464
	  Bool_t fEnableCursorWithoutFocus; // enable cursor visibility
	  when focus
	  // went out from text editor window
	  // (default is kTRUE)
	  EnableCursorWithoutFocus(Bool_t on = kTRUE)
	  Bool_t IsCursorEnabledithoutFocus() const

2007-11-18 20:41  ganis

	* [r20868] xrootd/src/xrootd-20071001-0000.src.tgz: Fix a couple of
	  warnings.
	  Re-insert a piece needed by Mac OS X 64-bit which was missed by
	  the previous tarball.
	  
	  XROOTD reference tag: v20071001-0000d

2007-11-18 17:03  rdm

	* [r20867] proofx/src/TXProofMgr.cxx: add io.h on Windows for lseek
	  et al.

2007-11-18 16:58  rdm

	* [r20866] guihtml/src/TGHtmlParse.cxx: fix for byoass if variable
	  initialization.

2007-11-18 16:51  brun

	* [r20865] asimage/src/TASImage.cxx,
	  win32gdk/gdk/src/gdk/win32/gdkdrawable-win32.c: From Valeriy:
	  o TASImage
	  - initiate variables to fix valgrind warnings
	  - fix compilation warnings on Solaris
	  - fix bug when saving canvas containing several images as macro.
	  
	  o TASImage::Image2Drawable, win32gdk
	  - fix displaying images with transparency under win32

2007-11-18 16:07  brun

	* [r20864] asimage/src/libAfterImage.tar.gz: From Valeriy:
	  - new tarball from Sasha hopefully fixing valgrind warnings

2007-11-18 15:47  brun

	* [r20863] guihtml/src/TGHtmlDraw.cxx,
	  guihtml/src/TGHtmlLayout.cxx, guihtml/src/TGHtmlTable.cxx: From
	  Ilka:
	  Fix compilation warnings

2007-11-18 14:51  ganis

	* [r20862] proof/inc/TProofMgr.h, proof/src/TProof.cxx,
	  proof/src/TProofMgr.cxx, proof/src/TProofServ.cxx,
	  proofd/inc/XProofProtocol.h, proofd/inc/XrdProofdManager.h,
	  proofd/src/XrdProofConn.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx, proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TPacketizerAdaptive.h,
	  proofplayer/src/TEventIter.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx, proofx/inc/TXProofMgr.h,
	  proofx/inc/TXSocket.h, proofx/src/TXProofMgr.cxx,
	  proofx/src/TXSocket.cxx, tutorials/proof/runProof.C: Synchronize
	  with braches/dev/proof r20835
	  
	  Summary:
	  
	  TProofServ:
	  - read session.rootrc with level kEnvChange to be able to change
	  existing
	  settings
	  - Avoid deleting a query result twice in some special cases
	  - Fix a problem with the initialization of fKeptQueries
	  rootrc.in:
	  - restore default settings the asynchronous reading
	  TFileCacheRead:
	  - add missing protection in ReadBuffer
	  TEventIter:
	  - Enable the usage of TTreeCache
	  XrdProofdProtocol:
	  - Additional check on the ownership of the unix socket
	  - Improve notification during Reset
	  - Reduce default timeout on admin requests and make it
	  configurable
	  XrdProofConn:
	  - Use the configurable maxtry everywhere where relevant
	  TPacketizerAdaptive:
	  - Store info on all the processed packets in per-worker lists
	  
	  TProofMgr, TXProofMgr, TXSocket, XProofProtocol,
	  XrdProofdProtocol:
	  - Add possibility for the admin to broadcast a message to the
	  connected users
	  
	  getProof:
	  - Add missing protection

2007-11-18 14:43  brun

	* [r20861] io/src/TFileCacheRead.cxx: From Gerri:
	  This adds a protection against 'buf = 0' when using TXNetFile
	  without asynchronous reading.

2007-11-18 14:40  ganis

	* [r20860] xrootd/src/xrootd-20071001-0000.src.tgz: Import later
	  fixes in the client and in XrdSysPriv
	  
	  XROOTD reference tag: v20071001-0000c

2007-11-17 15:50  brun

	* [r20858] geom/src/TGeoVoxelFinder.cxx: From Andrei
	  a small precision fix for a problem of voxelization in case of
	  misaligned volumes.

2007-11-17 13:47  brun

	* [r20857] geom/src/TGeoPcon.cxx: From Philippe:
	  to avoid a crash in stressGeometry on Windows with vc7.1

2007-11-16 23:56  rdm

	* [r20855] Makefile: don't build FTGL if GL is not build. This was
	  a regression recently introduced.

2007-11-16 22:34  pcanal

	* [r20854] io/inc/TStreamerInfo.h, io/src/TStreamerInfo.cxx,
	  io/src/TStreamerInfoReadBuffer.cxx,
	  meta/inc/TVirtualStreamerInfo.h, meta/src/TClass.cxx: * Correct
	  the schema evolution to and from any numerical type involvind on
	  one
	  end or the other any variation of Float16_t and Double32_t.
	  * Add the annotation (aka the comment part with [xyz]) of C style
	  arrays,
	  Float16_t and Double32_t to the checksum calculation.
	  * Allow the checksum of existing class with a ClassDef to match
	  with and
	  without the annotation taken in consideration. This allows for
	  reading
	  older file (hence with desufficient checksum) to be read without
	  any warning
	  message. However this also means that if the classes on this
	  older file are
	  different _only_ by the annotation, it will not be noted.
	  * Prevent the fact that any consecutive Double32_t, independently
	  of their
	  annotation are 'compiled' together and thus only the annotation
	  of the first
	  one are used (incorrectly). To support backward compatibility
	  with files
	  written with this bug, the version number of TStreamerInfo has
	  been
	  increased to 6. The compilation is still done the same way for
	  'old'
	  TStreamerInfo (TStreamerInfo version 5 or less). However if the
	  Double32_t are changed to Float16_t, since the compilation is
	  turned off
	  because of the schema evolution, the 'wrong' annotation might be
	  used for
	  those old files. [This should be rare]
	  * Corrected the fact that due to an off by one lookup, the number
	  of
	  TStreamerInfo for a class was actually limited to 13.

2007-11-16 17:36  rdm

	* [r20851] etc/vmc/g3_makedist.sh, etc/vmc/g4_makedist.sh: From
	  Ivana:
	  Corrected makedist scripts:
	  - File with version_number is now one level up
	  - Exclude .svn instead of CVS

2007-11-16 16:38  pcanal

	* [r20849] hist/src/TFormula.cxx: Do not publish the function
	  created for the LinearParts in the list of functions (hence avoid
	  double deletion and other weirdness)

2007-11-16 16:37  pcanal

	* [r20848] tutorials/fit/fitLinear.C: Correct typo

2007-11-16 16:05  couet

	* [r20847] test/stressGraphics.cxx, test/stressGraphics.ref: - Two
	  new tests: parallelcoord() and labels1()
	  - The test timage() now generates .C and test it back.

2007-11-16 16:01  wlav

	* [r20846] pyroot/src/Pythonize.cxx, pyroot/src/RootWrapper.cxx:
	  Use ProcessLine instead of loading of cint dlls

2007-11-16 15:48  rdm

	* [r20845] etc/vmc, etc/vmc/MakeExe, etc/vmc/MakeMacros,
	  etc/vmc/MakeRules, etc/vmc/Makedepend,
	  etc/vmc/Makefile.alphacxx6, etc/vmc/Makefile.hpuxacc,
	  etc/vmc/Makefile.linux, etc/vmc/Makefile.linuxalphagcc,
	  etc/vmc/Makefile.linuxia64ecc, etc/vmc/Makefile.linuxia64gcc,
	  etc/vmc/Makefile.linuxicc, etc/vmc/Makefile.linuxx8664gcc,
	  etc/vmc/Makefile.macosx, etc/vmc/Makefile.macosxicc,
	  etc/vmc/Makefile.macosxxlc, etc/vmc/Makefile.solarisCC5,
	  etc/vmc/g3_makedist.sh, etc/vmc/g4_makedist.sh: From Ivana:
	  common VMC Makefile and build scripts.

2007-11-16 14:45  couet

	* [r20842] histpainter/src/TGraphPainter.cxx: - Fix uninitialized
	  variables found by valgrind.

2007-11-16 13:19  axel

	* [r20839] test/stressShapes.cxx: From Mihaela: suppress numbers in
	  printout for succeeding test; solves problem with reference file
	  comparison and precision.

2007-11-16 09:04  couet

	* [r20836] asimage/src/TASImage.cxx: - From V.Onuchin: fix saving
	  image in macro

2007-11-15 22:16  pcanal

	* [r20832] base/src/TROOT.cxx: remove windows end of line

2007-11-15 21:51  rdm

	* [r20831] base/Module.mk, config/Makefile.win32, graf/Module.mk:
	  From Axel:
	  fixes for MSVC2008.

2007-11-15 14:45  rdm

	* [r20828] guihtml/inc/TGHtml.h, guihtml/inc/TGHtmlBrowser.h,
	  guihtml/src/TGHtml.cxx, guihtml/src/TGHtmlBrowser.cxx,
	  guihtml/src/TGHtmlDraw.cxx, guihtml/src/TGHtmlElement.cxx,
	  guihtml/src/TGHtmlForm.cxx, guihtml/src/TGHtmlImage.cxx,
	  guihtml/src/TGHtmlLayout.cxx, guihtml/src/TGHtmlParse.cxx,
	  guihtml/src/TGHtmlSizer.cxx, guihtml/src/TGHtmlTable.cxx: From
	  Ilka and me:
	  fix all warnings of const char* assignment to char* reported by
	  gcc 4.2.
	  Due to ripple effect there were many changes.

2007-11-15 14:11  couet

	* [r20827] test/stressGraphics.ref: - Adjustment for Windows

2007-11-15 13:57  couet

	* [r20826] test/stressGraphics.ref: - New version

2007-11-15 13:16  couet

	* [r20825] test/stressGraphics.ref: - New version

2007-11-15 11:03  couet

	* [r20820] test/stressGraphics.cxx: - New version of
	  stressGraphics.cxx. For most of the test the .C file is
	  generated excuted again and the ps output is tested the same way
	  as the
	  original output.

2007-11-15 07:29  brun

	* [r20819] geom/src/TGeoElement.cxx: From Andrei:
	  Fix for bug: https://savannah.cern.ch/bugs/index.php?31309

2007-11-14 19:24  axel

	* [r20818] cint/lib/prec_stl/iterator, cint/src/g__cfunc.c: Support
	  MSVC2008: revertse_iterator::_Myt is now a private typedef, so
	  use the underlying type.
	  Don't check MSC_VER==1400 but >=.

2007-11-14 16:41  rdm

	* [r20816] base/src/TSystem.cxx: add missing io.h for Windows (for
	  lseek).

2007-11-14 16:23  axel

	* [r20815] tutorials/spectrum/peaks2.C,
	  tutorials/tree/clonesA_Event.cxx: clonesA: add missing #include
	  peaks2: replace inf loop by looping 10 times

2007-11-14 15:55  rdm

	* [r20814] config/Makefile.depend, configure, gl/Module.mk:
	  explicit link libFTGL with libRGL.

2007-11-14 15:43  antcheva

	* [r20812] tutorials/gui/CPUMeter.C: From Bertrand:
	  Added some transparency.

2007-11-14 15:38  axel

	* [r20811] test/Makefile: Change libpath (../ to $ROOTSYS) for
	  linking on windows so we can build inside roottest

2007-11-14 15:32  rdm

	* [r20810] base/inc/LinkDef2.h, base/inc/TSystem.h,
	  base/src/TSystem.cxx, io/inc/TFile.h, io/src/TFile.cxx,
	  unix/inc/TUnixSystem.h, unix/src/TUnixSystem.cxx,
	  winnt/inc/TWinNTSystem.h, winnt/src/TWinNTSystem.cxx: From Gerri:
	  TFile:
	  - Move the code checking / creating a local cache for a file
	  from TFile::Open to a new private method TFile::OpenFromCache().
	  - Add support for multiple URLs in TFile::Open() and
	  TFile::AsyncOpen():
	  the URLs must be passed separated by a '|' and are tried
	  sequentially
	  in the specified order until an open is successful.
	  TSystem, TUnixSystem, TWinNTSystem:
	  - Add new method ShowOutput() to display the redirected output
	  after
	  stdout and stderr are restored.
	  TUnixSystem:
	  - Fix a bug in RedirectOutput() affecting the case of multiple
	  redirections.

2007-11-14 15:20  axel

	* [r20809] tutorials/fit/fit1.C: Rename canvas "c1" so it doesn't
	  clash with the one generated in fillrandom.C. That macro is
	  invoked by fit1.C if fillrandom.root doesn't exist.

2007-11-14 14:34  rdm

	* [r20805] io/src/TFile.cxx: protect against SysClose() being
	  called with fD < 0 (happens in case of
	  net or webfiles).

2007-11-14 14:04  couet

	* [r20804] histpainter/src/THistPainter.cxx: - Make option BAR work
	  with option HIST as explain in the Paint() method
	  help (option HIST). Previously the option BAR was ignored when an
	  histo
	  was painted with "BAR HIST".

2007-11-14 12:53  antcheva

	* [r20802] tutorials/gui/CPUMeter.C: Removed unused variable 'i' in
	  function `void Update()'.

2007-11-14 12:51  antcheva

	* [r20801] tutorials/gui/CPUMeter.C: Added ClassDef to avoid error
	  message when compiling the macro.

2007-11-14 12:44  antcheva

	* [r20800] tutorials/gui/CPUMeter.C: From bertrand:
	  Better version of CPUMeter.C

2007-11-14 02:39  pcanal

	* [r20796] base/src/TROOT.cxx: Speed up ROOT::GetFunction when the
	  argument null

2007-11-14 01:56  brun

	* [r20795] mlp/src/TMultiLayerPerceptron.cxx: In all documentations
	  of the MultiLayerPerceptron it is written: "The layers
	  are separated by semicolons". In fact they are separated by
	  colons ":".
	  see: <http://savannah.cern.ch/bugs/?31248>

2007-11-14 01:41  brun

	* [r20794] tree/inc/TTreeCache.h, tree/src/TTreeCache.cxx: From
	  Gerri:
	  Following the implementation in TChain, I have succeded in
	  enabling the TTree cache in Proof.
	  However, for that I need a small addition in TTreeCache to be
	  able to change also the 'fOwner'
	  member, because on the workers we have to delete the previous
	  tree, so the owner tree creating
	  the cache is gone after the first file.
	  In the attached patch I propose to add a second argument to
	  TTreeCache::UpdateBranches, a boolean
	  indicating whether to set also the ownership or not. Default is
	  not, so we do not break any existing
	  usage of the call.
	  
	  With this, and other changes in TEventIter that I am finalizing,
	  I get for h1analysis with http files
	  from my place and my single core machine
	  
	  TChain 52s
	  Proof 1 worker 57-62s
	  
	  i.e. a 10-20% overhead in Proof, which is what we expect without
	  the local optimizations.

2007-11-13 17:10  axel

	* [r20791] cint/lib/prec_stl/string: Add
	  std::string::(const_)reverse_iterator also for GCC > 3.

2007-11-13 15:58  couet

	* [r20790] hist/src/TGraph2D.cxx: - In SavePrimitive: name the
	  saved TGraph2D "graph2d" instead of "graph" to
	  avoid problems when a TGraph and a TGraph2D are in the same
	  picture. (found
	  thanks to stressGraphics).

2007-11-13 15:12  couet

	* [r20788] gpad/src/TCanvas.cxx: - Print the message telling a .C
	  file has been generated, using Info() instead
	  of printf in order to be able to disable it using
	  gErrorIgnoreLevel.

2007-11-13 14:28  antcheva

	* [r20785] gui/src/TRootBrowser.cxx: From Bertrand:
	  Fixes valgrind errors.

2007-11-13 13:40  rdm

	* [r20782] thread/inc/TThread.h, thread/src/TThread.cxx: From Joern
	  Adamczewski:
	  fixed issue 31085 by just changing the argument of
	  static TThread::Delete to a reference.

2007-11-13 08:26  brun

	* [r20772] geom/src/TGeoElement.cxx: From Mihaela:
	  fix for the bug related to Bateman solution reported in Savannah.
	  https://savannah.cern.ch/bugs/?31224

2007-11-12 17:06  pcanal

	* [r20771] cint/src/v6_struct.cxx: If an autoload entry is still
	  marked as autoload after
	  the execution of the autoloader and it is a templated
	  class and a lookup of the class (by name) finds a
	  different entry, then remove this autoloade entry.
	  
	  This happens in the case where a template class was
	  entered in the autloader with some typedef in its
	  name/argument. For example, if mytemplate<Long64_t>
	  is entered in the autoloader map, its type status
	  will never be reset because the CINT dictionary is
	  actually updating the entry with all typedef resolved:
	  mytemplate<long long>

2007-11-12 16:04  ivana

	* [r20768] vmc/inc/TMCVerbose.h, vmc/inc/TVirtualMC.h,
	  vmc/inc/TVirtualMCApplication.h, vmc/src/TMCVerbose.cxx,
	  vmc/src/TVirtualMC.cxx: - Modified interface
	  TVirtualMC::DefineParticle() - added more arguments
	  needed for Geant4 implementation
	  - Added new function TVirtualMCApplication::AddIons(),
	  additional to AddParticles(), as in Geant4 ions have to be added
	  later then particles
	  From Mohammad Al-Turany:
	  - Added new function:
	  TVirtualMC::SetDecayMode()

2007-11-12 14:53  rdm

	* [r20767] build/unix/makehtml.sh: From Axel:
	  simplify generation of htmldoc.

2007-11-12 13:50  rdm

	* [r20766] gui/src/TGListTree.cxx: From Ilka:
	  gui/src/TGListTree.cxx:1957: warning: the address of 'dirname'
	  will always
	  evaluate as 'true'.

2007-11-12 13:44  rdm

	* [r20765] gui/inc/TGFont.h, gui/src/TGFont.cxx: From Ilka:
	  remove warnings converning conversion from const char* to char*.

2007-11-11 21:41  ganis

	* [r20759] tutorials/proof/ProofSimple.C,
	  tutorials/proof/ProofSimple.h, tutorials/proof/finalizeProof.C,
	  tutorials/proof/getProof.C, tutorials/proof/runProof.C:
	  Improvements in the proof tutorials:
	  
	  - ProofSimple:
	  + Make it fill an crtainf number of histograms with gaussian
	  numbers; the ntuple
	  will be subject of a different tutorial and made disk-resident
	  - getProof.C:
	  + Improve detection of the tutorial xrootd daemon and fine-tune
	  the settings to
	  avoid any interference with any running daemon listening on
	  standard ports
	  - runProof.C:
	  + Add possibility to specify the relevent parameters as arguments
	  + Enable feedback on the number of events processed per worker
	  + Enable the possibility to run in non-blocking mode
	  + Add some documentation in the header
	  - finalizeProof.C:
	  + Retrieve and finalize queries previously submitted via
	  runProof.C (either
	  synchronously or asynchronously). Se documentation in the header.

2007-11-11 21:29  ganis

	* [r20758] proof/inc/TProof.h, proof/inc/TProofDebug.h,
	  proof/inc/TProofServ.h, proof/src/TProof.cxx,
	  proof/src/TProofServ.cxx, proofd/inc/XProofProtocol.h,
	  proofd/inc/XrdProofWorker.h, proofd/inc/XrdProofdManager.h,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofplayer/src/TPacketizerUnit.cxx,
	  proofplayer/src/TPerfStats.cxx, proofplayer/src/TProofPlayer.cxx,
	  proofx/src/TXProofMgr.cxx: Several small fixes and few additions
	  imported from 'branches/dev/proof':
	  - XrdProofdProtocol:
	  + Fix a problem in CleanuProofServ sometimes preventing proper
	  cleanup
	  + In ReadBuffer, do not trigger an error on empty files
	  + Add missing protection against an empty string while setting
	  the ROOT version
	  - XrdProofdManager:
	  + Define the list of unique nodes to avoid broadcasting twice to
	  the same node
	  - XrdProofWorker: improve matching technique
	  - TProof: add setter and getter for Int_t parameter
	  - TProofServ:
	  + do not flush the log file in SendAsynMessage: this recent
	  change
	  made the logs "disappear" form the ProgressDialog
	  + Activate control on the max number of query result kept
	  - TPacketizerUnit: fix a problem with filling the histof for
	  PerfStats
	  - TProofPlayer: call Begin() also during selecter
	  re-initialization

2007-11-11 16:27  ganis

	* [r20757] tutorials/tree/h1analysis.C,
	  tutorials/tree/h1analysis.h: Define the output histos as data
	  members and remove the gDirectory->Delete(...)
	  calls in Begin() and SlaveBegin(); this allows to avoid weird
	  side-effects when
	  re-initializing the selector.

2007-11-09 17:19  ganis

	* [r20755] tutorials/tree/h1analysis.h: In Notify(), use Info(...)
	  instead of printf(...) to have the message appearing at the right
	  place in Proof

2007-11-09 17:14  rdm

	* [r20753] cint/lib/posix/posix.h: fix compilation warning on Mac
	  OS X.

2007-11-09 17:02  ganis

	* [r20752] proofd/src/XrdProofConn.cxx: Fix a problem in a debug
	  statement with a potentially non-null terminated string

2007-11-09 15:04  antcheva

	* [r20748] gui/src/TRootBrowserLite.cxx: From Bertrand:
	  Fixed a bug introduced in Revision 18536, which effected the menu
	  interactions (if a popup menu was opened, moving mouse to another
	  menu
	  title does not opened the corresponding popup menu).

2007-11-09 14:33  antcheva

	* [r20747] ged/src/TGedMarkerSelect.cxx: Cosmetics.

2007-11-09 14:32  antcheva

	* [r20746] ged/src/TGedPatternSelect.cxx: Fix in
	  TGedPatternSelect::ProcessMessage - parm1 should
	  contain widget Id

2007-11-09 13:25  couet

	* [r20741] test/stressGraphics.cxx: - Replace sprintf by Form()

2007-11-09 13:07  antcheva

	* [r20740] qt/inc/TQUserEvent.h: From Valeri Fine:
	  the bug fix:. the fEvent data-member was not initialized at ctor

2007-11-09 13:06  antcheva

	* [r20739] qtroot/inc/TQtRootGuiFactory.h,
	  qtroot/src/TQtRootGuiFactory.cxx: From Valeri Fine:
	  make its interface forward / backward compatible for the
	  different ROOT versions

2007-11-09 13:05  antcheva

	* [r20738] qt/src/TQtApplication.cxx: From Valeri Fine:
	  the new option to debug the X11 connections under Qt4

2007-11-09 13:04  antcheva

	* [r20737] qt/inc/TGQt.h, qt/inc/TQtWidget.h, qt/src/TGQt.cxx,
	  qt/src/TQtWidget.cxx: From Valeri Fine:
	  the various corrections to accommodate Qt4 features for X11/Win32
	  platforms.

2007-11-09 13:03  antcheva

	* [r20736] qt/Module.mk: From Valeri Fine:
	  Add the Qt4 options to the makefile rules.

2007-11-09 12:45  couet

	* [r20735] test/stressGraphics.cxx: - From Axel: Be a bit less
	  picky about where input files are; for including
	  test in roottest/root/stress/.

2007-11-09 11:47  rdm

	* [r20734] test/stress.cxx: From Axel:
	  fix to allow local version of libEvent.

2007-11-09 11:04  rdm

	* [r20733] configure: fix issue with Qt4 test.

2007-11-09 09:40  couet

	* [r20730] g3d/inc/TAxis3D.h: - From Leo: In the desctructor name,
	  remove the space after "~"

2007-11-08 16:39  rdm

	* [r20725] build/package/common/root-system-common.control,
	  config/Makefile.linuxhppa, config/Makefile.linuxmips,
	  config/Makefile.linuxmips64: From Christian Holm:
	  makefiles for the newly supported (old) platforms.

2007-11-08 16:38  rdm

	* [r20724] Makefile, base/inc/RConfig.h,
	  build/package/common/libroot-clarens.control,
	  build/package/common/libroot-ldap.control,
	  build/package/common/libroot-mathmore.control,
	  build/package/common/libroot-minuit.control,
	  build/package/common/libroot-mlp.control,
	  build/package/common/libroot-python.control,
	  build/package/common/libroot-quadp.control,
	  build/package/common/libroot-roofit.control,
	  build/package/common/libroot-ruby.control,
	  build/package/common/libroot-tmva.control,
	  build/package/common/libroot-unuran.control,
	  build/package/common/libroot.control,
	  build/package/common/libroot.install.in,
	  build/package/common/root-plugin-pythia6.control,
	  build/package/common/root-plugin-sql.control,
	  build/package/common/root-system-bin.control,
	  build/package/common/root-system-common.install.in,
	  build/package/common/root-system-proofd.install.in,
	  build/package/debian/README.Debian,
	  build/package/debian/changelog, build/package/debian/control.in,
	  build/package/debian/copyright, build/package/debian/dirs,
	  build/package/debian/po/dk.po,
	  build/package/debian/po/templates.pot,
	  build/package/debian/root-system-bin.desktop.in,
	  build/package/debian/root-system-bin.menu.in,
	  build/package/debian/root-system-common.dirs.in,
	  build/package/debian/root-system-proofd.init.in,
	  build/package/debian/root-system-proofd.postinst.in,
	  build/package/debian/root-system-rootd.init.in,
	  build/package/debian/root-system-rootd.postinst.in,
	  build/package/debian/rules,
	  build/package/debian/ttf-root-installer.templates,
	  build/package/lib/makebuilddepend.sh,
	  build/package/lib/makedebdir.sh, build/package/lib/makelist,
	  build/package/rpm/spec.in, cint/inc/G__ci.h,
	  cint7/demo/Win32App/graph01/G__clink.c,
	  cint7/demo/Win32App/graph01/G__clink.h, clib/src/Getline.c,
	  config/ARCHS, config/Makefile.depend, config/Makefile.hurddeb,
	  config/Makefile.in, config/Makefile.linuxalphagcc,
	  config/Makefile.linuxarm, config/Makefile.linuxia64gcc,
	  config/Makefile.linuxppcgcc, config/root-config.in, configure,
	  gl/Module.mk, qtgsi/Module.mk, qtgsi/inc/TQCanvasMenu.h,
	  qtgsi/inc/TQRootCanvas.h, qtgsi/inc/TQRootDialog.h,
	  qtgsi/src/TQCanvasMenu.cxx, qtgsi/src/TQRootCanvas.cxx,
	  qtgsi/src/TQRootDialog.cxx, roofitcore/inc/RooConvCoefVar.h,
	  test/Makefile.arch: From Christian Holm:
	  - updates for the Debian build system
	  - new MIPS and HPPA linux architectures supported
	  - added better checks for Qt4
	  - added support for external FTGL package is desired

2007-11-08 15:49  couet

	* [r20723] base/src/TColor.cxx: - Initialise locale variables in
	  RGB2HLS() to prevent valgrind's error messages
	  on 64bits linux (lxplus).

2007-11-08 15:15  couet

	* [r20722] postscript/src/TPostScript.cxx: - Initialise local
	  variables in Range() to avoid error messages with valgrind
	  on 64 bits linux.

2007-11-08 15:07  rdm

	* [r20721] netx/src/TXNetFile.cxx: in raw mode don't use the
	  read-ahead cache.

2007-11-08 14:24  moneta

	* [r20720] mathcore/src/Integrator.cxx,
	  mathcore/src/SpecFuncCephesInv.cxx, minuit2/inc/LinkDef.h,
	  minuit2/inc/Minuit2/FCNAdapter.h,
	  minuit2/inc/Minuit2/FCNGradAdapter.h,
	  minuit2/inc/Minuit2/Minuit2Minimizer.h,
	  minuit2/inc/Minuit2/MnPrint.h, minuit2/src/Minuit2Minimizer.cxx,
	  minuit2/src/MnFunctionCross.cxx, minuit2/src/MnMinos.cxx,
	  tutorials/unuran/unuranDemo.C, unuran/inc/LinkDef.h,
	  unuran/inc/TUnuranContDist.h, unuran/inc/TUnuranDiscrDist.h,
	  unuran/src/TUnuranContDist.cxx, unuran/src/TUnuranDiscrDist.cxx,
	  unuran/src/TUnuranMultiContDist.cxx: - sync. with dev branch
	  (revision 20719) mathcore, unuran, minuit2
	  
	  - fix coding convention in mathcore and minuit2
	  - fix problem with interpreted TF1 in unuran and tutorial
	  - add implementation of Minimizer interface in Minuit2

2007-11-08 13:07  rdm

	* [r20718] base/inc/TUri.h, base/src/TUri.cxx: From Gerhard:
	  fix one more issue showing up in the TUriTest.C program. Now
	  tests run fine.

2007-11-08 09:57  couet

	* [r20717] gpad/src/TPad.cxx: - In RedrawAxis(), in the TH1 case,
	  DrawCopy() should be used instead of Draw()
	  like in the other cases. This problem was found running valgrind
	  on
	  stressGraphics.

2007-11-08 08:01  brun

	* [r20716] proof/src/TProof.cxx: Fix coding conventions.

2007-11-08 01:14  rdm

	* [r20715] base/src/TUri.cxx, tutorials/net/TUriTest.C: From
	  Gerhard Bruckner:
	  fix a bug in PCtEncode/Decode.

2007-11-08 00:48  wlav

	* [r20714] pyroot/src/PyROOT.h, pyroot/src/Utility.cxx: compiler
	  fixes for p2.2 and MacOS X

2007-11-08 00:34  wlav

	* [r20713] pyroot/ROOT.py, pyroot/inc/TPyROOTApplication.h,
	  pyroot/src/TPyROOTApplication.cxx, pyroot/src/Utility.cxx,
	  pyroot/src/Utility.h: o) Install handler for ROOT message to be
	  translated to python
	  o) Python-side filter for warnings caused by linkage on the Mac

2007-11-08 00:14  ganis

	* [r20712] xrootd/src/xrootd-20071001-0000.src.tgz: Add support for
	  Mac OS X 64-bit (Leopard)
	  
	  XROOTD reference tag: v20071001-0000b

2007-11-07 16:51  brun

	* [r20708] guihtml/inc/TGHtmlBrowser.h,
	  guihtml/src/TGHtmlBrowser.cxx: From Bertrand:
	  - New signal Clicked(char *uri) in TGHtmlBrowser and new method
	  Selected(char *) in TRootBrowser, used to automatically update
	  and switch to
	  ROOT files folder in the new TBrowser when users opens a ROOT
	  file from HTML
	  browser.

2007-11-07 16:49  brun

	* [r20707] gui/src/TGListTree.cxx: From Bertrand:
	  Improvements in check boxes status update in recursive mode

2007-11-07 16:48  brun

	* [r20706] gui/inc/TGFileBrowser.h, gui/src/TGFileBrowser.cxx: From
	  Bertrand:
	  - New signal Clicked(char *uri) in TGHtmlBrowser and new method
	  Selected(char *) in TRootBrowser, used to automatically update
	  and switch to
	  ROOT files folder in the new TBrowser when users opens a ROOT
	  file from HTML
	  browser.

2007-11-07 15:58  pcanal

	* [r20704] cint/src/v6_fread.cxx: prevent reading before the start
	  of string

2007-11-07 11:36  brun

	* [r20698]
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C:
	  From Lorenzo:
	  fix for a change in GSLIntegrator constructor to use Gauss
	  integration rule

2007-11-07 10:39  rdm

	* [r20697] test/stressGraphics.cxx: fixed bug that caused
	  stressGraphics to die terribly on Mac OS X in optimized
	  mode. Amazing that valgrind did not find this.

2007-11-07 10:19  moneta

	* [r20696] math/inc/Math/ParamFunctor.h, mathcore/Module.mk,
	  mathcore/inc/Math/AdaptiveIntegratorMultiDim.h,
	  mathcore/inc/Math/Error.h, mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/IFunction.h, mathcore/inc/Math/IFunctionfwd.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IParamFunctionfwd.h,
	  mathcore/inc/Math/Integrator.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/Minimizer.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/VirtualIntegrator.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/AdaptiveIntegratorMultiDim.cxx,
	  mathcore/src/Integrator.cxx, mathcore/src/IntegratorMultiDim.cxx,
	  mathcore/src/ProbFuncMathCore.cxx,
	  mathcore/src/SpecFuncCephes.cxx, mathcore/src/SpecFuncCephes.h,
	  mathcore/src/SpecFuncCephesInv.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathcore/test/TrackDict.xml,
	  mathcore/test/testIntegration.cxx,
	  mathmore/inc/Math/GSLIntegrator.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLSimAnMinimizer.h,
	  mathmore/inc/Math/GSLSimAnnealing.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/src/GSLIntegrator.cxx,
	  mathmore/src/GSLMCIntegrator.cxx,
	  mathmore/src/GSLMultiMinimizer.h,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRngWrapper.h,
	  mathmore/src/GSLSimAnMinimizer.cxx,
	  mathmore/src/GSLSimAnnealing.cxx, mathmore/test/Makefile,
	  mathmore/test/simanTSP.cxx, mathmore/test/testDerivation.cxx,
	  mathmore/test/testFunctor.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx: - syncronize math,
	  mathcore and mathmore with development branch
	  
	  - math: remove the const in ParamFunctor::operator()(double *x,
	  double *p)
	  
	  - mathcore:
	  - improve integration interface, have now two separate classes :
	  one for 1D the other for multi-dim functions. Rename class
	  IntegratorMultiDim to AdaptiveIntegratorMultiDim
	  - clean up of IFunction by removing the un-necessary Dim template
	  parameter
	  - add from Cephes inverse functions for normal, beta and gamma
	  functions
	  - improve error reporting
	  
	  - mathmore: improve simulated annealing class and ad a test
	  program taken from GSL: simanTSP
	  fix problem with dictionary of concrete function classes (like
	  Polynomial) on Windows

2007-11-07 09:37  brun

	* [r20695] main/src/hadd.cxx: Optimize hadd in case of files with
	  huge number of objects.
	  The directory hash tables for the temp lists or target file are
	  preset
	  with the number of objects on the input files.

2007-11-07 07:21  brun

	* [r20693] io/src/TFileCacheRead.cxx: Fix typo in previous fix.

2007-11-07 07:16  brun

	* [r20692] io/src/TFileCacheRead.cxx: From Gerri:
	  Fix an important bug introduced in the latest change by Fabrizio.

2007-11-07 01:10  wlav

	* [r20691] pyroot/src/PyRootType.cxx: one more solaris warning fix

2007-11-07 01:05  rdm

	* [r20690] config/Makefile.macosx, config/Makefile.macosx64: remove
	  -fvisibility-inlines-hidden option as it has side effects if not
	  all
	  third party code is also conpiled with this option.

2007-11-06 20:34  brun

	* [r20689] tutorials/proof, tutorials/proof/ProofSimple.C,
	  tutorials/proof/ProofSimple.h, tutorials/proof/getProof.C,
	  tutorials/proof/runProof.C, tutorials/tree/h1analysis.C: From
	  Gerri:
	  - Add a new directory 'proof' under tutorials with a frame to run
	  PROOF tutorials and an example of non-data driven selector making
	  some drawings.
	  
	  Run like this:
	  
	  $ cd tutorials; root -l
	  root[0] .L proof/runProof.C+
	  // Run locally with a number of workers equal to the cores in the
	  machine
	  root[1] runProof("simple")
	  // H1 analysis reading the data via 'http'
	  root[2] runProof("h1")
	  
	  To run on a cluster at 'master.domain' pass the master as second
	  argument
	  
	  root[1] runProof("simple", "master.domain")
	  root[2] runProof("h1", "master.domain")
	  
	  - fix a missing include problem in h1analysis.C

2007-11-06 20:18  ganis

	* [r20688] proofd/src/XrdProofdProtocol.cxx: Fix compilation
	  problem on Solaris

2007-11-06 17:57  ganis

	* [r20685] proof/inc/TProofServ.h, proof/src/TProofServ.cxx: Use
	  the correct name for the new exception handling function

2007-11-06 17:47  rdm

	* [r20684] cint/configcint.mk: fix for macosx and try to optimize
	  when to trigger a recompile by comparing
	  if anything changed compared to previous version. But since a lot
	  of
	  Makefile.ARCH is used this does not help too much.

2007-11-06 15:51  ganis

	* [r20682] netx/src/TXNetFile.cxx, netx/src/TXNetSystem.cxx,
	  proof/inc/TProof.h, proof/inc/TProofLog.h, proof/inc/TProofMgr.h,
	  proof/inc/TProofServ.h, proof/inc/TProofSuperMaster.h,
	  proof/inc/TVirtualProofPlayer.h, proof/src/TDSet.cxx,
	  proof/src/TProof.cxx, proof/src/TProofLog.cxx,
	  proof/src/TProofNodeInfo.cxx,
	  proof/src/TProofResourcesStatic.cxx, proof/src/TProofServ.cxx,
	  proof/src/TProofSuperMaster.cxx, proof/src/TSlave.cxx,
	  proofd/inc/XrdProofConn.h, proofd/inc/XrdProofdClient.h,
	  proofd/inc/XrdProofdManager.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdTrace.h, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofPhyConn.cxx, proofd/src/XrdProofSched.cxx,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofplayer/inc/TPacketizerAdaptive.h,
	  proofplayer/inc/TProofPlayer.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TEventIter.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx,
	  proofplayer/src/TProofFile.cxx, proofplayer/src/TProofPlayer.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx, proofx/inc/TXProofMgr.h,
	  proofx/inc/TXSocket.h, proofx/src/TXProofMgr.cxx,
	  proofx/src/TXProofServ.cxx, proofx/src/TXSlave.cxx,
	  proofx/src/TXSocket.cxx: Import branches/dev/proof r20654
	  
	  Summary:
	  
	  + Improvements
	  - Add support for SSH SOCKS4 tunnelling; the local port for the
	  tunnel can be specified
	  in the master URL, e.g. TProof::Open("master/?tunnel:8000")
	  - Add the possibility to plot the estimated instantaneous rate
	  - Add "PROOF_ForceLocal" parameter to the !TPacketizerAdaptive;
	  if set to 1, all the data
	  are processed locally.
	  - Add support for remote grep functionality while retrieving logs
	  (needed by the forthcoming
	  memory monitor)
	  + Bug fixes
	  - Several small fixes to revive the multi-master mode.
	  - XrdProofdProtocol:
	  - add missing lock to the client instance in SendMsg to avoid
	  screwing up requests from
	  workers on the same machine
	  - lock the mutex of the requester when setting prorities
	  - add notification during Reset
	  - fix problem with the detection of the 'allow' directive
	  - fix problem with the parsing of the return value from
	  XrdProofServProxy::TerminateProofServ()
	  - always use the effective user to retrieve info fom another
	  server
	  (XrdProofdManager::GetProofConn is now used)
	  - fix possible dead-locks from debug notifications done after
	  hard-killing a session
	  - re-enable the garbage collector thread of the connection
	  manager in XrdProofConn to
	  fix a problem with closing physical connections;
	  - fix a problem with !CleanupProofServ in the case of a
	  non-privileged daemon running
	  in multi-user mode
	  - introduce a timeout when waiting for the startup of a
	  'proofserv'.
	  - XrdProofConn: init mutex in the ctor; lock in SendRecv
	  - XrdProofSched: add support for using the priorities defined in
	  the group manager to define
	  the number of workers for sessions
	  - TProof:
	  - Broadcast priorities to unique nodes only
	  - timeout after 5 mins the initial Collect to avoid clients
	  getting stuck at this stage
	  - add support for generic timeout in Collect (disabled by
	  default)
	  - fix a problem with SendFile.
	  - TXProofServ: add a call to !TProof::InterruptCurrentMonitor()
	  in Terminate() to stop
	  infinite loops in Collect
	  - TXSocket:
	  - Implement a flag to interrupt a TXSocket while waiting for
	  messages
	  - Split the session creation timeout in 4 attempts: the total
	  timeout is the same but
	  it may circumvent occasional forking problems.
	  - XROOTD:
	  - fix a potential (possibly accademic) memory leak in the client
	  - fix a access permission problem with Kerberos ticket forwarding
	  - fix bug preventing 'locate' to work properly
	  - re-enable optimized 'locate'

2007-11-06 15:48  rdm

	* [r20681] build/unix/compiledata.sh: add case for macosx64 and
	  macosxicc.

2007-11-06 15:28  rdm

	* [r20680] base/inc/TApplication.h, base/src/TApplication.cxx,
	  rint/inc/TRint.h, rint/src/TRint.cxx, unix/src/TUnixSystem.cxx:
	  From Gerri and me:
	  Add TApplication::HandleException() method, which gets called by
	  TSystem::DispatchSignals() in case of an exception (sigbus,
	  sigsegv, sigill
	  or sigfpe). In derived TApplication's one might now want to not
	  throw
	  or do something else to reset the environment.

2007-11-06 12:41  rdm

	* [r20678] etc/plugins/TProof/P020_TProofSuperMaster.C: From Gerri:
	  fix signature of the supermaster plugin.

2007-11-06 12:40  rdm

	* [r20677] test/ProofBench/Draw_Slave_Access.C: From Gerri:
	  Set a default for the perfstats name (to "PROOF_PerfStats").

2007-11-06 12:40  rdm

	* [r20676] tree/src/TQueryResult.cxx: From Gerri:
	  Fix uninitialized variable issue.

2007-11-06 12:39  rdm

	* [r20675] sessionviewer/src/TProofProgressDialog.cxx: From Gerri:
	  - change background of the rate plot to white
	  - add possibility to plot the instataneous average rate
	  (instead of the instantaneous rate)

2007-11-06 11:55  brun

	* [r20674] tutorials/math/vavilov.C: From valeriy:
	  Add a few lines getting random numbers from the vavilov
	  distribution and filling/drawing a histogram.

2007-11-06 11:31  brun

	* [r20673] gui/inc/TGListTree.h, gui/src/TGListTree.cxx: From
	  Bertrand:
	  Improvements in check boxes handling in TGListTree
	  - Added fCheckMode member.
	  Can be one of the following values:
	  kSimple: check only the selected item
	  kRecursive: recursively check children
	  by default kSimple is used.
	  To change the behaviour, use:
	  TGListTree::SetCheckMode(ECheckMode mode)
	  - Improved the update of the list tree item
	  status (checked/unchecked/greyed)

2007-11-06 11:03  brun

	* [r20670] qtroot/inc/TQtRootGuiFactory.h,
	  qtroot/src/TQtRootGuiFactory.cxx: From Bertrand,
	  
	  Fix compiler warnings

2007-11-06 09:18  couet

	* [r20668] test/stressGraphics.cxx: - Prepend the string "SYS: " to
	  system uname so it can be suppressed when
	  comparing with a test reference.

2007-11-06 08:45  couet

	* [r20667] test/stressGraphics.cxx, test/stressGraphics.ref: - Make
	  sure stressGraphics can run in interactive mode (CINT).
	  - Add 3 new tests.

2007-11-06 00:45  wlav

	* [r20666] pyroot/src/Pythonize.cxx: removed need for ::iterator
	  typedef in containers in pythonize; used
	  the return type from begin() to determine iterator type instead

2007-11-06 00:14  wlav

	* [r20665] tutorials/pyroot/gui_ex.py: beautifications

2007-11-06 00:13  wlav

	* [r20664] pyroot/src/Converters.cxx, pyroot/src/Converters.h,
	  pyroot/src/PropertyProxy.cxx: improved usage of global void*

2007-11-06 00:13  rdm

	* [r20663] config/Makefile.macosx64: remove some differences with
	  the macosx version.

2007-11-06 00:10  rdm

	* [r20662] xrootd/Module.mk: add case for macosx64.

2007-11-05 23:38  wlav

	* [r20661] tutorials/pyroot/aptuple.txt,
	  tutorials/pyroot/gui_ex.py: db file for mrt.py

2007-11-05 23:21  wlav

	* [r20660] tutorials/pyroot/shapes.py: fix memory mgmt

2007-11-05 21:59  wlav

	* [r20659] pyroot/src/PyBufferFactory.cxx, pyroot/src/PyROOT.h:
	  another attempt to quiet warnings on SunOS

2007-11-05 21:13  rdm

	* [r20658] config/Makefile.linux, config/Makefile.linuxx8664gcc:
	  fix location of libgfortranbegin and libgfortran.

2007-11-05 20:45  brun

	* [r20657] test/stress.cxx, test/stressFit.cxx,
	  test/stressGeometry.cxx, test/stressHepix.cxx,
	  test/stressLinear.cxx: From Axel:
	  prepend the string "SYS: " to system uname so it can be
	  suppressed when
	  comparing with a test reference.

2007-11-05 19:15  wlav

	* [r20656] pyroot/src/Converters.cxx, pyroot/src/PyROOT.h,
	  pyroot/src/Pythonize.cxx, pyroot/src/RootModule.cxx,
	  pyroot/src/RootWrapper.cxx: first attempt to quiet warnings on
	  SunOS

2007-11-05 17:53  axel

	* [r20655] reflex/Module.mk: Don't let check-reflex pollute
	  $ROOTSYS/lib/ with test libraries; put them into reflex/test/lib
	  instead.
	  Make sure that ALL tests finish successfully for check-reflex to
	  be successful!

2007-11-05 17:28  axel

	* [r20653] cintex/Module.mk, cintex/test/test_all.bat,
	  cintex/test/test_all.sh: Don't pollute $ROOTSYS/lib/ with test
	  libraries - their rootmap files will screw up ROOT! Instead put
	  them into cintex/test/lib/

2007-11-05 16:50  ganis

	* [r20648] xrootd/src/xrootd-20071001-0000.src.tgz: Import an
	  important fix in the client
	  
	  XROOTD reference tag: v20071001-0000a

2007-11-05 14:57  couet

	* [r20647] graf/inc/TSpline.h, graf/src/TSpline.cxx: - Implement
	  DistancetoPimitive and ExecuteEvent

2007-11-05 14:05  brun

	* [r20646] meta/src/TClass.cxx: Protect TClass::GetClass against
	  infinite loops.

2007-11-05 08:00  brun

	* [r20645] x11/src/TGX11.cxx: Fix a typo in correction proposed by
	  Christian.

2007-11-05 07:29  brun

	* [r20644] x11/src/TGX11.cxx: In TGX11::SetMarkerType replace the
	  statement
	  gMarker.xy[i] = xy[i];
	  
	  with the lines
	  
	  gMarker.xy[i].x = xy[i].x;
	  gMarker.xy[i].x = xy[i].y;
	  to bypass a bug in gcc4.2 with a wrong inlining of a copy
	  constructor.
	  Thanks to Christian Hom: see:
	  <http://savannah.cern.ch/bugs/?30940>

2007-11-05 00:10  rdm

	* [r20640] thread/src/TSemaphore.cxx: corrected method
	  descriptions.

2007-11-04 08:56  brun

	* [r20635] gui/src/TRootBrowser.cxx: From Bertrand:
	  Display the menu of the last remaining tab (when removing tabs)
	  ++ Added protection on menu switching method

2007-11-04 08:55  brun

	* [r20634] gui/src/TGTextEditor.cxx: From Bertrand:
	  - Fix a problem reported by Sergey Linev:
	  When I work with new browser and edit text file, it
	  ask to save modified file when browser is closed.
	  If I press "Yes" or "No", everything is ok, but if
	  I press "Cancel", I get segmentation violation.
	  Same is happening, if I press "Yes", but in file
	  dialog press "Cancel".

2007-11-03 17:15  brun

	* [r20633] sessionviewer/src/TSessionViewer.cxx: From Bertrand:
	  - Fix uninitialized variables reported by valgrind
	  - Fix a crash on Windows at cleanup time

2007-11-02 20:01  brun

	* [r20631] tree/src/TBranch.cxx: From Marian Ivanov:
	  Add a protection in TBranch::GetFile

2007-11-02 19:36  brun

	* [r20630] base/src/TGuiFactory.cxx: From Gerri:
	  Fix compiler warnings on Linux.

2007-11-02 19:34  brun

	* [r20629] geom/src/TGeoNode.cxx: From Gerri:
	  Fix comp[iler warnings on Linux.

2007-11-02 19:30  brun

	* [r20628] configure: From Valeri Fine
	  Fix one more problem with QT4 when configuring.
	  see: http://root.cern.ch/phpBB2/viewtopic.php?t=5677
	  In addition it allows to build Qt layer against of the "debug"
	  version of Qt4 on Win32 platform.

2007-11-02 16:48  antcheva

	* [r20625] gui/src/TGColorSelect.cxx: Fixed warning on linux about
	  unused 'parm1' (Thanks Gerri!)

2007-11-02 16:13  couet

	* [r20623] histpainter/src/TGraphPainter.cxx: - Fix a valgrind
	  error:
	  "Conditional jump or move depends on uninitialised value(s)"

2007-11-02 15:36  antcheva

	* [r20622] gui/src/TRootBrowser.cxx: From Bertrand:
	  Here is the protection. Thanks for reporting new browser crash
	  when
	  executing Close Tab from the menu after all tabs were already
	  closed.

2007-11-02 14:56  couet

	* [r20621] graf/src/TGaxis.cxx: - Some attributes were not saved by
	  SavePrimitive():
	  TitleSize, TitleColor, TitleFont

2007-11-02 14:15  antcheva

	* [r20620] gui/inc/TGTextEditor.h, gui/src/TGTextEditor.cxx: From
	  Bertrand:
	  Remove the command line combo box and its associated label
	  and disable the "Quit" toolbar button when embedding the
	  TGTextEditor in TRootBrowser

2007-11-02 13:51  ganis

	* [r20618] xrootd/src/xrootd-20071001-0000.src.tgz: Add support for
	  Debian GNU/Linux on hppa and mips (from C.H. Christensen)

2007-11-02 13:41  antcheva

	* [r20617] gui/src/TGCommandPlugin.cxx: From Bertrand:
	  Cleanup temporary log file in destructor.

2007-11-02 09:40  antcheva

	* [r20615] gui/src/TGFileBrowser.cxx: From Bertrand:
	  - Solve problems browsing remote files

2007-11-02 09:11  couet

	* [r20613] graf/src/TGraphPolar.cxx: - Remove warning with GCC
	  4.2.3 on Debian GNU/Linux

2007-11-02 08:59  brun

	* [r20612] sessionviewer/src/TSessionDialogs.cxx: From Bertrand:
	  Fix compiler warnings

2007-11-02 08:04  brun

	* [r20611] clarens/src/TXmlRpc.cxx: Fix compiler warnings.

2007-11-02 08:01  brun

	* [r20610] table/src/TFileIter.cxx: Fix compiler warning.

2007-11-02 07:58  brun

	* [r20609] ruby/src/drr.cxx: Fix compiler warning

2007-11-02 07:56  brun

	* [r20608] minuit/src/TLinearFitter.cxx: Fix compiler warning.

2007-11-01 14:30  couet

	* [r20601] hist/src/TF1.cxx: - In Paint: Revision 19260 fixed a
	  problem when plotting several TF1 with
	  option SAME. But this fix made visible an other problem when
	  zooming and
	  unzooming a plot with a fit. This is now also fixed. The
	  following macro
	  shows the problem:
	  {
	  hpx->Fit("gaus");
	  hpx->GetXaxis()->SetRangeUser(.1,.3);
	  gPad->Modified();
	  gPad->Update();
	  hpx->GetXaxis()->UnZoom();
	  gPad->Modified();
	  gPad->Update();
	  }

2007-11-01 09:45  ganis

	* [r20597] proof/src/TProofServ.cxx, proofplayer/inc/TProofFile.h,
	  proofplayer/src/TPacketizerUnit.cxx: Fix coding conventions

2007-11-01 08:13  brun

	* [r20591] main/src/h2root.cxx: Do not break the loop when finding
	  a condition qith zebra setting iquest(1) when reading.

2007-11-01 08:00  brun

	* [r20590] sessionviewer/src/TSessionDialogs.cxx: From Bertrand:
	  Fix coding conventions.

2007-11-01 07:54  brun

	* [r20589] tmva/src/BinarySearchTree.cxx: Fix coding conventions

2007-11-01 07:48  brun

	* [r20588] gl/src/TGLClipSetEditor.cxx, gl/src/TGLOrthoCamera.cxx,
	  gl/src/TGLViewerEditor.cxx: Fix coding conventions

2007-10-31 21:06  wlav

	* [r20586] tutorials/pyroot/gui_ex.py: new gui example gui_ex.py

2007-10-31 14:09  brun

	* [r20582] build/unix/makestatic.sh: Exclude g4root package when
	  building the static versions.

2007-10-31 14:00  rdm

	* [r20581] guihtml/src/TGHtmlBrowser.cxx,
	  sessionviewer/src/TSessionDialogs.cxx: make filetypes static, so
	  they don't conflict. Caused multiple
	  defined symbols error when doing "make static".

2007-10-31 12:22  couet

	* [r20580] histpainter/src/THistPainter.cxx: - Complete the
	  THistPainter::Paint() help with the GL options and interactive
	  commands description.

2007-10-31 09:40  rdm

	* [r20577] config/Makefile.macosx, config/Makefile.macosx64:
	  streamlining for Leopard.

2007-10-31 09:35  rdm

	* [r20576] test/Makefile: distclean did miss some files.

2007-10-31 08:14  rdm

	* [r20573] test/stressFit.cxx, test/stressGraphics.cxx,
	  test/stressLinear.cxx, test/stressShapes.cxx: use in TBenchmark
	  the correct benchmark names and not the generic "stress".

2007-10-31 08:10  antcheva

	* [r20572] gui/src/TRootBrowser.cxx: From Bertrand:
	  Make TRootBrowser status bar the same look than TRootBrowserLite
	  (requested by Sergey Linev)

2007-10-30 15:26  antcheva

	* [r20552] gui/src/TGColorSelect.cxx: ix in
	  TGColorSelect::ProcessMessage - parm1 should
	  contain widget Id

2007-10-30 15:00  brun

	* [r20550] base/inc/TBrowser.h, base/inc/TBrowserImp.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootBrowserLite.h,
	  gui/src/TRootBrowser.cxx, gui/src/TRootBrowserLite.cxx: From
	  Bertrand:
	  Added TBrowser::SetStatusText(const char* txt, int col), as asked
	  by Sergey Linev to remove dependency of their code from ROOT gui
	  (TG..) classes.

2007-10-30 14:42  brun

	* [r20548] qtgsi/inc/TQRootDialog.h: From Guido Volpi, solve a
	  problem on ubuntu:
	  
	  I tried to compile the ROOT development version using qtgsi
	  extension.
	  The compilation fails because cannot include "qlist.h" file. I
	  found that
	  this file doesn't exist in my QT3 installation and include the
	  "qptrlist.h"
	  file solves the problem.
	  Today I was looking better, and seems that the inclusion of the
	  "qptrfile.h"
	  solves the problem only because it includes the "qglist.h" file.
	  So, trying to summarize all, I can solve the compilation problem
	  applying
	  this change.

2007-10-30 12:01  brun

	* [r20545] pythia6/inc/TPythia6Decayer.h: Make the two functions
	  public instead of protected:
	  void ForceParticleDecay(Int_t particle, Int_t* products,
	  Int_t* mult, Int_t npart);
	  void ForceParticleDecay(Int_t particle, Int_t product, Int_t
	  mult);

2007-10-30 11:47  brun

	* [r20544] base/inc/TAttMarker.h: Increment version number to 2.

2007-10-30 11:47  brun

	* [r20543] gui/src/TRootBrowserLite.cxx: Fix a compiler warning

2007-10-30 11:38  rdm

	* [r20542] asimage/src/TASPaletteEditor.cxx: From Bertrand:
	  Solve a problem on Windows where the 'ramps' radio buttons were
	  not
	  visible and improve their layout.

2007-10-30 10:36  rdm

	* [r20539] config/Makefile.macosx: use UNIX03 compatiblity mode
	  also on 32 bit Leopard (is already default on
	  64 bit).

2007-10-30 10:00  couet

	* [r20538] graf/inc/TPie.h, graf/src/TPie.cxx,
	  tutorials/graphics/piechart.C: - From Guido Volpi:
	  - Redefinition of some static variables: in global variable the
	  flag is
	  not needed, in other part the definition as const is better.
	  - MakeLegend() method can have 4 arguments that represent the
	  TLegend
	  position: TPie::Makelegend(x1,y1,x2,y2). The default values are
	  the old
	  one.
	  - Added the method TPie::SortSlices(Bool_t); this method sorts
	  the
	  TPieSlices according the values in increasing (kTRUE) or
	  decreasing
	  (kFALSE) order.
	  - Added the two more drawing options ">" and "<", to draw
	  applying the
	  increasing or decreasing order.

2007-10-30 09:21  axel

	* [r20536] cintex/Module.mk: Fix check-cintex even more: generate
	  libCintexTestRflx.$(SOEXT).rootmap instead of ./rootmap; make it
	  work for versioned SOs.

2007-10-30 09:10  rdm

	* [r20535] cint/cintdlls.mk: Leopard is now UNIX03 compliant.

2007-10-30 09:10  rdm

	* [r20534] config/Makefile.macosx, config/Makefile.macosx64,
	  config/Makefile.macosxicc, config/Makefile.macosxxlc: Fix some
	  minor issue with the Leopard port.

2007-10-30 02:17  rdm

	* [r20533] cint/lib/posix: ignore mktypes.dSYM which is generated
	  by Mac OS X 10.5 to store debug info.

2007-10-29 16:37  antcheva

	* [r20528] gui/src/TRootBrowser.cxx: From Bertrand:
	  - Added HTML plugin in the Browser menu
	  - Added some documentation (more to come)

2007-10-29 15:17  antcheva

	* [r20527] gui/src/TRootBrowser.cxx: Coding conventions.

2007-10-29 15:16  antcheva

	* [r20526] gui/src/TRootBrowserLite.cxx: Typo in comment. Coding
	  conventions.

2007-10-28 20:32  ivana

	* [r20522] vmc/inc/TMCProcess.h: Adding new process codes:
	  kPAnnihilationRest, // positron annihilation at rest
	  kPAnnihilationFlight, // positron annihilation in flight
	  kPNbarAnnihilation, // antineutron annihilation
	  kPHIElastic, // hadronic elastic incoherent scattering
	  kPHCElastic, // hadronic elastic coherent scattering
	  kPPhotonInhelastic, // photon inelastic scattering
	  kPElectronNuclear, // electron nuclear interaction
	  kPPositronNuclear, // positron nuclear interaction
	  kPScintillation, // scintillation

2007-10-28 11:45  rdm

	* [r20521] base/src/TUri.cxx: include ctype.h for tolower().

2007-10-28 11:44  rdm

	* [r20520] configure: fix for linking with libGL on MacOS X 10.5.

2007-10-27 17:36  rdm

	* [r20519] base/doc/macros/fillpatterns.C,
	  build/unix/makechangelog.sh, graf/doc/macros/mathsymbols.C,
	  mathmore/src/GSLMonteFunctionAdapter.h, qt/inc/TQtRootSlot.h,
	  test/stressEntryList.cxx, tutorials/tree/parallelcoord.C: remove
	  CRLF line endings.

2007-10-27 11:47  rdm

	* [r20518] test/TUriTest.C, tutorials/net/TUriTest.C: move to
	  tutorials.

2007-10-27 08:56  brun

	* [r20517] tmva/inc/Version.h, tmva/src/DataSet.cxx,
	  tmva/src/Factory.cxx, tmva/src/TSpline2.cxx: From Joerg Stelzer:
	  Solves a problem that occurs when preselecting events based on
	  variables that are not part of the training. It was introduced
	  with the last version of TMVA.

2007-10-26 16:17  rdm

	* [r20516] base/inc/TBrowser.h, base/inc/TBrowserImp.h,
	  base/inc/TGuiFactory.h, base/src/TBrowser.cxx,
	  base/src/TGuiFactory.cxx, config/rootrc.in,
	  etc/plugins/TBrowserImp,
	  etc/plugins/TBrowserImp/P010_TRootBrowser.C,
	  etc/plugins/TBrowserImp/P020_TRootBrowserLite.C,
	  geom/src/TGeoManager.cxx, gui/Module.mk, gui/inc/LinkDef3.h,
	  gui/inc/TGCommandPlugin.h, gui/inc/TGFileBrowser.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootBrowserLite.h,
	  gui/inc/TRootGuiFactory.h, gui/src/TGCommandPlugin.cxx,
	  gui/src/TGFileBrowser.cxx, gui/src/TRootBrowser.cxx,
	  gui/src/TRootBrowserLite.cxx, gui/src/TRootGuiFactory.cxx,
	  guihtml/inc/LinkDef.h, guihtml/inc/TGHtmlBrowser.h,
	  guihtml/src/TGHtmlBrowser.cxx, icons/class.png, icons/member.png,
	  icons/method.png, qtroot/src/TQtRootGuiFactory.cxx: From
	  Bertrand:
	  merged bertrand dev branch changes r20120:20514 into the trunk.
	  
	  Main new feature is the new TBrowser. To turn it on by default
	  change the Browser.Name option in rootrc.
	  
	  Here the detailed ChangeLog:
	  
	  - Renamed TRootBrowser TRootBrowserLite
	  - Introduced the new class TRootBrowser, consisting of three
	  main tabs, as shown below:
	  ______________
	  | | |
	  | | |
	  | |__________|
	  | | |
	  |___|__________|
	  
	  All tabs can 'swallow' frames, thanks to the new method:
	  ExecPlugin(const char *name = 0, const char *fname = 0,
	  const char *cmd = 0, Int_t pos = kRight,
	  Int_t subpos = -1)
	  allowing to select plugins (can be a macro or a command)
	  to be executed, and where to embed the frame created by
	  the plugin. Examples:
	  
	  // create a new browser:
	  TBrowser b;
	  
	  // create a new TCanvas in a new top right tab element:
	  b.ExecPlugin("Canvas", 0, "new TCanvas()");
	  
	  // creates a new top right tab element embedding the
	  // TGMainFrame created by the macro 'myMacro.C':
	  b.ExecPlugin("MyPlugin", "myMacro.C");
	  
	  // creates a new bottom tab element embedding the
	  // TGMainFrame created by the macro 'myMacro.C':
	  b.ExecPlugin("MyPlugin", "myMacro.C", 0, TRootBrowser::kBottom);
	  
	  - new class TGFileBrowser, a file browser plugin for the new
	  TRootBrowser
	  - new class TGCommandPlugin, a command I/O plugin for the new
	  TRootBrowser
	  - new class TGHtmlBrowser, a html browser plugin for the new
	  TRootBrowser
	  - new TBrowserImp plugin used to load the selected TBrowser
	  implementation
	  - the browser implementation can be selected via the env
	  'Browser.Name' in
	  .rootrc, (can be TRootBrowser or TRootBrowserLite) the default
	  being
	  TRootBrowserLite
	  - a list of options (plugins) for the new TRootBrowser is also
	  specified
	  via the env 'Browser.Options' in .rootrc, default being: FEHCI
	  Here is the list of available options:
	  F: File browser E: Text Editor H: HTML browser C: Canvas I: I/O
	  redirection P: Proof G: GL viewer
	  - modified TRootGuiFactory, used to create the real TBrowser
	  implementation.

2007-10-26 14:59  antcheva

	* [r20514] fitpanel/inc/TFitEditor.h: Changed comment.

2007-10-26 14:54  rdm

	* [r20513] base/inc/TUri.h, base/src/TUri.cxx, test/TUriTest.C:
	  remove some more g++ specials (__FUNCTION__).

2007-10-26 14:35  rdm

	* [r20512] base/src/TUri.cxx: not all compilers accept the new
	  "and" and "or" keywords.

2007-10-26 14:21  rdm

	* [r20511] base/Module.mk, base/inc/LinkDef3.h, base/inc/TUri.h,
	  base/src/TUri.cxx, test/TUriTest.C: From Gerhard Bruckner:
	  new TUri class implementing the RFC 3986
	  (http://rfc.net/rfc3986.html).
	  The TUriTest.C still reports a failure for the
	  PctEncode/PctDecode test
	  but that will be fixed shortly.

2007-10-26 14:20  couet

	* [r20510] postscript/src/TSVG.cxx: - Improve header

2007-10-26 14:05  couet

	* [r20509] postscript/src/TPostScript.cxx: - Improve THtml header.

2007-10-26 13:50  couet

	* [r20508] postscript/src/TSVG.cxx: - Implement greek charaters.
	  - Improve the THTML doc.

2007-10-26 13:27  axel

	* [r20504] cintex/test/test_all.sh: set svn:executable property

2007-10-26 12:46  rdm

	* [r20503] build/unix/svninfo.sh: report revision of branch, not of
	  last in repository.

2007-10-26 11:01  brun

	* [r20501] win32gdk/src/TGWin32.cxx: From Bertrand:
	  - solve a crash on Windows when trying to save a GIF file with
	  more than
	  256 colors

2007-10-26 10:59  brun

	* [r20500] asimage/inc/TASImage.h, asimage/src/TASImage.cxx,
	  graf/inc/TImage.h, graf/src/TAttImage.cxx: From valeriy:
	  o TASImage.h, TASImage.cxx, TImage.h
	  new method was introduced GetVecArray
	  Returns a pointer to internal array[width x height] of double
	  values [0, 1]
	  This array is directly accessible. That allows to
	  manipulate/change the image.
	  
	  o TASImage::GetArray
	  Fix to return correct array (previously it was truncated when
	  x, y shift position were not zeros).
	  
	  o TASImage::GetPolygonSpans
	  Fix segv when producing images from some Rene's macro.
	  
	  o fix segv. when image is drawn in canvas and canvas resized.
	  
	  o TAttImage.cxx
	  For "Pretty Palette with a Spectrum Violet->Red" set
	  white color to zeros.

2007-10-25 18:20  brun

	* [r20498] tree/inc/TEntryListFromFile.h: From Axel:
	  Fix a warning on Windows.

2007-10-25 17:45  axel

	* [r20497] cint/src/v6_ifunc.cxx, cint/src/v6_newlink.cxx: Patch
	  CINT's rev 1920 (re-tagged as v5-16-27) into ROOT:
	  Don't call conversion "A::op T()" "A::op ::T()" or conversions
	  will break in CINT.
	  Instead, write out dictionary for "A::op ::T()".
	  ifunc always contains the fully qualified typename for conversion
	  operators.

2007-10-25 16:06  axel

	* [r20495] cint/inc/G__ci.h, cint/src/HISTORY,
	  cint/src/v6_expr.cxx, cint/src/v6_ifunc.cxx,
	  cint/src/v6_loadfile.cxx, cint/src/v6_pause.cxx, cint/test: From
	  Paul, Philippe, and me: CINT 5.16.27

2007-10-25 15:29  rdm

	* [r20491] configure: From Bertrand:
	  fix in python version detection on Windows.

2007-10-25 15:26  rdm

	* [r20490] io/inc/TFileCacheRead.h: make GetBufferSize() const.

2007-10-25 13:22  brun

	* [r20488] config/rootrc.in, io/inc/TFile.h,
	  io/inc/TFileCacheRead.h, io/src/TFile.cxx,
	  io/src/TFileCacheRead.cxx, netx/inc/TXNetFile.h,
	  netx/src/TXNetFile.cxx: From Fabrizio & Gerri:
	  Patch enabling asynchronous reading via XROOTD; a new method
	  TFile::ReadBufferAsync
	  is introduced which gets appropriately overritten in TXNetFile .
	  The new feature can be enabled / disabled via the env
	  'TFile.AsyncReading' in .rootrc,
	  the default being ON.
	  The patch also cleans up the netx section in the system.rootrc,
	  by removing
	  very old unused variables and commenting and setting appropriate
	  default
	  values for the others (no additions, except for the comments).

2007-10-25 10:10  rdm

	* [r20483] gpad/src/TPad.cxx: two typos in comment.

2007-10-25 09:52  ganis

	* [r20481] xrootd/src/xrootd-20071001-0000.src.tgz: Import a fix in
	  the client needed by ALICE in the DPM integration

2007-10-25 07:39  brun

	* [r20479] hist/src/TProfile.cxx, hist/src/TProfile2D.cxx: Fix a
	  bug in the copy constructor.
	  see <http://savannah.cern.ch/bugs/?30716>

2007-10-25 06:44  antcheva

	* [r20478] gui/src/TRootDialog.cxx: Fix in HandleKey method.

2007-10-24 14:30  rdm

	* [r20466] unix/src/TUnixSystem.cxx: Don't return after handling
	  kSigChild in DispatchSignals().

2007-10-24 13:58  couet

	* [r20465] test/stressGraphics.ref: - More adjustments needed.

2007-10-24 13:52  couet

	* [r20464] test/stressGraphics.ref: - Adjustments needed after some
	  changes in the PS output.

2007-10-24 13:24  rdm

	* [r20462] build/unix/distfilelist.sh: the man pages directory was
	  forgotten.

2007-10-24 08:32  couet

	* [r20461] graf/inc/TWbox.h: - As suggested here
	  https://savannah.cern.ch/bugs/?30643 the dark and bright
	  colors are now taken from TColor.

2007-10-24 06:36  brun

	* [r20459] base/src/TColor.cxx: From Valeri Fine:
	  Fix a wrong definition of palette[48] (was 112 instead of 2).

2007-10-23 16:39  rdm

	* [r20457] base/src/TRegexp.cxx: From Gerri:
	  tokenizing "ab" with "/" was giving 2 tokens: 'ab', 'b', while
	  the other
	  tokenizer gives one, 'ab', as 'strtok'.

2007-10-23 16:34  rdm

	* [r20456] config/Makefile.linuxia64ecc, test/Makefile.arch: From
	  Sverre:
	  option ftz = flush-to-zero is needed in some cases of
	  denormalized
	  floating-point numbers.

2007-10-23 12:53  couet

	* [r20448] hist/inc/TGraph2D.h, hist/inc/TGraph2DErrors.h,
	  hist/src/TGraph2D.cxx, hist/src/TGraph2DErrors.cxx: - Implement
	  the Set(n) method as requested here:
	  https://savannah.cern.ch/bugs/?29007

2007-10-23 08:08  antcheva

	* [r20445] gui/src/TGTextEntry.cxx: Updated doc about
	  ShiftTabPressed signal.

2007-10-22 16:21  couet

	* [r20443] gpad/src/TPad.cxx: - The old pending problem with
	  hatched canvases is not fixed. When piece of
	  graphics was moved interactivelly on a pad being painted with a
	  pattern,
	  traces were left.
	  Some code was foreseen in Pad::PaintModified to avoid that but it
	  did not
	  work. Some mods were also needed in windows version of
	  ClearWindow.

2007-10-22 14:38  rdm

	* [r20440] base/src/TRegexp.cxx: fix TString::Tokenize(tok, from,
	  delim) to behave like the other
	  TString::Tokenize() and like strtok().

2007-10-22 14:20  brun

	* [r20436] win32gdk/src/TGWin32.cxx: From Bertrand:
	  Fix a discrepency between X11 and Win32 in
	  TVirtualX::ClearWindow()
	  (call "fill rectangle" instead of "draw rectangle" in
	  TGWin32::ClearWindow())

2007-10-22 13:12  couet

	* [r20433] graf/src/TMultiGraph.cxx: - Fix
	  https://savannah.cern.ch/bugs/?30595 . The loop on the
	  ComputeRange
	  methods (called for each graph in the multigraph) returned the
	  last values
	  provided by the last call to ComputeRange instead of computing
	  the minimum
	  and maximum of all of them. Revision 20335 introduced this bug.

2007-10-22 11:53  antcheva

	* [r20432] tutorials/gui/statusBar.C: Fixed typos, missing include

2007-10-22 11:50  antcheva

	* [r20431] gui/inc/TRootDialog.h, gui/src/TRootDialog.cxx: Made
	  keyboard navigation via <TAB> available for ROOT dialogs
	  with no need to move the mouse pointer over a text entry.

2007-10-22 09:07  moneta

	* [r20428] tutorials/math/mathcoreGenVector.C: - fix tutorials for
	  changes in interface of Transform3D class

2007-10-19 15:45  brun

	* [r20418] tutorials/io/double32.C: New version of the tutorial
	  illustrating the new features with range like [0,0,14].

2007-10-19 15:29  brun

	* [r20417] io/src/TBufferFile.cxx: Fix a comment

2007-10-19 14:56  brun

	* [r20416] geom/inc/TGeoNode.h, geom/inc/TVirtualGeoPainter.h,
	  geom/src/TGeoNode.cxx, geompainter/inc/TGeoChecker.h,
	  geompainter/inc/TGeoPainter.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoPainter.cxx: From Andrei:
	  some modifications to the progress bar and included it when
	  calling gGeoManager->CheckOverlaps()

2007-10-19 13:37  rdm

	* [r20414] tutorials: ignore .root files created by benchmarks.C.

2007-10-19 13:10  rdm

	* [r20413] base/src/TString.cxx: add protection in case of negative
	  len specified in operator()(start, len).
	  Fixes issue 30409.

2007-10-19 12:42  rdm

	* [r20412] configure: fix typo.

2007-10-19 12:37  rdm

	* [r20411] auth/src/TAuthenticate.cxx, auth/src/THostAuth.cxx,
	  auth/src/TRootSecContext.cxx, base/src/TApplication.cxx,
	  base/src/TEnv.cxx, base/src/TQObject.cxx,
	  cint/src/v6_loadfile.cxx, cint/tool/makecint.cxx,
	  cint7/src/v6_loadfile.cxx, cint7/tool/makecint.cxx,
	  eg/src/TDatabasePDG.cxx, geom/src/TGeoElement.cxx,
	  gpad/src/TClassTree.cxx, graf/src/TTF.cxx,
	  gui/src/TGApplication.cxx, gui/src/TGClient.cxx,
	  gui/src/TGFSComboBox.cxx, gui/src/TGResourcePool.cxx,
	  gui/src/TRootBrowser.cxx, gui/src/TRootCanvas.cxx,
	  main/src/pmain.cxx, net/src/TApplicationServer.cxx,
	  net/src/TSecContext.cxx, proof/src/TProof.cxx,
	  proof/src/TProofServ.cxx, proof/src/TSlave.cxx,
	  proofd/src/XrdProofdProtocol.cxx, proofd/src/proofd.cxx,
	  proofx/src/TXProofServ.cxx, qt/src/TGQt.cxx,
	  rint/src/TTabCom.cxx, rootd/src/rootd.cxx, rootx/src/rootx.cxx,
	  rootx/src/rootxx.cxx, thread/src/TThread.cxx,
	  treeviewer/src/TTreeViewer.cxx, unix/src/TUnixSystem.cxx,
	  utils/src/RStl.cxx, utils/src/rootcint.cxx: remove conditional
	  around include of RConfigure.h:
	  
	  #ifdef R__HAVE_CONFIG
	  #include "RConfigure.h"
	  #endif
	  
	  Having this conditional caused RConfigure.h to be missing from
	  the .d
	  files and hence these files would not be recompiled after
	  re-configuring
	  using --prefix.

2007-10-19 12:34  rdm

	* [r20409] configure: don't regenerate include/RConfigure.h when
	  its contents does not change.
	  This saves a lot of recompilation after running ./configure.

2007-10-19 12:18  wouter

	* [r20408] roofitcore/inc/RooAbsAnaConvPdf.h,
	  roofitcore/inc/RooAbsArg.h, roofitcore/inc/RooAbsCachedPdf.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAddPdf.h,
	  roofitcore/inc/RooCacheManager.h,
	  roofitcore/inc/RooLinkedListIter.h,
	  roofitcore/inc/RooObjCacheManager.h, roofitcore/inc/RooProdPdf.h,
	  roofitcore/inc/RooProjectedPdf.h,
	  roofitcore/inc/RooSuperCategory.h, roofitcore/src/RooAbsArg.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx, roofitcore/src/RooAbsPdf.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAddPdf.cxx, roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooTreeData.cxx: o RooAbsRealLValue
	  
	  - Remove stray debug print statements
	  
	  
	  o RooAddPdf
	  
	  - Add new default ctor to fix persistence introduced by
	  new cache management scheme
	  
	  - Add forgotten initializer to regular ctor
	  
	  
	  o RooAbsCachedPdf
	  
	  - Add formal server-link dependency on cache parameters to
	  RooHistPdf cache representation so that the constant term
	  optimizer can make the correct decision
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooObjCacheManager
	  
	  - Add debug message level information
	  
	  - Make _optCacheObservables a transient data member and
	  initialize
	  it in the default ctor.
	  
	  
	  o RooAbsPdf, RooProjectedPdf
	  
	  - Add new default ctor to fix persistence introduced by
	  new cache management scheme
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooAbsArg
	  
	  - Add methods graphVizTree() that produce input files
	  for AT&Ts graphViz to make graphical representation
	  of object tree. (To make actual graphics run 'dot -Tps -o
	  graph.ps %s'
	  where %s is argument passed to graphVizTree().
	  
	  o RooSetProxy
	  
	  - Remove stray debug print statements
	  
	  
	  o RooSimultaneous
	  
	  - Initialize forgotten data member in all ctors
	  
	  
	  o RooProdPdf, RooAbsAnaConvPdf
	  
	  - Make RooObjCacheManager a persistent data member
	  
	  
	  o RooSuperCategory
	  
	  - Make contained iterator a transient data member
	  and initialize it in the default ctor.
	  
	  
	  o RooCacheManager
	  
	  - Add explicit separate default ctor.

2007-10-19 07:48  brun

	* [r20405] hist/src/TH1.cxx, minuit/src/TLinearFitter.cxx: Add
	  support for fitting with a function dimension less than the
	  histogram dimension.
	  // It is possible to fit a TH2 with a TF1 or a TH3 with a TF2.
	  // In this case the option "Integral" is not allowed and each
	  cell has
	  // equal weight.

2007-10-18 17:48  brun

	* [r20402] io/src/TBufferFile.cxx: Fix an error introduced in the
	  previous patch assumed to fix a compilation problem with icc.

2007-10-18 13:02  brun

	* [r20398] geom/src/TGeoCone.cxx, geom/src/TGeoSphere.cxx: From
	  Andrei:
	  fix for the raytracing problem reported at the forum:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5584.
	  In fact there was a repeated bug in
	  TGeoSphere::DistFromOutside/Inside.

2007-10-18 10:42  ganis

	* [r20397] netx/src/TXNetSystem.cxx: Uncommit part of the last
	  patch which uses functionality not yet in SVN

2007-10-18 10:30  ganis

	* [r20396] netx/src/TXNetSystem.cxx,
	  xrootd/src/xrootd-20071001-0000.src.tgz: Import change 20384:
	  - Fix bug preventing 'locate' to work properly
	  - Re-enable optimized 'locate'

2007-10-18 09:55  couet

	* [r20395] histpainter/src/THistPainter.cxx: - Two new options in
	  PaintErrors: E5 and E6. They are like E3 and E4 but
	  the empty bins are ignored.

2007-10-17 21:07  brun

	* [r20391] main/src/h2root.cxx: Remove obsolete code when
	  converting hbook profile histograms.
	  Use SetBinEntries instead of an explicit loop that was extremely
	  slow
	  in case of a profile with many entries.

2007-10-17 14:35  brun

	* [r20390] tree/inc/TChain.h, tree/src/TChain.cxx: Following a
	  suggestion by Philip Rodrigues (p.rodrigues1@physics.ox.ac.uk)
	  add more comments to explain how to get the list of files of a
	  TChain.

2007-10-17 14:19  brun

	* [r20388] io/src/TKey.cxx: From Ilka:
	  Fix a crash in ROOT after double-click on the same object in a
	  root file introduced by changes in TKey::Browse in rev. 19743

2007-10-17 09:23  brun

	* [r20387] graf/src/TGraphAsymmErrors.cxx: From Lorenzo:
	  patch to fix TGraphAsymmErrors::BayesDivide (bug
	  https://savannah.cern.ch/bugs/?30246).
	  Fixed by increasing precision when inverting the integral of the
	  beta (beta quantile). In the long term should be fixed by using
	  directly ROOT::Math::beta_quantile

2007-10-17 08:08  couet

	* [r20385] histpainter/src/THistPainter.cxx: - Fix
	  https://savannah.cern.ch/bugs/index.php?29574.
	  In PaintInit, in case of (log scale long X) && (xmin <=0) &&
	  (option
	  SAME), Hparam.xmin should be initialise with the Pad xmin value
	  instead
	  of 0.1*binwidth.

2007-10-16 19:42  pcanal

	* [r20381] cint/src/v6_expr.cxx, treeplayer/src/TFormLeafInfo.cxx:
	  Avoid stripping the space after const in class name like:
	  std::vector<const ns::myclass*>
	  when operator new and operator delete are called via G__calc
	  In TFormLeafInfoMethod use this new parsing for calling new
	  and delete of the temporary objects.

2007-10-16 19:39  pcanal

	* [r20380] utils/src/rootcint.cxx: From Axel:
	  Use header files instead of bundle name in auto-generated
	  Linkdef.h if
	  rootcint is run with "-p".

2007-10-16 19:07  pcanal

	* [r20379] tree/inc/TTreeCache.h: remove fixed length array of
	  branch

2007-10-16 19:07  pcanal

	* [r20378] tree/src/TTreeCache.cxx: remove fixed length array of
	  branch

2007-10-16 16:21  rdm

	* [r20376] io/src/TBufferFile.cxx: white space.

2007-10-16 16:21  rdm

	* [r20375] io/inc/TStreamerInfo.h, meta/inc/TVirtualStreamerInfo.h:
	  removing Intel icc compiler warning.

2007-10-16 16:19  rdm

	* [r20374] README/CREDITS: Add Long Tran-Thanh for work on PROOF.

2007-10-16 14:28  brun

	* [r20372] hist/src/TAxis.cxx: n TAxis::setRangeUser fix problem
	  reported at: https://savannah.cern.ch/bugs/index.php
	  The solution is to use FindFixBin instead of FindBin.

2007-10-16 14:26  brun

	* [r20371] base/inc/RVersion.h, build/version_number: Start
	  development version 5.17/05

2007-10-16 10:24  brun

	* [r20368] build/package/msi/makemsi.cxx: From Axel:
	  No '@' in file IDs for MSI.

2007-10-16 08:52  brun

	* [r20365] build/unix/distfilelist.sh: From Axel:
	  Fix for make dist and make distmsi to not distribute some
	  internals SVN files.

2007-10-16 08:23  brun

	* [r20363] gl/inc/TGLUtil.h, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLPlotPainter.cxx, gl/src/TGLSurfacePainter.cxx,
	  gl/src/TGLUtil.cxx: From Timur:
	  Fix problem reported at:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5595&sid=6404e6f8698a5d871642febd9bd0636a

2007-10-16 07:14  brun

	* [r20362] base/inc/RVersion.h, build/version_number: Stamp
	  development release 5.17/04

2007-10-16 06:20  brun

	* [r20360] tutorials/math/mathmoreIntegration.C: From Lorenzo:
	  Fix for broken tutorial.

2007-10-15 23:09  pcanal

	* [r20359] pyroot/inc/TPyException.h: Work around the fact that
	  Sun's math.h define a
	  struct named exception and rw/math.h also define
	  a related #define

2007-10-15 16:44  brun

	* [r20355] io/src/TBufferFile.cxx: Remove compiler warnings in
	  functions riteDouble32 and WriteFloat16.

2007-10-15 15:49  brun

	* [r20353] reflex/python/genreflex/genreflex.py,
	  reflex/python/genreflex/genreflex06.py: From Axel:
	  Properly quote parameters when invoking gccxml. Fixes
	  https://savannah.cern.ch/bugs/?30133

2007-10-15 15:11  brun

	* [r20352] mathcore/Module.mk,
	  mathcore/inc/Math/LinkDef_GenVector32.h, mathcore/test/Track.h,
	  mathcore/test/testVectorIO.cxx, mathmore/test/Makefile,
	  mathmore/test/testRandomDist.cxx: From Lorenzo:
	  patch for adding classes requested by CMS in the dictionary for
	  double 32 in MathCore.
	  I have added also a patch for fixing a test in mathmore .

2007-10-15 14:43  rdm

	* [r20351] alien/inc/TAlien.h, alien/inc/TAlienJDL.h,
	  alien/inc/TAlienJob.h, alien/src/TAlien.cxx,
	  alien/src/TAlienJDL.cxx, alien/src/TAlienJob.cxx,
	  net/inc/TGrid.h, net/inc/TGridJob.h: From Andreas:
	  implement suggestion coming from Savannah: 29472. Also some minor
	  bug
	  fixes.

2007-10-15 11:54  brun

	* [r20345] roofitcore/src/RooRealIntegral.cxx: From Wouter:
	  Emergency bug fix.

2007-10-15 09:50  wouter

	* [r20342] roofitcore/src/RooBanner.cxx: o RooBanner
	  
	  - Increment version from v2.22

2007-10-15 09:47  brun

	* [r20341] geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoVolume.cxx, geom/src/TGeoXtru.cxx: From Andrei:
	  some fixes for some array access violations in pcon, pgon and
	  xtru spotted by Federico. Some protections were missing in
	  correlation of the usage of TMath::BinarySearch() (numeric
	  exception cases on boundaries).

2007-10-13 16:15  rdm

	* [r20337] xmlparser/inc/TXMLParser.h,
	  xmlparser/src/TXMLParser.cxx: Add methods:
	  void SetReplaceEntities(Bool_t)
	  Bool_t GetReplaceEntities() const
	  this allows the setting of the replaceEntities attribute in the
	  xmlParserCtxt
	  so that entities coming from external documents will be properly
	  expanded.
	  This fixes issue: 28145.

2007-10-13 15:55  wlav

	* [r20336] pyroot/src/MethodHolder.cxx: fix for Solaris method
	  overloading

2007-10-13 14:19  brun

	* [r20335] graf/src/TGraph.cxx, graf/src/TGraphAsymmErrors.cxx,
	  graf/src/TGraphBentErrors.cxx, graf/src/TGraphErrors.cxx,
	  graf/src/TMultiGraph.cxx: Change TGraph::ComputeRange to compute
	  the x/y range of the graph.
	  Move code previously in TGraph::PaintGraph or
	  TGraph::PaintGrapHist to TGraph::ComputeGraph.
	  The functions like TGraphErrors::ComputeGraph call first
	  TGraph::ComputeRange.
	  --achis line, and those below, will be ignored--
	  
	  M graf/src/TGraph.cxx
	  M graf/src/TMultiGraph.cxx
	  M graf/src/TGraphErrors.cxx
	  M graf/src/TGraphAsymmErrors.cxx
	  M graf/src/TGraphBentErrors.cxx

2007-10-13 08:51  brun

	* [r20334]
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P020_GSLMCIntegrator.C:
	  From Lorenzo:
	  By more testing, I found a a problem loading the library. Here is
	  the patch that
	  
	  fix the loading of the MathMore library when instantiating the
	  plugin.

2007-10-13 07:12  ganis

	* [r20333] proof/inc/TProof.h, proof/src/TProof.cxx: Add missing
	  check on the version run by the server before sending a request
	  for generic non-data driven processing

2007-10-13 00:53  wlav

	* [r20332] pyroot/src/MethodHolder.cxx: fix for Solaris compilation
	  error

2007-10-12 17:38  pcanal

	* [r20331] cint/src/v6_parse.cxx: From Paul:
	  Fix parsing problem during bytecode generation for
	  a switch statement when a case block is empty.
	  
	  switch (i) {
	  case 0:
	  case 1:
	  printf("case 0 or 1\n");
	  break;
	  default:
	  printf("case default\n");
	  break;
	  }
	  
	  would execute the default block when i was 0.
	  
	  The problem was that we forgot to tell the
	  parser to handle case labels when we started
	  to evaluate the code for a case block, resulting
	  in the "case 1:" label not being processed,
	  which caused the "intentional fallthrough"
	  jump at the end of the "case 0:" block to be
	  improperly backpatched.
	  
	  The fix is simple, we enable case label
	  processing when we execute a case block, and
	  restore state when we have finished.

2007-10-12 17:04  brun

	* [r20329] etc/plugins/ROOT@@Math@@VirtualIntegrator,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P010_GSLIntegrator.C,
	  etc/plugins/ROOT@@Math@@VirtualIntegrator/P020_GSLMCIntegrator.C:
	  From Lorenzo:
	  add plugin for MathMore numerical integration

2007-10-12 16:40  pcanal

	* [r20328] meta/src/TCint.cxx: TCint::TypeName, avoid skipping
	  unsigned in 'unsigned long long'

2007-10-12 16:39  pcanal

	* [r20327] tree/src/TLeaf.cxx: In GetLeafCounter, correct and
	  expand comments. Return countval==-1 when the array dim in not
	  parseable

2007-10-12 16:28  moneta

	* [r20326] mathmore/Module.mk, mathmore/inc/Math/GSLIntegrator.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/Integrator.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLIntegrator.h,
	  mathmore/src/GSLMCIntegrationWorkspace.h,
	  mathmore/src/GSLMCIntegrator.cxx, mathmore/src/Integrator.cxx,
	  mathmore/test/testIntegration.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx,
	  mathmore/test/testStatFunc.cxx: - sync with dev branch (r 20324)
	  - use common interface for integration methods

2007-10-12 16:26  moneta

	* [r20325] mathcore/Module.mk,
	  mathcore/inc/Math/AllIntegrationTypes.h,
	  mathcore/inc/Math/Integrator.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/LinkDef.h,
	  mathcore/inc/Math/VirtualIntegrator.h,
	  mathcore/src/Integrator.cxx, mathcore/src/IntegratorMultiDim.cxx,
	  mathcore/test/Makefile, mathcore/test/testIntegration.cxx: - add
	  common class for integration method + VirtualIntegrator interface
	  - use plug-in manager to use GSL implementation

2007-10-12 15:36  wouter

	* [r20321] roofitcore/Module.mk, roofitcore/inc/LinkDef3.h,
	  roofitcore/inc/RooAbsArg.h, roofitcore/inc/RooAbsPdf.h,
	  roofitcore/inc/RooExtendedTerm.h, roofitcore/inc/RooRealVar.h,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAddPdf.cxx, roofitcore/src/RooCmdConfig.cxx,
	  roofitcore/src/RooExtendedTerm.cxx, roofitcore/src/RooMinuit.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx: o RooExtendedTerm
	  
	  - New p.d.f. class that has no shape but just introduces
	  an extended likelihood term
	  
	  
	  o RooCmdConfig
	  
	  - Add production to null pointer in decodeStringOnTheFly()
	  
	  
	  o RooAbsReal
	  
	  - Fix attachment to of TTree branches that are not of type
	  Double_t.
	  
	  
	  o RooAddPdf
	  
	  - Remove forgotten debug print statements
	  
	  
	  o RooObjCacheManager
	  
	  - In optimizeCacheMode() remove old snapshot of cacheObservables
	  only after new snapshot has been created to resolve cyclical
	  dependency problems where new snapshot is modeled on old
	  snapshot.
	  
	  o RooAbsPdf
	  
	  - Add redirectServersHook() that clears _norm pointer
	  
	  - Add checkfor null _norm object in getVal() and retrieve
	  new normalization object in such cases from syncNormalization()
	  
	  - Migrate messages in generate() to RooMsgService
	  
	  
	  o RooMultiCatIter
	  
	  - Remove requirement that input categories are lvalues as this
	  is not required.
	  
	  
	  o RooSimPdfBuilder
	  
	  - Add check in build code that verifies that auxiliary splitting
	  categories
	  used in composite splits do not depend on any other category of
	  that
	  composite split, i.e. you cannot split in f(x),x, only in f(y),x
	  
	  
	  o RooMinuit
	  
	  - Add protection in contour function agains Minuit failures which
	  cause
	  a null TGraph pointer to be returned
	  
	  
	  o LinkDef3.h,Module.mk
	  
	  - Add class RooExtendedTerm

2007-10-12 15:34  ganis

	* [r20320] proofd/src/XrdProofPhyConn.cxx, proofd/src/proofd.cxx:
	  Fix some warnings on Solaris

2007-10-12 09:15  pcanal

	* [r20318] cint/inc/Api.h, cint/inc/G__ci.h, cint/include/ReadF.C,
	  cint/include/ReadF.cxx, cint/include/ReadF.h,
	  cint/lib/stdstrct/stdcxxfunc.h, cint/src/Apiif.cxx,
	  cint/src/Apiif.h, cint/src/HISTORY, cint/src/v6_expr.cxx,
	  cint/src/v6_ifunc.cxx, cint/src/v6_init.cxx,
	  cint/src/v6_parse.cxx, cint/src/v6_struct.cxx, cint/stl/algo.h:
	  from Paul, Philippe, Masa, and Axel: import CINT v5-16-26.

2007-10-12 05:25  ganis

	* [r20316] xrootd/src/xrootd-20071001-0000.src.tgz: Previous
	  tarball missed a fix in one of the Windows makefiles.

2007-10-11 23:26  rdm

	* [r20315] configure, netx/src/TXNetSystem.cxx, xrootd/Module.mk,
	  xrootd/src/xrootd-20070716-0300.src.tgz,
	  xrootd/src/xrootd-20071001-0000.src.tgz: From Gerri:
	  Import updated version of XROOTD, including some crucial fixes in
	  the
	  client ReadV code.
	  To build do: make distclean-netx distclean-proofd
	  distclean-proofx.

2007-10-11 14:50  moneta

	* [r20311] tutorials/math/Bessel.C, tutorials/math/GammaFun.C,
	  tutorials/math/Legendre.C, tutorials/math/LegendreAssoc.C,
	  tutorials/math/tStudent.C: - add new tutorials of math functions
	  developed by Magdalena

2007-10-11 12:45  couet

	* [r20309] graf/inc/TGraphBentErrors.h,
	  graf/src/TGraphBentErrors.cxx: - The signatures of the two
	  SetPointError methods were incomplete. The shift
	  values in the various directions were missing. To preserve the
	  backward
	  compatibility, the missing parameters have been added with
	  default value = 0.
	  The new signature is now used in SavePrimitive which allows a
	  correct saving
	  of the TGraphBentErrors.

2007-10-11 11:23  couet

	* [r20308] graf/src/TGraph.cxx, graf/src/TGraphAsymmErrors.cxx,
	  graf/src/TGraphBentErrors.cxx, graf/src/TGraphErrors.cxx: - In
	  SavePrimitive "*l" should be declared as const (strtstr returns a
	  const *char). This produced an error on Solaris.

2007-10-11 10:58  ganis

	* [r20307] proof/inc/TDSet.h, proof/inc/TProof.h,
	  proof/src/TDSet.cxx, proof/src/TProof.cxx,
	  proof/src/TProofServ.cxx, proof/src/TSlave.cxx,
	  proofd/inc/XProofProtocol.h, proofd/inc/XrdProofGroup.h,
	  proofd/inc/XrdProofServProxy.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdTrace.h, proofd/src/XrdProofGroup.cxx,
	  proofd/src/XrdProofServProxy.cxx, proofd/src/XrdProofdClient.cxx,
	  proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx, proofplayer/inc/LinkDef.h,
	  proofplayer/inc/TPacketizerUnit.h, proofplayer/inc/TProofFile.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TPacketizerUnit.cxx,
	  proofplayer/src/TProofFile.cxx, proofplayer/src/TProofPlayer.cxx,
	  proofx/src/TXProofServ.cxx, proofx/src/TXSocket.cxx: Import
	  branches/dev/proof r20306
	  
	  Summary (see branch logs for more details):
	  
	  - Set of changes related to CPU quota control including
	  - broadcast of centrally determined priorities
	  - mechanism to renice processes in a quantitative way
	  - New packetizer for non-tree based analysis and related API in
	  TProof (from L. Tran-Thanh)
	  - Support for merging output objects saved in files on the
	  workers (from L. Tran-Thanh and me)
	  - Improve version binary compatibility checks using also the SVN
	  revision number
	  (when available) to define the running version.
	  - Extend the version binary compatibility checks also to the
	  cached selector binaries.
	  - Extend TDSet::Lookup so that in case of missing files, it can
	  remove them from the
	  dataset (option removeMissing must be set).
	  - Move the data set lookup to the TProofPlayerRemote::Process.
	  - Handle properly the case of incomple datasets: if the file is
	  not found in the lookup
	  don't try to validate it; add it, instead, to a 'missingFiles'
	  list returned in the
	  output list (fixing bug #28800 in Savannah).

2007-10-11 08:53  rdm

	* [r20303] config/root-config.in, configure: Simplify and robustify
	  the python library and include detection (use
	  the actuall python used to get info on the paths).
	  
	  In root-config add new options:
	  --python-version Print the Python version used by ROOT
	  --svn-revision Print the ROOT SVN revision number

2007-10-10 21:12  moneta

	* [r20302] hist/src/TF1Helper.cxx: remove a left-out debug
	  statement

2007-10-10 21:06  moneta

	* [r20301] hist/src/TF1Helper.cxx: fix bug #30166, thanks to Chul
	  Su Park

2007-10-10 19:12  brun

	* [r20299] io/src/TBufferFile.cxx, meta/src/TStreamerElement.cxx:
	  Fix bad conversions issues and do not accept cases with nbits>=15
	  when the Double32_t mode like [0,0,nbits] is specified.

2007-10-10 16:20  couet

	* [r20297] graf/src/TGraph.cxx, graf/src/TGraphAsymmErrors.cxx,
	  graf/src/TGraphBentErrors.cxx, graf/src/TGraphErrors.cxx,
	  graf/src/TMultiGraph.cxx: - The SavePrimitive mechanism did not
	  work properly. In particular
	  it was not possible to save various kind of graphs in several
	  multigraph
	  in the same macro. Also in case of TGraph the generated macro was
	  wrong
	  (Add() was missing).
	  - Make the help in the THTML style
	  - coding convension

2007-10-10 15:12  brun

	* [r20293] io/src/TBufferFile.cxx: Add a few more comments to the
	  description of Double32 and Float16 in
	  TBufferFile::WriteFloat16 and TBufferFile::WriteDouble32.

2007-10-10 14:08  brun

	* [r20292] base/inc/TVirtualViewer3D.h, ged/src/TGedEditor.cxx,
	  gl/inc/TGLCamera.h, gl/inc/TGLLightSetEditor.h,
	  gl/inc/TGLOrthoCamera.h, gl/inc/TGLPerspectiveCamera.h,
	  gl/inc/TGLScenePad.h, gl/inc/TGLUtil.h, gl/inc/TGLViewer.h,
	  gl/inc/TGLViewerEditor.h, gl/src/TGLCamera.cxx,
	  gl/src/TGLClipSetEditor.cxx, gl/src/TGLLightSet.cxx,
	  gl/src/TGLLightSetEditor.cxx, gl/src/TGLOrthoCamera.cxx,
	  gl/src/TGLPerspectiveCamera.cxx, gl/src/TGLScenePad.cxx,
	  gl/src/TGLUtil.cxx, gl/src/TGLViewer.cxx,
	  gl/src/TGLViewerEditor.cxx, tutorials/gl/glViewerExercise.C,
	  tutorials/gl/glViewerLOD.C: From Matevz & Alja
	  
	  * base/inc/TVirtualViewer3D.h:
	  Add function virtual void ObjectPaint(TObject*, Option_t*).
	  
	  
	  /**************************************************************************/
	  
	  * ged/src/TGedEditor.cxx:
	  When adding top-level TGFrame for the extra tabs specify layout
	  hints with kLHintsExpandX.
	  
	  
	  /**************************************************************************/
	  
	  * gl/inc/TGLScenePad.h:
	  * gl/src/TGLScenePad.cxx:
	  Implement virtual TVirtualViewer3D::ObjectPaint().
	  
	  * gl/src/TGLCamera.cxx:
	  * gl/inc/TGLCamera.h:
	  * gl/src/TGLPerspectiveCamera.cxx:
	  * gl/inc/TGLPerspectiveCamera.h:
	  * gl/src/TGLOrthoCamera.cxx:
	  * gl/inc/TGLOrthoCamera.h:
	  Introduce two transformation matrices to clearly define movement
	  of camera around the center point. The first transformation
	  matrix
	  fCamBase defines the coordinate system placed at the camera
	  center
	  point with camera up-vector as the third base vector. The second
	  transformation matrix fCamTrans defines the camera transformation
	  relative to fCamBase.
	  
	  Implement a common Truck(), Rotate() and Dolly() function for
	  orthographic and perspective camera.
	  
	  Implement an option to define camera center point
	  externally. Center can also be determined via picking.
	  
	  * gl/src/TGLUtil.cxx:
	  * gl/inc/TGLUtil.h:
	  TGLMatrix: add new functions to get/set the base vectors
	  directly.
	  
	  TGLUtil: add member UInt_t fgDefaultDrawQuality.
	  
	  TGLRect: bugfix in Diagonal(), integer calculation overflowed.
	  
	  * gl/src/TGLViewer.cxx:
	  * gl/inc/TGLViewer.h:
	  Make interface to draw camera center point.
	  Add option to disable/enable depth test when drawing axis guides.
	  
	  * gl/src/TGLViewerEditor.cxx:
	  * gl/inc/TGLViewerEditor.h:
	  Add GUI to manipulate camera center and to disable/enable depth
	  test when drawing axis guides.
	  
	  * gl/src/TGLClipSetEditor.cxx:
	  Change layout of labeled number entries.
	  
	  * gl/src/TGLLightSet.cxx:
	  Fix positioning of front light. White-space consolidation.
	  
	  * gl/src/TGLLightSetEditor.cxx:
	  * gl/inc/TGLLightSetEditor.h:
	  Put GUI for the 6 lights in two columns.
	  
	  
	  /**************************************************************************/
	  
	  * tutorials/gl/glViewerExercise.C:
	  Follow-up on changes in TGLCamera. Enable rotation on
	  orthographic camera.
	  
	  * tutorials/gl/glViewerLOD.C:
	  Workourond for cint bug with switch statements.

2007-10-10 12:47  couet

	* [r20291] base/src/TColor.cxx: - In TColor::InitializeColors()
	  SetPalette is called only if fgPalette.fN == 0.
	  fgPalette.fN !=0 means that SetPalette has been, very likely,
	  already called
	  from rootlogon.C. Calling it again would reset the palette.

2007-10-10 10:59  axel

	* [r20290] reflex/src/Class.cxx: From Hady Zalek: fix path
	  determination for Class::HasBase()

2007-10-09 21:19  brun

	* [r20284] tmva/inc/BinarySearchTree.h, tmva/inc/MethodPDERS.h,
	  tmva/src/BinarySearchTree.cxx, tmva/src/DataSet.cxx,
	  tmva/src/MethodLikelihood.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/RuleEnsemble.cxx, tmva/test/TMVAnalysis.C,
	  tmva/test/TMVAnalysis.py: From Joerg Stelzer:
	  * Bug fix:
	  A segmentation fault was fixed that appeared when the user gave
	  signal and background data in form of TChains.
	  
	  * Feature:
	  The search speed of the BinarySearchTree has been increased by
	  improving the tree balance.

2007-10-09 19:56  pcanal

	* [r20281] cint/src/CallFunc.cxx: Do not allocated memory in
	  SetArgs when there is nothing to parse\!

2007-10-09 18:47  pcanal

	* [r20280] tree/inc/TTreeCache.h, tree/src/TTreeCache.cxx: From
	  Leo:
	  Add the ability to manually enter the list of used branches.
	  
	  root [0] f = TFile::Open("root://localhost://tmp/Event.root");
	  root [1] TTree *T = (TTree*)f->Get("T");
	  root [2] T->SetCacheSize(10000000);
	  root [4] TFile::GetFileReadCalls()
	  (Int_t)(7)
	  root [5] f->GetBytesRead()
	  (const Long64_t)638632
	  
	  root [3] TTreeCache *tpf = (TTreeCache*) f->GetCacheRead();
	  root [6] tpf->AddBranch("fTracks", kTRUE);
	  root [7] tpf->StopLearningPhase();
	  
	  root [8] T->Draw("fTracks.fPx", "fTracks.fPy");
	  <TCanvas::MakeDefCanvas>: created default TCanvas with name c1
	  root [9] TFile::GetFileReadCalls()
	  (Int_t)(42)
	  root [10] f->GetBytesRead()
	  (const Long64_t)359898352

2007-10-09 15:13  rdm

	* [r20279] cint/cintdlls.mk: fix for MacOS X case.

2007-10-09 14:22  rdm

	* [r20278] base/inc/TPluginManager.h, base/src/TPluginManager.cxx:
	  in case the plugin base class is in a namespace, like
	  ROOT::MyBase, the
	  plugins should be stored in the directory ROOT@@MyBase. The :
	  character
	  is a pathname character on Windows.

2007-10-09 09:57  brun

	* [r20273] io/src/TFileCacheRead.cxx: From Leo:
	  Fix a small bug when resizing buffers smaller than 10KB to an
	  acceptable size (spotted by Fabrizio Furano).

2007-10-09 09:06  moneta

	* [r20272] minuit2/doc/Minuit2.html, minuit2/doc/main.html,
	  minuit2/inc/Minuit2/BasicFunctionMinimum.h,
	  minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/MnMinos.h, minuit2/src/MnFunctionCross.cxx,
	  minuit2/src/MnMinos.cxx, minuit2/src/MnPrint.cxx,
	  minuit2/src/MnSeedGenerator.cxx,
	  minuit2/src/MnUserTransformation.cxx,
	  minuit2/src/TFitterMinuit.cxx,
	  minuit2/src/VariableMetricBuilder.cxx,
	  minuit2/test/testMinimize.cxx: - fix tolerance in Minos (use same
	  value for the tolerance in FunctionCross as in Fortran version)
	  - add additional comments and debug info to Minos and
	  FunctionCross
	  - fix tolerance in VariableMetricBuilder (Migrad) to be 0.001 of
	  given value (instead of 0.0001)
	  - fix a problem in VariableMetricBuilder when all derivatives are
	  zero
	  - add method to change error definition in function minimum.
	  Required if one wants to run Minos with different error def.
	  - upgrade doc for main page

2007-10-09 08:03  rdm

	* [r20271] io/src/TFile.cxx: From Gerri:
	  Anchors and Options where not restored in the local file name.

2007-10-08 23:42  wlav

	* [r20269] pyroot/src/TPyROOTApplication.cxx: Fix
	  http://savannah.cern.ch/bugs/?30217 by adding a dummy
	  Gl_histinit()
	  in TPyROOTApplication.cxx

2007-10-08 19:23  pcanal

	* [r20267] treeplayer/src/TTreeProxyGenerator.cxx: add missing
	  protection

2007-10-08 17:19  wlav

	* [r20266] pyroot/ROOT.py: fix finalSetup pb when doing from ROOT
	  import gROOT

2007-10-08 15:38  ganis

	* [r20264] proofplayer/inc/TPacketizerProgressive.h,
	  proofplayer/inc/TVirtualPacketizer.h: Implement GetTotalEntries()
	  in packetizers (from J.Iwaszkiewicz)

2007-10-08 15:33  ganis

	* [r20263] proofplayer/inc/TFileMerger.h,
	  proofplayer/src/TFileMerger.cxx: Add option to avoid copying
	  locally the files before merging

2007-10-08 15:10  ganis

	* [r20262] xrootd/src/xrootd-20070716-0300.src.tgz: Import possible
	  fix for the endless loop in the client admin interface

2007-10-08 08:55  brun

	* [r20257] asimage/src/TASImage.cxx: From Axel:
	  this version of the patch gets rid of a warning "conversion of
	  ptr to
	  smaller type". And yes, with that it just works - congrats,
	  Valeriy!!!

2007-10-08 08:51  brun

	* [r20256] asimage/src/TASImage.cxx: From Valeriy:
	  Correction to previous change in TASImage that fixes a problem
	  with THtml.

2007-10-08 08:38  moneta

	* [r20255] mathmore/src/GSLMinimizer.cxx: fix problem with to
	  tolower on Windows

2007-10-08 07:25  brun

	* [r20254] asimage/src/TASImage.cxx: From Valeriy:
	  - fix for bug reported by Axel
	  I encountered a problem with THtml, and I don't know how to solve
	  it. As
	  you know, THtml can generate "screen shots" of TCanvases etc as
	  GIFs and
	  embed them in the doc. For performance and beauty reasons, THtml
	  switches to batch more before creating a TCanvas - except when
	  it's told
	  not to, e.g. for creating a GIF of a GUI element using
	  TGObject::SaveAs().
	  
	  What happens during THtml::MakeAll() is:
	  * switch to batch,
	  * create a TCanvas in batch,
	  * switch to non-batch,
	  * create a TCanvas in non-batch.
	  
	  Alas, when the non-batch canvas is to be created, fgVisual is
	  still in
	  "batch mode", and asimage2pixmap (as called by the TGCanvas
	  constructor
	  for its scroll bars) fails.
	  "

2007-10-06 11:34  brun

	* [r20249] config/Makefile.in, configure: From Lorenzo:
	  patch to configure to fix some linking problem with GSL,
	  (add cblas library and use GSL version number)

2007-10-06 10:43  moneta

	* [r20248] mathmore/src/GSLMinimizer.cxx: fix for Windows

2007-10-06 05:42  pcanal

	* [r20247] base/src/TSystem.cxx: Correct the syntax of the rootmap
	  file issued by ACLiC (fix load problem on mac)

2007-10-05 22:14  moneta

	* [r20246] mathcore/src/SpecFuncCephes.cxx,
	  mathmore/inc/Math/GSLNLSMinimizer.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/src/GSLMinimizer.cxx,
	  mathmore/src/GSLMultiFitFunctionAdapter.h: - sync with branch L
	  fix a warning for Mac + some Windows fixes

2007-10-05 21:53  wlav

	* [r20243] pyroot/src/PyBufferFactory.cxx, pyroot/src/Utility.cxx:
	  add typecode to buffers from factor

2007-10-05 21:22  pcanal

	* [r20242] cint/src/v6_var.cxx: Reset G__struct_offset when var
	  point to global variable

2007-10-05 20:57  wlav

	* [r20241] pyroot/ROOT.py, pyroot/inc/LinkDef.h,
	  pyroot/inc/TPyDispatcher.h, pyroot/src/Converters.cxx,
	  pyroot/src/TPyDispatcher.cxx: o) Added TPyDispatcher for use with
	  ROOT-signal/slot based GUIs
	  o) Check for currentThread shutdown, in case of shutdown from GUI
	  o) Delay setting of the display hook to final setup

2007-10-05 17:03  brun

	* [r20237] test/Event.h: We cannot use Float16_t for fRandom
	  (otherwise DrawTest fails on 64 bit machines). DrawTest.sh makes
	  a severe comparison between the written and read value out of
	  reacf with less than 32 bits.

2007-10-05 16:25  moneta

	* [r20235] mathcore/src/SpecFuncCephes.cxx,
	  mathmore/src/PdfFuncMathMore.cxx: fix problem with INFINITY on
	  Windows, use numeric_limits

2007-10-05 15:33  brun

	* [r20234] meta/src/TStreamerElement.cxx: Simplify the GetRange
	  function.

2007-10-05 15:32  brun

	* [r20233] io/src/TBufferFile.cxx: Fix a bug in
	  TBufferFile::WriteFastArrayDouble affecting Double32_t arrays

2007-10-05 15:28  moneta

	* [r20232] mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/LinkDef_Func.h, mathcore/inc/Math/ProbFunc.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/src/ProbFuncMathCore.cxx,
	  mathcore/src/SpecFuncCephes.cxx, mathmore/Module.mk,
	  mathmore/doc/MathMore.html, mathmore/doc/main.html,
	  mathmore/inc/Math/Chebyshev.h, mathmore/inc/Math/Derivator.h,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLMCIntegrator.h,
	  mathmore/inc/Math/GSLMinimizer.h,
	  mathmore/inc/Math/GSLNLSMinimizer.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLSimAnMinimizer.h,
	  mathmore/inc/Math/GSLSimAnnealing.h,
	  mathmore/inc/Math/Integrator.h, mathmore/inc/Math/Interpolator.h,
	  mathmore/inc/Math/KelvinFunctions.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_Func.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/MCIntegrationTypes.h,
	  mathmore/inc/Math/MCParameters.h,
	  mathmore/inc/Math/Minimizer1D.h,
	  mathmore/inc/Math/NumGradFunction.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/ProbFuncMathMore.h,
	  mathmore/inc/Math/QuantFuncMathMore.h,
	  mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/inc/Math/WrappedMultiTF1.h,
	  mathmore/inc/Math/WrappedTF1.h, mathmore/src/GSLError.h,
	  mathmore/src/GSLIntegrator.h,
	  mathmore/src/GSLMCIntegrationWorkspace.h,
	  mathmore/src/GSLMCIntegrator.cxx, mathmore/src/GSLMinimizer.cxx,
	  mathmore/src/GSLMonteFunctionAdapter.h,
	  mathmore/src/GSLMonteFunctionWrapper.h,
	  mathmore/src/GSLMultiFit.h,
	  mathmore/src/GSLMultiFitFunctionAdapter.h,
	  mathmore/src/GSLMultiFitFunctionWrapper.h,
	  mathmore/src/GSLMultiMinFunctionAdapter.h,
	  mathmore/src/GSLMultiMinFunctionWrapper.h,
	  mathmore/src/GSLMultiMinimizer.h,
	  mathmore/src/GSLNLSMinimizer.cxx,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRngWrapper.h,
	  mathmore/src/GSLSimAnMinimizer.cxx,
	  mathmore/src/GSLSimAnnealing.cxx,
	  mathmore/src/KelvinFunctions.cxx, mathmore/src/Minimizer1D.cxx,
	  mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/ProbFuncInv.cxx, mathmore/src/ProbFuncMathMore.cxx,
	  mathmore/src/QuantFuncMathMore.cxx, mathmore/test/Makefile,
	  mathmore/test/UnuRanDist.h, mathmore/test/testFunctor.cxx,
	  mathmore/test/testIntegration.cxx,
	  mathmore/test/testIntegrationMultiDim.cxx,
	  mathmore/test/testRandomDist.cxx, mathmore/test/testSpecFunc.cxx,
	  mathmore/test/testStatFunc.cxx, smatrix/doc/SMatrix.html,
	  smatrix/doc/SMatrixClass.html, smatrix/doc/main.html,
	  smatrix/inc/Math/Expression.h, smatrix/inc/Math/Functions.h,
	  smatrix/inc/Math/MatrixFunctions.h,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SVector.h: - port
	  latest changes (forgot in previous commit) in mathcore
	  - update doc for groups and smatrix page
	  - changes in MathMore :
	  - add GSL MC integration
	  - add GSL Multi-dim minimization, non linear fitting and
	  simulated annealing
	  - remove cdf (are in mathcore) now
	  - update doc for groups and mathmore page

2007-10-05 14:36  moneta

	* [r20231] mathcore/Module.mk, mathcore/doc/MathCore.html,
	  mathcore/doc/VectorPoint2D.html, mathcore/doc/main.html,
	  mathcore/inc/Math/Error.h, mathcore/inc/Math/FitMethodFunction.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/IFunction.h,
	  mathcore/inc/Math/IntegratorMultiDim.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/Minimizer.h,
	  mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/IntegratorMultiDim.cxx,
	  mathcore/src/ProbFuncMathCore.cxx,
	  mathcore/src/SpecFuncCephes.cxx, mathcore/src/SpecFuncCephes.h,
	  mathcore/src/SpecFuncMathCore.cxx: - port changes from
	  development branch (mathDev):
	  
	  - add interface class for minimization and for fitting method
	  function
	  - add multi-dim integration class (CERNLIB algorithm)
	  - add implementation for special functions from Cephes (gamma,
	  error function, incomplete gamma and incomplete beta)
	  - move all the cumulative distribution from MathMore to MathCore
	  (they can be implemented in therm of the inc beta and inc gamma)
	  - update documentation making mathcore, mathmore separate groups
	  which can be combined together

2007-10-05 11:14  brun

	* [r20226] tmva/inc/BinarySearchTree.h,
	  tmva/inc/BinarySearchTreeNode.h, tmva/inc/BinaryTree.h,
	  tmva/inc/Configurable.h, tmva/inc/DataSet.h,
	  tmva/inc/DecisionTree.h, tmva/inc/Factory.h,
	  tmva/inc/GeneticAlgorithm.h, tmva/inc/IFitterTarget.h,
	  tmva/inc/IMethod.h, tmva/inc/IMetric.h, tmva/inc/MethodBDT.h,
	  tmva/inc/MethodBase.h, tmva/inc/MethodBayesClassifier.h,
	  tmva/inc/MethodCFMlpANN.h, tmva/inc/MethodCFMlpANN_Utils.h,
	  tmva/inc/MethodCommittee.h, tmva/inc/MethodCuts.h,
	  tmva/inc/MethodFDA.h, tmva/inc/MethodFisher.h,
	  tmva/inc/MethodHMatrix.h, tmva/inc/MethodKNN.h,
	  tmva/inc/MethodLikelihood.h, tmva/inc/MethodMLP.h,
	  tmva/inc/MethodPDERS.h, tmva/inc/MethodRuleFit.h,
	  tmva/inc/MethodSVM.h, tmva/inc/MethodTMlpANN.h,
	  tmva/inc/MethodVariable.h, tmva/inc/MetricEuler.h,
	  tmva/inc/MetricManhattan.h, tmva/inc/Node.h, tmva/inc/NodekNN.h,
	  tmva/inc/Option.h, tmva/inc/PDF.h, tmva/inc/Reader.h,
	  tmva/inc/RuleCut.h, tmva/inc/RuleFitAPI.h,
	  tmva/inc/SeedDistance.h, tmva/inc/TActivation.h,
	  tmva/inc/Tools.h, tmva/inc/Version.h, tmva/inc/Volume.h,
	  tmva/src/BinarySearchTree.cxx, tmva/src/BinarySearchTreeNode.cxx,
	  tmva/src/BinaryTree.cxx, tmva/src/Configurable.cxx,
	  tmva/src/DataSet.cxx, tmva/src/DecisionTree.cxx,
	  tmva/src/DecisionTreeNode.cxx, tmva/src/Factory.cxx,
	  tmva/src/GeneticAlgorithm.cxx, tmva/src/MethodANNBase.cxx,
	  tmva/src/MethodBDT.cxx, tmva/src/MethodBase.cxx,
	  tmva/src/MethodCFMlpANN.cxx, tmva/src/MethodCFMlpANN_Utils.cxx,
	  tmva/src/MethodCommittee.cxx, tmva/src/MethodCuts.cxx,
	  tmva/src/MethodFDA.cxx, tmva/src/MethodFisher.cxx,
	  tmva/src/MethodKNN.cxx, tmva/src/MethodLikelihood.cxx,
	  tmva/src/MethodMLP.cxx, tmva/src/MethodPDERS.cxx,
	  tmva/src/MethodRuleFit.cxx, tmva/src/MethodSVM.cxx,
	  tmva/src/MethodVariable.cxx, tmva/src/MetricManhattan.cxx,
	  tmva/src/MinuitFitter.cxx, tmva/src/ModulekNN.cxx,
	  tmva/src/MsgLogger.cxx, tmva/src/Node.cxx, tmva/src/PDF.cxx,
	  tmva/src/Reader.cxx, tmva/src/RuleEnsemble.cxx,
	  tmva/src/RuleFit.cxx, tmva/src/RuleFitAPI.cxx,
	  tmva/src/RuleFitParams.cxx, tmva/src/TActivationIdentity.cxx,
	  tmva/src/TActivationRadial.cxx, tmva/src/TActivationSigmoid.cxx,
	  tmva/src/TActivationTanh.cxx, tmva/src/Timer.cxx,
	  tmva/src/Tools.cxx, tmva/src/VariablePCATransform.cxx,
	  tmva/test/BDT.C, tmva/test/ClassApplication.C,
	  tmva/test/TMVAGui.C, tmva/test/TMVAlogon.C,
	  tmva/test/TMVAnalysis.C, tmva/test/TMVAnalysis.py,
	  tmva/test/TMVApplication.C, tmva/test/correlationscatters.C,
	  tmva/test/efficiencies.C, tmva/test/loader.C, tmva/test/mvas.C,
	  tmva/test/mvaweights.C, tmva/test/network.C, tmva/test/probas.C,
	  tmva/test/tmvaglob.C, tmva/test/variables.C: From Joerg Stelzer:
	  New features:
	  
	  - Cuts can now be applied independently for signal and background
	  in the PrepareTrainingAndTestTree phase.
	  
	  - Previously, the input variables used by the Fisher classifier
	  were always normalised to [-1,1] by default. This has been
	  removed, so that it is now in the hand of the user to decide
	  whether or not normalisation is applied. Choose "Normalise"
	  ("!Normalise") for normalisation (no normalisation), default is
	  "!Normalise".
	  
	  
	  
	  
	  - Significant speed improvements for PDERS. For the options to
	  benefit from this, see the example "PDERSkNN" in
	  macros/TMVAnalysis.C or examples/TMVAnalysis.cxx.
	  Thanks to Kamil Kraszewski and friends from Cracow for
	  implementing this.
	  
	  - Re-established backward compatibility of TMVA code down to ROOT
	  version 4.02/00.
	  
	  - Shortened BDT weight-file and standalone C++ reader class by
	  20% and 50%, respectively.
	  
	  - Weight expressions can now be set individually for signal and
	  background via
	  the calls factory->SetSignalWeightExpression(
	  "<signal-expression>" ) and
	  factory->SetBackgroundWeightExpression( "<background-expression>"
	  ). The former call is still supported.
	  - Overtraining test: a new GUI button (corresponding to an
	  extension of the macro "mvas.C") is available to plot a
	  comparison of the classifier response distributions for the
	  training and independent test data sets. The results of a
	  Kolmogorov-Smirnov compatibility test are printed on stdout and
	  plots.
	  - The cuts corresponding to a given signal efficiency can be
	  retrieved via the reader. An example for this is implemented in
	  "macros/TMVApplication.C". Briefly,
	  retrieve the cuts classifier object as follows:
	  TMVA::MethodCuts* mcuts = (TMVA::MethodCuts*)reader->FindMVA(
	  "CutsGA method" );,
	  define cut vectors (a vector of pairs can also be retrieved via
	  overloaded
	  GetCuts function): std::vector<Double_t> cutsMin;
	  std::vector<Double_t> cutsMax;
	  and fill them via: mcuts->GetCuts( wantedSignalEfficiency,
	  cutsMin, cutsMax );
	  
	  - Clean up of code and include headers to improve forward
	  declaration.
	  
	  
	  
	  
	  - Bug fixes:
	  
	  - Memory leaks in the Reader class are removed: the Reader is now
	  properly destructed (deletion of all handled classifiers).
	  Thereby, pointer problems in the destructors of Fisher and SVM
	  have been found and fixed.
	  - The macro TMVApplication.C produced a segmentation fault when
	  run from the ROOT prompt
	  (the compiled version in the examples directory worked fine).
	  This problem is now solved.
	  - The color selection has been adapted to the new color palette
	  that was introduced in ROOT 5.16. The macros should now look
	  alike with all ROOT versions (above 4.02/00).
	  - Very important bug fix: the application of cuts in the
	  PrepareTrainingAndTestTree
	  call in conjunction with the use of several trees (ie, several
	  consecutive calls
	  of factory->AddSignalTree(...) or
	  factory->AddBackgroundTree(...)), lead to a wrong application of
	  the cut to all trees but the first one in the signal and
	  background chains. More details can be provided if requested -
	  please contact
	  the authors. We wish to thank Manfred Groh for spotting and
	  analysing the problem!
	  - Some compilers complained about a missing #include
	  "TMVA/Configurable.h" in the Reader
	  class. This has been fixed. - Fixed problem in RuleFit's
	  standalone class when using integer input variables.
	  - Fixed compilation problem when using decorrelation
	  preprocessing of input variables in C++ standalone reader
	  classes.
	  - Fixed bug in number-of-plots calculation in correlation script.
	  - Fixed bug in printing of number of events in case of several
	  trees (no impact on results).
	  - Fixed inconsistency between cut optimisation and cut reading:
	  the aligned definition of min and max cuts is: a variable passes
	  a cut if: min < var <= max.
	  (This inconsistency may have affected your results if you used
	  cut optimisation together with integer variables. Please check
	  with the new version.)
	  - Fixed macro path in TMVAGui.C to fix problem when running the
	  GUI in the ROOT/TMVA distribution.
	  Also: TMVA Style moved from TMVAlogon into tmvaglob to fix style
	  problem when running in the ROOT/TMVA distribution.
	  - Fixed typos in weight file names in MLP and BDT macros - Fixed
	  "MinMax" and "RMS" options of PDERS (thanks to Junpei Maeda for
	  spotting this)
	  - Fixed compilation problem in MetricEuler class on some
	  platforms

2007-10-04 23:00  rdm

	* [r20220] base/inc/Match.h, base/inc/Strlen.h, base/inc/TAtt3D.h,
	  base/inc/TInspectorImp.h, base/inc/TRegexp.h,
	  base/inc/TStringLong.h, base/src/InitGui.cxx,
	  base/src/TApplicationImp.cxx, base/src/TCanvasImp.cxx,
	  base/src/TContextMenuImp.cxx, base/src/TControlBarImp.cxx,
	  base/src/TInspectorImp.cxx, base/src/TMemberInspector.cxx,
	  clib/inc/Demangle.h, clib/src/detach.c, clib/src/mcalloc.c,
	  clib/src/mfree.c, clib/src/mmalloc.c, clib/src/mmemalign.c,
	  clib/src/mmstats.c, clib/src/mrealloc.c, clib/src/sbrksup.c,
	  cont/inc/TIterator.h, cont/src/TIterator.cxx,
	  cont/src/TSortedList.cxx, g3d/src/X3DBuffer.c,
	  ged/inc/TFrameEditor.h, ged/inc/TPadEditor.h,
	  ged/inc/TPaveStatsEditor.h, ged/src/TFrameEditor.cxx,
	  ged/src/TH1Editor.cxx, ged/src/TH2Editor.cxx,
	  ged/src/TPadEditor.cxx, ged/src/TPaveStatsEditor.cxx,
	  gl/inc/TF2GL.h, gl/inc/TGLAdapter.h, gl/inc/TGLClipSetEditor.h,
	  gl/inc/TGLLightSet.h, gl/inc/TGLLightSetEditor.h,
	  gl/inc/TGLLockable.h, gl/inc/TGLPShapeRef.h,
	  gl/inc/TGLSelectRecord.h, gl/inc/TH2GL.h, gl/src/TGLAdapter.cxx,
	  gl/src/TGLLightSet.cxx, gl/src/TGLLightSetEditor.cxx,
	  gl/src/TGLLockable.cxx, gl/src/TGLPShapeObj.cxx,
	  gl/src/TGLPShapeRef.cxx, gpad/inc/TControlBarButton.h,
	  gpad/src/TControlBarButton.cxx, graf/src/TPoints.cxx,
	  gui/src/TGWidget.cxx, main/src/setpawc.c, main/win32/cfget.c,
	  main/win32/cfgeto.c, main/win32/cfopei.c, main/win32/cfput.c,
	  main/win32/cfputo.c, main/win32/setpawc.c, main/win32/tzvers.f,
	  meta/inc/TToggle.h, meta/inc/TToggleGroup.h,
	  meta/src/TDictionary.cxx, mysql/src/TMySQLResult.cxx,
	  mysql/src/TMySQLRow.cxx, net/inc/TSQLRow.h,
	  net/src/TSQLResult.cxx, net/src/TSQLRow.cxx, rint/inc/LinkDef.h,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooKeysPdf.cxx, roofit/src/RooLandau.cxx,
	  roofit/src/RooNonCPEigenDecay.cxx, roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx,
	  roofitcore/src/Roo1DTable.cxx, roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooCatType.cxx, roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataHistSliceIter.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx, roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormula.cxx, roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooPlot.cxx, roofitcore/src/RooPlotable.cxx,
	  roofitcore/src/RooPolyVar.cxx, roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx, roots/inc/TGXClient.h,
	  roots/inc/TGXServer.h, roots/src/TGXClient.cxx,
	  roots/src/TGXServer.cxx, rootx/src/rootx.cxx,
	  table/inc/TGenericTable.h, table/inc/TResponseTable.h,
	  table/src/TGenericTable.cxx, table/src/TResponseTable.cxx,
	  test/eventb.cxx, test/eventload.cxx, test/rhtml/rhtml.h,
	  test/test2html.cxx, thread/inc/TPosixCondition.h,
	  thread/inc/TPosixMutex.h, thread/inc/TPosixThreadFactory.h,
	  thread/src/TPosixMutex.cxx, thread/src/TPosixThreadFactory.cxx,
	  thread/src/TRWLock.cxx, tree/inc/TCut.h,
	  tree/src/TSelectorScalar.cxx, unix/inc/LinkDef.h, x11/inc/Xpm.h,
	  x11/src/gifdecode.c, x11/src/gifencode.c, x11/src/gifquantize.c,
	  x11ttf/inc/LinkDef.h, x3d/inc/LinkDef.h, zip/inc/deflate.h,
	  zip/inc/zconf.h, zip/src/adler32.c, zip/src/compress.c,
	  zip/src/crc32.c, zip/src/gzio.c, zip/src/trees.c,
	  zip/src/uncompr.c: remove a bunch of $Name$ tags that were missed
	  due to a problem in the
	  initial svn patch up script. Also add svn:keywords Id to all
	  files not
	  having the property yet.

2007-10-04 22:43  rdm

	* [r20219] Makefile, cint/cintdlls.mk: fix some macosx issues with
	  cleaning up the cint/stl/*.so's.

2007-10-04 22:22  rdm

	* [r20218] Makefile: in distclean on the Mac also delete
	  cint/stl/*.so.

2007-10-04 20:51  pcanal

	* [r20217] io/src/TFile.cxx: In the case where Recover is called
	  for a file that was intentionally empty (and hence already has a
	  list of free segment), prevent the adding of duplicate (and
	  fatal) end of file free segment

2007-10-04 20:50  pcanal

	* [r20216] io/src/TKey.cxx: Relax test for end of file

2007-10-04 20:49  pcanal

	* [r20215] io/inc/TFree.h, io/src/TFree.cxx: Add ls method. Cleanup
	  comment layout

2007-10-04 17:50  pcanal

	* [r20214] tree/src/TBranch.cxx: Add warning message in case of
	  missing leaf name in leaflist. Use _noname as the name of the
	  leaf

2007-10-04 16:37  brun

	* [r20213] test/RootShower/MyParticle.h: From Bertrand:
	  - Implement empty SetDrawOption() to remove it from context menu
	  (not used)

2007-10-04 14:49  brun

	* [r20212] gui/src/TGClient.cxx, rootx/src/rootx.cxx: When messages
	  like "can't figure out DISPLAY, set it manually
	  or other X11 server connection errors, add a message indicating
	  to reconnect with ssh -Y

2007-10-04 13:08  couet

	* [r20209] base/inc/TColor.h, base/src/TColor.cxx: - Two new
	  functions: RGB2HSV and HSV2RGB to convert a color from RGB to
	  HSV system and vice versa (requested by V.Onuchin).

2007-10-04 11:32  couet

	* [r20207] base/src/TAttLine.cxx: - Update the help concerning the
	  line style.

2007-10-04 10:11  brun

	* [r20206] test/RootShower/MyEvent.cxx,
	  test/RootShower/MyParticle.cxx, test/RootShower/MyParticle.h,
	  test/RootShower/RSVersion.h, test/RootShower/RootShower.cxx,
	  test/RootShower/RootShower.h: From Bertrand:
	  Added protections + added highlighting track function (via
	  context menu)
	  Thanks to Magdalena for testing and reporting problems.

2007-10-04 09:43  antcheva

	* [r20205] tutorials/gui/iconAsXPMData.C: A new tutorial how to
	  create an icon image from
	  XPM data included into the code.

2007-10-04 08:03  brun

	* [r20202] hist/src/THnSparse.cxx: Fix coding conventions

2007-10-04 07:59  brun

	* [r20201] minuit/src/TLinearFitter.cxx: Fix coding conventions.

2007-10-03 15:15  antcheva

	* [r20194] fitpanel/src/TFitParametersDialog.cxx: Typo in comment

2007-10-03 14:26  brun

	* [r20193] test/Event.h: Modify the Event example to illustrate the
	  use of the new type Float16_t

2007-10-03 14:19  brun

	* [r20192] io/src/TBufferFile.cxx: In all Float16 functions assume
	  a default value of 12 bits for the truncated mantissa.
	  When reading from a file GetRange may not be called, hence the
	  protection.

2007-10-03 14:18  brun

	* [r20191] tree/src/TBranchElement.cxx: Change the test of
	  TVirtualStreamerInfo::kBool for TVirtualStreamerInfo::kFloat16.
	  Make symmetric the processing of Float16 and Double32.

2007-10-03 14:16  brun

	* [r20190] meta/src/TStreamerElement.cxx: Make symmetric the use of
	  GetRange for Float16 and Double32

2007-10-03 12:02  antcheva

	* [r20189] fitpanel/src/TFitEditor.cxx: Make Fit panel working for
	  appropriate objects drawn
	  in user classes, which are derived from TCanvas
	  (thanks to Reiner Rohlfs)

2007-10-03 10:46  rdm

	* [r20188] Makefile: restore behaviour of allowing to install to
	  directory ROOTSY points to.
	  Also cleanup .svn directories after install.

2007-10-03 09:58  brun

	* [r20187] configure: From Lorenzo
	  Fix for finding gsl version 10

2007-10-03 08:23  antcheva

	* [r20186] gui/inc/TGView.h: Renamed const TGGC &GetWhiteGC() to
	  const TGGC &GetViewWhiteGC()
	  to avoid hiding of static const TGGC &GetWhiteGC() in TGFrame
	  class.

2007-10-02 16:25  antcheva

	* [r20184] gui/inc/TGListTree.h, gui/src/TGListTree.cxx: Added
	  following new methods (requested by LHCb):
	  
	  TGListTreeItem
	  o CheckAllChildren(Bool_t state = kTRUE) - set the state of this
	  TGListTreeItem and all its children (if any) as checked if
	  state=kTRUE (default behavior); or unchecked if state=kFALSE.
	  
	  o CheckChildren(TGListTreeItem *item, Bool_t state) - helper
	  method
	  
	  
	  TGListTree class
	  o GetChecked(TList *checked) - add the item text of all checked
	  list tree items as TObjString into the list 'checked'. This list
	  is not adopted and must be deleted by the user later.
	  Example:
	  TList *mylist = new TList();
	  fListTree->GetChecked(mylist);
	  ...
	  mylist->Delete();
	  delete mylist;
	  
	  o GetCheckedChildren(TList *checked, TGListTreeItem *item) -
	  helper method
	  
	  o CheckAllChildren(TGListTreeItem *item, Bool_t state) - check
	  all child items of 'item' and 'item' itself according to the
	  state value: kTRUE means check all, kFALSE - uncheck all.
	  Example:
	  TGListTreeItem *it;
	  it = fLTree->FindChildByName(fLTree->GetFirstItem(),"P1D");
	  fLTree->CheckAllChildren(it, kFALSE);
	  // or users can use
	  it->CheckAllChildren(kFALSE);

2007-10-02 16:08  brun

	* [r20182] io/src/TBufferFile.cxx, meta/src/TStreamerElement.cxx:
	  More changes for Float16_t

2007-10-02 15:58  rdm

	* [r20181] io/src/TFile.cxx: From Gerri:
	  protection against prefix being 0.

2007-10-02 13:24  rdm

	* [r20177] config/thisroot.csh, config/thisroot.sh: set PYTHONPATH
	  if not defined and add $ROOTSYS/lib to PYTHONPATH.

2007-10-02 12:51  rdm

	* [r20175] build/unix/makedistsrc.sh: use svn to checkout sources.

2007-10-02 12:01  rdm

	* [r20174] config/rootrc.in, rint/src/TRint.cxx: new option
	  Rint.WelcomeLite. It true print only a 1 line welcome message
	  instead of the default 16 line message.

2007-10-02 11:52  brun

	* [r20173] io/src/TStreamerInfo.cxx,
	  io/src/TStreamerInfoReadBuffer.cxx,
	  io/src/TStreamerInfoWriteBuffer.cxx,
	  meta/inc/TVirtualStreamerInfo.h, metautils/src/TClassEdit.cxx,
	  tree/src/TBranchElement.cxx, tree/src/TTree.cxx,
	  tree/src/TTreeSQL.cxx, treeplayer/inc/TBranchProxy.h,
	  treeplayer/src/TFormLeafInfo.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx, xml/src/TXMLPlayer.cxx:
	  Second batch of changes to support the new type Float16_t.

2007-10-02 11:02  rdm

	* [r20172] config/Makefile.linux, config/Makefile.linuxx8664gcc:
	  Link gfortran programs using CERNLIB with g++ since libshift is
	  now
	  in C++ and needs the C++ runtime.

2007-10-02 09:02  brun

	* [r20170] base/inc/LinkDef1.h, base/inc/Rtypes.h,
	  base/inc/TBuffer.h, cint/src/v6_tmplt.cxx,
	  cint7/src/v6_tmplt.cxx, io/inc/TBufferFile.h,
	  io/inc/TStreamerInfo.h, io/src/TBufferFile.cxx,
	  io/src/TEmulatedCollectionProxy.cxx,
	  io/src/TEmulatedMapProxy.cxx, io/src/TGenCollectionStreamer.cxx,
	  meta/inc/TDataType.h, meta/inc/TVirtualStreamerInfo.h,
	  meta/src/TDataType.cxx, meta/src/TStreamerElement.cxx,
	  metautils/src/TClassEdit.cxx, odbc/src/TODBCStatement.cxx,
	  sql/inc/TBufferSQL2.h, sql/src/TBufferSQL2.cxx,
	  sql/src/TSQLFile.cxx, sql/src/TSQLStructure.cxx,
	  tree/inc/TBufferSQL.h, tree/src/TBufferSQL.cxx,
	  utils/src/rootcint.cxx, xml/inc/TBufferXML.h,
	  xml/src/TBufferXML.cxx: First batch of changes to support the new
	  data type Float16_t.
	  For more info about Float16_t see TBufferFile::WriteFloat16.

2007-10-02 08:22  wouter

	* [r20168] roofitcore/inc/RooAbsCacheElement.h,
	  roofitcore/inc/RooClassFactory.h: o RooClassFactory
	  
	  - Add forgotten forward declaration to RooAbsPdf
	  
	  
	  o RooAbsCacheElement
	  
	  - Add dummy virtual destructor

2007-10-01 19:26  wouter

	* [r20167] roofitcore/inc/RooAbsAnaConvPdf.h: test part 2

2007-10-01 19:25  wouter

	* [r20166] roofitcore/inc/RooAbsAnaConvPdf.h: test

2007-10-01 19:18  wouter

	* [r20165] roofitcore/inc/RooAbsAnaConvPdf.h: dummy change

2007-10-01 17:02  wouter

	* [r20164] roofit/inc/RooKeysPdf.h, roofit/src/RooKeysPdf.cxx: back
	  out new version of RooKeysPdf that was accidentally committed

2007-10-01 16:34  wouter

	* [r20163] roofit/inc/LinkDef1.h, roofit/inc/Roo2DKeysPdf.h,
	  roofit/inc/RooArgusBG.h, roofit/inc/RooBCPEffDecay.h,
	  roofit/inc/RooBCPGenDecay.h, roofit/inc/RooBDecay.h,
	  roofit/inc/RooBMixDecay.h, roofit/inc/RooBifurGauss.h,
	  roofit/inc/RooBlindTools.h, roofit/inc/RooBreitWigner.h,
	  roofit/inc/RooBukinPdf.h, roofit/inc/RooCBShape.h,
	  roofit/inc/RooChebychev.h, roofit/inc/RooDecay.h,
	  roofit/inc/RooDstD0BG.h, roofit/inc/RooExponential.h,
	  roofit/inc/RooGExpModel.h, roofit/inc/RooGaussModel.h,
	  roofit/inc/RooGaussian.h, roofit/inc/RooHistPdf.h,
	  roofit/inc/RooKeysPdf.h, roofit/inc/RooLandau.h,
	  roofit/inc/RooNonCPEigenDecay.h, roofit/inc/RooNovosibirsk.h,
	  roofit/inc/RooParametricStepFunction.h,
	  roofit/inc/RooPolynomial.h, roofit/inc/RooUnblindCPAsymVar.h,
	  roofit/inc/RooUnblindOffset.h, roofit/inc/RooUnblindPrecision.h,
	  roofit/inc/RooUnblindUniform.h, roofit/inc/RooVoigtian.h,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooHistPdf.cxx, roofit/src/RooKeysPdf.cxx,
	  roofit/src/RooLandau.cxx, roofit/src/RooNonCPEigenDecay.cxx,
	  roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx: o
	  RooHistPdf
	  
	  - Moved from RooFit to RooFitCore because it is used by caching
	  classes
	  
	  
	  o RooBCPGenDecay,RooBCPEffDecay,RooBMixDecay,RooNonCPEigenDecay
	  
	  - Adapt to getCoefAnalyticalIntegral interface change in
	  RooAbsAnaConvPdf
	  
	  
	  o RooBDecay
	  
	  - Adapt to getCoefAnalyticalIntegral interface change in
	  RooAbsAnaConvPdf
	  
	  - Implement coefAnalyticalIntegral and getCoefAnalytical integral
	  to forward
	  class to objects representing the coefficients
	  
	  - Implement coefVars() so that RooAbsAnaConvPdf can sort out
	  actual
	  dependents of each coefficient individually

2007-10-01 16:28  wouter

	* [r20161] roofitcore/Module.mk, roofitcore/inc/LinkDef3.h,
	  roofitcore/inc/Roo1DTable.h, roofitcore/inc/RooAICRegistry.h,
	  roofitcore/inc/RooAbsAnaConvPdf.h, roofitcore/inc/RooAbsArg.h,
	  roofitcore/inc/RooAbsBinning.h, roofitcore/inc/RooAbsCache.h,
	  roofitcore/inc/RooAbsCacheElement.h,
	  roofitcore/inc/RooAbsCachedPdf.h,
	  roofitcore/inc/RooAbsCategory.h,
	  roofitcore/inc/RooAbsCategoryLValue.h,
	  roofitcore/inc/RooAbsCollection.h, roofitcore/inc/RooAbsData.h,
	  roofitcore/inc/RooAbsFunc.h, roofitcore/inc/RooAbsGenContext.h,
	  roofitcore/inc/RooAbsGoodnessOfFit.h,
	  roofitcore/inc/RooAbsHiddenReal.h,
	  roofitcore/inc/RooAbsIntegrator.h, roofitcore/inc/RooAbsLValue.h,
	  roofitcore/inc/RooAbsMCStudyModule.h,
	  roofitcore/inc/RooAbsOptGoodnessOfFit.h,
	  roofitcore/inc/RooAbsPdf.h, roofitcore/inc/RooAbsProxy.h,
	  roofitcore/inc/RooAbsReal.h, roofitcore/inc/RooAbsRealLValue.h,
	  roofitcore/inc/RooAbsRootFinder.h,
	  roofitcore/inc/RooAbsSelfCachedPdf.h,
	  roofitcore/inc/RooAbsString.h, roofitcore/inc/RooAcceptReject.h,
	  roofitcore/inc/RooAdaptiveGaussKronrodIntegrator1D.h,
	  roofitcore/inc/RooAddGenContext.h, roofitcore/inc/RooAddModel.h,
	  roofitcore/inc/RooAddPdf.h, roofitcore/inc/RooAddition.h,
	  roofitcore/inc/RooArgList.h, roofitcore/inc/RooArgProxy.h,
	  roofitcore/inc/RooArgSet.h, roofitcore/inc/RooBinning.h,
	  roofitcore/inc/RooBrentRootFinder.h,
	  roofitcore/inc/RooCacheManager.h, roofitcore/inc/RooCachedPdf.h,
	  roofitcore/inc/RooCatType.h, roofitcore/inc/RooCategory.h,
	  roofitcore/inc/RooCategoryProxy.h,
	  roofitcore/inc/RooCategorySharedProperties.h,
	  roofitcore/inc/RooChi2Var.h, roofitcore/inc/RooClassFactory.h,
	  roofitcore/inc/RooCmdArg.h, roofitcore/inc/RooCmdConfig.h,
	  roofitcore/inc/RooComplex.h, roofitcore/inc/RooConstVar.h,
	  roofitcore/inc/RooConvCoefVar.h,
	  roofitcore/inc/RooConvGenContext.h,
	  roofitcore/inc/RooConvIntegrandBinding.h,
	  roofitcore/inc/RooCurve.h, roofitcore/inc/RooCustomizer.h,
	  roofitcore/inc/RooDLLSignificanceMCSModule.h,
	  roofitcore/inc/RooDataHist.h,
	  roofitcore/inc/RooDataHistSliceIter.h,
	  roofitcore/inc/RooDataProjBinding.h, roofitcore/inc/RooDataSet.h,
	  roofitcore/inc/RooDataSetSliceIter.h,
	  roofitcore/inc/RooDirItem.h, roofitcore/inc/RooDouble.h,
	  roofitcore/inc/RooEffGenContext.h, roofitcore/inc/RooEffProd.h,
	  roofitcore/inc/RooEfficiency.h, roofitcore/inc/RooEllipse.h,
	  roofitcore/inc/RooErrorHandler.h, roofitcore/inc/RooErrorVar.h,
	  roofitcore/inc/RooExtendPdf.h, roofitcore/inc/RooFFTConvPdf.h,
	  roofitcore/inc/RooFit.h, roofitcore/inc/RooFitResult.h,
	  roofitcore/inc/RooFormula.h, roofitcore/inc/RooFormulaVar.h,
	  roofitcore/inc/RooGaussKronrodIntegrator1D.h,
	  roofitcore/inc/RooGenCategory.h, roofitcore/inc/RooGenContext.h,
	  roofitcore/inc/RooGenProdProj.h, roofitcore/inc/RooGenericPdf.h,
	  roofitcore/inc/RooGlobalFunc.h, roofitcore/inc/RooGraphEdge.h,
	  roofitcore/inc/RooGraphNode.h, roofitcore/inc/RooGraphSpring.h,
	  roofitcore/inc/RooGrid.h, roofitcore/inc/RooHashTable.h,
	  roofitcore/inc/RooHist.h, roofitcore/inc/RooHistError.h,
	  roofitcore/inc/RooHistPdf.h, roofitcore/inc/RooHtml.h,
	  roofitcore/inc/RooImproperIntegrator1D.h,
	  roofitcore/inc/RooInt.h, roofitcore/inc/RooIntegrator1D.h,
	  roofitcore/inc/RooIntegrator2D.h,
	  roofitcore/inc/RooIntegratorBinding.h,
	  roofitcore/inc/RooInvTransform.h,
	  roofitcore/inc/RooLinTransBinning.h,
	  roofitcore/inc/RooLinearVar.h, roofitcore/inc/RooLinkedList.h,
	  roofitcore/inc/RooLinkedListElem.h,
	  roofitcore/inc/RooLinkedListIter.h, roofitcore/inc/RooList.h,
	  roofitcore/inc/RooListProxy.h, roofitcore/inc/RooMCIntegrator.h,
	  roofitcore/inc/RooMCStudy.h, roofitcore/inc/RooMPSentinel.h,
	  roofitcore/inc/RooMapCatEntry.h,
	  roofitcore/inc/RooMappedCategory.h, roofitcore/inc/RooMath.h,
	  roofitcore/inc/RooMinuit.h, roofitcore/inc/RooMsgService.h,
	  roofitcore/inc/RooMultiCatIter.h,
	  roofitcore/inc/RooMultiCategory.h, roofitcore/inc/RooNLLVar.h,
	  roofitcore/inc/RooNameReg.h, roofitcore/inc/RooNameSet.h,
	  roofitcore/inc/RooNormListManager.h,
	  roofitcore/inc/RooNormManager.h,
	  roofitcore/inc/RooNormSetCache.h, roofitcore/inc/RooNumConvPdf.h,
	  roofitcore/inc/RooNumConvolution.h,
	  roofitcore/inc/RooNumIntConfig.h,
	  roofitcore/inc/RooNumIntFactory.h, roofitcore/inc/RooNumber.h,
	  roofitcore/inc/RooObjCacheManager.h, roofitcore/inc/RooPlot.h,
	  roofitcore/inc/RooPlotable.h, roofitcore/inc/RooPolyVar.h,
	  roofitcore/inc/RooPrintable.h,
	  roofitcore/inc/RooProdGenContext.h, roofitcore/inc/RooProdPdf.h,
	  roofitcore/inc/RooProduct.h, roofitcore/inc/RooProjectedPdf.h,
	  roofitcore/inc/RooPullVar.h,
	  roofitcore/inc/RooQuasiRandomGenerator.h,
	  roofitcore/inc/RooRandom.h,
	  roofitcore/inc/RooRandomizeParamMCSModule.h,
	  roofitcore/inc/RooRangeBinning.h,
	  roofitcore/inc/RooRealAnalytic.h,
	  roofitcore/inc/RooRealBinding.h,
	  roofitcore/inc/RooRealConstant.h,
	  roofitcore/inc/RooRealIntegral.h, roofitcore/inc/RooRealMPFE.h,
	  roofitcore/inc/RooRealProxy.h, roofitcore/inc/RooRealSumPdf.h,
	  roofitcore/inc/RooRealVar.h,
	  roofitcore/inc/RooRealVarSharedProperties.h,
	  roofitcore/inc/RooRefCountList.h,
	  roofitcore/inc/RooResolutionModel.h,
	  roofitcore/inc/RooScaledFunc.h,
	  roofitcore/inc/RooSegmentedIntegrator1D.h,
	  roofitcore/inc/RooSegmentedIntegrator2D.h,
	  roofitcore/inc/RooSetPair.h, roofitcore/inc/RooSetProxy.h,
	  roofitcore/inc/RooSharedProperties.h,
	  roofitcore/inc/RooSharedPropertiesList.h,
	  roofitcore/inc/RooSimGenContext.h,
	  roofitcore/inc/RooSimPdfBuilder.h,
	  roofitcore/inc/RooSimultaneous.h,
	  roofitcore/inc/RooStreamParser.h, roofitcore/inc/RooStringVar.h,
	  roofitcore/inc/RooSuperCategory.h, roofitcore/inc/RooTObjWrap.h,
	  roofitcore/inc/RooTable.h, roofitcore/inc/RooThreshEntry.h,
	  roofitcore/inc/RooThresholdCategory.h, roofitcore/inc/RooTrace.h,
	  roofitcore/inc/RooTreeData.h, roofitcore/inc/RooTruthModel.h,
	  roofitcore/inc/RooUniformBinning.h,
	  roofitcore/inc/RooWorkspace.h, roofitcore/src/Roo1DTable.cxx,
	  roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCache.cxx,
	  roofitcore/src/RooAbsCacheElement.cxx,
	  roofitcore/src/RooAbsCachedPdf.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsSelfCachedPdf.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBanner.cxx, roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCacheManager.cxx,
	  roofitcore/src/RooCachedPdf.cxx, roofitcore/src/RooCatType.cxx,
	  roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataHistSliceIter.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx,
	  roofitcore/src/RooFFTConvPdf.cxx,
	  roofitcore/src/RooFitResult.cxx, roofitcore/src/RooFormula.cxx,
	  roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHistPdf.cxx,
	  roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx,
	  roofitcore/src/RooObjCacheManager.cxx,
	  roofitcore/src/RooPlot.cxx, roofitcore/src/RooPlotable.cxx,
	  roofitcore/src/RooPolyVar.cxx, roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooProjectedPdf.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx: o RooAbsCache
	  
	  - New abstract base class for cache objects associated with
	  RooAbsArgs.
	  Caches register themselves with the owning RooAbsArg and
	  propagate
	  all necessary state changes and meta information to objects in
	  the cache
	  
	  
	  o RooCacheManager
	  
	  - Concrete template implementation of RooAbsCache with an
	  interface
	  and functionality styled after RooNormListManager. The template
	  class
	  provide no special handling for cache contents that includes
	  RooAbsArg
	  objects and does not forward hook calls. It is thus mostly
	  intended
	  to cache basic types indexed on a normalization/integration
	  configuration
	  
	  
	  o RooObjCacheManager
	  
	  - Class derived from RooCacheManager<RooAbsCacheElement> that
	  implements
	  all proper call forwarding and handling of state and other meta
	  information
	  to RooAbsArg objects embedded in the cache elements. To
	  facilitate this
	  functionality the RooAbsCacheElement defines a pure virtual
	  method
	  containedArgs() that must be implemented to expose its contents
	  to
	  the cache manager. The default behavior on a serverRedirect hook
	  is
	  to sterilize the cache. OperMode changes are not forwarded by
	  default
	  to the cache contents as cached objects do not necessarily have
	  the
	  same operation mode (e.g. if the cache contains an integral of
	  its owner).
	  Any calls to optimizeCacheMode(), printCompactTreeHook(), and
	  findConstantNodes()
	  are forwarded. Moreover, optimizeCacheMode() calls are remembered
	  and
	  any objects inserted in the cache after such a call was received
	  will be
	  optimized upon insertion in the cache
	  
	  o RooAbsCacheElement
	  
	  - Abstract base class for objects to be managed by
	  RooObjCacheManager. Each
	  object must in addition to its payload implement the
	  containedArgs()
	  member function that exposes the RooAbsArg object content to the
	  manager
	  for processing. The argument passed to containedArgs() indicates
	  the use
	  case for the returned list of objects, allowing the cache payload
	  to
	  return different lists depending upon use. This is for most
	  applications
	  not required.
	  
	  
	  o RooAbsCachedPdf
	  
	  - Abstract base class derived from RooAbsPdf for p.d.f.s that
	  implement
	  value caching in a grid over the entire domain of the
	  observables.
	  The base class implements the overall caching logistics and
	  manages
	  the RooDataHists and RooHistPdfs that respresent the cached
	  contents.
	  Derived classes must inputBaseName() defined a unique name prefix
	  for
	  all cache objects, actualObservales() and actualParameters() to
	  determined the actual observables and parameters given a set of
	  available observables and fillCacheObject() which should fill the
	  RooDataHist cache for a given obs/params configuration with the
	  p.d.fs values.
	  
	  
	  o RooAbsSelfCachedPdf
	  
	  - Abstract base class derived from RooAbsCachedPdf that
	  implements
	  all of the required logistics in RooCachedPdf and only require
	  derived classes from RooAbsSelfCachedPdf to implement evaluate().
	  Any class derived from RooAbsPdf can thus be trivially switched
	  to derived from RooAbsSelfCachedPdf and gain the caching
	  functionality.
	  
	  
	  o RooCachedPdf
	  
	  - Concrete class derived from RooAbsCachedPdf that implements
	  the caching of an externally provided p.d.f in the constructor.
	  
	  
	  o RooFFTConvPdf
	  
	  - Concrete class derived from RooAbsCachedPdf that implement
	  generic
	  numeric convolution of two input p.d.f.s using FFT technique
	  and convolution theorem. Actual FFTs are calculated by FFTW
	  through TVirtualFFT interface in ROOT. Present implementation
	  only supports
	  convolution in one dimension, but this will be extended later
	  as there are no fundamental limitations in RooAbsCachedPdf nor
	  FFTW.
	  
	  
	  o RooHistPdf
	  
	  - Moved from RooFit to RooFitCore because it is used by caching
	  classes
	  
	  
	  o RooProdPdf
	  
	  - Use new RooObjCacheManager to store partial objects
	  
	  - Fix memory leak (already patched in 15.0.14h)
	  
	  
	  o RooDataHist
	  
	  - Use new RooCacheManager template to cache partial bin volumes
	  
	  - Add new set(),setAllWeights() method to update current weight
	  and all weights
	  respectively, for use in cached p.d.f.s
	  
	  - Add sliceIterator() that iterates over all bins in a lower
	  dimensional
	  slice of the dataset
	  
	  
	  o RooDataHistSliceIter
	  
	  - Class derived from TIterator that implements the iteration
	  over a slice in a reduced number of dimensions in a RooDataHist
	  
	  
	  o RooMsgService
	  
	  - Speed up processing of debug streams in cases where no debug
	  streams are active
	  
	  - add macros series oocoutX and oocxcoutX that allow to associate
	  message with
	  a different object than *this
	  
	  o RooRealBinding
	  
	  - Interface new setValue method that allows value to be set
	  outside default
	  domain, but inside given alternate named range. For use in
	  numeric integrator
	  bindings
	  
	  
	  o RooAbsRealLValue
	  
	  - Add new inRange() method with range name specifier to check
	  against chosen
	  range instead of default range
	  
	  
	  o RooCmdConfig
	  
	  - Fix dangling return pointer problem in decodeStringOnTheFly()
	  method
	  
	  
	  o RooNameSet
	  
	  - Fix bug in refoll()
	  
	  
	  o RooChi2Var, RooNLLVar
	  
	  - Add processing of AddCoefRange() named argument
	  
	  
	  o RooConvCoefVar
	  
	  - Hold p.d.f in proxy without value/shape state propagation to
	  obtain
	  correct dependency of RooConvCoefVar through separate set proxy
	  with parameters that do have state propagation
	  
	  - In getAnalyticalIntegral() ask for integration coefficient
	  specific
	  to coefficient (following interface change in RooAbsAnaConv)
	  
	  
	  o RooEfficiency
	  
	  - Follow interface change in RooCategoryProxy
	  
	  
	  o RooAbsAnaConvPdf
	  
	  - Use new RooObjCacheManager to hold normalization and
	  coefficient representations
	  
	  - Extend getCoefAnalyticalIntegral() interface so that each
	  coefficient
	  can have a separate integration configuration
	  
	  - Modify makeCoefVars() such that it constructs the
	  RooConvCoefVars with
	  actual dependents for each coefficients, rather than inserting
	  dependencies
	  of any of the coefficients in each coefficient. This logic
	  requires support
	  from the implementation class that is interface through a new
	  member function
	  coefVars()
	  
	  
	  o RooAbsReal
	  
	  - Add Boolean data member treeVar that indicates is value buffer
	  is also
	  branch buffer of a tree. This information is already present in
	  the RooAbsReal
	  but is relatively expensive to retrieve and is always needed in
	  the inner
	  loop of data set operations. This extra member significantly
	  speeds up operations
	  
	  - Remove superfluous _norm[] token in name returned by
	  integralNameSuffix() if
	  no normalization set is supplied.
	  
	  - Add a fillDataHist() method that fills a given RooDataHist with
	  a sampling
	  of the given function. Added for support of caching p.d.f.s
	  
	  
	  - Downgrading warning on non-dependent projection variables in
	  plotOn() to
	  a debug level message
	  
	  - Remove function
	  optimizeDirty(),doConstOpt(),undoConstOpt(),findCacheableBranches()
	  findUnusedDatasetVariables() and findRedundantCacheServers() as
	  part of reorganization
	  of optimization functionality.
	  
	  
	  o RooAbsCollection
	  
	  - Use iterator semantics instead of vector semantics to process
	  RooLinkedList
	  contents in assignment operator
	  
	  - Add utility function contentsString() returning stl string with
	  names
	  of contents
	  
	  
	  o RooAddPdf
	  
	  - Rewrite cache management using new RooObjCacheManager that
	  holds projection
	  integrals, range integrals and supplemental normalization lists
	  
	  
	  o RooAbsOptGoodnessOfFit
	  
	  - Improve handling of normalization ranges and reference ranges
	  for test statistics
	  containing RooAddPdfs. New named argument in fitTo() and
	  RooNllVar::ctor() pass
	  reference range for fractions in RooAddPdf components that do not
	  have an explicit
	  fixed definition already. Name all normalization ranges
	  explicitly after the
	  subrange to which the're applied to avoid name clashes and
	  conflicts if multiple
	  normalization ranges are involved.
	  
	  - Rewrite informational messages through RooMsgService
	  
	  - Implement new constOptimizeTestStatistic() function that
	  signals all test statistic
	  components of a RooAbsArg expression tree to perform their
	  constant term optimization
	  
	  - Implement new optimizeCaching() driver function that changes
	  default lazy-evaluation-with-caching
	  scheme to test statistic scheme where only parameters objects
	  propagate state changes and
	  where all components that depend directly or indirectly on
	  observables have lazy evaluation
	  disabled. Changes to p.d.f objects are delegated to
	  RooAbsPdf::optimizeCacheMode(). Changes
	  to dataset are delegated to
	  RooAbsData::optimizeReadingWithCaching()
	  
	  - Implement new optimizeConstantTerms() function that is back end
	  for constOptimizeTestStatistic
	  implementation.
	  
	  
	  o RooAICRegistry, RooNormSetCache
	  
	  - Remove tracking of allocation cycles of RooArgSets as this
	  scheme is superseded by
	  memory pool mechanism for RooArgSet allocation
	  
	  
	  o RooMappedCategory
	  
	  - Follow interface change in RooCategoryProxy.
	  
	  
	  o RooRealMPFE
	  
	  - Follow reorganization of optimization functionality: implement
	  new constOptimizeTestStatistic
	  function for forwarding to slave processes.
	  
	  
	  o RooRealVar
	  
	  - Add new setVal() function with range name to facilite setting
	  of values that are outside
	  default range, but inside specified alternate range. Needed for
	  numeric integration and
	  certain RooAddPdf coefficient projection.
	  
	  
	  o RooAbsArg
	  
	  - Make state management functions public
	  [is/set][Value/ShapeDirty](), setOperMode90
	  
	  - Add static _flipAClean boolean to support setACleanAdirty()
	  static method.
	  
	  - Implement mechanism for registration of cache objects with base
	  class RooAbsCache.
	  Forward all calls to operModeHook(), redirectServersHook(),
	  optimizeCacheMode()
	  and printCompactTreeHook() to all caches for further processing
	  
	  - Define constOptimize() function and provide default
	  implementation that forwards
	  to all servers
	  
	  - Implement optimizeCacheMode() function that puts expression
	  tree in optimized
	  caching for test-statistics operations (only cache/lazy evaluate
	  nodes that
	  do not (indirectly) depend on observables
	  
	  - Implement findConstantNodes() function that identifies all
	  nodes that depend
	  exclusively on constant observables and >0 observables that are
	  eligible
	  for precalculation and caching in test statistics operations by
	  RooAbsOptTestStatistic::optimizeConstantTerms()
	  
	  - Define constOptimizeTestStatistics that signal an expression
	  tree that any
	  embedded test statistic objects should perform their constant
	  term optimization.
	  Default implementation in RooAbsArg forwards call to all servers.
	  
	  
	  o RooAbsPdf
	  
	  - Use new RooObjCacheManager to manage normalization integrals
	  cache.
	  
	  - Process new SumCoefRange() option in fitTo() that sets the
	  coeffient
	  interpretation range for all embedded RooAddPdf objects of which
	  the interpretation range was not explicitly set
	  
	  - Extend interface of fixAddCoefNormalizationSet(): add extra
	  argument
	  that controls if AddCoef normalization set are forcibly overruled
	  for objects that already have an explicit range setting.
	  
	  
	  o RooRealIntegral
	  
	  - Add some informational messaging through RooMsgService, rewrite
	  existing ones
	  
	  - Speed up numeric summations by precreating the involved
	  RooSuperCategory
	  in the ctor rather than in evaluate().
	  
	  - Fix bug in dependency insertion: explicitly require servers to
	  be value
	  server to avoid pulling in fake dependents.
	  
	  - Remove obsolete data members
	  
	  - Implement new setACleanADirty() function that atomically flips
	  state of
	  all AClean objects to ADirty for the duration of the integration
	  step.
	  Replaces the much more expensive prepareACleanFunc() that did
	  this
	  only for the objects involved.
	  
	  - Process factorizing terms in integral only if the list is not
	  empty
	  
	  - Process Jacobian terms in integral only if the list is not
	  empty
	  
	  
	  o RooAddGenContext
	  
	  - Adapt to cache management chanches in RooAddPdf
	  
	  
	  o RooNumIntFactory
	  
	  - Use STL classes for internal memory management
	  
	  
	  o RooSetProxyy
	  
	  - Implement operator new() and operator() delete as required
	  because
	  RooArgSet implements them
	  
	  
	  o RooAbsGoodnessOfFit
	  
	  - Store and forward AddCoefRange information for embedded
	  RooAddPdf objects
	  
	  - Implement constOptimizeTestStatistic() and forward to
	  components
	  
	  
	  o RooErrorVar
	  
	  - Follow inRange() interface change in RooAbsRealLValue
	  
	  
	  o RooConvGenContext
	  
	  - Adapt code to make it work with both RooAbsAnaConv objects and
	  the newly introduced RooFFTConvPdf
	  
	  
	  o RooMinuit
	  
	  - Follow reorganization of optimization functionality
	  
	  
	  o RooProjectedPdf
	  
	  - Store projection using new RooObjCacheManager
	  
	  
	  o RooGlobalFunc
	  
	  - Add RooFit::SumCoefRange() named argument for
	  RooAbsPdf::fitTo()
	  and RooNLLVar::ctor() and RooChi2Var::ctor()
	  
	  
	  o RooClassFactory
	  
	  - Extend existing makePdf(),makeFunction and makeClass()
	  functions
	  to also accept RooAbsCategory arguments, to accept an optional
	  string
	  inserted as the return value expression inserted in the
	  evaluate() method of the class created, as well as as option
	  string
	  specifying one or more analytical integrations of the given
	  function
	  expression that will be advertised in the generated
	  getAnalyticalIntegral()
	  code and implemented in the generated analyticalIntegral() code
	  
	  - Add makeAndCompileFunction() and makeAndCompilePdf methods that
	  generate the code and immediate compile it through ROOTs ACliC
	  interface.
	  These functions have a simpler interface because the list of
	  arguments
	  of the function to be created can be specified as a const
	  RooArgSet&
	  rather than a string with a list of names, thus making it easier
	  for on-the-fly definition of compiled objects.
	  
	  - Add defineFunction() and definePdf() methods define and compile
	  a function/pdf using the above functions and immediately
	  instantiate
	  an object of the given type passing the specified RooArgSet
	  arguments
	  to the constructor of the object. These functions make a compiled
	  equivalent of RooFormulaVar based on the TFormula interpreter,
	  i.e.
	  
	  RooAbsReal* f = new RooFormulaVar("f","D(1-2w)",RooArgSet(D,w)) ;
	  
	  becomes
	  
	  RooAbsReal* f =
	  RooClassFactory::defineFunction("f","D(1-2w)",RooArgSet(D,w)) ;
	  
	  
	  o RooAbsCategory
	  
	  - Add Boolean data member treeVar that indicates is value buffer
	  is also
	  branch buffer of a tree. This information is already present in
	  the RooAbsReal
	  but is relatively expensive to retrieve and is always needed in
	  the inner
	  loop of data set operations. This extra member significantly
	  speeds up operations
	  
	  - Construct explit clean name for TBranch name if node is cached,
	  equivalent
	  to what is done in RooAbsReal. Needed because new constOptimizer
	  can also
	  cache RooAbsCategory objects
	  
	  
	  o RooArgSet
	  
	  - Implement operator new() and operator delete() to implement
	  memory pool scheme
	  for RooArgSets. The goal of this implementation is to insure that
	  two RooArgSet
	  pointers are _never_ the same. This allows to RooNormSet cache
	  manager to safely
	  and quickly index integration and normalization configurations by
	  evaluating
	  the contents of a RooArgSet only the first time it sees it.
	  
	  
	  o RooSimultaneous
	  
	  - Implement caching of partial integrals using new
	  RooObjCacheManager
	  
	  - Following interface change in RooCategoryProxy ;
	  
	  
	  o RooAbsData
	  
	  - Defined pure virtual methods optimizeReadingWithCache() and
	  allClientsCached()
	  
	  
	  o RooTreeData
	  
	  - Implement optimizeReadingWithCache() which determines given a
	  p.d.f to be
	  evaluated and a list of the nodes that are cached for it, which
	  observables
	  in the dataset are no longer required because they are either not
	  an observable
	  of the p.d.f, or they exclusively feed nodes that are cached.
	  Reading of these
	  observables is disabled through SetBranchStatus().
	  
	  - Move allClientsCached() utility function here from RooAbsReal.
	  
	  
	  o RooCategoryProxy
	  
	  - Remove const char*() conversion operator in favor of a const
	  char* label() method
	  to remove possibly ambiguities in C++ math expressions involving
	  category proxies.
	  
	  
	  o LinkDef3.h
	  
	  - Add newly defined classes

2007-10-01 16:12  rdm

	* [r20160] rint/src/TRint.cxx: don't print any version string when
	  -l is specified.

2007-10-01 15:54  brun

	* [r20159] tutorials/io/double32.C: Update comments in scipt to
	  reflect the extended functionality of Double32_t

2007-10-01 15:53  brun

	* [r20158] io/src/TBufferFile.cxx: Add a few more comments in the
	  doc of TBufferFile::WriteDouble32

2007-10-01 15:41  brun

	* [r20157] test/Event.h: Use the new option [0,0,6] in the
	  Double32_t specification for
	  the member fClosestDistance.

2007-10-01 15:28  brun

	* [r20156] io/src/TBufferFile.cxx: Add support for the new feature
	  [0,0,nbits] also in the functions processing arrays
	  like TBufferFile::WriteFastArrayDouble32 and
	  TBufferFile::ReadFastArrayDouble32.

2007-10-01 15:27  brun

	* [r20155] meta/src/TStreamerElement.cxx: Set the bit kHasRange
	  also when the range is [0,0,nbits]

2007-10-01 14:20  brun

	* [r20154] auth/inc/AFSAuth.h, auth/inc/AFSAuthTypes.h,
	  auth/inc/TAFS.h, auth/inc/TRootSecContext.h,
	  auth/src/AFSAuth.cxx, base/inc/Rstrstream.h,
	  base/inc/RtypesCint.h, base/inc/config.h,
	  base/src/TVirtualMonitoring.cxx, config/precompile.h.in,
	  fftw/inc/LinkDef.h, fftw/inc/TFFTComplex.h,
	  gui/inc/TGApplication.h, gui/inc/TGIdleHandler.h,
	  gui/src/TGIdleHandler.cxx, io/src/TBufferFile.cxx,
	  meta/src/TStreamerElement.cxx, monalisa/inc/TMonaLisaReader.h,
	  monalisa/src/TMonaLisaReader.cxx, pgsql/src/TPgSQLResult.cxx,
	  proofd/inc/XrdProofWorker.h, proofd/inc/XrdROOT.h,
	  proofd/src/XrdProofWorker.cxx, qt/inc/TQtUtil.h,
	  reflex/inc/Reflex/DictionaryGenerator.h,
	  reflex/src/DictionaryGenerator.cxx,
	  thread/inc/TAtomicCountPthread.h, thread/inc/TAtomicCountWin32.h,
	  tree/inc/TSelectorList.h, win32gdk/inc/xatom.h,
	  win32gdk/src/gifdecode.c, win32gdk/src/gifencode.c,
	  win32gdk/src/gifquantize.c: Extend the functionality of
	  Double32_t as explained below:
	  // 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.

2007-10-01 13:47  rdm

	* [r20153] build/unix/svninfo.sh: add protection in case .svn
	  directory does not exist.

2007-10-01 13:38  rdm

	* [r20152] etc: add the etc/svninfo.txt file to the ignore list.
	  This file is generated
	  by the build/unix/svninfo.sh script each time make is called.

2007-10-01 13:34  rdm

	* [r20151] Makefile, base/inc/TROOT.h, base/src/TROOT.cxx,
	  build/unix/svninfo.sh, build/version.cxx, rint/inc/TRint.h,
	  rint/src/TRint.cxx: add new methods:
	  TROOT::GetSvnRevision() -- returns svn current revision number
	  TROOT::GetSvnBranch() -- returns svn current branch name
	  TROOT::GetSvnDate() -- returns date time of built
	  the methods are used in TRint to print in the ROOT welcome
	  message.

2007-10-01 13:31  rdm

	* [r20150] cint/lib/dll_stl: add rootcint_valarray.cxx to ignore
	  property.

2007-09-30 09:12  brun

	* [r20144] tree/src/TTree.cxx: remove an unnecessary protection in
	  TTree::GetBranch and Ttree::GetLeaf
	  preventing the use of branches starting with the character "0"

2007-09-29 18:18  axel

	* [r20143] cintex/src/CINTClassBuilder.cxx,
	  cintex/src/CINTScopeBuilder.cxx, cintex/src/CINTUtils.cxx,
	  cintex/test/dict/CintexTest.h, cintex/test/dict/selection.xml,
	  cintex/test/test_PyCintex_basics.py: remove limitation on length
	  of type names. From Pere: register unknown scopes as a, not n.
	  Fixes https://savannah.cern.ch/bugs/?24227

2007-09-29 05:50  brun

	* [r20138] hist/src/THStack.cxx: Fix a problem in THStack::Paint
	  when using option "pads" and reported
	  by Jan Musinsky at URL: <http://savannah.cern.ch/bugs/?29970>

2007-09-28 13:03  rdm

	* [r20134] cint/main, utils/src: include cint_tmp.exe and
	  rotcint_tmp.exe in the ignore list for Win32.

2007-09-28 10:34  rdm

	* [r20133] configure: no need anymore for DOS line-ending
	  conversion of tutorials and test files
	  on DOS, users should just use a proper editor.

2007-09-28 08:18  antcheva

	* [r20119] gui/src/TRootBrowser.cxx: Fix in ProcessMessage to avoid
	  SegV when the browsed objects
	  are not TObject (fixes bug 29937)

2007-09-27 16:34  rdm

	* [r20118] tutorials/demos.C: remove blank line (and testing svn on
	  win32).

2007-09-27 15:16  ganis

	* [r20115] xrootd/src/xrootd-20070716-0300.src.tgz: From Bertrand:
	  fix a problem in the implementation of posix_memalign

2007-09-27 13:16  rdm

	* [r20114] xrootd/src/xrootd-20070716-0300.src.tgz: added missing
	  GNUmake.rules.sunCCi86pc needed to compile on Solaris 10 x86.

2007-09-27 13:14  rdm

	* [r20113] gl/Module.mk: white space.

2007-09-27 13:14  rdm

	* [r20112] ftgl/Module.mk: -I of the OpenGL inc directory was
	  missing, was fatal on Solaris x86.

2007-09-27 11:13  rdm

	* [r20110] io/src/TFile.cxx: From Gerri:
	  to test if the remote host is the same as the local host we
	  cannot
	  rely on network hostname being the same as hostname
	  (host.domain.com != host).
	  Add an or on the IP address which generally are the same (in case
	  the
	  machines have more than one NIC we should check all IP's though).

2007-09-26 16:44  antcheva

	* [r20105] fitpanel/src/TFitEditor.cxx: Added protection in Hide
	  method in case fParentPad was deleted (thanks to Peter Somogyi)

2007-09-26 14:45  brun

	* [r20104] geom/src/TGeoManager.cxx,
	  geompainter/src/TGeoPainter.cxx: From Andrei:
	  Fix a problem reported by Alberto Colla:
	  I am working on the implementation of caching the Grid OCDB data
	  set, using TFile functionality ("CACHEREAD" option). I have found
	  a problem in TGeoManager::Import(). Here the local cache folder
	  is overwritten:
	  
	  // in case a web file is specified, use the cacheread option to
	  cache
	  // this file in the local directory
	  --> TFile::SetCacheFileDir(".");
	  TFile *f = 0;
	  if (strstr(filename,"http://")) f =
	  TFile::Open(filename,"CACHEREAD");
	  else f = TFile::Open(filename);

2007-09-26 10:55  ganis

	* [r20102] proof/src/TProofMgr.cxx: Fix a problem while filling the
	  list of existing managers.

2007-09-26 10:51  ganis

	* [r20101] proofd/Module.mk, proofx/Module.mk: Form Bertrand:
	  Fix a problem on Windows introduced with patches r20094 and
	  r20096.

2007-09-25 15:58  ganis

	* [r20098] proof/src/TDSet.cxx, proofplayer/src/TEventIter.cxx:
	  TEventIter.cxx, TDSet.cxx
	  - Take into account a possible hidden prefix when testing file
	  locality
	  TEventIter.cxx
	  - Fix a problem affecting loading a tree from file subdirectories

2007-09-25 15:57  rdm

	* [r20097] configure: From Gerri:
	  My patch to configure assumed that the new xrootd was already in,
	  so the default value for extraxrdflags was wrongly set.

2007-09-25 15:20  ganis

	* [r20096] proofd/inc/XrdSysToOuc.h: Forgot a file in the previous
	  patch (r20094).

2007-09-25 15:03  antcheva

	* [r20095] gui/src/TGListTree.cxx: From Bertrand:
	  Added a protection to avoid wheel mouse double-click events in
	  TGListTree

2007-09-25 13:42  ganis

	* [r20094] netx/Module.mk, netx/inc/TXNetFile.h,
	  netx/src/TXNetFile.cxx, proofd/inc/XrdProofConn.h,
	  proofd/inc/XrdProofGroup.h, proofd/inc/XrdProofSched.h,
	  proofd/inc/XrdProofServProxy.h, proofd/inc/XrdProofdClient.h,
	  proofd/inc/XrdProofdManager.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdResponse.h, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofGroup.cxx, proofd/src/XrdProofPhyConn.cxx,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofd/src/XrdProofdResponse.cxx, proofx/Module.mk,
	  proofx/src/TXSocket.cxx: Add support for XROOTD versions >
	  20070723 where some classes where renamed.

2007-09-25 13:09  rdm

	* [r20093] configure: From Gerri:
	  handle latest xrootd version, which is not backward compatible.

2007-09-25 09:14  couet

	* [r20089] treeviewer/src/TParallelCoord.cxx: - Fix the problem
	  mentionned here:
	  http://root.cern.ch/phpBB2/viewtopic.php?t=5448
	  Axis deletion from the editor did not work.

2007-09-24 21:56  rdm

	* [r20087] io/inc/TFile.h, io/src/TFile.cxx: From Gerri:
	  add option argument "prefix" to GetType() which is used for
	  testing locality
	  of a file, on return prefix will contain the local path of a
	  file.

2007-09-24 18:19  ganis

	* [r20086] proof/inc/TProof.h, proofplayer/inc/LinkDef.h,
	  proofplayer/inc/TAdaptivePacketizer.h,
	  proofplayer/inc/TPacketizerAdaptive.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TPacketizerAdaptive.cxx,
	  proofplayer/src/TProofPlayer.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx: From Jan:
	  - Add a heuristic mechanism to avoid undervaluing the processing
	  rate and to short packets.
	  - Add parameters: PROOF_MinPacketTime and PROOF_PacketAsAFraction
	  to allow tuning performance.
	  - Change name TAdaptivePacketizer to TPacketizerAdaptive in order
	  to follow the naming
	  convention for packetizers
	  - Slightly tuning a few parameters.

2007-09-22 08:03  ganis

	* [r20061] netx/src/TXNetFile.cxx: From Andreas:
	  fix a bug affecting the check for staged files.

2007-09-21 22:48  rdm

	* [r20000] build/unix/makechangelog.sh: limit ChangeLog using -r
	  HEAD:15807 (which is v5-12-00).

2007-09-21 12:05  brun

	* [r19991] hist/src/TProfile2D.cxx: Fix problem reported at URL:
	  <http://savannah.cern.ch/bugs/?29767>
	  in function TProfile2D::SetBins

2007-09-21 07:13  rdm

	* [r19990] build/unix/svn2cl.sh: remove debug statement.

2007-09-20 16:52  rdm

	* [r19989] build/unix/cvs2cl.pl, build/unix/makechangelog.sh,
	  build/unix/svn2cl.sh, build/unix/svn2cl.xsl: change from cvs2cl
	  to svn2cl to generate the README/ChangeLog file.

2007-09-20 16:51  rdm

	* [r19988] README: add ChangeLog to svn:ignore.

2007-09-20 15:43  brun

	* [r19987] tree/src/TChain.cxx: From Mihaela:
	  A TChain created with the default constructor and having an entry
	  list cannot be processed with a TSelector. This was due to some
	  missing settings in the default constructor.

2007-09-19 22:38  rdm

	* [r19984] cont/src/TList.cxx: From Axel:
	  cache TObject::GetName() - it might be an expensive call.

2007-09-19 21:29  rdm

	* [r19983] base/inc/Rtypes.h: Fix in comment.

2007-09-19 19:56  rdm

	* [r19826] alien/inc/TAlien.h, alien/inc/TAlienCollection.h,
	  alien/inc/TAlienDirectory.h, alien/inc/TAlienFile.h,
	  alien/inc/TAlienJDL.h, alien/inc/TAlienJob.h,
	  alien/inc/TAlienJobStatus.h, alien/inc/TAlienJobStatusList.h,
	  alien/inc/TAlienMasterJob.h, alien/inc/TAlienMasterJobStatus.h,
	  alien/inc/TAlienResult.h, alien/inc/TAlienSystem.h,
	  alien/src/TAlien.cxx, alien/src/TAlienCollection.cxx,
	  alien/src/TAlienDirectory.cxx, alien/src/TAlienFile.cxx,
	  alien/src/TAlienJDL.cxx, alien/src/TAlienJob.cxx,
	  alien/src/TAlienJobStatus.cxx, alien/src/TAlienJobStatusList.cxx,
	  alien/src/TAlienMasterJob.cxx,
	  alien/src/TAlienMasterJobStatus.cxx, alien/src/TAlienResult.cxx,
	  alien/src/TAlienSystem.cxx, asimage/inc/LinkDef.h,
	  asimage/inc/LinkDefGS.h, asimage/inc/LinkDefGui.h,
	  asimage/inc/TASImage.h, asimage/inc/TASImagePlugin.h,
	  asimage/inc/TASPaletteEditor.h, asimage/inc/TASPluginGS.h,
	  asimage/src/TASImage.cxx, asimage/src/TASPaletteEditor.cxx,
	  asimage/src/TASPluginGS.cxx, asimage/src/TASPolyUtils.c,
	  auth/inc/AFSAuth.h, auth/inc/AFSAuthTypes.h,
	  auth/inc/AuthConst.h, auth/inc/DaemonUtils.h, auth/inc/TAFS.h,
	  auth/inc/TAuthenticate.h, auth/inc/THostAuth.h,
	  auth/inc/TRootAuth.h, auth/inc/TRootSecContext.h,
	  auth/inc/rsaaux.h, auth/inc/rsadef.h, auth/inc/rsafun.h,
	  auth/inc/rsalib.h, auth/src/AFSAuth.cxx,
	  auth/src/DaemonUtils.cxx, auth/src/TAFS.cxx,
	  auth/src/TAuthenticate.cxx, auth/src/THostAuth.cxx,
	  auth/src/TRootAuth.cxx, auth/src/TRootSecContext.cxx,
	  auth/src/rsaaux.cxx, auth/src/rsafun.cxx, auth/src/rsalib.cxx,
	  base/inc/Bswapcpy.h, base/inc/Buttons.h, base/inc/Bytes.h,
	  base/inc/Byteswap.h, base/inc/DllImport.h,
	  base/inc/GLConstants.h, base/inc/Gtypes.h, base/inc/GuiTypes.h,
	  base/inc/Htypes.h, base/inc/KeySymbols.h, base/inc/LinkDef1.h,
	  base/inc/LinkDef2.h, base/inc/LinkDef3.h, base/inc/LinkDef4.h,
	  base/inc/MessageTypes.h, base/inc/RConfig.h,
	  base/inc/RQ_OBJECT.h, base/inc/RStipples.h, base/inc/Riosfwd.h,
	  base/inc/Riostream.h, base/inc/Rpair.h, base/inc/Rstrstream.h,
	  base/inc/Rtypeinfo.h, base/inc/Rtypes.h, base/inc/RtypesCint.h,
	  base/inc/RtypesImp.h, base/inc/TApplication.h,
	  base/inc/TApplicationImp.h, base/inc/TAttAxis.h,
	  base/inc/TAttBBox.h, base/inc/TAttFill.h, base/inc/TAttLine.h,
	  base/inc/TAttMarker.h, base/inc/TAttPad.h, base/inc/TAttText.h,
	  base/inc/TBenchmark.h, base/inc/TBrowser.h,
	  base/inc/TBrowserImp.h, base/inc/TBuffer.h, base/inc/TBuffer3D.h,
	  base/inc/TBuffer3DTypes.h, base/inc/TCanvasImp.h,
	  base/inc/TColor.h, base/inc/TContextMenu.h,
	  base/inc/TContextMenuImp.h, base/inc/TControlBarImp.h,
	  base/inc/TDatime.h, base/inc/TDirectory.h, base/inc/TEnv.h,
	  base/inc/TError.h, base/inc/TException.h, base/inc/TExec.h,
	  base/inc/TFileCollection.h, base/inc/TFileInfo.h,
	  base/inc/TFolder.h, base/inc/TGuiFactory.h,
	  base/inc/TInetAddress.h, base/inc/TMD5.h, base/inc/TMacro.h,
	  base/inc/TMathBase.h, base/inc/TMemberInspector.h,
	  base/inc/TMessageHandler.h, base/inc/TNamed.h,
	  base/inc/TObjString.h, base/inc/TObject.h, base/inc/TObjectSpy.h,
	  base/inc/TPRegexp.h, base/inc/TParameter.h,
	  base/inc/TPluginManager.h, base/inc/TPoint.h,
	  base/inc/TProcessID.h, base/inc/TProcessUUID.h,
	  base/inc/TQClass.h, base/inc/TQCommand.h,
	  base/inc/TQConnection.h, base/inc/TQObject.h, base/inc/TROOT.h,
	  base/inc/TRedirectOutputGuard.h, base/inc/TRef.h,
	  base/inc/TRefCnt.h, base/inc/TRemoteObject.h,
	  base/inc/TRootIOCtor.h, base/inc/TStopwatch.h,
	  base/inc/TStorage.h, base/inc/TString.h, base/inc/TStyle.h,
	  base/inc/TSysEvtHandler.h, base/inc/TSystem.h,
	  base/inc/TSystemDirectory.h, base/inc/TSystemFile.h,
	  base/inc/TTask.h, base/inc/TTime.h, base/inc/TTimeStamp.h,
	  base/inc/TTimer.h, base/inc/TUUID.h, base/inc/TUrl.h,
	  base/inc/TVersionCheck.h, base/inc/TVirtualFFT.h,
	  base/inc/TVirtualFitter.h, base/inc/TVirtualGL.h,
	  base/inc/TVirtualMonitoring.h, base/inc/TVirtualMutex.h,
	  base/inc/TVirtualPS.h, base/inc/TVirtualPad.h,
	  base/inc/TVirtualPadEditor.h, base/inc/TVirtualPerfStats.h,
	  base/inc/TVirtualViewer3D.h, base/inc/TVirtualX.h,
	  base/inc/Varargs.h, base/inc/Windows4Root.h, base/inc/config.h,
	  base/src/Match.cxx, base/src/String.cxx, base/src/Stringio.cxx,
	  base/src/TApplication.cxx, base/src/TAtt3D.cxx,
	  base/src/TAttAxis.cxx, base/src/TAttBBox.cxx,
	  base/src/TAttFill.cxx, base/src/TAttLine.cxx,
	  base/src/TAttMarker.cxx, base/src/TAttPad.cxx,
	  base/src/TAttText.cxx, base/src/TBrowser.cxx,
	  base/src/TBrowserImp.cxx, base/src/TBuffer.cxx,
	  base/src/TBuffer3D.cxx, base/src/TColor.cxx,
	  base/src/TContextMenu.cxx, base/src/TDatime.cxx,
	  base/src/TDirectory.cxx, base/src/TEnv.cxx, base/src/TError.cxx,
	  base/src/TException.cxx, base/src/TExec.cxx,
	  base/src/TFileCollection.cxx, base/src/TFileInfo.cxx,
	  base/src/TFolder.cxx, base/src/TGuiFactory.cxx,
	  base/src/TInetAddress.cxx, base/src/TMD5.cxx,
	  base/src/TMacro.cxx, base/src/TMathBase.cxx,
	  base/src/TMessageHandler.cxx, base/src/TNamed.cxx,
	  base/src/TObjString.cxx, base/src/TObject.cxx,
	  base/src/TObjectSpy.cxx, base/src/TPRegexp.cxx,
	  base/src/TParameter.cxx, base/src/TPluginManager.cxx,
	  base/src/TProcessID.cxx, base/src/TProcessUUID.cxx,
	  base/src/TQCommand.cxx, base/src/TQConnection.cxx,
	  base/src/TQObject.cxx, base/src/TROOT.cxx, base/src/TRef.cxx,
	  base/src/TRefCnt.cxx, base/src/TRegexp.cxx,
	  base/src/TRemoteObject.cxx, base/src/TStopwatch.cxx,
	  base/src/TStorage.cxx, base/src/TString.cxx,
	  base/src/TStringLong.cxx, base/src/TStyle.cxx,
	  base/src/TSysEvtHandler.cxx, base/src/TSystem.cxx,
	  base/src/TSystemDirectory.cxx, base/src/TSystemFile.cxx,
	  base/src/TTask.cxx, base/src/TTime.cxx, base/src/TTimeStamp.cxx,
	  base/src/TTimer.cxx, base/src/TUUID.cxx, base/src/TUrl.cxx,
	  base/src/TVirtualFFT.cxx, base/src/TVirtualFitter.cxx,
	  base/src/TVirtualGL.cxx, base/src/TVirtualMonitoring.cxx,
	  base/src/TVirtualMutex.cxx, base/src/TVirtualPS.cxx,
	  base/src/TVirtualPad.cxx, base/src/TVirtualPadEditor.cxx,
	  base/src/TVirtualPerfStats.cxx, base/src/TVirtualViewer3D.cxx,
	  base/src/TVirtualX.cxx, build/package/msi/makemsi.cxx,
	  build/rmkdepend/mainroot.cxx, build/win/w32pragma.h,
	  castor/inc/LinkDef.h, castor/inc/TCastorFile.h,
	  castor/src/TCastorFile.cxx, chirp/inc/TChirpFile.h,
	  chirp/src/TChirpFile.cxx, cint7/tool/rmkdepend/mainroot.cxx,
	  cintex/inc/Cintex/Cintex.h, cintex/src/CINTClassBuilder.cxx,
	  cintex/src/CINTClassBuilder.h, cintex/src/CINTEnumBuilder.cxx,
	  cintex/src/CINTEnumBuilder.h, cintex/src/CINTFunctionBuilder.cxx,
	  cintex/src/CINTFunctionBuilder.h, cintex/src/CINTFunctional.cxx,
	  cintex/src/CINTFunctional.h, cintex/src/CINTScopeBuilder.cxx,
	  cintex/src/CINTScopeBuilder.h, cintex/src/CINTTypedefBuilder.cxx,
	  cintex/src/CINTTypedefBuilder.h, cintex/src/CINTUtils.cxx,
	  cintex/src/CINTVariableBuilder.cxx,
	  cintex/src/CINTVariableBuilder.h, cintex/src/CINTdefs.h,
	  cintex/src/Cintex.cxx, cintex/src/ROOTClassEnhancer.cxx,
	  cintex/src/ROOTClassEnhancer.h, clarens/inc/LinkDef.h,
	  clarens/inc/TClProxy.h, clarens/inc/TClSession.h,
	  clarens/inc/TClarens.h, clarens/inc/TEcho.h, clarens/inc/TGM.h,
	  clarens/inc/TLM.h, clarens/inc/TSAM.h, clarens/inc/TXmlRpc.h,
	  clarens/src/TClProxy.cxx, clarens/src/TClSession.cxx,
	  clarens/src/TClarens.cxx, clarens/src/TEcho.cxx,
	  clarens/src/TGM.cxx, clarens/src/TLM.cxx, clarens/src/TSAM.cxx,
	  clarens/src/TXmlRpc.cxx, clib/inc/Getline.h, clib/inc/LinkDef.h,
	  clib/inc/mmalloc.h, clib/inc/mmconfig.h, clib/inc/mmprivate.h,
	  clib/inc/snprintf.h, clib/src/Demangle.c, clib/src/Getline.c,
	  clib/src/attach.c, clib/src/getpagesize.c, clib/src/keys.c,
	  clib/src/mmapsup.c, clib/src/mmcheck.c, clib/src/mmtrace.c,
	  clib/src/mvalloc.c, clib/src/snprintf.c, config/precompile.h.in,
	  config/rootrc.in, cont/inc/LinkDef.h, cont/inc/TArray.h,
	  cont/inc/TArrayC.h, cont/inc/TArrayD.h, cont/inc/TArrayF.h,
	  cont/inc/TArrayI.h, cont/inc/TArrayL.h, cont/inc/TArrayL64.h,
	  cont/inc/TArrayS.h, cont/inc/TBits.h, cont/inc/TBtree.h,
	  cont/inc/TClassTable.h, cont/inc/TClonesArray.h,
	  cont/inc/TCollection.h, cont/inc/TCollectionProxyInfo.h,
	  cont/inc/TExMap.h, cont/inc/THashList.h, cont/inc/THashTable.h,
	  cont/inc/TList.h, cont/inc/TMap.h, cont/inc/TObjArray.h,
	  cont/inc/TObjectTable.h, cont/inc/TOrdCollection.h,
	  cont/inc/TRefArray.h, cont/inc/TRefTable.h,
	  cont/inc/TSeqCollection.h, cont/inc/TSortedList.h,
	  cont/inc/TVirtualCollectionProxy.h, cont/src/TArray.cxx,
	  cont/src/TArrayC.cxx, cont/src/TArrayD.cxx, cont/src/TArrayF.cxx,
	  cont/src/TArrayI.cxx, cont/src/TArrayL.cxx,
	  cont/src/TArrayL64.cxx, cont/src/TArrayS.cxx, cont/src/TBits.cxx,
	  cont/src/TBtree.cxx, cont/src/TClassTable.cxx,
	  cont/src/TClonesArray.cxx, cont/src/TCollection.cxx,
	  cont/src/TExMap.cxx, cont/src/THashList.cxx,
	  cont/src/THashTable.cxx, cont/src/TList.cxx, cont/src/TMap.cxx,
	  cont/src/TObjArray.cxx, cont/src/TObjectTable.cxx,
	  cont/src/TOrdCollection.cxx, cont/src/TRefArray.cxx,
	  cont/src/TRefTable.cxx, cont/src/TSeqCollection.cxx,
	  dcache/inc/TDCacheFile.h, dcache/src/TDCacheFile.cxx,
	  eg/inc/Hepevt.h, eg/inc/LinkDef.h, eg/inc/TAttParticle.h,
	  eg/inc/TDatabasePDG.h, eg/inc/TDecayChannel.h,
	  eg/inc/TGenerator.h, eg/inc/TParticle.h,
	  eg/inc/TParticleClassPDG.h, eg/inc/TParticlePDG.h,
	  eg/inc/TPrimary.h, eg/inc/TVirtualMCDecayer.h, eg/inc/cfortran.h,
	  eg/src/TAttParticle.cxx, eg/src/TDatabasePDG.cxx,
	  eg/src/TDecayChannel.cxx, eg/src/TGenerator.cxx,
	  eg/src/TParticle.cxx, eg/src/TParticleClassPDG.cxx,
	  eg/src/TParticlePDG.cxx, eg/src/TPrimary.cxx,
	  eg/src/TVirtualMCDecayer.cxx, fftw/inc/LinkDef.h,
	  fftw/inc/TFFTComplex.h, fftw/inc/TFFTComplexReal.h,
	  fftw/inc/TFFTReal.h, fftw/inc/TFFTRealComplex.h,
	  fftw/src/TFFTComplex.cxx, fftw/src/TFFTComplexReal.cxx,
	  fftw/src/TFFTReal.cxx, fftw/src/TFFTRealComplex.cxx,
	  fitpanel/inc/LinkDef.h, fitpanel/inc/TFitEditor.h,
	  fitpanel/inc/TFitParametersDialog.h, fitpanel/src/TFitEditor.cxx,
	  fitpanel/src/TFitParametersDialog.cxx, foam/inc/TFoam.h,
	  foam/inc/TFoamCell.h, foam/inc/TFoamIntegrand.h,
	  foam/inc/TFoamMaxwt.h, foam/inc/TFoamVect.h, foam/src/TFoam.cxx,
	  foam/src/TFoamCell.cxx, foam/src/TFoamIntegrand.cxx,
	  foam/src/TFoamMaxwt.cxx, foam/src/TFoamVect.cxx,
	  fumili/inc/LinkDef.h, fumili/inc/TFumili.h,
	  fumili/src/TFumili.cxx, g3d/inc/LinkDef.h, g3d/inc/TAxis3D.h,
	  g3d/inc/TBRIK.h, g3d/inc/TCONE.h, g3d/inc/TCONS.h,
	  g3d/inc/TCTUB.h, g3d/inc/TELTU.h, g3d/inc/TGTRA.h,
	  g3d/inc/TGeometry.h, g3d/inc/THYPE.h, g3d/inc/THelix.h,
	  g3d/inc/TMarker3DBox.h, g3d/inc/TMaterial.h, g3d/inc/TMixture.h,
	  g3d/inc/TNode.h, g3d/inc/TNodeDiv.h, g3d/inc/TPARA.h,
	  g3d/inc/TPCON.h, g3d/inc/TPGON.h, g3d/inc/TPointSet3D.h,
	  g3d/inc/TPoints3DABC.h, g3d/inc/TPolyLine3D.h,
	  g3d/inc/TPolyMarker3D.h, g3d/inc/TRotMatrix.h, g3d/inc/TSPHE.h,
	  g3d/inc/TShape.h, g3d/inc/TTRAP.h, g3d/inc/TTRD1.h,
	  g3d/inc/TTRD2.h, g3d/inc/TTUBE.h, g3d/inc/TTUBS.h,
	  g3d/inc/TView3D.h, g3d/inc/TXTRU.h, g3d/inc/X3DBuffer.h,
	  g3d/inc/X3DDefs.h, g3d/src/TAxis3D.cxx, g3d/src/TBRIK.cxx,
	  g3d/src/TCONE.cxx, g3d/src/TCONS.cxx, g3d/src/TCTUB.cxx,
	  g3d/src/TELTU.cxx, g3d/src/TGTRA.cxx, g3d/src/TGeometry.cxx,
	  g3d/src/THYPE.cxx, g3d/src/THelix.cxx, g3d/src/TMarker3DBox.cxx,
	  g3d/src/TMaterial.cxx, g3d/src/TMixture.cxx, g3d/src/TNode.cxx,
	  g3d/src/TNodeDiv.cxx, g3d/src/TPARA.cxx, g3d/src/TPCON.cxx,
	  g3d/src/TPGON.cxx, g3d/src/TPointSet3D.cxx,
	  g3d/src/TPoints3DABC.cxx, g3d/src/TPolyLine3D.cxx,
	  g3d/src/TPolyMarker3D.cxx, g3d/src/TRotMatrix.cxx,
	  g3d/src/TSPHE.cxx, g3d/src/TShape.cxx, g3d/src/TTRAP.cxx,
	  g3d/src/TTRD1.cxx, g3d/src/TTRD2.cxx, g3d/src/TTUBE.cxx,
	  g3d/src/TTUBS.cxx, g3d/src/TView3D.cxx, g3d/src/TXTRU.cxx,
	  g4root/inc/LinkDef.h, g4root/inc/TG4RootDetectorConstruction.h,
	  g4root/inc/TG4RootNavMgr.h, g4root/inc/TG4RootNavigator.h,
	  g4root/inc/TG4RootSolid.h,
	  g4root/src/TG4RootDetectorConstruction.cxx,
	  g4root/src/TG4RootNavMgr.cxx, g4root/src/TG4RootNavigator.cxx,
	  g4root/src/TG4RootSolid.cxx, gdml/ROOTwriter.py,
	  gdml/inc/LinkDef.h, gdml/inc/TGDMLParse.h,
	  gdml/src/TGDMLParse.cxx, gdml/writer.py, ged/inc/HelpSMText.h,
	  ged/inc/LinkDef.h, ged/inc/TArrowEditor.h,
	  ged/inc/TAttFillEditor.h, ged/inc/TAttLineEditor.h,
	  ged/inc/TAttMarkerEditor.h, ged/inc/TAttTextEditor.h,
	  ged/inc/TAxisEditor.h, ged/inc/TCurlyArcEditor.h,
	  ged/inc/TCurlyLineEditor.h, ged/inc/TF1Editor.h,
	  ged/inc/TFunctionParametersDialog.h, ged/inc/TGedEditor.h,
	  ged/inc/TGedFrame.h, ged/inc/TGedMarkerSelect.h,
	  ged/inc/TGedPatternSelect.h, ged/inc/TGraphEditor.h,
	  ged/inc/TH1Editor.h, ged/inc/TH2Editor.h, ged/inc/TLineEditor.h,
	  ged/inc/TStyleDialog.h, ged/inc/TStyleManager.h,
	  ged/inc/TStylePreview.h, ged/src/HelpSMText.cxx,
	  ged/src/TArrowEditor.cxx, ged/src/TAttFillEditor.cxx,
	  ged/src/TAttLineEditor.cxx, ged/src/TAttMarkerEditor.cxx,
	  ged/src/TAttTextEditor.cxx, ged/src/TAxisEditor.cxx,
	  ged/src/TCurlyArcEditor.cxx, ged/src/TCurlyLineEditor.cxx,
	  ged/src/TF1Editor.cxx, ged/src/TFunctionParametersDialog.cxx,
	  ged/src/TGedEditor.cxx, ged/src/TGedFrame.cxx,
	  ged/src/TGedMarkerSelect.cxx, ged/src/TGedPatternSelect.cxx,
	  ged/src/TGraphEditor.cxx, ged/src/TLineEditor.cxx,
	  ged/src/TStyleDialog.cxx, ged/src/TStyleManager.cxx,
	  ged/src/TStylePreview.cxx, geom/inc/LinkDef1.h,
	  geom/inc/LinkDef2.h, geom/inc/TGeoArb8.h, geom/inc/TGeoAtt.h,
	  geom/inc/TGeoBBox.h, geom/inc/TGeoBoolNode.h,
	  geom/inc/TGeoBuilder.h, geom/inc/TGeoCache.h,
	  geom/inc/TGeoCompositeShape.h, geom/inc/TGeoCone.h,
	  geom/inc/TGeoElement.h, geom/inc/TGeoEltu.h,
	  geom/inc/TGeoHalfSpace.h, geom/inc/TGeoHelix.h,
	  geom/inc/TGeoHype.h, geom/inc/TGeoManager.h,
	  geom/inc/TGeoMaterial.h, geom/inc/TGeoMatrix.h,
	  geom/inc/TGeoMedium.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPara.h,
	  geom/inc/TGeoParaboloid.h, geom/inc/TGeoPatternFinder.h,
	  geom/inc/TGeoPcon.h, geom/inc/TGeoPgon.h,
	  geom/inc/TGeoPhysicalNode.h, geom/inc/TGeoPolygon.h,
	  geom/inc/TGeoScaledShape.h, geom/inc/TGeoShape.h,
	  geom/inc/TGeoShapeAssembly.h, geom/inc/TGeoSphere.h,
	  geom/inc/TGeoTorus.h, geom/inc/TGeoTrd1.h, geom/inc/TGeoTrd2.h,
	  geom/inc/TGeoTube.h, geom/inc/TGeoVolume.h,
	  geom/inc/TGeoVoxelFinder.h, geom/inc/TGeoXtru.h,
	  geom/inc/TVirtualGeoPainter.h, geom/inc/TVirtualGeoTrack.h,
	  geom/src/TGeoArb8.cxx, geom/src/TGeoAtt.cxx,
	  geom/src/TGeoBBox.cxx, geom/src/TGeoBoolNode.cxx,
	  geom/src/TGeoBuilder.cxx, geom/src/TGeoCache.cxx,
	  geom/src/TGeoCompositeShape.cxx, geom/src/TGeoCone.cxx,
	  geom/src/TGeoElement.cxx, geom/src/TGeoEltu.cxx,
	  geom/src/TGeoHalfSpace.cxx, geom/src/TGeoHelix.cxx,
	  geom/src/TGeoHype.cxx, geom/src/TGeoManager.cxx,
	  geom/src/TGeoMaterial.cxx, geom/src/TGeoMatrix.cxx,
	  geom/src/TGeoMedium.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoPara.cxx,
	  geom/src/TGeoParaboloid.cxx, geom/src/TGeoPatternFinder.cxx,
	  geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoPhysicalNode.cxx, geom/src/TGeoPolygon.cxx,
	  geom/src/TGeoScaledShape.cxx, geom/src/TGeoShape.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoSphere.cxx,
	  geom/src/TGeoTorus.cxx, geom/src/TGeoTrd1.cxx,
	  geom/src/TGeoTrd2.cxx, geom/src/TGeoTube.cxx,
	  geom/src/TGeoVolume.cxx, geom/src/TGeoVoxelFinder.cxx,
	  geom/src/TGeoXtru.cxx, geom/src/TVirtualGeoPainter.cxx,
	  geom/src/TVirtualGeoTrack.cxx, geombuilder/inc/LinkDef.h,
	  geombuilder/inc/TGeoBBoxEditor.h,
	  geombuilder/inc/TGeoConeEditor.h,
	  geombuilder/inc/TGeoEltuEditor.h, geombuilder/inc/TGeoGedFrame.h,
	  geombuilder/inc/TGeoHypeEditor.h,
	  geombuilder/inc/TGeoManagerEditor.h,
	  geombuilder/inc/TGeoMaterialEditor.h,
	  geombuilder/inc/TGeoMatrixEditor.h,
	  geombuilder/inc/TGeoMediumEditor.h,
	  geombuilder/inc/TGeoNodeEditor.h,
	  geombuilder/inc/TGeoParaEditor.h,
	  geombuilder/inc/TGeoPconEditor.h,
	  geombuilder/inc/TGeoPgonEditor.h,
	  geombuilder/inc/TGeoSphereEditor.h,
	  geombuilder/inc/TGeoTabManager.h,
	  geombuilder/inc/TGeoTorusEditor.h,
	  geombuilder/inc/TGeoTrapEditor.h,
	  geombuilder/inc/TGeoTrd1Editor.h,
	  geombuilder/inc/TGeoTrd2Editor.h,
	  geombuilder/inc/TGeoTubeEditor.h,
	  geombuilder/inc/TGeoVolumeEditor.h,
	  geombuilder/src/TGeoBBoxEditor.cxx,
	  geombuilder/src/TGeoConeEditor.cxx,
	  geombuilder/src/TGeoEltuEditor.cxx,
	  geombuilder/src/TGeoGedFrame.cxx,
	  geombuilder/src/TGeoHypeEditor.cxx,
	  geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoMaterialEditor.cxx,
	  geombuilder/src/TGeoMatrixEditor.cxx,
	  geombuilder/src/TGeoMediumEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoParaEditor.cxx,
	  geombuilder/src/TGeoPconEditor.cxx,
	  geombuilder/src/TGeoPgonEditor.cxx,
	  geombuilder/src/TGeoSphereEditor.cxx,
	  geombuilder/src/TGeoTabManager.cxx,
	  geombuilder/src/TGeoTorusEditor.cxx,
	  geombuilder/src/TGeoTrapEditor.cxx,
	  geombuilder/src/TGeoTrd1Editor.cxx,
	  geombuilder/src/TGeoTrd2Editor.cxx,
	  geombuilder/src/TGeoTubeEditor.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx,
	  geompainter/inc/TGeoChecker.h, geompainter/inc/TGeoOverlap.h,
	  geompainter/inc/TGeoTrack.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoOverlap.cxx, geompainter/src/TGeoPainter.cxx,
	  geompainter/src/TGeoTrack.cxx, gfal/inc/LinkDef.h,
	  gfal/inc/TGFALFile.h, gfal/src/TGFALFile.cxx, gl/inc/CsgOps.h,
	  gl/inc/LinkDef.h, gl/inc/TArcBall.h, gl/inc/TGLAxis.h,
	  gl/inc/TGLBoundingBox.h, gl/inc/TGLCamera.h, gl/inc/TGLClip.h,
	  gl/inc/TGLContext.h, gl/inc/TGLContextPrivate.h,
	  gl/inc/TGLCylinder.h, gl/inc/TGLFaceSet.h, gl/inc/TGLFormat.h,
	  gl/inc/TGLIncludes.h, gl/inc/TGLLegoPainter.h,
	  gl/inc/TGLLogicalShape.h, gl/inc/TGLManip.h,
	  gl/inc/TGLManipSet.h, gl/inc/TGLObject.h,
	  gl/inc/TGLOrthoCamera.h, gl/inc/TGLOutput.h, gl/inc/TGLOverlay.h,
	  gl/inc/TGLPShapeObj.h, gl/inc/TGLPShapeObjEditor.h,
	  gl/inc/TGLParametric.h, gl/inc/TGLParametricEquationGL.h,
	  gl/inc/TGLPerspectiveCamera.h, gl/inc/TGLPhysicalShape.h,
	  gl/inc/TGLPlotPainter.h, gl/inc/TGLPolyLine.h,
	  gl/inc/TGLPolyMarker.h, gl/inc/TGLQuadric.h, gl/inc/TGLRnrCtx.h,
	  gl/inc/TGLRotateManip.h, gl/inc/TGLSAFrame.h,
	  gl/inc/TGLSAViewer.h, gl/inc/TGLScaleManip.h, gl/inc/TGLScene.h,
	  gl/inc/TGLSceneBase.h, gl/inc/TGLSceneInfo.h,
	  gl/inc/TGLScenePad.h, gl/inc/TGLSelectBuffer.h,
	  gl/inc/TGLSphere.h, gl/inc/TGLStopwatch.h, gl/inc/TGLText.h,
	  gl/inc/TGLTransManip.h, gl/inc/TGLUtil.h, gl/inc/TGLViewer.h,
	  gl/inc/TGLViewerBase.h, gl/inc/TGLWidget.h,
	  gl/inc/TPointSet3DGL.h, gl/inc/TX11GL.h, gl/src/CsgOps.cxx,
	  gl/src/TArcBall.cxx, gl/src/TF2GL.cxx, gl/src/TGLAxis.cxx,
	  gl/src/TGLBoundingBox.cxx, gl/src/TGLCamera.cxx,
	  gl/src/TGLClip.cxx, gl/src/TGLClipSetEditor.cxx,
	  gl/src/TGLContext.cxx, gl/src/TGLContextPrivate.cxx,
	  gl/src/TGLCylinder.cxx, gl/src/TGLFaceSet.cxx,
	  gl/src/TGLFormat.cxx, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLLogicalShape.cxx, gl/src/TGLManip.cxx,
	  gl/src/TGLManipSet.cxx, gl/src/TGLObject.cxx,
	  gl/src/TGLOrthoCamera.cxx, gl/src/TGLOutput.cxx,
	  gl/src/TGLOverlay.cxx, gl/src/TGLPShapeObjEditor.cxx,
	  gl/src/TGLParametric.cxx, gl/src/TGLParametricEquationGL.cxx,
	  gl/src/TGLPerspectiveCamera.cxx, gl/src/TGLPhysicalShape.cxx,
	  gl/src/TGLPlotPainter.cxx, gl/src/TGLPolyLine.cxx,
	  gl/src/TGLPolyMarker.cxx, gl/src/TGLQuadric.cxx,
	  gl/src/TGLRnrCtx.cxx, gl/src/TGLRotateManip.cxx,
	  gl/src/TGLSAFrame.cxx, gl/src/TGLSAViewer.cxx,
	  gl/src/TGLScaleManip.cxx, gl/src/TGLScene.cxx,
	  gl/src/TGLSceneBase.cxx, gl/src/TGLSceneInfo.cxx,
	  gl/src/TGLScenePad.cxx, gl/src/TGLSelectBuffer.cxx,
	  gl/src/TGLSelectRecord.cxx, gl/src/TGLSphere.cxx,
	  gl/src/TGLStopwatch.cxx, gl/src/TGLText.cxx,
	  gl/src/TGLTransManip.cxx, gl/src/TGLUtil.cxx,
	  gl/src/TGLViewer.cxx, gl/src/TGLViewerBase.cxx,
	  gl/src/TGLWidget.cxx, gl/src/TH2GL.cxx, gl/src/TPointSet3DGL.cxx,
	  gl/src/TX11GL.cxx, globusauth/src/GlobusAuth.cxx,
	  gpad/inc/LinkDef.h, gpad/inc/TAttCanvas.h, gpad/inc/TButton.h,
	  gpad/inc/TCanvas.h, gpad/inc/TClassTree.h,
	  gpad/inc/TColorWheel.h, gpad/inc/TControlBar.h,
	  gpad/inc/TCreatePrimitives.h, gpad/inc/TDialogCanvas.h,
	  gpad/inc/TGroupButton.h, gpad/inc/TInspectCanvas.h,
	  gpad/inc/TPad.h, gpad/inc/TPaveClass.h, gpad/inc/TSlider.h,
	  gpad/inc/TSliderBox.h, gpad/inc/TView.h, gpad/inc/TViewer3DPad.h,
	  gpad/src/TAttCanvas.cxx, gpad/src/TButton.cxx,
	  gpad/src/TCanvas.cxx, gpad/src/TClassTree.cxx,
	  gpad/src/TColorWheel.cxx, gpad/src/TControlBar.cxx,
	  gpad/src/TCreatePrimitives.cxx, gpad/src/TDialogCanvas.cxx,
	  gpad/src/TGroupButton.cxx, gpad/src/TInspectCanvas.cxx,
	  gpad/src/TPad.cxx, gpad/src/TPaveClass.cxx, gpad/src/TSlider.cxx,
	  gpad/src/TSliderBox.cxx, gpad/src/TView.cxx,
	  gpad/src/TViewer3DPad.cxx, graf/inc/LinkDef1.h,
	  graf/inc/LinkDef2.h, graf/inc/TArc.h, graf/inc/TArrow.h,
	  graf/inc/TAttImage.h, graf/inc/TBox.h, graf/inc/TCrown.h,
	  graf/inc/TCurlyArc.h, graf/inc/TCurlyLine.h, graf/inc/TCutG.h,
	  graf/inc/TDiamond.h, graf/inc/TEllipse.h, graf/inc/TFrame.h,
	  graf/inc/TGaxis.h, graf/inc/TGraph.h,
	  graf/inc/TGraphAsymmErrors.h, graf/inc/TGraphBentErrors.h,
	  graf/inc/TGraphErrors.h, graf/inc/TGraphPolar.h,
	  graf/inc/TGraphQQ.h, graf/inc/TGraphSmooth.h, graf/inc/TImage.h,
	  graf/inc/TImagePlugin.h, graf/inc/TLatex.h, graf/inc/TLegend.h,
	  graf/inc/TLegendEntry.h, graf/inc/TLine.h, graf/inc/TLink.h,
	  graf/inc/TMarker.h, graf/inc/TMultiGraph.h, graf/inc/TPave.h,
	  graf/inc/TPaveLabel.h, graf/inc/TPaveStats.h,
	  graf/inc/TPaveText.h, graf/inc/TPavesText.h, graf/inc/TPie.h,
	  graf/inc/TPoints.h, graf/inc/TPolyLine.h, graf/inc/TSpline.h,
	  graf/inc/TTF.h, graf/inc/TText.h, graf/inc/TWbox.h,
	  graf/src/TArc.cxx, graf/src/TArrow.cxx, graf/src/TAttImage.cxx,
	  graf/src/TBox.cxx, graf/src/TCrown.cxx, graf/src/TCurlyArc.cxx,
	  graf/src/TCurlyLine.cxx, graf/src/TCutG.cxx,
	  graf/src/TDiamond.cxx, graf/src/TEllipse.cxx,
	  graf/src/TFrame.cxx, graf/src/TGaxis.cxx, graf/src/TGraph.cxx,
	  graf/src/TGraphAsymmErrors.cxx, graf/src/TGraphBentErrors.cxx,
	  graf/src/TGraphErrors.cxx, graf/src/TGraphPolar.cxx,
	  graf/src/TGraphQQ.cxx, graf/src/TGraphSmooth.cxx,
	  graf/src/TImage.cxx, graf/src/TLatex.cxx, graf/src/TLegend.cxx,
	  graf/src/TLegendEntry.cxx, graf/src/TLine.cxx,
	  graf/src/TLink.cxx, graf/src/TMarker.cxx,
	  graf/src/TMultiGraph.cxx, graf/src/TPave.cxx,
	  graf/src/TPaveLabel.cxx, graf/src/TPaveStats.cxx,
	  graf/src/TPaveText.cxx, graf/src/TPavesText.cxx,
	  graf/src/TPie.cxx, graf/src/TPolyLine.cxx, graf/src/TSpline.cxx,
	  graf/src/TTF.cxx, graf/src/TText.cxx, graf/src/TWbox.cxx,
	  gui/inc/HelpText.h, gui/inc/LinkDef1.h, gui/inc/LinkDef2.h,
	  gui/inc/LinkDef3.h, gui/inc/TG3DLine.h, gui/inc/TGApplication.h,
	  gui/inc/TGButton.h, gui/inc/TGButtonGroup.h, gui/inc/TGCanvas.h,
	  gui/inc/TGClient.h, gui/inc/TGColorDialog.h,
	  gui/inc/TGColorSelect.h, gui/inc/TGComboBox.h,
	  gui/inc/TGDNDManager.h, gui/inc/TGDimension.h,
	  gui/inc/TGDockableFrame.h, gui/inc/TGDoubleSlider.h,
	  gui/inc/TGFSComboBox.h, gui/inc/TGFSContainer.h,
	  gui/inc/TGFileDialog.h, gui/inc/TGFont.h, gui/inc/TGFontDialog.h,
	  gui/inc/TGFrame.h, gui/inc/TGGC.h, gui/inc/TGIcon.h,
	  gui/inc/TGIdleHandler.h, gui/inc/TGImageMap.h,
	  gui/inc/TGInputDialog.h, gui/inc/TGLabel.h, gui/inc/TGLayout.h,
	  gui/inc/TGListBox.h, gui/inc/TGListTree.h, gui/inc/TGListView.h,
	  gui/inc/TGMdi.h, gui/inc/TGMdiDecorFrame.h, gui/inc/TGMdiFrame.h,
	  gui/inc/TGMdiMainFrame.h, gui/inc/TGMdiMenu.h, gui/inc/TGMenu.h,
	  gui/inc/TGMimeTypes.h, gui/inc/TGMsgBox.h,
	  gui/inc/TGNumberEntry.h, gui/inc/TGObject.h,
	  gui/inc/TGPasswdDialog.h, gui/inc/TGPicture.h,
	  gui/inc/TGProgressBar.h, gui/inc/TGRedirectOutputGuard.h,
	  gui/inc/TGResourcePool.h, gui/inc/TGScrollBar.h,
	  gui/inc/TGShutter.h, gui/inc/TGSlider.h, gui/inc/TGSpeedo.h,
	  gui/inc/TGSplitter.h, gui/inc/TGStatusBar.h, gui/inc/TGString.h,
	  gui/inc/TGTab.h, gui/inc/TGTableLayout.h, gui/inc/TGText.h,
	  gui/inc/TGTextBuffer.h, gui/inc/TGTextEdit.h,
	  gui/inc/TGTextEditDialogs.h, gui/inc/TGTextEditor.h,
	  gui/inc/TGTextEntry.h, gui/inc/TGTextView.h, gui/inc/TGToolBar.h,
	  gui/inc/TGToolTip.h, gui/inc/TGTripleSlider.h, gui/inc/TGView.h,
	  gui/inc/TGWidget.h, gui/inc/TGWindow.h, gui/inc/TGXYLayout.h,
	  gui/inc/TGuiBuilder.h, gui/inc/TRootApplication.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootCanvas.h,
	  gui/inc/TRootContextMenu.h, gui/inc/TRootControlBar.h,
	  gui/inc/TRootDialog.h, gui/inc/TRootEmbeddedCanvas.h,
	  gui/inc/TRootGuiFactory.h, gui/inc/TRootHelpDialog.h,
	  gui/inc/WidgetMessageTypes.h, gui/src/HelpText.cxx,
	  gui/src/TG3DLine.cxx, gui/src/TGApplication.cxx,
	  gui/src/TGButton.cxx, gui/src/TGButtonGroup.cxx,
	  gui/src/TGCanvas.cxx, gui/src/TGClient.cxx,
	  gui/src/TGColorDialog.cxx, gui/src/TGColorSelect.cxx,
	  gui/src/TGComboBox.cxx, gui/src/TGDNDManager.cxx,
	  gui/src/TGDimension.cxx, gui/src/TGDockableFrame.cxx,
	  gui/src/TGDoubleSlider.cxx, gui/src/TGFSComboBox.cxx,
	  gui/src/TGFSContainer.cxx, gui/src/TGFileDialog.cxx,
	  gui/src/TGFont.cxx, gui/src/TGFontDialog.cxx,
	  gui/src/TGFrame.cxx, gui/src/TGGC.cxx, gui/src/TGIcon.cxx,
	  gui/src/TGIdleHandler.cxx, gui/src/TGImageMap.cxx,
	  gui/src/TGInputDialog.cxx, gui/src/TGLabel.cxx,
	  gui/src/TGLayout.cxx, gui/src/TGListBox.cxx,
	  gui/src/TGListTree.cxx, gui/src/TGListView.cxx,
	  gui/src/TGMdiDecorFrame.cxx, gui/src/TGMdiFrame.cxx,
	  gui/src/TGMdiMainFrame.cxx, gui/src/TGMdiMenu.cxx,
	  gui/src/TGMenu.cxx, gui/src/TGMimeTypes.cxx,
	  gui/src/TGMsgBox.cxx, gui/src/TGNumberEntry.cxx,
	  gui/src/TGObject.cxx, gui/src/TGPasswdDialog.cxx,
	  gui/src/TGPicture.cxx, gui/src/TGProgressBar.cxx,
	  gui/src/TGRedirectOutputGuard.cxx, gui/src/TGResourcePool.cxx,
	  gui/src/TGScrollBar.cxx, gui/src/TGShutter.cxx,
	  gui/src/TGSlider.cxx, gui/src/TGSpeedo.cxx,
	  gui/src/TGSplitter.cxx, gui/src/TGStatusBar.cxx,
	  gui/src/TGString.cxx, gui/src/TGTab.cxx,
	  gui/src/TGTableLayout.cxx, gui/src/TGText.cxx,
	  gui/src/TGTextBuffer.cxx, gui/src/TGTextEdit.cxx,
	  gui/src/TGTextEditDialogs.cxx, gui/src/TGTextEditor.cxx,
	  gui/src/TGTextEntry.cxx, gui/src/TGTextView.cxx,
	  gui/src/TGToolBar.cxx, gui/src/TGToolTip.cxx,
	  gui/src/TGTripleSlider.cxx, gui/src/TGView.cxx,
	  gui/src/TGWindow.cxx, gui/src/TGXYLayout.cxx,
	  gui/src/TGuiBuilder.cxx, gui/src/TRootApplication.cxx,
	  gui/src/TRootBrowser.cxx, gui/src/TRootCanvas.cxx,
	  gui/src/TRootContextMenu.cxx, gui/src/TRootControlBar.cxx,
	  gui/src/TRootDialog.cxx, gui/src/TRootEmbeddedCanvas.cxx,
	  gui/src/TRootGuiFactory.cxx, gui/src/TRootHelpDialog.cxx,
	  guibuilder/inc/LinkDef.h, guibuilder/inc/TGuiBldDragManager.h,
	  guibuilder/inc/TGuiBldEditor.h,
	  guibuilder/inc/TGuiBldHintsButton.h,
	  guibuilder/inc/TGuiBldHintsEditor.h,
	  guibuilder/inc/TGuiBldNameFrame.h,
	  guibuilder/inc/TRootGuiBuilder.h,
	  guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldEditor.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx,
	  guibuilder/src/TGuiBldNameFrame.cxx,
	  guibuilder/src/TRootGuiBuilder.cxx, hbook/inc/THbookBranch.h,
	  hbook/inc/THbookFile.h, hbook/inc/THbookKey.h,
	  hbook/inc/THbookTree.h, hbook/src/THbookBranch.cxx,
	  hbook/src/THbookFile.cxx, hbook/src/THbookKey.cxx,
	  hbook/src/THbookTree.cxx, hist/inc/Foption.h, hist/inc/LinkDef.h,
	  hist/inc/TAxis.h, hist/inc/TBinomialEfficiencyFitter.h,
	  hist/inc/TConfidenceLevel.h, hist/inc/TF1.h, hist/inc/TF12.h,
	  hist/inc/TF2.h, hist/inc/TF3.h, hist/inc/TFormula.h,
	  hist/inc/TFormulaPrimitive.h, hist/inc/TFractionFitter.h,
	  hist/inc/TGraph2D.h, hist/inc/TGraph2DErrors.h,
	  hist/inc/TGraphDelaunay.h, hist/inc/TH1.h, hist/inc/TH1C.h,
	  hist/inc/TH1D.h, hist/inc/TH1F.h, hist/inc/TH1I.h,
	  hist/inc/TH1K.h, hist/inc/TH1S.h, hist/inc/TH2.h,
	  hist/inc/TH2C.h, hist/inc/TH2D.h, hist/inc/TH2F.h,
	  hist/inc/TH2I.h, hist/inc/TH2S.h, hist/inc/TH3.h,
	  hist/inc/TH3C.h, hist/inc/TH3D.h, hist/inc/TH3F.h,
	  hist/inc/TH3I.h, hist/inc/TH3S.h, hist/inc/THLimitsFinder.h,
	  hist/inc/THStack.h, hist/inc/THnSparse.h, hist/inc/TLimit.h,
	  hist/inc/TLimitDataSource.h, hist/inc/TMultiDimFit.h,
	  hist/inc/TPolyMarker.h, hist/inc/TPrincipal.h,
	  hist/inc/TProfile.h, hist/inc/TProfile2D.h,
	  hist/inc/TProfile3D.h, hist/inc/TVirtualHistPainter.h,
	  hist/src/Haxis.cxx, hist/src/TAxis.cxx,
	  hist/src/TBinomialEfficiencyFitter.cxx,
	  hist/src/TConfidenceLevel.cxx, hist/src/TF1.cxx,
	  hist/src/TF12.cxx, hist/src/TF1Helper.cxx, hist/src/TF1Helper.h,
	  hist/src/TF2.cxx, hist/src/TF3.cxx, hist/src/TFormula.cxx,
	  hist/src/TFormulaPrimitive.cxx, hist/src/TFractionFitter.cxx,
	  hist/src/TGraph2D.cxx, hist/src/TGraph2DErrors.cxx,
	  hist/src/TGraphDelaunay.cxx, hist/src/TH1.cxx, hist/src/TH1K.cxx,
	  hist/src/TH2.cxx, hist/src/TH3.cxx, hist/src/THLimitsFinder.cxx,
	  hist/src/THStack.cxx, hist/src/THnSparse.cxx,
	  hist/src/TLimit.cxx, hist/src/TLimitDataSource.cxx,
	  hist/src/TMultiDimFit.cxx, hist/src/TPolyMarker.cxx,
	  hist/src/TPrincipal.cxx, hist/src/TProfile.cxx,
	  hist/src/TProfile2D.cxx, hist/src/TProfile3D.cxx,
	  hist/src/TVirtualHistPainter.cxx, histpainter/inc/Hoption.h,
	  histpainter/inc/Hparam.h, histpainter/inc/LinkDef.h,
	  histpainter/inc/TGraphPainter.h, histpainter/inc/THistPainter.h,
	  histpainter/inc/TLego.h, histpainter/inc/TPainter3dAlgorithms.h,
	  histpainter/inc/TPaletteAxis.h,
	  histpainter/src/TGraphPainter.cxx,
	  histpainter/src/THistPainter.cxx,
	  histpainter/src/TPainter3dAlgorithms.cxx,
	  histpainter/src/TPaletteAxis.cxx, html/inc/LinkDef.h,
	  html/inc/TClassDocOutput.h, html/inc/TDocDirective.h,
	  html/inc/TDocInfo.h, html/inc/TDocOutput.h,
	  html/inc/TDocParser.h, html/inc/THtml.h,
	  html/src/TClassDocOutput.cxx, html/src/TDocInfo.cxx,
	  html/src/TDocOutput.cxx, html/src/TDocParser.cxx,
	  html/src/THtml.cxx, io/inc/LinkDef.h, io/inc/TArchiveFile.h,
	  io/inc/TBufferFile.h, io/inc/TCollectionProxyFactory.h,
	  io/inc/TContainerConverters.h, io/inc/TDirectoryFile.h,
	  io/inc/TEmulatedCollectionProxy.h, io/inc/TEmulatedMapProxy.h,
	  io/inc/TFile.h, io/inc/TFileCacheRead.h,
	  io/inc/TFileCacheWrite.h, io/inc/TFree.h,
	  io/inc/TGenCollectionProxy.h, io/inc/TGenCollectionStreamer.h,
	  io/inc/TKey.h, io/inc/TKeyMapFile.h, io/inc/TMapFile.h,
	  io/inc/TStreamerInfo.h, io/inc/TZIPFile.h,
	  io/src/TArchiveFile.cxx, io/src/TBufferFile.cxx,
	  io/src/TCollectionProxyFactory.cxx,
	  io/src/TContainerConverters.cxx, io/src/TDirectoryFile.cxx,
	  io/src/TEmulatedCollectionProxy.cxx,
	  io/src/TEmulatedMapProxy.cxx, io/src/TFile.cxx,
	  io/src/TFileCacheRead.cxx, io/src/TFileCacheWrite.cxx,
	  io/src/TFree.cxx, io/src/TGenCollectionProxy.cxx,
	  io/src/TGenCollectionStreamer.cxx, io/src/TKey.cxx,
	  io/src/TKeyMapFile.cxx, io/src/TMapFile.cxx,
	  io/src/TStreamerInfo.cxx, io/src/TStreamerInfoReadBuffer.cxx,
	  io/src/TStreamerInfoWriteBuffer.cxx, io/src/TZIPFile.cxx,
	  krb5auth/inc/Krb5Auth.h, krb5auth/inc/TKSocket.h,
	  krb5auth/src/Krb5Auth.cxx, krb5auth/src/TKSocket.cxx,
	  ldap/inc/CintLDAP.h, ldap/inc/TLDAPAttribute.h,
	  ldap/inc/TLDAPEntry.h, ldap/inc/TLDAPResult.h,
	  ldap/inc/TLDAPServer.h, ldap/src/TLDAPAttribute.cxx,
	  ldap/src/TLDAPEntry.cxx, ldap/src/TLDAPResult.cxx,
	  ldap/src/TLDAPServer.cxx, main/src/cppmain.cxx,
	  main/src/h2root.cxx, main/src/pmain.cxx, main/src/rmain.cxx,
	  main/src/roots.cxx, main/src/ssh2rpd.cxx, math/inc/LinkDef.h,
	  math/inc/Math/ParamFunctor.h, math/inc/TComplex.h,
	  math/inc/TMath.h, math/inc/TRandom.h, math/inc/TRandom1.h,
	  math/inc/TRandom2.h, math/inc/TRandom3.h, math/src/TComplex.cxx,
	  math/src/TMath.cxx, math/src/TRandom.cxx, math/src/TRandom1.cxx,
	  math/src/TRandom2.cxx, math/src/TRandom3.cxx,
	  mathcore/build/Makefile.am, mathcore/build/doc_Makefile.am,
	  mathcore/build/inc_Makefile.am,
	  mathcore/build/inc_Math_GenVector_Makefile.am,
	  mathcore/build/inc_Math_Makefile.am,
	  mathcore/build/src_Makefile.am, mathcore/build/test_Makefile.am,
	  mathcore/inc/Math/AxisAngle.h, mathcore/inc/Math/Boost.h,
	  mathcore/inc/Math/BoostX.h, mathcore/inc/Math/BoostY.h,
	  mathcore/inc/Math/BoostZ.h, mathcore/inc/Math/Cartesian2D.h,
	  mathcore/inc/Math/Cartesian3D.h,
	  mathcore/inc/Math/Cylindrical3D.h,
	  mathcore/inc/Math/CylindricalEta3D.h,
	  mathcore/inc/Math/DisplacementVector2D.h,
	  mathcore/inc/Math/DisplacementVector3D.h,
	  mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/DistFuncMathCore.h,
	  mathcore/inc/Math/EulerAngles.h, mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/3DConversions.h,
	  mathcore/inc/Math/GenVector/3DDistances.h,
	  mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/AxisAnglefwd.h,
	  mathcore/inc/Math/GenVector/BitReproducible.h,
	  mathcore/inc/Math/GenVector/Boost.h,
	  mathcore/inc/Math/GenVector/BoostX.h,
	  mathcore/inc/Math/GenVector/BoostXfwd.h,
	  mathcore/inc/Math/GenVector/BoostY.h,
	  mathcore/inc/Math/GenVector/BoostYfwd.h,
	  mathcore/inc/Math/GenVector/BoostZ.h,
	  mathcore/inc/Math/GenVector/BoostZfwd.h,
	  mathcore/inc/Math/GenVector/Boostfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian2D.h,
	  mathcore/inc/Math/GenVector/Cartesian2Dfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/GenVector/Cartesian3Dfwd.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/GenVector/Cylindrical3D.h,
	  mathcore/inc/Math/GenVector/Cylindrical3Dfwd.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3D.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/EulerAnglesfwd.h,
	  mathcore/inc/Math/GenVector/GenVectorIO.h,
	  mathcore/inc/Math/GenVector/GenVector_exception.h,
	  mathcore/inc/Math/GenVector/LorentzRotation.h,
	  mathcore/inc/Math/GenVector/LorentzRotationfwd.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/LorentzVectorfwd.h,
	  mathcore/inc/Math/GenVector/Plane3D.h,
	  mathcore/inc/Math/GenVector/Polar2D.h,
	  mathcore/inc/Math/GenVector/Polar2Dfwd.h,
	  mathcore/inc/Math/GenVector/Polar3D.h,
	  mathcore/inc/Math/GenVector/Polar3Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/PositionVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4Dfwd.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Quaternionfwd.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/Rotation3Dfwd.h,
	  mathcore/inc/Math/GenVector/RotationX.h,
	  mathcore/inc/Math/GenVector/RotationXfwd.h,
	  mathcore/inc/Math/GenVector/RotationY.h,
	  mathcore/inc/Math/GenVector/RotationYfwd.h,
	  mathcore/inc/Math/GenVector/RotationZ.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h,
	  mathcore/inc/Math/GenVector/RotationZYXfwd.h,
	  mathcore/inc/Math/GenVector/RotationZfwd.h,
	  mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/inc/Math/GenVector/VectorUtil.h,
	  mathcore/inc/Math/GenVector/eta.h,
	  mathcore/inc/Math/GenVector/etaMax.h,
	  mathcore/inc/Math/IFunction.h, mathcore/inc/Math/IFunctionfwd.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IParamFunctionfwd.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/LinkDef_GenVector.h,
	  mathcore/inc/Math/LinkDef_GenVector32.h,
	  mathcore/inc/Math/LinkDef_Point3D.h,
	  mathcore/inc/Math/LinkDef_Rotation.h,
	  mathcore/inc/Math/LinkDef_Vector3D.h,
	  mathcore/inc/Math/LinkDef_Vector4D.h,
	  mathcore/inc/Math/LorentzRotation.h,
	  mathcore/inc/Math/LorentzVector.h, mathcore/inc/Math/Math.h,
	  mathcore/inc/Math/PdfFunc.h, mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/Plane3D.h, mathcore/inc/Math/Point2D.h,
	  mathcore/inc/Math/Point2Dfwd.h, mathcore/inc/Math/Point3D.h,
	  mathcore/inc/Math/Point3Dfwd.h, mathcore/inc/Math/Polar2D.h,
	  mathcore/inc/Math/Polar3D.h,
	  mathcore/inc/Math/PositionVector2D.h,
	  mathcore/inc/Math/PositionVector3D.h,
	  mathcore/inc/Math/ProbFunc.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/PtEtaPhiE4D.h, mathcore/inc/Math/PtEtaPhiM4D.h,
	  mathcore/inc/Math/PxPyPzE4D.h, mathcore/inc/Math/PxPyPzM4D.h,
	  mathcore/inc/Math/Quaternion.h, mathcore/inc/Math/Rotation3D.h,
	  mathcore/inc/Math/RotationX.h, mathcore/inc/Math/RotationY.h,
	  mathcore/inc/Math/RotationZ.h, mathcore/inc/Math/RotationZYX.h,
	  mathcore/inc/Math/SpecFunc.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/Transform3D.h,
	  mathcore/inc/Math/Translation3D.h, mathcore/inc/Math/Util.h,
	  mathcore/inc/Math/Vector2D.h, mathcore/inc/Math/Vector2Dfwd.h,
	  mathcore/inc/Math/Vector3D.h, mathcore/inc/Math/Vector3Dfwd.h,
	  mathcore/inc/Math/Vector4D.h, mathcore/inc/Math/Vector4Dfwd.h,
	  mathcore/inc/Math/VectorUtil.h,
	  mathcore/inc/Math/VectorUtil_Cint.h,
	  mathcore/inc/Math/WrappedFunction.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/3DConversions.cxx, mathcore/src/3DDistances.cxx,
	  mathcore/src/AxisAngle.cxx, mathcore/src/AxisAngleXother.cxx,
	  mathcore/src/BitReproducible.cxx, mathcore/src/Boost.cxx,
	  mathcore/src/BoostX.cxx, mathcore/src/BoostY.cxx,
	  mathcore/src/BoostZ.cxx, mathcore/src/EulerAngles.cxx,
	  mathcore/src/GenVector_exception.cxx,
	  mathcore/src/LorentzRotation.cxx,
	  mathcore/src/PdfFuncMathCore.cxx, mathcore/src/Plane3D.cxx,
	  mathcore/src/ProbFuncMathCore.cxx, mathcore/src/Quaternion.cxx,
	  mathcore/src/QuaternionXaxial.cxx, mathcore/src/Rotation3D.cxx,
	  mathcore/src/Rotation3DxAxial.cxx, mathcore/src/RotationZYX.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathcore/src/Transform3D.cxx,
	  mathcore/src/Translation3D.cxx, mathcore/src/VectorUtil.cxx,
	  mathcore/test/stress2D.cxx, mathmore/build/Makefile.am,
	  mathmore/build/doc_Makefile.am, mathmore/build/inc_Makefile.am,
	  mathmore/build/inc_Math_GenVector_Makefile.am,
	  mathmore/build/inc_Math_Makefile.am,
	  mathmore/build/src_Makefile.am, mathmore/build/test_Makefile.am,
	  mathmore/inc/Math/Chebyshev.h, mathmore/inc/Math/Derivator.h,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLFunctionAdapter.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/GSLRootHelper.h,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/Integrator.h,
	  mathmore/inc/Math/InterpolationTypes.h,
	  mathmore/inc/Math/Interpolator.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_Func.h,
	  mathmore/inc/Math/LinkDef_RootFinding.h,
	  mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/Minimizer1D.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/ProbFuncMathMore.h, mathmore/inc/Math/Random.h,
	  mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/inc/Math/WrappedMultiTF1.h,
	  mathmore/inc/Math/WrappedTF1.h, mathmore/src/Chebyshev.cxx,
	  mathmore/src/Derivator.cxx, mathmore/src/GSL1DMinimizer.h,
	  mathmore/src/GSLChebSeries.h, mathmore/src/GSLDerivator.cxx,
	  mathmore/src/GSLDerivator.h, mathmore/src/GSLError.h,
	  mathmore/src/GSLFunctionWrapper.h,
	  mathmore/src/GSLIntegrationWorkspace.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLIntegrator.h,
	  mathmore/src/GSLInterpolator.cxx, mathmore/src/GSLInterpolator.h,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRootFSolver.h,
	  mathmore/src/GSLRootFdFSolver.h, mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx,
	  mathmore/src/GSLRootHelper.cxx, mathmore/src/Integrator.cxx,
	  mathmore/src/Interpolator.cxx, mathmore/src/Minimizer1D.cxx,
	  mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/ParamFunction.cxx, mathmore/src/PdfFuncMathMore.cxx,
	  mathmore/src/Polynomial.cxx, mathmore/src/ProbFuncInv.cxx,
	  mathmore/src/ProbFuncMathMore.cxx,
	  mathmore/src/RootFinderAlgorithms.cxx,
	  mathmore/src/SpecFuncMathMore.cxx,
	  mathmore/src/complex_quartic.h, matrix/inc/LinkDef.h,
	  matrix/inc/TDecompBK.h, matrix/inc/TDecompBase.h,
	  matrix/inc/TDecompChol.h, matrix/inc/TDecompLU.h,
	  matrix/inc/TDecompQRH.h, matrix/inc/TDecompSVD.h,
	  matrix/inc/TDecompSparse.h, matrix/inc/TMatrix.h,
	  matrix/inc/TMatrixDBase.h, matrix/inc/TMatrixDBasefwd.h,
	  matrix/inc/TMatrixDEigen.h, matrix/inc/TMatrixDLazy.h,
	  matrix/inc/TMatrixDSparse.h, matrix/inc/TMatrixDSym.h,
	  matrix/inc/TMatrixDSymEigen.h, matrix/inc/TMatrixDUtils.h,
	  matrix/inc/TMatrixDUtilsfwd.h, matrix/inc/TMatrixFBase.h,
	  matrix/inc/TMatrixFBasefwd.h, matrix/inc/TMatrixFLazy.h,
	  matrix/inc/TMatrixFSparse.h, matrix/inc/TMatrixFSym.h,
	  matrix/inc/TMatrixFUtils.h, matrix/inc/TMatrixFUtilsfwd.h,
	  matrix/inc/TMatrixT.h, matrix/inc/TMatrixTBase.h,
	  matrix/inc/TMatrixTCramerInv.h, matrix/inc/TMatrixTLazy.h,
	  matrix/inc/TMatrixTSparse.h, matrix/inc/TMatrixTSym.h,
	  matrix/inc/TMatrixTSymCramerInv.h, matrix/inc/TMatrixTUtils.h,
	  matrix/inc/TVector.h, matrix/inc/TVectorT.h,
	  matrix/src/TDecompBK.cxx, matrix/src/TDecompBase.cxx,
	  matrix/src/TDecompChol.cxx, matrix/src/TDecompLU.cxx,
	  matrix/src/TDecompQRH.cxx, matrix/src/TDecompSVD.cxx,
	  matrix/src/TDecompSparse.cxx, matrix/src/TMatrixDEigen.cxx,
	  matrix/src/TMatrixDSymEigen.cxx, matrix/src/TMatrixT.cxx,
	  matrix/src/TMatrixTBase.cxx, matrix/src/TMatrixTCramerInv.cxx,
	  matrix/src/TMatrixTLazy.cxx, matrix/src/TMatrixTSparse.cxx,
	  matrix/src/TMatrixTSym.cxx, matrix/src/TMatrixTSymCramerInv.cxx,
	  matrix/src/TMatrixTUtils.cxx, matrix/src/TVectorT.cxx,
	  meta/inc/LinkDef.h, meta/inc/TBaseClass.h, meta/inc/TCint.h,
	  meta/inc/TClass.h, meta/inc/TClassGenerator.h,
	  meta/inc/TClassMenuItem.h, meta/inc/TClassRef.h,
	  meta/inc/TClassStreamer.h, meta/inc/TDataMember.h,
	  meta/inc/TDataType.h, meta/inc/TDictionary.h,
	  meta/inc/TFunction.h, meta/inc/TGenericClassInfo.h,
	  meta/inc/TGlobal.h, meta/inc/TInterpreter.h,
	  meta/inc/TIsAProxy.h, meta/inc/TMemberStreamer.h,
	  meta/inc/TMethod.h, meta/inc/TMethodArg.h,
	  meta/inc/TMethodCall.h, meta/inc/TRealData.h,
	  meta/inc/TStreamer.h, meta/inc/TStreamerElement.h,
	  meta/inc/TVirtualIsAProxy.h, meta/inc/TVirtualRefProxy.h,
	  meta/inc/TVirtualStreamerInfo.h, meta/src/TBaseClass.cxx,
	  meta/src/TCint.cxx, meta/src/TClass.cxx,
	  meta/src/TClassGenerator.cxx, meta/src/TClassMenuItem.cxx,
	  meta/src/TClassRef.cxx, meta/src/TDataMember.cxx,
	  meta/src/TDataType.cxx, meta/src/TFunction.cxx,
	  meta/src/TGenericClassInfo.cxx, meta/src/TGlobal.cxx,
	  meta/src/TInterpreter.cxx, meta/src/TIsAProxy.cxx,
	  meta/src/TMethod.cxx, meta/src/TMethodArg.cxx,
	  meta/src/TMethodCall.cxx, meta/src/TRealData.cxx,
	  meta/src/TStreamerElement.cxx, meta/src/TToggle.cxx,
	  meta/src/TToggleGroup.cxx, meta/src/TVirtualStreamerInfo.cxx,
	  metautils/inc/TClassEdit.h, metautils/src/TClassEdit.cxx,
	  minuit/inc/LinkDef.h, minuit/inc/TFitter.h,
	  minuit/inc/TLinearFitter.h, minuit/inc/TMinuit.h,
	  minuit/src/TFitter.cxx, minuit/src/TLinearFitter.cxx,
	  minuit/src/TMinuit.cxx, minuit2/build/inc_Makefile.am,
	  minuit2/inc/LinkDef.h, minuit2/inc/Minuit2/ABObj.h,
	  minuit2/inc/Minuit2/ABProd.h, minuit2/inc/Minuit2/ABSum.h,
	  minuit2/inc/Minuit2/ABTypes.h,
	  minuit2/inc/Minuit2/AnalyticalGradientCalculator.h,
	  minuit2/inc/Minuit2/BasicFunctionGradient.h,
	  minuit2/inc/Minuit2/BasicFunctionMinimum.h,
	  minuit2/inc/Minuit2/BasicMinimumError.h,
	  minuit2/inc/Minuit2/BasicMinimumParameters.h,
	  minuit2/inc/Minuit2/BasicMinimumSeed.h,
	  minuit2/inc/Minuit2/BasicMinimumState.h,
	  minuit2/inc/Minuit2/CombinedMinimizer.h,
	  minuit2/inc/Minuit2/CombinedMinimumBuilder.h,
	  minuit2/inc/Minuit2/ContoursError.h,
	  minuit2/inc/Minuit2/DavidonErrorUpdator.h,
	  minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FCNGradientBase.h,
	  minuit2/inc/Minuit2/FumiliBuilder.h,
	  minuit2/inc/Minuit2/FumiliChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliErrorUpdator.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/FumiliGradientCalculator.h,
	  minuit2/inc/Minuit2/FumiliMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FumiliMinimizer.h,
	  minuit2/inc/Minuit2/FumiliStandardChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliStandardMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FunctionGradient.h,
	  minuit2/inc/Minuit2/FunctionMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/GenericFunction.h,
	  minuit2/inc/Minuit2/GradientCalculator.h,
	  minuit2/inc/Minuit2/HessianGradientCalculator.h,
	  minuit2/inc/Minuit2/InitialGradientCalculator.h,
	  minuit2/inc/Minuit2/LASymMatrix.h,
	  minuit2/inc/Minuit2/LAVector.h, minuit2/inc/Minuit2/LaInverse.h,
	  minuit2/inc/Minuit2/LaOuterProduct.h,
	  minuit2/inc/Minuit2/LaProd.h, minuit2/inc/Minuit2/LaSum.h,
	  minuit2/inc/Minuit2/MatrixInverse.h,
	  minuit2/inc/Minuit2/MinimumBuilder.h,
	  minuit2/inc/Minuit2/MinimumError.h,
	  minuit2/inc/Minuit2/MinimumErrorUpdator.h,
	  minuit2/inc/Minuit2/MinimumParameters.h,
	  minuit2/inc/Minuit2/MinimumSeed.h,
	  minuit2/inc/Minuit2/MinimumSeedGenerator.h,
	  minuit2/inc/Minuit2/MinimumState.h,
	  minuit2/inc/Minuit2/MinosError.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnConfig.h, minuit2/inc/Minuit2/MnContours.h,
	  minuit2/inc/Minuit2/MnCovarianceSqueeze.h,
	  minuit2/inc/Minuit2/MnCross.h, minuit2/inc/Minuit2/MnEigen.h,
	  minuit2/inc/Minuit2/MnFcn.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnFunctionCross.h,
	  minuit2/inc/Minuit2/MnGlobalCorrelationCoeff.h,
	  minuit2/inc/Minuit2/MnHesse.h,
	  minuit2/inc/Minuit2/MnLineSearch.h,
	  minuit2/inc/Minuit2/MnMachinePrecision.h,
	  minuit2/inc/Minuit2/MnMatrix.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinimize.h, minuit2/inc/Minuit2/MnMinos.h,
	  minuit2/inc/Minuit2/MnParabola.h,
	  minuit2/inc/Minuit2/MnParabolaFactory.h,
	  minuit2/inc/Minuit2/MnParabolaPoint.h,
	  minuit2/inc/Minuit2/MnParameterScan.h,
	  minuit2/inc/Minuit2/MnPlot.h, minuit2/inc/Minuit2/MnPosDef.h,
	  minuit2/inc/Minuit2/MnPrint.h,
	  minuit2/inc/Minuit2/MnRefCountedPointer.h,
	  minuit2/inc/Minuit2/MnReferenceCounter.h,
	  minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSeedGenerator.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnStrategy.h, minuit2/inc/Minuit2/MnTiny.h,
	  minuit2/inc/Minuit2/MnUserCovariance.h,
	  minuit2/inc/Minuit2/MnUserFcn.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/MnUserParameters.h,
	  minuit2/inc/Minuit2/MnUserTransformation.h,
	  minuit2/inc/Minuit2/MnVectorTransform.h,
	  minuit2/inc/Minuit2/ModularFunctionMinimizer.h,
	  minuit2/inc/Minuit2/NegativeG2LineSearch.h,
	  minuit2/inc/Minuit2/Numerical2PGradientCalculator.h,
	  minuit2/inc/Minuit2/ParametricFunction.h,
	  minuit2/inc/Minuit2/ScanBuilder.h,
	  minuit2/inc/Minuit2/ScanMinimizer.h,
	  minuit2/inc/Minuit2/SimplexBuilder.h,
	  minuit2/inc/Minuit2/SimplexMinimizer.h,
	  minuit2/inc/Minuit2/SimplexParameters.h,
	  minuit2/inc/Minuit2/SimplexSeedGenerator.h,
	  minuit2/inc/Minuit2/SinParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtLowParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtUpParameterTransformation.h,
	  minuit2/inc/Minuit2/StackAllocator.h,
	  minuit2/inc/Minuit2/VariableMetricBuilder.h,
	  minuit2/inc/Minuit2/VariableMetricEDMEstimator.h,
	  minuit2/inc/Minuit2/VariableMetricMinimizer.h,
	  minuit2/inc/Minuit2/VectorOuterProduct.h,
	  minuit2/inc/TBinLikelihoodFCN.h, minuit2/inc/TChi2ExtendedFCN.h,
	  minuit2/inc/TChi2ExtendedFitData.h, minuit2/inc/TChi2FCN.h,
	  minuit2/inc/TChi2FitData.h, minuit2/inc/TFcnAdapter.h,
	  minuit2/inc/TFitterFumili.h, minuit2/inc/TFitterMinuit.h,
	  minuit2/inc/TFumiliFCN.h,
	  minuit2/src/AnalyticalGradientCalculator.cxx,
	  minuit2/src/BasicMinimumError.cxx,
	  minuit2/src/CombinedMinimumBuilder.cxx,
	  minuit2/src/DavidonErrorUpdator.cxx, minuit2/src/FitterUtil.cxx,
	  minuit2/src/FitterUtil.h, minuit2/src/FumiliBuilder.cxx,
	  minuit2/src/FumiliErrorUpdator.cxx,
	  minuit2/src/FumiliGradientCalculator.cxx,
	  minuit2/src/FumiliMinimizer.cxx,
	  minuit2/src/FumiliStandardChi2FCN.cxx,
	  minuit2/src/FumiliStandardMaximumLikelihoodFCN.cxx,
	  minuit2/src/HessianGradientCalculator.cxx,
	  minuit2/src/InitialGradientCalculator.cxx,
	  minuit2/src/LaEigenValues.cxx, minuit2/src/LaInnerProduct.cxx,
	  minuit2/src/LaInverse.cxx, minuit2/src/LaOuterProduct.cxx,
	  minuit2/src/LaSumOfElements.cxx,
	  minuit2/src/LaVtMVSimilarity.cxx, minuit2/src/MnApplication.cxx,
	  minuit2/src/MnContours.cxx, minuit2/src/MnCovarianceSqueeze.cxx,
	  minuit2/src/MnEigen.cxx, minuit2/src/MnFcn.cxx,
	  minuit2/src/MnFumiliMinimize.cxx,
	  minuit2/src/MnFunctionCross.cxx,
	  minuit2/src/MnGlobalCorrelationCoeff.cxx,
	  minuit2/src/MnHesse.cxx, minuit2/src/MnLineSearch.cxx,
	  minuit2/src/MnMachinePrecision.cxx, minuit2/src/MnMinos.cxx,
	  minuit2/src/MnParabolaFactory.cxx,
	  minuit2/src/MnParameterScan.cxx, minuit2/src/MnPlot.cxx,
	  minuit2/src/MnPosDef.cxx, minuit2/src/MnPrint.cxx,
	  minuit2/src/MnScan.cxx, minuit2/src/MnSeedGenerator.cxx,
	  minuit2/src/MnStrategy.cxx, minuit2/src/MnTiny.cxx,
	  minuit2/src/MnUserFcn.cxx, minuit2/src/MnUserParameterState.cxx,
	  minuit2/src/MnUserParameters.cxx,
	  minuit2/src/MnUserTransformation.cxx,
	  minuit2/src/ModularFunctionMinimizer.cxx,
	  minuit2/src/NegativeG2LineSearch.cxx,
	  minuit2/src/Numerical2PGradientCalculator.cxx,
	  minuit2/src/ParametricFunction.cxx, minuit2/src/ScanBuilder.cxx,
	  minuit2/src/SimplexBuilder.cxx,
	  minuit2/src/SimplexParameters.cxx,
	  minuit2/src/SimplexSeedGenerator.cxx,
	  minuit2/src/SinParameterTransformation.cxx,
	  minuit2/src/SqrtLowParameterTransformation.cxx,
	  minuit2/src/SqrtUpParameterTransformation.cxx,
	  minuit2/src/TBinLikelihoodFCN.cxx,
	  minuit2/src/TChi2ExtendedFCN.cxx,
	  minuit2/src/TChi2ExtendedFitData.cxx, minuit2/src/TChi2FCN.cxx,
	  minuit2/src/TChi2FitData.cxx, minuit2/src/TFcnAdapter.cxx,
	  minuit2/src/TFitterFumili.cxx, minuit2/src/TFumiliFCN.cxx,
	  minuit2/src/VariableMetricBuilder.cxx,
	  minuit2/src/VariableMetricEDMEstimator.cxx,
	  minuit2/src/mnbins.cxx, minuit2/src/mndasum.cxx,
	  minuit2/src/mndaxpy.cxx, minuit2/src/mnddot.cxx,
	  minuit2/src/mndscal.cxx, minuit2/src/mndspmv.cxx,
	  minuit2/src/mndspr.cxx, minuit2/src/mnlsame.cxx,
	  minuit2/src/mnteigen.cxx, minuit2/src/mntplot.cxx,
	  minuit2/src/mnvert.cxx, minuit2/src/mnxerbla.cxx,
	  minuit2/test/MnSim/DemoFumili.cxx,
	  minuit2/test/MnSim/DemoGaussSim.cxx,
	  minuit2/test/MnSim/FlatRandomGen.h,
	  minuit2/test/MnSim/GaussDataGen.cxx,
	  minuit2/test/MnSim/GaussDataGen.h,
	  minuit2/test/MnSim/GaussFcn.cxx, minuit2/test/MnSim/GaussFcn.h,
	  minuit2/test/MnSim/GaussFcn2.cxx, minuit2/test/MnSim/GaussFcn2.h,
	  minuit2/test/MnSim/GaussFunction.h,
	  minuit2/test/MnSim/GaussRandomGen.h,
	  minuit2/test/MnSim/GaussianModelFunction.h,
	  minuit2/test/MnSim/PaulTest.cxx,
	  minuit2/test/MnSim/PaulTest2.cxx,
	  minuit2/test/MnSim/PaulTest3.cxx,
	  minuit2/test/MnSim/PaulTest4.cxx,
	  minuit2/test/MnSim/ReneTest.cxx,
	  minuit2/test/MnTutorial/Quad12F.h,
	  minuit2/test/MnTutorial/Quad12FMain.cxx,
	  minuit2/test/MnTutorial/Quad1F.h,
	  minuit2/test/MnTutorial/Quad1FMain.cxx,
	  minuit2/test/MnTutorial/Quad4F.h,
	  minuit2/test/MnTutorial/Quad4FMain.cxx,
	  minuit2/test/MnTutorial/Quad8F.h,
	  minuit2/test/MnTutorial/Quad8FMain.cxx,
	  minuit2/test/testGraph.cxx, minuit2/test/testMinimize.cxx,
	  minuit2/test/testUserFunc.cxx, mlp/inc/TMLPAnalyzer.h,
	  mlp/inc/TMultiLayerPerceptron.h, mlp/inc/TNeuron.h,
	  mlp/inc/TSynapse.h, mlp/src/TMLPAnalyzer.cxx,
	  mlp/src/TMultiLayerPerceptron.cxx, mlp/src/TNeuron.cxx,
	  mlp/src/TSynapse.cxx, monalisa/inc/TMonaLisaReader.h,
	  monalisa/inc/TMonaLisaWriter.h, monalisa/src/TMonaLisaReader.cxx,
	  monalisa/src/TMonaLisaWriter.cxx, mysql/inc/TMySQLResult.h,
	  mysql/inc/TMySQLRow.h, mysql/inc/TMySQLServer.h,
	  mysql/inc/TMySQLStatement.h, mysql/src/TMySQLServer.cxx,
	  mysql/src/TMySQLStatement.cxx, net/inc/LinkDef.h,
	  net/inc/NetErrors.h, net/inc/RRemoteProtocol.h,
	  net/inc/TApplicationRemote.h, net/inc/TApplicationServer.h,
	  net/inc/TFTP.h, net/inc/TFileStager.h, net/inc/TGrid.h,
	  net/inc/TGridCollection.h, net/inc/TGridJDL.h,
	  net/inc/TGridJob.h, net/inc/TGridJobStatus.h,
	  net/inc/TGridJobStatusList.h, net/inc/TGridResult.h,
	  net/inc/TMessage.h, net/inc/TMonitor.h, net/inc/TNetFile.h,
	  net/inc/TPServerSocket.h, net/inc/TPSocket.h,
	  net/inc/TSQLColumnInfo.h, net/inc/TSQLMonitoring.h,
	  net/inc/TSQLResult.h, net/inc/TSQLServer.h,
	  net/inc/TSQLStatement.h, net/inc/TSQLTableInfo.h,
	  net/inc/TSecContext.h, net/inc/TServerSocket.h,
	  net/inc/TSocket.h, net/inc/TWebFile.h, net/src/NetErrors.cxx,
	  net/src/TApplicationRemote.cxx, net/src/TApplicationServer.cxx,
	  net/src/TFTP.cxx, net/src/TFileStager.cxx, net/src/TGrid.cxx,
	  net/src/TGridJDL.cxx, net/src/TGridJob.cxx,
	  net/src/TGridJobStatus.cxx, net/src/TGridJobStatusList.cxx,
	  net/src/TGridResult.cxx, net/src/TMessage.cxx,
	  net/src/TMonitor.cxx, net/src/TNetFile.cxx,
	  net/src/TPServerSocket.cxx, net/src/TPSocket.cxx,
	  net/src/TSQLColumnInfo.cxx, net/src/TSQLMonitoring.cxx,
	  net/src/TSQLServer.cxx, net/src/TSQLStatement.cxx,
	  net/src/TSQLTableInfo.cxx, net/src/TSecContext.cxx,
	  net/src/TServerSocket.cxx, net/src/TSocket.cxx,
	  net/src/TWebFile.cxx, netx/inc/LinkDef.h, netx/inc/TXNetFile.h,
	  netx/inc/TXNetFileStager.h, netx/inc/TXNetSystem.h,
	  netx/src/TXNetFile.cxx, netx/src/TXNetFileStager.cxx,
	  netx/src/TXNetSystem.cxx, newdelete/inc/MemCheck.h,
	  newdelete/src/MemCheck.cxx, newdelete/src/NewDelete.cxx,
	  odbc/inc/TODBCResult.h, odbc/inc/TODBCRow.h,
	  odbc/inc/TODBCServer.h, odbc/inc/TODBCStatement.h,
	  odbc/src/TODBCResult.cxx, odbc/src/TODBCRow.cxx,
	  odbc/src/TODBCServer.cxx, odbc/src/TODBCStatement.cxx,
	  oracle/inc/LinkDef.h, oracle/inc/TOracleResult.h,
	  oracle/inc/TOracleRow.h, oracle/inc/TOracleServer.h,
	  oracle/inc/TOracleStatement.h, oracle/src/TOracleResult.cxx,
	  oracle/src/TOracleRow.cxx, oracle/src/TOracleServer.cxx,
	  oracle/src/TOracleStatement.cxx, peac/inc/LinkDef.h,
	  peac/inc/LinkDefGui.h, peac/inc/TPEAC.h, peac/inc/TProofPEAC.h,
	  peac/inc/TProofStartupDialog.h, peac/src/TPEAC.cxx,
	  peac/src/TProofPEAC.cxx, peac/src/TProofStartupDialog.cxx,
	  pgsql/inc/TPgSQLResult.h, pgsql/inc/TPgSQLRow.h,
	  pgsql/inc/TPgSQLServer.h, pgsql/inc/TPgSQLStatement.h,
	  pgsql/src/TPgSQLResult.cxx, pgsql/src/TPgSQLRow.cxx,
	  pgsql/src/TPgSQLServer.cxx, pgsql/src/TPgSQLStatement.cxx,
	  physics/inc/LinkDef.h, physics/inc/TFeldmanCousins.h,
	  physics/inc/TGenPhaseSpace.h, physics/inc/TLorentzRotation.h,
	  physics/inc/TLorentzVector.h, physics/inc/TQuaternion.h,
	  physics/inc/TRobustEstimator.h, physics/inc/TRolke.h,
	  physics/inc/TRotation.h, physics/inc/TVector2.h,
	  physics/inc/TVector3.h, physics/src/TFeldmanCousins.cxx,
	  physics/src/TGenPhaseSpace.cxx, physics/src/TLorentzRotation.cxx,
	  physics/src/TLorentzVector.cxx, physics/src/TQuaternion.cxx,
	  physics/src/TRobustEstimator.cxx, physics/src/TRolke.cxx,
	  physics/src/TRotation.cxx, physics/src/TVector2.cxx,
	  physics/src/TVector3.cxx, postscript/inc/LinkDef.h,
	  postscript/inc/TImageDump.h, postscript/inc/TPDF.h,
	  postscript/inc/TPostScript.h, postscript/inc/TSVG.h,
	  postscript/src/TImageDump.cxx, postscript/src/TPDF.cxx,
	  postscript/src/TPostScript.cxx, postscript/src/TSVG.cxx,
	  proof/inc/LinkDef.h, proof/inc/TCondor.h, proof/inc/TDSet.h,
	  proof/inc/TDSetProxy.h, proof/inc/TProof.h,
	  proof/inc/TProofChain.h, proof/inc/TProofCondor.h,
	  proof/inc/TProofDebug.h, proof/inc/TProofLog.h,
	  proof/inc/TProofMgr.h, proof/inc/TProofNodeInfo.h,
	  proof/inc/TProofQueryResult.h, proof/inc/TProofResources.h,
	  proof/inc/TProofResourcesStatic.h, proof/inc/TProofServ.h,
	  proof/inc/TProofSuperMaster.h, proof/inc/TSlave.h,
	  proof/inc/TVirtualProofPlayer.h, proof/src/TCondor.cxx,
	  proof/src/TDSet.cxx, proof/src/TDSetProxy.cxx,
	  proof/src/TProof.cxx, proof/src/TProofChain.cxx,
	  proof/src/TProofCondor.cxx, proof/src/TProofDebug.cxx,
	  proof/src/TProofLog.cxx, proof/src/TProofMgr.cxx,
	  proof/src/TProofNodeInfo.cxx, proof/src/TProofQueryResult.cxx,
	  proof/src/TProofResourcesStatic.cxx, proof/src/TProofServ.cxx,
	  proof/src/TProofSuperMaster.cxx, proof/src/TSlave.cxx,
	  proof/src/TVirtualProofPlayer.cxx, proofd/inc/XProofProtUtils.h,
	  proofd/inc/XProofProtocol.h, proofd/inc/XrdProofConn.h,
	  proofd/inc/XrdProofGroup.h, proofd/inc/XrdProofPhyConn.h,
	  proofd/inc/XrdProofSched.h, proofd/inc/XrdProofServProxy.h,
	  proofd/inc/XrdProofWorker.h, proofd/inc/XrdProofdAux.h,
	  proofd/inc/XrdProofdClient.h, proofd/inc/XrdProofdManager.h,
	  proofd/inc/XrdProofdPlatform.h, proofd/inc/XrdProofdProtocol.h,
	  proofd/inc/XrdProofdResponse.h, proofd/inc/XrdProofdTrace.h,
	  proofd/inc/XrdROOT.h, proofd/inc/proofdp.h,
	  proofd/src/XProofProtUtils.cxx, proofd/src/XrdProofConn.cxx,
	  proofd/src/XrdProofGroup.cxx, proofd/src/XrdProofPhyConn.cxx,
	  proofd/src/XrdProofSched.cxx, proofd/src/XrdProofServProxy.cxx,
	  proofd/src/XrdProofWorker.cxx, proofd/src/XrdProofdAux.cxx,
	  proofd/src/XrdProofdClient.cxx, proofd/src/XrdProofdManager.cxx,
	  proofd/src/XrdProofdProtocol.cxx,
	  proofd/src/XrdProofdResponse.cxx, proofd/src/XrdROOT.cxx,
	  proofd/src/proofd.cxx, proofplayer/inc/LinkDef.h,
	  proofplayer/inc/LinkDefDraw.h,
	  proofplayer/inc/TAdaptivePacketizer.h,
	  proofplayer/inc/TDrawFeedback.h, proofplayer/inc/TEventIter.h,
	  proofplayer/inc/TFileMerger.h, proofplayer/inc/TPacketizer.h,
	  proofplayer/inc/TPacketizerProgressive.h,
	  proofplayer/inc/TPerfStats.h, proofplayer/inc/TProofDraw.h,
	  proofplayer/inc/TProofLimitsFinder.h,
	  proofplayer/inc/TProofPlayer.h, proofplayer/inc/TStatus.h,
	  proofplayer/inc/TVirtualPacketizer.h,
	  proofplayer/src/TAdaptivePacketizer.cxx,
	  proofplayer/src/TDrawFeedback.cxx,
	  proofplayer/src/TEventIter.cxx, proofplayer/src/TFileMerger.cxx,
	  proofplayer/src/TPacketizer.cxx,
	  proofplayer/src/TPacketizerProgressive.cxx,
	  proofplayer/src/TPerfStats.cxx, proofplayer/src/TProofDraw.cxx,
	  proofplayer/src/TProofLimitsFinder.cxx,
	  proofplayer/src/TProofPlayer.cxx, proofplayer/src/TStatus.cxx,
	  proofplayer/src/TVirtualPacketizer.cxx, proofx/inc/LinkDef.h,
	  proofx/inc/TXHandler.h, proofx/inc/TXProofMgr.h,
	  proofx/inc/TXProofServ.h, proofx/inc/TXSlave.h,
	  proofx/inc/TXSocket.h, proofx/inc/TXSocketHandler.h,
	  proofx/inc/TXUnixSocket.h, proofx/src/TXHandler.cxx,
	  proofx/src/TXProofMgr.cxx, proofx/src/TXProofServ.cxx,
	  proofx/src/TXSlave.cxx, proofx/src/TXSocket.cxx,
	  proofx/src/TXSocketHandler.cxx, proofx/src/TXUnixSocket.cxx,
	  pyroot/ROOT.py, pyroot/inc/TPyException.h,
	  pyroot/inc/TPyReturn.h, pyroot/inc/TPython.h,
	  pyroot/src/ClassMethodHolder.cxx, pyroot/src/ClassMethodHolder.h,
	  pyroot/src/ConstructorHolder.cxx, pyroot/src/ConstructorHolder.h,
	  pyroot/src/Converters.cxx, pyroot/src/Converters.h,
	  pyroot/src/Executors.cxx, pyroot/src/Executors.h,
	  pyroot/src/MemoryRegulator.cxx, pyroot/src/MemoryRegulator.h,
	  pyroot/src/MethodHolder.cxx, pyroot/src/MethodHolder.h,
	  pyroot/src/MethodProxy.cxx, pyroot/src/MethodProxy.h,
	  pyroot/src/ObjectProxy.cxx, pyroot/src/ObjectProxy.h,
	  pyroot/src/PropertyProxy.cxx, pyroot/src/PropertyProxy.h,
	  pyroot/src/PyBufferFactory.cxx, pyroot/src/PyBufferFactory.h,
	  pyroot/src/PyCallable.h, pyroot/src/PyROOT.h,
	  pyroot/src/PyRootType.cxx, pyroot/src/PyRootType.h,
	  pyroot/src/Pythonize.cxx, pyroot/src/Pythonize.h,
	  pyroot/src/RootModule.cxx, pyroot/src/RootWrapper.cxx,
	  pyroot/src/RootWrapper.h, pyroot/src/TPyClassGenerator.cxx,
	  pyroot/src/TPyClassGenerator.h, pyroot/src/TPyException.cxx,
	  pyroot/src/TPyReturn.cxx, pyroot/src/TPython.cxx,
	  pyroot/src/Utility.cxx, pyroot/src/Utility.h,
	  pythia6/inc/LinkDef.h, pythia6/inc/TMCParticle.h,
	  pythia6/inc/TPythia6.h, pythia6/inc/TPythia6Calls.h,
	  pythia6/inc/TPythia6Decayer.h, pythia6/src/TMCParticle.cxx,
	  pythia6/src/TPythia6.cxx, pythia6/src/TPythia6Decayer.cxx,
	  qt/inc/LinkDef.h, qt/inc/TGQt.h, qt/inc/TObjectExecute.h,
	  qt/inc/TQMimeTypes.h, qt/inc/TQUserEvent.h,
	  qt/inc/TQtApplication.h, qt/inc/TQtBrush.h,
	  qt/inc/TQtClientFilter.h, qt/inc/TQtClientGuard.h,
	  qt/inc/TQtClientWidget.h, qt/inc/TQtEmitter.h, qt/inc/TQtEvent.h,
	  qt/inc/TQtEventQueue.h, qt/inc/TQtLock.h, qt/inc/TQtMarker.h,
	  qt/inc/TQtRootApplication.h, qt/inc/TQtRootSlot.h,
	  qt/inc/TQtTimer.h, qt/inc/TQtUtil.h, qt/inc/TQtWidget.h,
	  qt/inc/TVirtualX.interface.h, qt/inc/TWaitCondition.h,
	  qt/src/GQtGUI.cxx, qt/src/TGQt.cxx, qt/src/TGQtDummy.cxx,
	  qt/src/TQMimeTypes.cxx, qt/src/TQtApplication.cxx,
	  qt/src/TQtBrush.cxx, qt/src/TQtClientFilter.cxx,
	  qt/src/TQtClientGuard.cxx, qt/src/TQtClientWidget.cxx,
	  qt/src/TQtEvent.cxx, qt/src/TQtEventQueue.cxx,
	  qt/src/TQtMarker.cxx, qt/src/TQtRootApplication.cxx,
	  qt/src/TQtRootSlot.cxx, qt/src/TQtTimer.cxx,
	  qt/src/TQtWidget.cxx, qtgsi/inc/TQApplication.h,
	  qtgsi/inc/TQCanvasImp.h, qtgsi/inc/TQCanvasMenu.h,
	  qtgsi/inc/TQRootApplication.h, qtgsi/inc/TQRootCanvas.h,
	  qtgsi/inc/TQRootDialog.h, qtgsi/inc/TQRootGuiFactory.h,
	  qtgsi/src/TQApplication.cxx, qtgsi/src/TQCanvasImp.cxx,
	  qtgsi/src/TQCanvasMenu.cxx, qtgsi/src/TQRootApplication.cxx,
	  qtgsi/src/TQRootCanvas.cxx, qtgsi/src/TQRootDialog.cxx,
	  qtgsi/src/TQRootGuiFactory.cxx, qtroot/inc/LinkDef.h,
	  quadp/inc/LinkDef.h, quadp/inc/TGondzioSolver.h,
	  quadp/inc/TMehrotraSolver.h, quadp/inc/TQpDataBase.h,
	  quadp/inc/TQpDataDens.h, quadp/inc/TQpDataSparse.h,
	  quadp/inc/TQpLinSolverBase.h, quadp/inc/TQpLinSolverDens.h,
	  quadp/inc/TQpLinSolverSparse.h, quadp/inc/TQpProbBase.h,
	  quadp/inc/TQpProbDens.h, quadp/inc/TQpProbSparse.h,
	  quadp/inc/TQpResidual.h, quadp/inc/TQpSolverBase.h,
	  quadp/inc/TQpVar.h, quadp/src/TGondzioSolver.cxx,
	  quadp/src/TMehrotraSolver.cxx, quadp/src/TQpDataBase.cxx,
	  quadp/src/TQpDataDens.cxx, quadp/src/TQpDataSparse.cxx,
	  quadp/src/TQpLinSolverBase.cxx, quadp/src/TQpLinSolverDens.cxx,
	  quadp/src/TQpLinSolverSparse.cxx, quadp/src/TQpProbBase.cxx,
	  quadp/src/TQpProbDens.cxx, quadp/src/TQpProbSparse.cxx,
	  quadp/src/TQpResidual.cxx, quadp/src/TQpSolverBase.cxx,
	  quadp/src/TQpVar.cxx, reflex/inc/LinkDef.h,
	  reflex/inc/Reflex/Any.h, reflex/inc/Reflex/Base.h,
	  reflex/inc/Reflex/Builder/ClassBuilder.h,
	  reflex/inc/Reflex/Builder/CollectionProxy.h,
	  reflex/inc/Reflex/Builder/DictSelection.h,
	  reflex/inc/Reflex/Builder/EnumBuilder.h,
	  reflex/inc/Reflex/Builder/FunctionBuilder.h,
	  reflex/inc/Reflex/Builder/NamespaceBuilder.h,
	  reflex/inc/Reflex/Builder/ReflexBuilder.h,
	  reflex/inc/Reflex/Builder/TypeBuilder.h,
	  reflex/inc/Reflex/Builder/TypedefBuilder.h,
	  reflex/inc/Reflex/Builder/UnionBuilder.h,
	  reflex/inc/Reflex/Builder/VariableBuilder.h,
	  reflex/inc/Reflex/Callback.h,
	  reflex/inc/Reflex/DictionaryGenerator.h,
	  reflex/inc/Reflex/Kernel.h, reflex/inc/Reflex/Member.h,
	  reflex/inc/Reflex/MemberTemplate.h, reflex/inc/Reflex/Object.h,
	  reflex/inc/Reflex/PluginService.h,
	  reflex/inc/Reflex/PropertyList.h, reflex/inc/Reflex/Reflex.h,
	  reflex/inc/Reflex/Scope.h, reflex/inc/Reflex/SharedLibrary.h,
	  reflex/inc/Reflex/Tools.h, reflex/inc/Reflex/Type.h,
	  reflex/inc/Reflex/TypeTemplate.h,
	  reflex/inc/Reflex/ValueObject.h,
	  reflex/inc/Reflex/internal/InternalTools.h,
	  reflex/inc/Reflex/internal/MemberBase.h,
	  reflex/inc/Reflex/internal/MemberTemplateImpl.h,
	  reflex/inc/Reflex/internal/MemberTemplateName.h,
	  reflex/inc/Reflex/internal/OwnedMember.h,
	  reflex/inc/Reflex/internal/OwnedMemberTemplate.h,
	  reflex/inc/Reflex/internal/OwnedPropertyList.h,
	  reflex/inc/Reflex/internal/PropertyListImpl.h,
	  reflex/inc/Reflex/internal/ScopeBase.h,
	  reflex/inc/Reflex/internal/ScopeName.h,
	  reflex/inc/Reflex/internal/TypeBase.h,
	  reflex/inc/Reflex/internal/TypeName.h,
	  reflex/inc/Reflex/internal/TypeTemplateImpl.h,
	  reflex/inc/Reflex/internal/TypeTemplateName.h,
	  reflex/src/Any.cxx, reflex/src/Array.cxx, reflex/src/Array.h,
	  reflex/src/Base.cxx, reflex/src/Callback.cxx,
	  reflex/src/Class.cxx, reflex/src/Class.h,
	  reflex/src/ClassBuilder.cxx,
	  reflex/src/ClassTemplateInstance.cxx,
	  reflex/src/ClassTemplateInstance.h, reflex/src/DataMember.cxx,
	  reflex/src/DataMember.h, reflex/src/DictionaryGenerator.cxx,
	  reflex/src/Enum.cxx, reflex/src/Enum.h,
	  reflex/src/EnumBuilder.cxx, reflex/src/FuncHandler.cxx,
	  reflex/src/FuncHandler.h, reflex/src/Function.cxx,
	  reflex/src/Function.h, reflex/src/FunctionBuilder.cxx,
	  reflex/src/FunctionMember.cxx, reflex/src/FunctionMember.h,
	  reflex/src/FunctionMemberTemplateInstance.cxx,
	  reflex/src/FunctionMemberTemplateInstance.h,
	  reflex/src/Fundamental.cxx, reflex/src/Fundamental.h,
	  reflex/src/Kernel.cxx, reflex/src/Member.cxx,
	  reflex/src/MemberBase.cxx, reflex/src/MemberTemplate.cxx,
	  reflex/src/MemberTemplateImpl.cxx,
	  reflex/src/MemberTemplateName.cxx, reflex/src/NameLookup.cxx,
	  reflex/src/NameLookup.h, reflex/src/Namespace.cxx,
	  reflex/src/Namespace.h, reflex/src/NamespaceBuilder.cxx,
	  reflex/src/Object.cxx, reflex/src/PluginFactoryMap.cxx,
	  reflex/src/PluginFactoryMap.h, reflex/src/PluginService.cxx,
	  reflex/src/Pointer.cxx, reflex/src/Pointer.h,
	  reflex/src/PointerToMember.cxx, reflex/src/PointerToMember.h,
	  reflex/src/PropertyList.cxx, reflex/src/PropertyListImpl.cxx,
	  reflex/src/Scope.cxx, reflex/src/ScopeBase.cxx,
	  reflex/src/ScopeName.cxx, reflex/src/TemplateInstance.cxx,
	  reflex/src/TemplateInstance.h, reflex/src/Tools.cxx,
	  reflex/src/Type.cxx, reflex/src/TypeBase.cxx,
	  reflex/src/TypeBuilder.cxx, reflex/src/TypeName.cxx,
	  reflex/src/TypeTemplate.cxx, reflex/src/TypeTemplateImpl.cxx,
	  reflex/src/TypeTemplateName.cxx, reflex/src/Typedef.cxx,
	  reflex/src/Typedef.h, reflex/src/TypedefBuilder.cxx,
	  reflex/src/Union.cxx, reflex/src/Union.h,
	  reflex/src/UnionBuilder.cxx, reflex/src/VariableBuilder.cxx,
	  reflex/src/dir_manip.h, reflex/src/stl_hash.h,
	  reflex/test/dictionary_generator.cpp,
	  reflex/test/test_ReflexBuilder_unit.cxx,
	  reflex/test/test_Reflex_generate.cxx,
	  reflex/test/test_Reflex_lookup.cxx,
	  reflex/test/test_Reflex_plugins.cxx,
	  reflex/test/test_Reflex_simple1.cxx,
	  reflex/test/test_Reflex_simple2.cxx,
	  reflex/test/test_Reflex_unit.cxx, rfio/inc/LinkDef.h,
	  rfio/inc/TRFIOFile.h, rfio/src/TRFIOFile.cxx, rint/inc/TRint.h,
	  rint/inc/TTabCom.h, rint/src/TRint.cxx, rint/src/TTabCom.cxx,
	  roofit/src/Roo2DKeysPdf.cxx, roofit/src/RooArgusBG.cxx,
	  roofit/src/RooBCPEffDecay.cxx, roofit/src/RooBCPGenDecay.cxx,
	  roofit/src/RooBDecay.cxx, roofit/src/RooBMixDecay.cxx,
	  roofit/src/RooBifurGauss.cxx, roofit/src/RooBlindTools.cxx,
	  roofit/src/RooBreitWigner.cxx, roofit/src/RooBukinPdf.cxx,
	  roofit/src/RooCBShape.cxx, roofit/src/RooChebychev.cxx,
	  roofit/src/RooDecay.cxx, roofit/src/RooDstD0BG.cxx,
	  roofit/src/RooExponential.cxx, roofit/src/RooGExpModel.cxx,
	  roofit/src/RooGaussModel.cxx, roofit/src/RooGaussian.cxx,
	  roofit/src/RooHistPdf.cxx, roofit/src/RooKeysPdf.cxx,
	  roofit/src/RooLandau.cxx, roofit/src/RooNonCPEigenDecay.cxx,
	  roofit/src/RooNovosibirsk.cxx,
	  roofit/src/RooParametricStepFunction.cxx,
	  roofit/src/RooPolynomial.cxx, roofit/src/RooUnblindCPAsymVar.cxx,
	  roofit/src/RooUnblindOffset.cxx,
	  roofit/src/RooUnblindPrecision.cxx,
	  roofit/src/RooUnblindUniform.cxx, roofit/src/RooVoigtian.cxx,
	  roofitcore/src/Roo1DTable.cxx, roofitcore/src/RooAICRegistry.cxx,
	  roofitcore/src/RooAbsAnaConvPdf.cxx,
	  roofitcore/src/RooAbsArg.cxx, roofitcore/src/RooAbsBinning.cxx,
	  roofitcore/src/RooAbsCategory.cxx,
	  roofitcore/src/RooAbsCategoryLValue.cxx,
	  roofitcore/src/RooAbsCollection.cxx,
	  roofitcore/src/RooAbsData.cxx, roofitcore/src/RooAbsFunc.cxx,
	  roofitcore/src/RooAbsGenContext.cxx,
	  roofitcore/src/RooAbsGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsHiddenReal.cxx,
	  roofitcore/src/RooAbsIntegrator.cxx,
	  roofitcore/src/RooAbsLValue.cxx,
	  roofitcore/src/RooAbsMCStudyModule.cxx,
	  roofitcore/src/RooAbsOptGoodnessOfFit.cxx,
	  roofitcore/src/RooAbsPdf.cxx, roofitcore/src/RooAbsProxy.cxx,
	  roofitcore/src/RooAbsReal.cxx,
	  roofitcore/src/RooAbsRealLValue.cxx,
	  roofitcore/src/RooAbsRootFinder.cxx,
	  roofitcore/src/RooAbsString.cxx,
	  roofitcore/src/RooAcceptReject.cxx,
	  roofitcore/src/RooAdaptiveGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooAddGenContext.cxx,
	  roofitcore/src/RooAddModel.cxx, roofitcore/src/RooAddPdf.cxx,
	  roofitcore/src/RooAddition.cxx, roofitcore/src/RooArgList.cxx,
	  roofitcore/src/RooArgProxy.cxx, roofitcore/src/RooArgSet.cxx,
	  roofitcore/src/RooBinning.cxx,
	  roofitcore/src/RooBrentRootFinder.cxx,
	  roofitcore/src/RooCatType.cxx, roofitcore/src/RooCategory.cxx,
	  roofitcore/src/RooCategoryProxy.cxx,
	  roofitcore/src/RooCategorySharedProperties.cxx,
	  roofitcore/src/RooChi2Var.cxx,
	  roofitcore/src/RooClassFactory.cxx, roofitcore/src/RooCmdArg.cxx,
	  roofitcore/src/RooCmdConfig.cxx, roofitcore/src/RooComplex.cxx,
	  roofitcore/src/RooConstVar.cxx,
	  roofitcore/src/RooConvCoefVar.cxx,
	  roofitcore/src/RooConvGenContext.cxx,
	  roofitcore/src/RooConvIntegrandBinding.cxx,
	  roofitcore/src/RooCurve.cxx, roofitcore/src/RooCustomizer.cxx,
	  roofitcore/src/RooDLLSignificanceMCSModule.cxx,
	  roofitcore/src/RooDataHist.cxx,
	  roofitcore/src/RooDataProjBinding.cxx,
	  roofitcore/src/RooDataSet.cxx, roofitcore/src/RooDirItem.cxx,
	  roofitcore/src/RooDouble.cxx,
	  roofitcore/src/RooEffGenContext.cxx,
	  roofitcore/src/RooEffProd.cxx, roofitcore/src/RooEfficiency.cxx,
	  roofitcore/src/RooEllipse.cxx, roofitcore/src/RooErrorVar.cxx,
	  roofitcore/src/RooExtendPdf.cxx, roofitcore/src/RooFitResult.cxx,
	  roofitcore/src/RooFormula.cxx, roofitcore/src/RooFormulaVar.cxx,
	  roofitcore/src/RooGaussKronrodIntegrator1D.cxx,
	  roofitcore/src/RooGenCategory.cxx,
	  roofitcore/src/RooGenContext.cxx,
	  roofitcore/src/RooGenProdProj.cxx,
	  roofitcore/src/RooGenericPdf.cxx,
	  roofitcore/src/RooGlobalFunc.cxx,
	  roofitcore/src/RooGraphEdge.cxx, roofitcore/src/RooGraphNode.cxx,
	  roofitcore/src/RooGraphSpring.cxx, roofitcore/src/RooGrid.cxx,
	  roofitcore/src/RooHashTable.cxx, roofitcore/src/RooHist.cxx,
	  roofitcore/src/RooHistError.cxx, roofitcore/src/RooHtml.cxx,
	  roofitcore/src/RooImproperIntegrator1D.cxx,
	  roofitcore/src/RooInt.cxx, roofitcore/src/RooIntegrator1D.cxx,
	  roofitcore/src/RooIntegrator2D.cxx,
	  roofitcore/src/RooIntegratorBinding.cxx,
	  roofitcore/src/RooInvTransform.cxx,
	  roofitcore/src/RooLinTransBinning.cxx,
	  roofitcore/src/RooLinearVar.cxx,
	  roofitcore/src/RooLinkedList.cxx,
	  roofitcore/src/RooLinkedListElem.cxx,
	  roofitcore/src/RooLinkedListIter.cxx, roofitcore/src/RooList.cxx,
	  roofitcore/src/RooListProxy.cxx,
	  roofitcore/src/RooMCIntegrator.cxx,
	  roofitcore/src/RooMCStudy.cxx, roofitcore/src/RooMPSentinel.cxx,
	  roofitcore/src/RooMapCatEntry.cxx,
	  roofitcore/src/RooMappedCategory.cxx, roofitcore/src/RooMath.cxx,
	  roofitcore/src/RooMinuit.cxx, roofitcore/src/RooMsgService.cxx,
	  roofitcore/src/RooMultiCatIter.cxx,
	  roofitcore/src/RooMultiCategory.cxx,
	  roofitcore/src/RooNLLVar.cxx, roofitcore/src/RooNameReg.cxx,
	  roofitcore/src/RooNameSet.cxx,
	  roofitcore/src/RooNormListManager.cxx,
	  roofitcore/src/RooNormManager.cxx,
	  roofitcore/src/RooNormSetCache.cxx,
	  roofitcore/src/RooNumConvPdf.cxx,
	  roofitcore/src/RooNumConvolution.cxx,
	  roofitcore/src/RooNumIntConfig.cxx,
	  roofitcore/src/RooNumIntFactory.cxx,
	  roofitcore/src/RooNumber.cxx, roofitcore/src/RooPlot.cxx,
	  roofitcore/src/RooPlotable.cxx, roofitcore/src/RooPolyVar.cxx,
	  roofitcore/src/RooPrintable.cxx,
	  roofitcore/src/RooProdGenContext.cxx,
	  roofitcore/src/RooProdPdf.cxx, roofitcore/src/RooProduct.cxx,
	  roofitcore/src/RooPullVar.cxx,
	  roofitcore/src/RooQuasiRandomGenerator.cxx,
	  roofitcore/src/RooRandom.cxx,
	  roofitcore/src/RooRandomizeParamMCSModule.cxx,
	  roofitcore/src/RooRangeBinning.cxx,
	  roofitcore/src/RooRealAnalytic.cxx,
	  roofitcore/src/RooRealBinding.cxx,
	  roofitcore/src/RooRealConstant.cxx,
	  roofitcore/src/RooRealIntegral.cxx,
	  roofitcore/src/RooRealMPFE.cxx, roofitcore/src/RooRealProxy.cxx,
	  roofitcore/src/RooRealSumPdf.cxx, roofitcore/src/RooRealVar.cxx,
	  roofitcore/src/RooRealVarSharedProperties.cxx,
	  roofitcore/src/RooRefCountList.cxx,
	  roofitcore/src/RooResolutionModel.cxx,
	  roofitcore/src/RooScaledFunc.cxx,
	  roofitcore/src/RooSegmentedIntegrator1D.cxx,
	  roofitcore/src/RooSegmentedIntegrator2D.cxx,
	  roofitcore/src/RooSetPair.cxx, roofitcore/src/RooSetProxy.cxx,
	  roofitcore/src/RooSharedProperties.cxx,
	  roofitcore/src/RooSharedPropertiesList.cxx,
	  roofitcore/src/RooSimGenContext.cxx,
	  roofitcore/src/RooSimPdfBuilder.cxx,
	  roofitcore/src/RooSimultaneous.cxx,
	  roofitcore/src/RooStreamParser.cxx,
	  roofitcore/src/RooStringVar.cxx,
	  roofitcore/src/RooSuperCategory.cxx,
	  roofitcore/src/RooTObjWrap.cxx, roofitcore/src/RooTable.cxx,
	  roofitcore/src/RooThreshEntry.cxx,
	  roofitcore/src/RooThresholdCategory.cxx,
	  roofitcore/src/RooTrace.cxx, roofitcore/src/RooTreeData.cxx,
	  roofitcore/src/RooTruthModel.cxx,
	  roofitcore/src/RooUniformBinning.cxx,
	  roofitcore/src/RooWorkspace.cxx, rootd/inc/rootdp.h,
	  rootd/src/rootd.cxx, roots/src/roots.cxx, rootx/src/rootx.cxx,
	  rootx/src/rootxx.cxx, rpdutils/inc/rpddefs.h,
	  rpdutils/inc/rpderr.h, rpdutils/inc/rpdp.h,
	  rpdutils/src/daemon.cxx, rpdutils/src/error.cxx,
	  rpdutils/src/globus.cxx, rpdutils/src/net.cxx,
	  rpdutils/src/netpar.cxx, rpdutils/src/rpdutils.cxx,
	  rpdutils/src/ssh.cxx, ruby/inc/TRuby.h, ruby/src/TRuby.cxx,
	  ruby/src/drr.cxx, ruby/src/rrcommon.h, ruby/src/rrenums.h,
	  sapdb/inc/TSapDBResult.h, sapdb/inc/TSapDBRow.h,
	  sapdb/inc/TSapDBServer.h, sapdb/src/TSapDBResult.cxx,
	  sapdb/src/TSapDBRow.cxx, sapdb/src/TSapDBServer.cxx,
	  sessionviewer/inc/LinkDef.h,
	  sessionviewer/inc/TProofProgressDialog.h,
	  sessionviewer/inc/TProofProgressLog.h,
	  sessionviewer/inc/TSessionDialogs.h,
	  sessionviewer/inc/TSessionLogView.h,
	  sessionviewer/inc/TSessionViewer.h,
	  sessionviewer/src/TProofProgressDialog.cxx,
	  sessionviewer/src/TProofProgressLog.cxx,
	  sessionviewer/src/TSessionDialogs.cxx,
	  sessionviewer/src/TSessionLogView.cxx,
	  sessionviewer/src/TSessionViewer.cxx, smatrix/build/Makefile.am,
	  smatrix/build/doc_Makefile.am, smatrix/build/inc_Makefile.am,
	  smatrix/build/inc_Math_Makefile.am,
	  smatrix/build/test_Makefile.am, smatrix/inc/LinkDef.h,
	  smatrix/inc/LinkDefD32.h, smatrix/inc/Math/BinaryOpPolicy.h,
	  smatrix/inc/Math/BinaryOperators.h,
	  smatrix/inc/Math/CramerInversion.icc,
	  smatrix/inc/Math/CramerInversionSym.icc,
	  smatrix/inc/Math/Dfact.h, smatrix/inc/Math/Dfactir.h,
	  smatrix/inc/Math/Dfinv.h, smatrix/inc/Math/Dinv.h,
	  smatrix/inc/Math/Dsfact.h, smatrix/inc/Math/Dsinv.h,
	  smatrix/inc/Math/Expression.h, smatrix/inc/Math/Functions.h,
	  smatrix/inc/Math/HelperOps.h, smatrix/inc/Math/MConfig.h,
	  smatrix/inc/Math/MatrixFunctions.h,
	  smatrix/inc/Math/MatrixInversion.icc,
	  smatrix/inc/Math/MatrixRepresentationsStatic.h,
	  smatrix/inc/Math/SMatrix.h, smatrix/inc/Math/SMatrix.icc,
	  smatrix/inc/Math/SMatrixDfwd.h, smatrix/inc/Math/SMatrixFfwd.h,
	  smatrix/inc/Math/SVector.h, smatrix/inc/Math/SVector.icc,
	  smatrix/inc/Math/StaticCheck.h,
	  smatrix/inc/Math/UnaryOperators.h, spectrum/inc/LinkDef.h,
	  spectrum/inc/TSpectrum.h, spectrum/inc/TSpectrum2.h,
	  spectrum/inc/TSpectrum2Fit.h, spectrum/inc/TSpectrum2Transform.h,
	  spectrum/inc/TSpectrum3.h, spectrum/inc/TSpectrumFit.h,
	  spectrum/inc/TSpectrumTransform.h, spectrum/src/TSpectrum.cxx,
	  spectrum/src/TSpectrum2.cxx, spectrum/src/TSpectrum2Fit.cxx,
	  spectrum/src/TSpectrum2Transform.cxx,
	  spectrum/src/TSpectrum3.cxx, spectrum/src/TSpectrumFit.cxx,
	  spectrum/src/TSpectrumTransform.cxx,
	  spectrumpainter/inc/LinkDef.h,
	  spectrumpainter/inc/TSpectrum2Painter.h,
	  spectrumpainter/src/TSpectrum2Painter.cxx, splot/inc/TSPlot.h,
	  splot/src/TSPlot.cxx, sql/inc/LinkDef.h, sql/inc/TBufferSQL2.h,
	  sql/inc/TKeySQL.h, sql/inc/TSQLClassInfo.h, sql/inc/TSQLFile.h,
	  sql/inc/TSQLObjectData.h, sql/inc/TSQLStructure.h,
	  sql/src/TBufferSQL2.cxx, sql/src/TKeySQL.cxx,
	  sql/src/TSQLClassInfo.cxx, sql/src/TSQLFile.cxx,
	  sql/src/TSQLObjectData.cxx, sql/src/TSQLStructure.cxx,
	  srputils/src/SRPAuth.cxx, srputils/src/rpasswd.c,
	  srputils/src/rtconf.c, table/inc/LinkDef.h, table/inc/TCernLib.h,
	  table/inc/TChair.h, table/inc/TColumnView.h,
	  table/inc/TDataSet.h, table/inc/TDataSetIter.h,
	  table/inc/TDsKey.h, table/inc/TFileIter.h, table/inc/TFileSet.h,
	  table/inc/TGenericTable.h, table/inc/TIndexTable.h,
	  table/inc/TObjectSet.h, table/inc/TPoints3D.h,
	  table/inc/TPointsArray3D.h, table/inc/TPolyLineShape.h,
	  table/inc/TResponseTable.h, table/inc/TTable.h,
	  table/inc/TTable3Points.h, table/inc/TTableDescriptor.h,
	  table/inc/TTableIter.h, table/inc/TTableMap.h,
	  table/inc/TTablePadView3D.h, table/inc/TTablePoints.h,
	  table/inc/TTableSorter.h, table/inc/TVolume.h,
	  table/inc/TVolumePosition.h, table/inc/TVolumeView.h,
	  table/inc/TVolumeViewIter.h, table/inc/Ttypes.h,
	  table/inc/tableDescriptor.h, table/src/TCernLib.cxx,
	  table/src/TChair.cxx, table/src/TColumnView.cxx,
	  table/src/TDataSet.cxx, table/src/TDataSetIter.cxx,
	  table/src/TDsKey.cxx, table/src/TFileIter.cxx,
	  table/src/TFileSet.cxx, table/src/TGenericTable.cxx,
	  table/src/TIndexTable.cxx, table/src/TObjectSet.cxx,
	  table/src/TPoints3D.cxx, table/src/TPointsArray3D.cxx,
	  table/src/TPolyLineShape.cxx, table/src/TResponseTable.cxx,
	  table/src/TTable.cxx, table/src/TTable3Points.cxx,
	  table/src/TTableDescriptor.cxx, table/src/TTableIter.cxx,
	  table/src/TTableMap.cxx, table/src/TTablePadView3D.cxx,
	  table/src/TTablePoints.cxx, table/src/TTableSorter.cxx,
	  table/src/TVolume.cxx, table/src/TVolumePosition.cxx,
	  table/src/TVolumeView.cxx, table/src/TVolumeViewIter.cxx,
	  test/Aclock.cxx, test/Event.cxx, test/Hello.cxx,
	  test/MainEvent.cxx, test/RootIDE/TGRootIDE.cxx,
	  test/RootIDE/TGRootIDE.h, test/RootIDE/main.cxx,
	  test/TestVectors.cxx, test/Tetris.cxx, test/ctorture.cxx,
	  test/eventa.cxx, test/guitest.cxx, test/guiviewer.cxx,
	  test/guiviewer.h, test/hsimple.cxx, test/hworld.cxx,
	  test/hworld2.cxx, test/minexam.cxx, test/rhtml/rhtml.cxx,
	  test/stress.cxx, test/stressHepix.cxx, test/stressVector.cxx,
	  test/tcollbm.cxx, test/tcollex.cxx, test/tstring.cxx,
	  test/vlazy.cxx, test/vmatrix.cxx, test/vvector.cxx,
	  thread/inc/LinkDef.h, thread/inc/PosixThreadInc.h,
	  thread/inc/TAtomicCount.h, thread/inc/TAtomicCountGcc.h,
	  thread/inc/TAtomicCountPthread.h, thread/inc/TAtomicCountWin32.h,
	  thread/inc/TCondition.h, thread/inc/TConditionImp.h,
	  thread/inc/TLockFile.h, thread/inc/TMutex.h,
	  thread/inc/TMutexImp.h, thread/inc/TPosixThread.h,
	  thread/inc/TRWLock.h, thread/inc/TSemaphore.h,
	  thread/inc/TThread.h, thread/inc/TThreadFactory.h,
	  thread/inc/TThreadImp.h, thread/inc/TWin32Condition.h,
	  thread/inc/TWin32Mutex.h, thread/inc/TWin32Thread.h,
	  thread/inc/TWin32ThreadFactory.h, thread/src/TCondition.cxx,
	  thread/src/TConditionImp.cxx, thread/src/TLockFile.cxx,
	  thread/src/TMutex.cxx, thread/src/TMutexImp.cxx,
	  thread/src/TPosixCondition.cxx, thread/src/TPosixThread.cxx,
	  thread/src/TSemaphore.cxx, thread/src/TThread.cxx,
	  thread/src/TThreadFactory.cxx, thread/src/TThreadImp.cxx,
	  thread/src/TWin32Condition.cxx, thread/src/TWin32Mutex.cxx,
	  thread/src/TWin32Thread.cxx, thread/src/TWin32ThreadFactory.cxx,
	  tmva/inc/BinarySearchTree.h, tmva/inc/BinarySearchTreeNode.h,
	  tmva/inc/BinaryTree.h, tmva/inc/Config.h,
	  tmva/inc/Configurable.h, tmva/inc/CrossEntropy.h,
	  tmva/inc/DataSet.h, tmva/inc/DecisionTree.h,
	  tmva/inc/DecisionTreeNode.h, tmva/inc/Event.h,
	  tmva/inc/Factory.h, tmva/inc/FitterBase.h,
	  tmva/inc/GeneticAlgorithm.h, tmva/inc/GeneticFitter.h,
	  tmva/inc/GeneticGenes.h, tmva/inc/GeneticPopulation.h,
	  tmva/inc/GeneticRange.h, tmva/inc/GiniIndex.h,
	  tmva/inc/IFitterTarget.h, tmva/inc/IMethod.h, tmva/inc/IMetric.h,
	  tmva/inc/Interval.h, tmva/inc/KDEKernel.h, tmva/inc/MCFitter.h,
	  tmva/inc/MethodANNBase.h, tmva/inc/MethodBDT.h,
	  tmva/inc/MethodBase.h, tmva/inc/MethodBayesClassifier.h,
	  tmva/inc/MethodCFMlpANN.h, tmva/inc/MethodCFMlpANN_Utils.h,
	  tmva/inc/MethodCFMlpANN_def.h, tmva/inc/MethodCommittee.h,
	  tmva/inc/MethodCuts.h, tmva/inc/MethodFDA.h,
	  tmva/inc/MethodFisher.h, tmva/inc/MethodHMatrix.h,
	  tmva/inc/MethodKNN.h, tmva/inc/MethodLikelihood.h,
	  tmva/inc/MethodMLP.h, tmva/inc/MethodPDERS.h,
	  tmva/inc/MethodRuleFit.h, tmva/inc/MethodSVM.h,
	  tmva/inc/MethodSeedDistance.h, tmva/inc/MethodTMlpANN.h,
	  tmva/inc/MethodVariable.h, tmva/inc/Methods.h,
	  tmva/inc/MetricEuler.h, tmva/inc/MetricManhattan.h,
	  tmva/inc/MinuitFitter.h, tmva/inc/MinuitWrapper.h,
	  tmva/inc/MisClassificationError.h, tmva/inc/ModulekNN.h,
	  tmva/inc/MsgLogger.h, tmva/inc/Node.h, tmva/inc/NodekNN.h,
	  tmva/inc/Option.h, tmva/inc/PDF.h, tmva/inc/Ranking.h,
	  tmva/inc/Reader.h, tmva/inc/RootFinder.h, tmva/inc/Rule.h,
	  tmva/inc/RuleCut.h, tmva/inc/RuleEnsemble.h, tmva/inc/RuleFit.h,
	  tmva/inc/RuleFitAPI.h, tmva/inc/RuleFitParams.h,
	  tmva/inc/SdivSqrtSplusB.h, tmva/inc/SeedDistance.h,
	  tmva/inc/SeparationBase.h, tmva/inc/SimulatedAnnealing.h,
	  tmva/inc/SimulatedAnnealingFitter.h, tmva/inc/TActivation.h,
	  tmva/inc/TActivationChooser.h, tmva/inc/TActivationIdentity.h,
	  tmva/inc/TActivationRadial.h, tmva/inc/TActivationSigmoid.h,
	  tmva/inc/TActivationTanh.h, tmva/inc/TNeuron.h,
	  tmva/inc/TNeuronInput.h, tmva/inc/TNeuronInputAbs.h,
	  tmva/inc/TNeuronInputChooser.h, tmva/inc/TNeuronInputSqSum.h,
	  tmva/inc/TNeuronInputSum.h, tmva/inc/TSpline1.h,
	  tmva/inc/TSpline2.h, tmva/inc/TSynapse.h, tmva/inc/Timer.h,
	  tmva/inc/Tools.h, tmva/inc/Types.h,
	  tmva/inc/VariableDecorrTransform.h,
	  tmva/inc/VariableIdentityTransform.h, tmva/inc/VariableInfo.h,
	  tmva/inc/VariablePCATransform.h,
	  tmva/inc/VariableTransformBase.h, tmva/inc/Version.h,
	  tmva/inc/Volume.h, tmva/src/BinarySearchTree.cxx,
	  tmva/src/BinarySearchTreeNode.cxx, tmva/src/BinaryTree.cxx,
	  tmva/src/Config.cxx, tmva/src/Configurable.cxx,
	  tmva/src/CrossEntropy.cxx, tmva/src/DataSet.cxx,
	  tmva/src/DecisionTree.cxx, tmva/src/DecisionTreeNode.cxx,
	  tmva/src/Event.cxx, tmva/src/Factory.cxx,
	  tmva/src/FitterBase.cxx, tmva/src/GeneticAlgorithm.cxx,
	  tmva/src/GeneticFitter.cxx, tmva/src/GeneticGenes.cxx,
	  tmva/src/GeneticPopulation.cxx, tmva/src/GeneticRange.cxx,
	  tmva/src/GiniIndex.cxx, tmva/src/IFitterTarget.cxx,
	  tmva/src/IMetric.cxx, tmva/src/Interval.cxx,
	  tmva/src/KDEKernel.cxx, tmva/src/MCFitter.cxx,
	  tmva/src/MethodANNBase.cxx, tmva/src/MethodBDT.cxx,
	  tmva/src/MethodBase.cxx, tmva/src/MethodBayesClassifier.cxx,
	  tmva/src/MethodCFMlpANN.cxx, tmva/src/MethodCFMlpANN_Utils.cxx,
	  tmva/src/MethodCommittee.cxx, tmva/src/MethodCuts.cxx,
	  tmva/src/MethodFDA.cxx, tmva/src/MethodFisher.cxx,
	  tmva/src/MethodHMatrix.cxx, tmva/src/MethodKNN.cxx,
	  tmva/src/MethodLikelihood.cxx, tmva/src/MethodMLP.cxx,
	  tmva/src/MethodPDERS.cxx, tmva/src/MethodRuleFit.cxx,
	  tmva/src/MethodSVM.cxx, tmva/src/MethodSeedDistance.cxx,
	  tmva/src/MethodTMlpANN.cxx, tmva/src/MethodVariable.cxx,
	  tmva/src/MetricEuler.cxx, tmva/src/MetricManhattan.cxx,
	  tmva/src/MinuitFitter.cxx, tmva/src/MinuitWrapper.cxx,
	  tmva/src/MisClassificationError.cxx, tmva/src/ModulekNN.cxx,
	  tmva/src/MsgLogger.cxx, tmva/src/Node.cxx, tmva/src/Option.cxx,
	  tmva/src/PDF.cxx, tmva/src/Ranking.cxx, tmva/src/Reader.cxx,
	  tmva/src/RootFinder.cxx, tmva/src/Rule.cxx, tmva/src/RuleCut.cxx,
	  tmva/src/RuleEnsemble.cxx, tmva/src/RuleFit.cxx,
	  tmva/src/RuleFitAPI.cxx, tmva/src/RuleFitParams.cxx,
	  tmva/src/SdivSqrtSplusB.cxx, tmva/src/SeedDistance.cxx,
	  tmva/src/SeparationBase.cxx, tmva/src/SimulatedAnnealing.cxx,
	  tmva/src/SimulatedAnnealingFitter.cxx,
	  tmva/src/TActivationIdentity.cxx, tmva/src/TActivationRadial.cxx,
	  tmva/src/TActivationSigmoid.cxx, tmva/src/TActivationTanh.cxx,
	  tmva/src/TNeuron.cxx, tmva/src/TSpline1.cxx,
	  tmva/src/TSpline2.cxx, tmva/src/TSynapse.cxx, tmva/src/Timer.cxx,
	  tmva/src/Tools.cxx, tmva/src/Types.cxx,
	  tmva/src/VariableDecorrTransform.cxx,
	  tmva/src/VariableIdentityTransform.cxx,
	  tmva/src/VariableInfo.cxx, tmva/src/VariablePCATransform.cxx,
	  tmva/src/VariableTransformBase.cxx, tmva/src/Volume.cxx,
	  tmva/test/TMVAnalysis.C, tmva/test/TMVAnalysis.py,
	  tree/inc/LinkDef.h, tree/inc/LinkDef2.h, tree/inc/TBasket.h,
	  tree/inc/TBasketSQL.h, tree/inc/TBranch.h,
	  tree/inc/TBranchBrowsable.h, tree/inc/TBranchClones.h,
	  tree/inc/TBranchElement.h, tree/inc/TBranchObject.h,
	  tree/inc/TBranchRef.h, tree/inc/TBufferSQL.h, tree/inc/TChain.h,
	  tree/inc/TChainElement.h, tree/inc/TEntryList.h,
	  tree/inc/TEntryListBlock.h, tree/inc/TEntryListFromFile.h,
	  tree/inc/TEventList.h, tree/inc/TFriendElement.h,
	  tree/inc/TLeaf.h, tree/inc/TLeafB.h, tree/inc/TLeafC.h,
	  tree/inc/TLeafD.h, tree/inc/TLeafElement.h, tree/inc/TLeafF.h,
	  tree/inc/TLeafI.h, tree/inc/TLeafL.h, tree/inc/TLeafO.h,
	  tree/inc/TLeafObject.h, tree/inc/TLeafS.h, tree/inc/TNtuple.h,
	  tree/inc/TNtupleD.h, tree/inc/TQueryResult.h,
	  tree/inc/TSelector.h, tree/inc/TSelectorCint.h,
	  tree/inc/TSelectorList.h, tree/inc/TSelectorScalar.h,
	  tree/inc/TTree.h, tree/inc/TTreeCache.h, tree/inc/TTreeCloner.h,
	  tree/inc/TTreeResult.h, tree/inc/TTreeRow.h, tree/inc/TTreeSQL.h,
	  tree/inc/TVirtualIndex.h, tree/inc/TVirtualTreePlayer.h,
	  tree/src/TBasket.cxx, tree/src/TBasketSQL.cxx,
	  tree/src/TBranch.cxx, tree/src/TBranchBrowsable.cxx,
	  tree/src/TBranchClones.cxx, tree/src/TBranchElement.cxx,
	  tree/src/TBranchObject.cxx, tree/src/TBranchRef.cxx,
	  tree/src/TBufferSQL.cxx, tree/src/TChain.cxx,
	  tree/src/TChainElement.cxx, tree/src/TCut.cxx,
	  tree/src/TEntryList.cxx, tree/src/TEntryListBlock.cxx,
	  tree/src/TEntryListFromFile.cxx, tree/src/TEventList.cxx,
	  tree/src/TFriendElement.cxx, tree/src/TLeaf.cxx,
	  tree/src/TLeafB.cxx, tree/src/TLeafC.cxx, tree/src/TLeafD.cxx,
	  tree/src/TLeafElement.cxx, tree/src/TLeafF.cxx,
	  tree/src/TLeafI.cxx, tree/src/TLeafL.cxx, tree/src/TLeafO.cxx,
	  tree/src/TLeafObject.cxx, tree/src/TLeafS.cxx,
	  tree/src/TNtuple.cxx, tree/src/TNtupleD.cxx,
	  tree/src/TQueryResult.cxx, tree/src/TSelector.cxx,
	  tree/src/TSelectorCint.cxx, tree/src/TSelectorList.cxx,
	  tree/src/TTree.cxx, tree/src/TTreeCache.cxx,
	  tree/src/TTreeCloner.cxx, tree/src/TTreeResult.cxx,
	  tree/src/TTreeRow.cxx, tree/src/TTreeSQL.cxx,
	  tree/src/TVirtualIndex.cxx, tree/src/TVirtualTreePlayer.cxx,
	  treeplayer/inc/LinkDef.h, treeplayer/inc/TBranchProxy.h,
	  treeplayer/inc/TBranchProxyClassDescriptor.h,
	  treeplayer/inc/TBranchProxyDescriptor.h,
	  treeplayer/inc/TBranchProxyDirector.h,
	  treeplayer/inc/TBranchProxyTemplate.h,
	  treeplayer/inc/TChainIndex.h, treeplayer/inc/TFileDrawMap.h,
	  treeplayer/inc/TFormLeafInfo.h,
	  treeplayer/inc/TFormLeafInfoReference.h,
	  treeplayer/inc/TFriendProxy.h,
	  treeplayer/inc/TFriendProxyDescriptor.h,
	  treeplayer/inc/TRefArrayProxy.h, treeplayer/inc/TRefProxy.h,
	  treeplayer/inc/TSelectorDraw.h,
	  treeplayer/inc/TSelectorEntries.h,
	  treeplayer/inc/TTreeDrawArgsParser.h,
	  treeplayer/inc/TTreeFormula.h,
	  treeplayer/inc/TTreeFormulaManager.h,
	  treeplayer/inc/TTreeIndex.h, treeplayer/inc/TTreePlayer.h,
	  treeplayer/inc/TTreeProxyGenerator.h,
	  treeplayer/src/TBranchProxy.cxx,
	  treeplayer/src/TBranchProxyClassDescriptor.cxx,
	  treeplayer/src/TBranchProxyDescriptor.cxx,
	  treeplayer/src/TBranchProxyDirector.cxx,
	  treeplayer/src/TChainIndex.cxx, treeplayer/src/TFileDrawMap.cxx,
	  treeplayer/src/TFormLeafInfo.cxx,
	  treeplayer/src/TFormLeafInfoReference.cxx,
	  treeplayer/src/TFriendProxy.cxx,
	  treeplayer/src/TFriendProxyDescriptor.cxx,
	  treeplayer/src/TRefArrayProxy.cxx, treeplayer/src/TRefProxy.cxx,
	  treeplayer/src/TSelectorDraw.cxx,
	  treeplayer/src/TSelectorEntries.cxx,
	  treeplayer/src/TTreeDrawArgsParser.cxx,
	  treeplayer/src/TTreeFormula.cxx,
	  treeplayer/src/TTreeFormulaManager.cxx,
	  treeplayer/src/TTreeIndex.cxx, treeplayer/src/TTreePlayer.cxx,
	  treeplayer/src/TTreeProxyGenerator.cxx,
	  treeviewer/inc/HelpTextTV.h, treeviewer/inc/LinkDef.h,
	  treeviewer/inc/LinkDefWin32.h, treeviewer/inc/TParallelCoord.h,
	  treeviewer/inc/TParallelCoordEditor.h,
	  treeviewer/inc/TParallelCoordRange.h,
	  treeviewer/inc/TParallelCoordVar.h, treeviewer/inc/TSpider.h,
	  treeviewer/inc/TSpiderEditor.h, treeviewer/inc/TTVLVContainer.h,
	  treeviewer/inc/TTVSession.h, treeviewer/inc/TTreeViewer.h,
	  treeviewer/src/HelpTextTV.cxx, treeviewer/src/TParallelCoord.cxx,
	  treeviewer/src/TParallelCoordEditor.cxx,
	  treeviewer/src/TParallelCoordRange.cxx,
	  treeviewer/src/TParallelCoordVar.cxx, treeviewer/src/TSpider.cxx,
	  treeviewer/src/TSpiderEditor.cxx,
	  treeviewer/src/TTVLVContainer.cxx, treeviewer/src/TTVSession.cxx,
	  treeviewer/src/TTreeViewer.cxx, tutorials/fit/minuit2FitBench.C,
	  tutorials/fit/minuit2FitBench2D.C,
	  tutorials/fit/minuit2GausFit.C, tutorials/geant3tasks.C,
	  unix/inc/TUnixSystem.h, unix/src/TUnixSystem.cxx,
	  unuran/inc/LinkDef.h, unuran/inc/TUnuran.h,
	  unuran/inc/TUnuranBaseDist.h, unuran/inc/TUnuranContDist.h,
	  unuran/inc/TUnuranDiscrDist.h, unuran/inc/TUnuranEmpDist.h,
	  unuran/inc/TUnuranMultiContDist.h, unuran/src/TUnuran.cxx,
	  unuran/src/TUnuranContDist.cxx, unuran/src/TUnuranDiscrDist.cxx,
	  unuran/src/TUnuranEmpDist.cxx,
	  unuran/src/TUnuranMultiContDist.cxx, unuran/src/UnuranDistr.h,
	  unuran/src/UnuranDistrAdapter.h, unuran/src/UnuranRng.h,
	  utils/src/RStl.cxx, utils/src/RStl.h, utils/src/rlibmap.cxx,
	  utils/src/rootcint.cxx, vmc/inc/LinkDef.h,
	  vmc/inc/TGeoMCGeometry.h, vmc/inc/TMCOptical.h,
	  vmc/inc/TMCParticleType.h, vmc/inc/TMCProcess.h,
	  vmc/inc/TMCVerbose.h, vmc/inc/TPDGCode.h, vmc/inc/TVirtualMC.h,
	  vmc/inc/TVirtualMCApplication.h, vmc/inc/TVirtualMCGeometry.h,
	  vmc/inc/TVirtualMCStack.h, vmc/src/TGeoMCGeometry.cxx,
	  vmc/src/TMCVerbose.cxx, vmc/src/TVirtualMC.cxx,
	  vmc/src/TVirtualMCApplication.cxx,
	  vmc/src/TVirtualMCGeometry.cxx, vmc/src/TVirtualMCStack.cxx,
	  win32gdk/inc/LinkDef.h, win32gdk/inc/TGWin32.h,
	  win32gdk/inc/TGWin32GL.h, win32gdk/inc/TGWin32ProxyBase.h,
	  win32gdk/inc/TGWin32ProxyDefs.h,
	  win32gdk/inc/TGWin32VirtualGLProxy.h, win32gdk/inc/xatom.h,
	  win32gdk/src/TGWin32.cxx, win32gdk/src/TGWin32GL.cxx,
	  win32gdk/src/TGWin32ProxyBase.cxx,
	  win32gdk/src/TGWin32VirtualGLProxy.cxx,
	  win32gdk/src/TGWin32VirtualXProxy.cxx, win32gdk/src/gifdecode.c,
	  win32gdk/src/gifencode.c, win32gdk/src/gifquantize.c,
	  winnt/inc/LinkDef.h, winnt/inc/TWin32SplashThread.h,
	  winnt/inc/TWinNTSystem.h, winnt/inc/Win32Constants.h,
	  winnt/src/TWinNTSystem.cxx, winnt/src/Win32Splash.cxx,
	  x11/inc/LinkDef.h, x11/inc/TGX11.h, x11/src/GX11Gui.cxx,
	  x11/src/Rotated.cxx, x11/src/TGX11.cxx, x11ttf/inc/TGX11TTF.h,
	  x11ttf/src/TGX11TTF.cxx, x3d/inc/TViewerX3D.h, x3d/inc/x3d.h,
	  x3d/src/TViewerX3D.cxx, x3d/src/x3d.c, xml/inc/LinkDef.h,
	  xml/inc/TBufferXML.h, xml/inc/TKeyXML.h, xml/inc/TXMLEngine.h,
	  xml/inc/TXMLFile.h, xml/inc/TXMLPlayer.h, xml/inc/TXMLSetup.h,
	  xml/src/TBufferXML.cxx, xml/src/TKeyXML.cxx,
	  xml/src/TXMLEngine.cxx, xml/src/TXMLFile.cxx,
	  xml/src/TXMLPlayer.cxx, xml/src/TXMLSetup.cxx,
	  xmlparser/inc/TDOMParser.h, xmlparser/inc/TSAXParser.h,
	  xmlparser/inc/TXMLAttr.h, xmlparser/inc/TXMLDocument.h,
	  xmlparser/inc/TXMLNode.h, xmlparser/inc/TXMLParser.h,
	  xmlparser/src/TDOMParser.cxx, xmlparser/src/TSAXParser.cxx,
	  xmlparser/src/TXMLAttr.cxx, xmlparser/src/TXMLDocument.cxx,
	  xmlparser/src/TXMLNode.cxx, xmlparser/src/TXMLParser.cxx,
	  zip/inc/Bits.h, zip/inc/Tailor.h, zip/inc/ZDeflate.h,
	  zip/inc/ZIP.h, zip/inc/ZTrees.h, zip/inc/zutil.h,
	  zip/src/ZInflate.c, zip/src/deflate.c, zip/src/zutil.c: imported
	  svn:keywords Id property

2007-09-19 19:49  rdm

	* [r19825] alien/inc/TAlien.h, alien/inc/TAlienCollection.h,
	  alien/inc/TAlienDirectory.h, alien/inc/TAlienFile.h,
	  alien/inc/TAlienJDL.h, alien/inc/TAlienJob.h,
	  alien/inc/TAlienJobStatus.h, alien/inc/TAlienJobStatusList.h,
	  alien/inc/TAlienMasterJob.h, alien/inc/TAlienMasterJobStatus.h,
	  alien/inc/TAlienResult.h, alien/inc/TAlienSystem.h,
	  alien/src/TAlien.cxx, alien/src/TAlienCollection.cxx,
	  alien/src/TAlienDirectory.cxx, alien/src/TAlienFile.cxx,
	  alien/src/TAlienJDL.cxx, alien/src/TAlienJob.cxx,
	  alien/src/TAlienJobStatus.cxx, alien/src/TAlienJobStatusList.cxx,
	  alien/src/TAlienMasterJob.cxx,
	  alien/src/TAlienMasterJobStatus.cxx, alien/src/TAlienResult.cxx,
	  alien/src/TAlienSystem.cxx, asimage/inc/LinkDef.h,
	  asimage/inc/LinkDefGS.h, asimage/inc/LinkDefGui.h,
	  asimage/inc/TASImage.h, asimage/inc/TASImagePlugin.h,
	  asimage/inc/TASPaletteEditor.h, asimage/inc/TASPluginGS.h,
	  asimage/src/TASImage.cxx, asimage/src/TASPaletteEditor.cxx,
	  asimage/src/TASPluginGS.cxx, asimage/src/TASPolyUtils.c,
	  auth/inc/AFSAuth.h, auth/inc/AFSAuthTypes.h,
	  auth/inc/AuthConst.h, auth/inc/DaemonUtils.h, auth/inc/TAFS.h,
	  auth/inc/TAuthenticate.h, auth/inc/THostAuth.h,
	  auth/inc/TRootAuth.h, auth/inc/TRootSecContext.h,
	  auth/inc/rsaaux.h, auth/inc/rsadef.h, auth/inc/rsafun.h,
	  auth/inc/rsalib.h, auth/src/AFSAuth.cxx,
	  auth/src/DaemonUtils.cxx, auth/src/TAFS.cxx,
	  auth/src/TAuthenticate.cxx, auth/src/THostAuth.cxx,
	  auth/src/TRootAuth.cxx, auth/src/TRootSecContext.cxx,
	  auth/src/rsaaux.cxx, auth/src/rsafun.cxx, auth/src/rsalib.cxx,
	  base/inc/Bswapcpy.h, base/inc/Buttons.h, base/inc/Bytes.h,
	  base/inc/Byteswap.h, base/inc/DllImport.h,
	  base/inc/GLConstants.h, base/inc/Gtypes.h, base/inc/GuiTypes.h,
	  base/inc/Htypes.h, base/inc/KeySymbols.h, base/inc/LinkDef1.h,
	  base/inc/LinkDef2.h, base/inc/LinkDef3.h, base/inc/LinkDef4.h,
	  base/inc/MessageTypes.h, base/inc/RConfig.h,
	  base/inc/RQ_OBJECT.h, base/inc/RStipples.h, base/inc/Riosfwd.h,
	  base/inc/Riostream.h, base/inc/Rpair.h, base/inc/Rstrstream.h,
	  base/inc/Rtypeinfo.h, base/inc/Rtypes.h, base/inc/RtypesCint.h,
	  base/inc/RtypesImp.h, base/inc/TApplication.h,
	  base/inc/TApplicationImp.h, base/inc/TAttAxis.h,
	  base/inc/TAttBBox.h, base/inc/TAttFill.h, base/inc/TAttLine.h,
	  base/inc/TAttMarker.h, base/inc/TAttPad.h, base/inc/TAttText.h,
	  base/inc/TBenchmark.h, base/inc/TBrowser.h,
	  base/inc/TBrowserImp.h, base/inc/TBuffer.h, base/inc/TBuffer3D.h,
	  base/inc/TBuffer3DTypes.h, base/inc/TCanvasImp.h,
	  base/inc/TColor.h, base/inc/TContextMenu.h,
	  base/inc/TContextMenuImp.h, base/inc/TControlBarImp.h,
	  base/inc/TDatime.h, base/inc/TDirectory.h, base/inc/TEnv.h,
	  base/inc/TError.h, base/inc/TException.h, base/inc/TExec.h,
	  base/inc/TFileCollection.h, base/inc/TFileInfo.h,
	  base/inc/TFolder.h, base/inc/TGuiFactory.h,
	  base/inc/TInetAddress.h, base/inc/TMD5.h, base/inc/TMacro.h,
	  base/inc/TMathBase.h, base/inc/TMemberInspector.h,
	  base/inc/TMessageHandler.h, base/inc/TNamed.h,
	  base/inc/TObjString.h, base/inc/TObject.h, base/inc/TObjectSpy.h,
	  base/inc/TPRegexp.h, base/inc/TParameter.h,
	  base/inc/TPluginManager.h, base/inc/TPoint.h,
	  base/inc/TProcessID.h, base/inc/TProcessUUID.h,
	  base/inc/TQClass.h, base/inc/TQCommand.h,
	  base/inc/TQConnection.h, base/inc/TQObject.h, base/inc/TROOT.h,
	  base/inc/TRedirectOutputGuard.h, base/inc/TRef.h,
	  base/inc/TRefCnt.h, base/inc/TRemoteObject.h,
	  base/inc/TRootIOCtor.h, base/inc/TStopwatch.h,
	  base/inc/TStorage.h, base/inc/TString.h, base/inc/TStyle.h,
	  base/inc/TSysEvtHandler.h, base/inc/TSystem.h,
	  base/inc/TSystemDirectory.h, base/inc/TSystemFile.h,
	  base/inc/TTask.h, base/inc/TTime.h, base/inc/TTimeStamp.h,
	  base/inc/TTimer.h, base/inc/TUUID.h, base/inc/TUrl.h,
	  base/inc/TVersionCheck.h, base/inc/TVirtualFFT.h,
	  base/inc/TVirtualFitter.h, base/inc/TVirtualGL.h,
	  base/inc/TVirtualMonitoring.h, base/inc/TVirtualMutex.h,
	  base/inc/TVirtualPS.h, base/inc/TVirtualPad.h,
	  base/inc/TVirtualPadEditor.h, base/inc/TVirtualPerfStats.h,
	  base/inc/TVirtualViewer3D.h, base/inc/TVirtualX.h,
	  base/inc/Varargs.h, base/inc/Windows4Root.h, base/inc/config.h,
	  base/src/Match.cxx, base/src/String.cxx, base/src/Stringio.cxx,
	  base/src/TApplication.cxx, base/src/TAtt3D.cxx,
	  base/src/TAttAxis.cxx, base/src/TAttBBox.cxx,
	  base/src/TAttFill.cxx, base/src/TAttLine.cxx,
	  base/src/TAttMarker.cxx, base/src/TAttPad.cxx,
	  base/src/TAttText.cxx, base/src/TBrowser.cxx,
	  base/src/TBrowserImp.cxx, base/src/TBuffer.cxx,
	  base/src/TBuffer3D.cxx, base/src/TColor.cxx,
	  base/src/TContextMenu.cxx, base/src/TDatime.cxx,
	  base/src/TDirectory.cxx, base/src/TEnv.cxx, base/src/TError.cxx,
	  base/src/TException.cxx, base/src/TExec.cxx,
	  base/src/TFileCollection.cxx, base/src/TFileInfo.cxx,
	  base/src/TFolder.cxx, base/src/TGuiFactory.cxx,
	  base/src/TInetAddress.cxx, base/src/TMD5.cxx,
	  base/src/TMacro.cxx, base/src/TMathBase.cxx,
	  base/src/TMessageHandler.cxx, base/src/TNamed.cxx,
	  base/src/TObjString.cxx, base/src/TObject.cxx,
	  base/src/TObjectSpy.cxx, base/src/TPRegexp.cxx,
	  base/src/TParameter.cxx, base/src/TPluginManager.cxx,
	  base/src/TProcessID.cxx, base/src/TProcessUUID.cxx,
	  base/src/TQCommand.cxx, base/src/TQConnection.cxx,
	  base/src/TQObject.cxx, base/src/TROOT.cxx, base/src/TRef.cxx,
	  base/src/TRefCnt.cxx, base/src/TRegexp.cxx,
	  base/src/TRemoteObject.cxx, base/src/TStopwatch.cxx,
	  base/src/TStorage.cxx, base/src/TString.cxx,
	  base/src/TStringLong.cxx, base/src/TStyle.cxx,
	  base/src/TSysEvtHandler.cxx, base/src/TSystem.cxx,
	  base/src/TSystemDirectory.cxx, base/src/TSystemFile.cxx,
	  base/src/TTask.cxx, base/src/TTime.cxx, base/src/TTimeStamp.cxx,
	  base/src/TTimer.cxx, base/src/TUUID.cxx, base/src/TUrl.cxx,
	  base/src/TVirtualFFT.cxx, base/src/TVirtualFitter.cxx,
	  base/src/TVirtualGL.cxx, base/src/TVirtualMonitoring.cxx,
	  base/src/TVirtualMutex.cxx, base/src/TVirtualPS.cxx,
	  base/src/TVirtualPad.cxx, base/src/TVirtualPadEditor.cxx,
	  base/src/TVirtualPerfStats.cxx, base/src/TVirtualViewer3D.cxx,
	  base/src/TVirtualX.cxx, build/package/msi/makemsi.cxx,
	  build/rmkdepend/mainroot.cxx, build/win/w32pragma.h,
	  castor/inc/LinkDef.h, castor/inc/TCastorFile.h,
	  castor/src/TCastorFile.cxx, chirp/inc/TChirpFile.h,
	  chirp/src/TChirpFile.cxx, cint7/tool/rmkdepend/mainroot.cxx,
	  cintex/inc/Cintex/Cintex.h, cintex/src/CINTClassBuilder.cxx,
	  cintex/src/CINTClassBuilder.h, cintex/src/CINTEnumBuilder.cxx,
	  cintex/src/CINTEnumBuilder.h, cintex/src/CINTFunctionBuilder.cxx,
	  cintex/src/CINTFunctionBuilder.h, cintex/src/CINTFunctional.cxx,
	  cintex/src/CINTFunctional.h, cintex/src/CINTScopeBuilder.cxx,
	  cintex/src/CINTScopeBuilder.h, cintex/src/CINTTypedefBuilder.cxx,
	  cintex/src/CINTTypedefBuilder.h, cintex/src/CINTUtils.cxx,
	  cintex/src/CINTVariableBuilder.cxx,
	  cintex/src/CINTVariableBuilder.h, cintex/src/CINTdefs.h,
	  cintex/src/Cintex.cxx, cintex/src/ROOTClassEnhancer.cxx,
	  cintex/src/ROOTClassEnhancer.h, clarens/inc/LinkDef.h,
	  clarens/inc/TClProxy.h, clarens/inc/TClSession.h,
	  clarens/inc/TClarens.h, clarens/inc/TEcho.h, clarens/inc/TGM.h,
	  clarens/inc/TLM.h, clarens/inc/TSAM.h, clarens/inc/TXmlRpc.h,
	  clarens/src/TClProxy.cxx, clarens/src/TClSession.cxx,
	  clarens/src/TClarens.cxx, clarens/src/TEcho.cxx,
	  clarens/src/TGM.cxx, clarens/src/TLM.cxx, clarens/src/TSAM.cxx,
	  clarens/src/TXmlRpc.cxx, clib/inc/Getline.h, clib/inc/LinkDef.h,
	  clib/inc/mmalloc.h, clib/inc/mmconfig.h, clib/inc/mmprivate.h,
	  clib/inc/snprintf.h, clib/src/Demangle.c, clib/src/Getline.c,
	  clib/src/attach.c, clib/src/getpagesize.c, clib/src/keys.c,
	  clib/src/mmapsup.c, clib/src/mmcheck.c, clib/src/mmtrace.c,
	  clib/src/mvalloc.c, clib/src/snprintf.c, config/precompile.h.in,
	  config/rootrc.in, cont/inc/LinkDef.h, cont/inc/TArray.h,
	  cont/inc/TArrayC.h, cont/inc/TArrayD.h, cont/inc/TArrayF.h,
	  cont/inc/TArrayI.h, cont/inc/TArrayL.h, cont/inc/TArrayL64.h,
	  cont/inc/TArrayS.h, cont/inc/TBits.h, cont/inc/TBtree.h,
	  cont/inc/TClassTable.h, cont/inc/TClonesArray.h,
	  cont/inc/TCollection.h, cont/inc/TCollectionProxyInfo.h,
	  cont/inc/TExMap.h, cont/inc/THashList.h, cont/inc/THashTable.h,
	  cont/inc/TList.h, cont/inc/TMap.h, cont/inc/TObjArray.h,
	  cont/inc/TObjectTable.h, cont/inc/TOrdCollection.h,
	  cont/inc/TRefArray.h, cont/inc/TRefTable.h,
	  cont/inc/TSeqCollection.h, cont/inc/TSortedList.h,
	  cont/inc/TVirtualCollectionProxy.h, cont/src/TArray.cxx,
	  cont/src/TArrayC.cxx, cont/src/TArrayD.cxx, cont/src/TArrayF.cxx,
	  cont/src/TArrayI.cxx, cont/src/TArrayL.cxx,
	  cont/src/TArrayL64.cxx, cont/src/TArrayS.cxx, cont/src/TBits.cxx,
	  cont/src/TBtree.cxx, cont/src/TClassTable.cxx,
	  cont/src/TClonesArray.cxx, cont/src/TCollection.cxx,
	  cont/src/TExMap.cxx, cont/src/THashList.cxx,
	  cont/src/THashTable.cxx, cont/src/TList.cxx, cont/src/TMap.cxx,
	  cont/src/TObjArray.cxx, cont/src/TObjectTable.cxx,
	  cont/src/TOrdCollection.cxx, cont/src/TRefArray.cxx,
	  cont/src/TRefTable.cxx, cont/src/TSeqCollection.cxx,
	  dcache/inc/TDCacheFile.h, dcache/src/TDCacheFile.cxx,
	  eg/inc/Hepevt.h, eg/inc/LinkDef.h, eg/inc/TAttParticle.h,
	  eg/inc/TDatabasePDG.h, eg/inc/TDecayChannel.h,
	  eg/inc/TGenerator.h, eg/inc/TParticle.h,
	  eg/inc/TParticleClassPDG.h, eg/inc/TParticlePDG.h,
	  eg/inc/TPrimary.h, eg/inc/TVirtualMCDecayer.h, eg/inc/cfortran.h,
	  eg/src/TAttParticle.cxx, eg/src/TDatabasePDG.cxx,
	  eg/src/TDecayChannel.cxx, eg/src/TGenerator.cxx,
	  eg/src/TParticle.cxx, eg/src/TParticleClassPDG.cxx,
	  eg/src/TParticlePDG.cxx, eg/src/TPrimary.cxx,
	  eg/src/TVirtualMCDecayer.cxx, fftw/inc/LinkDef.h,
	  fftw/inc/TFFTComplex.h, fftw/inc/TFFTComplexReal.h,
	  fftw/inc/TFFTReal.h, fftw/inc/TFFTRealComplex.h,
	  fftw/src/TFFTComplex.cxx, fftw/src/TFFTComplexReal.cxx,
	  fftw/src/TFFTReal.cxx, fftw/src/TFFTRealComplex.cxx,
	  fitpanel/inc/LinkDef.h, fitpanel/inc/TFitEditor.h,
	  fitpanel/inc/TFitParametersDialog.h, fitpanel/src/TFitEditor.cxx,
	  fitpanel/src/TFitParametersDialog.cxx, foam/inc/TFoam.h,
	  foam/inc/TFoamCell.h, foam/inc/TFoamIntegrand.h,
	  foam/inc/TFoamMaxwt.h, foam/inc/TFoamVect.h, foam/src/TFoam.cxx,
	  foam/src/TFoamCell.cxx, foam/src/TFoamIntegrand.cxx,
	  foam/src/TFoamMaxwt.cxx, foam/src/TFoamVect.cxx,
	  fumili/inc/LinkDef.h, fumili/inc/TFumili.h,
	  fumili/src/TFumili.cxx, g3d/inc/LinkDef.h, g3d/inc/TAxis3D.h,
	  g3d/inc/TBRIK.h, g3d/inc/TCONE.h, g3d/inc/TCONS.h,
	  g3d/inc/TCTUB.h, g3d/inc/TELTU.h, g3d/inc/TGTRA.h,
	  g3d/inc/TGeometry.h, g3d/inc/THYPE.h, g3d/inc/THelix.h,
	  g3d/inc/TMarker3DBox.h, g3d/inc/TMaterial.h, g3d/inc/TMixture.h,
	  g3d/inc/TNode.h, g3d/inc/TNodeDiv.h, g3d/inc/TPARA.h,
	  g3d/inc/TPCON.h, g3d/inc/TPGON.h, g3d/inc/TPointSet3D.h,
	  g3d/inc/TPoints3DABC.h, g3d/inc/TPolyLine3D.h,
	  g3d/inc/TPolyMarker3D.h, g3d/inc/TRotMatrix.h, g3d/inc/TSPHE.h,
	  g3d/inc/TShape.h, g3d/inc/TTRAP.h, g3d/inc/TTRD1.h,
	  g3d/inc/TTRD2.h, g3d/inc/TTUBE.h, g3d/inc/TTUBS.h,
	  g3d/inc/TView3D.h, g3d/inc/TXTRU.h, g3d/inc/X3DBuffer.h,
	  g3d/inc/X3DDefs.h, g3d/src/TAxis3D.cxx, g3d/src/TBRIK.cxx,
	  g3d/src/TCONE.cxx, g3d/src/TCONS.cxx, g3d/src/TCTUB.cxx,
	  g3d/src/TELTU.cxx, g3d/src/TGTRA.cxx, g3d/src/TGeometry.cxx,
	  g3d/src/THYPE.cxx, g3d/src/THelix.cxx, g3d/src/TMarker3DBox.cxx,
	  g3d/src/TMaterial.cxx, g3d/src/TMixture.cxx, g3d/src/TNode.cxx,
	  g3d/src/TNodeDiv.cxx, g3d/src/TPARA.cxx, g3d/src/TPCON.cxx,
	  g3d/src/TPGON.cxx, g3d/src/TPointSet3D.cxx,
	  g3d/src/TPoints3DABC.cxx, g3d/src/TPolyLine3D.cxx,
	  g3d/src/TPolyMarker3D.cxx, g3d/src/TRotMatrix.cxx,
	  g3d/src/TSPHE.cxx, g3d/src/TShape.cxx, g3d/src/TTRAP.cxx,
	  g3d/src/TTRD1.cxx, g3d/src/TTRD2.cxx, g3d/src/TTUBE.cxx,
	  g3d/src/TTUBS.cxx, g3d/src/TView3D.cxx, g3d/src/TXTRU.cxx,
	  g4root/inc/LinkDef.h, g4root/inc/TG4RootDetectorConstruction.h,
	  g4root/inc/TG4RootNavMgr.h, g4root/inc/TG4RootNavigator.h,
	  g4root/inc/TG4RootSolid.h,
	  g4root/src/TG4RootDetectorConstruction.cxx,
	  g4root/src/TG4RootNavMgr.cxx, g4root/src/TG4RootNavigator.cxx,
	  g4root/src/TG4RootSolid.cxx, gdml/ROOTwriter.py,
	  gdml/inc/LinkDef.h, gdml/inc/TGDMLParse.h,
	  gdml/src/TGDMLParse.cxx, gdml/writer.py, ged/inc/HelpSMText.h,
	  ged/inc/LinkDef.h, ged/inc/TArrowEditor.h,
	  ged/inc/TAttFillEditor.h, ged/inc/TAttLineEditor.h,
	  ged/inc/TAttMarkerEditor.h, ged/inc/TAttTextEditor.h,
	  ged/inc/TAxisEditor.h, ged/inc/TCurlyArcEditor.h,
	  ged/inc/TCurlyLineEditor.h, ged/inc/TF1Editor.h,
	  ged/inc/TFunctionParametersDialog.h, ged/inc/TGedEditor.h,
	  ged/inc/TGedFrame.h, ged/inc/TGedMarkerSelect.h,
	  ged/inc/TGedPatternSelect.h, ged/inc/TGraphEditor.h,
	  ged/inc/TH1Editor.h, ged/inc/TH2Editor.h, ged/inc/TLineEditor.h,
	  ged/inc/TStyleDialog.h, ged/inc/TStyleManager.h,
	  ged/inc/TStylePreview.h, ged/src/HelpSMText.cxx,
	  ged/src/TArrowEditor.cxx, ged/src/TAttFillEditor.cxx,
	  ged/src/TAttLineEditor.cxx, ged/src/TAttMarkerEditor.cxx,
	  ged/src/TAttTextEditor.cxx, ged/src/TAxisEditor.cxx,
	  ged/src/TCurlyArcEditor.cxx, ged/src/TCurlyLineEditor.cxx,
	  ged/src/TF1Editor.cxx, ged/src/TFunctionParametersDialog.cxx,
	  ged/src/TGedEditor.cxx, ged/src/TGedFrame.cxx,
	  ged/src/TGedMarkerSelect.cxx, ged/src/TGedPatternSelect.cxx,
	  ged/src/TGraphEditor.cxx, ged/src/TLineEditor.cxx,
	  ged/src/TStyleDialog.cxx, ged/src/TStyleManager.cxx,
	  ged/src/TStylePreview.cxx, geom/inc/LinkDef1.h,
	  geom/inc/LinkDef2.h, geom/inc/TGeoArb8.h, geom/inc/TGeoAtt.h,
	  geom/inc/TGeoBBox.h, geom/inc/TGeoBoolNode.h,
	  geom/inc/TGeoBuilder.h, geom/inc/TGeoCache.h,
	  geom/inc/TGeoCompositeShape.h, geom/inc/TGeoCone.h,
	  geom/inc/TGeoElement.h, geom/inc/TGeoEltu.h,
	  geom/inc/TGeoHalfSpace.h, geom/inc/TGeoHelix.h,
	  geom/inc/TGeoHype.h, geom/inc/TGeoManager.h,
	  geom/inc/TGeoMaterial.h, geom/inc/TGeoMatrix.h,
	  geom/inc/TGeoMedium.h, geom/inc/TGeoNavigator.h,
	  geom/inc/TGeoNode.h, geom/inc/TGeoPara.h,
	  geom/inc/TGeoParaboloid.h, geom/inc/TGeoPatternFinder.h,
	  geom/inc/TGeoPcon.h, geom/inc/TGeoPgon.h,
	  geom/inc/TGeoPhysicalNode.h, geom/inc/TGeoPolygon.h,
	  geom/inc/TGeoScaledShape.h, geom/inc/TGeoShape.h,
	  geom/inc/TGeoShapeAssembly.h, geom/inc/TGeoSphere.h,
	  geom/inc/TGeoTorus.h, geom/inc/TGeoTrd1.h, geom/inc/TGeoTrd2.h,
	  geom/inc/TGeoTube.h, geom/inc/TGeoVolume.h,
	  geom/inc/TGeoVoxelFinder.h, geom/inc/TGeoXtru.h,
	  geom/inc/TVirtualGeoPainter.h, geom/inc/TVirtualGeoTrack.h,
	  geom/src/TGeoArb8.cxx, geom/src/TGeoAtt.cxx,
	  geom/src/TGeoBBox.cxx, geom/src/TGeoBoolNode.cxx,
	  geom/src/TGeoBuilder.cxx, geom/src/TGeoCache.cxx,
	  geom/src/TGeoCompositeShape.cxx, geom/src/TGeoCone.cxx,
	  geom/src/TGeoElement.cxx, geom/src/TGeoEltu.cxx,
	  geom/src/TGeoHalfSpace.cxx, geom/src/TGeoHelix.cxx,
	  geom/src/TGeoHype.cxx, geom/src/TGeoManager.cxx,
	  geom/src/TGeoMaterial.cxx, geom/src/TGeoMatrix.cxx,
	  geom/src/TGeoMedium.cxx, geom/src/TGeoNavigator.cxx,
	  geom/src/TGeoNode.cxx, geom/src/TGeoPara.cxx,
	  geom/src/TGeoParaboloid.cxx, geom/src/TGeoPatternFinder.cxx,
	  geom/src/TGeoPcon.cxx, geom/src/TGeoPgon.cxx,
	  geom/src/TGeoPhysicalNode.cxx, geom/src/TGeoPolygon.cxx,
	  geom/src/TGeoScaledShape.cxx, geom/src/TGeoShape.cxx,
	  geom/src/TGeoShapeAssembly.cxx, geom/src/TGeoSphere.cxx,
	  geom/src/TGeoTorus.cxx, geom/src/TGeoTrd1.cxx,
	  geom/src/TGeoTrd2.cxx, geom/src/TGeoTube.cxx,
	  geom/src/TGeoVolume.cxx, geom/src/TGeoVoxelFinder.cxx,
	  geom/src/TGeoXtru.cxx, geom/src/TVirtualGeoPainter.cxx,
	  geom/src/TVirtualGeoTrack.cxx, geombuilder/inc/LinkDef.h,
	  geombuilder/inc/TGeoBBoxEditor.h,
	  geombuilder/inc/TGeoConeEditor.h,
	  geombuilder/inc/TGeoEltuEditor.h, geombuilder/inc/TGeoGedFrame.h,
	  geombuilder/inc/TGeoHypeEditor.h,
	  geombuilder/inc/TGeoManagerEditor.h,
	  geombuilder/inc/TGeoMaterialEditor.h,
	  geombuilder/inc/TGeoMatrixEditor.h,
	  geombuilder/inc/TGeoMediumEditor.h,
	  geombuilder/inc/TGeoNodeEditor.h,
	  geombuilder/inc/TGeoParaEditor.h,
	  geombuilder/inc/TGeoPconEditor.h,
	  geombuilder/inc/TGeoPgonEditor.h,
	  geombuilder/inc/TGeoSphereEditor.h,
	  geombuilder/inc/TGeoTabManager.h,
	  geombuilder/inc/TGeoTorusEditor.h,
	  geombuilder/inc/TGeoTrapEditor.h,
	  geombuilder/inc/TGeoTrd1Editor.h,
	  geombuilder/inc/TGeoTrd2Editor.h,
	  geombuilder/inc/TGeoTubeEditor.h,
	  geombuilder/inc/TGeoVolumeEditor.h,
	  geombuilder/src/TGeoBBoxEditor.cxx,
	  geombuilder/src/TGeoConeEditor.cxx,
	  geombuilder/src/TGeoEltuEditor.cxx,
	  geombuilder/src/TGeoGedFrame.cxx,
	  geombuilder/src/TGeoHypeEditor.cxx,
	  geombuilder/src/TGeoManagerEditor.cxx,
	  geombuilder/src/TGeoMaterialEditor.cxx,
	  geombuilder/src/TGeoMatrixEditor.cxx,
	  geombuilder/src/TGeoMediumEditor.cxx,
	  geombuilder/src/TGeoNodeEditor.cxx,
	  geombuilder/src/TGeoParaEditor.cxx,
	  geombuilder/src/TGeoPconEditor.cxx,
	  geombuilder/src/TGeoPgonEditor.cxx,
	  geombuilder/src/TGeoSphereEditor.cxx,
	  geombuilder/src/TGeoTabManager.cxx,
	  geombuilder/src/TGeoTorusEditor.cxx,
	  geombuilder/src/TGeoTrapEditor.cxx,
	  geombuilder/src/TGeoTrd1Editor.cxx,
	  geombuilder/src/TGeoTrd2Editor.cxx,
	  geombuilder/src/TGeoTubeEditor.cxx,
	  geombuilder/src/TGeoVolumeEditor.cxx,
	  geompainter/inc/TGeoChecker.h, geompainter/inc/TGeoOverlap.h,
	  geompainter/inc/TGeoTrack.h, geompainter/src/TGeoChecker.cxx,
	  geompainter/src/TGeoOverlap.cxx, geompainter/src/TGeoPainter.cxx,
	  geompainter/src/TGeoTrack.cxx, gfal/inc/LinkDef.h,
	  gfal/inc/TGFALFile.h, gfal/src/TGFALFile.cxx, gl/inc/CsgOps.h,
	  gl/inc/LinkDef.h, gl/inc/TArcBall.h, gl/inc/TGLAxis.h,
	  gl/inc/TGLBoundingBox.h, gl/inc/TGLCamera.h, gl/inc/TGLClip.h,
	  gl/inc/TGLContext.h, gl/inc/TGLContextPrivate.h,
	  gl/inc/TGLCylinder.h, gl/inc/TGLFaceSet.h, gl/inc/TGLFormat.h,
	  gl/inc/TGLIncludes.h, gl/inc/TGLLegoPainter.h,
	  gl/inc/TGLLogicalShape.h, gl/inc/TGLManip.h,
	  gl/inc/TGLManipSet.h, gl/inc/TGLObject.h,
	  gl/inc/TGLOrthoCamera.h, gl/inc/TGLOutput.h, gl/inc/TGLOverlay.h,
	  gl/inc/TGLPShapeObj.h, gl/inc/TGLPShapeObjEditor.h,
	  gl/inc/TGLParametric.h, gl/inc/TGLParametricEquationGL.h,
	  gl/inc/TGLPerspectiveCamera.h, gl/inc/TGLPhysicalShape.h,
	  gl/inc/TGLPlotPainter.h, gl/inc/TGLPolyLine.h,
	  gl/inc/TGLPolyMarker.h, gl/inc/TGLQuadric.h, gl/inc/TGLRnrCtx.h,
	  gl/inc/TGLRotateManip.h, gl/inc/TGLSAFrame.h,
	  gl/inc/TGLSAViewer.h, gl/inc/TGLScaleManip.h, gl/inc/TGLScene.h,
	  gl/inc/TGLSceneBase.h, gl/inc/TGLSceneInfo.h,
	  gl/inc/TGLScenePad.h, gl/inc/TGLSelectBuffer.h,
	  gl/inc/TGLSphere.h, gl/inc/TGLStopwatch.h, gl/inc/TGLText.h,
	  gl/inc/TGLTransManip.h, gl/inc/TGLUtil.h, gl/inc/TGLViewer.h,
	  gl/inc/TGLViewerBase.h, gl/inc/TGLWidget.h,
	  gl/inc/TPointSet3DGL.h, gl/inc/TX11GL.h, gl/src/CsgOps.cxx,
	  gl/src/TArcBall.cxx, gl/src/TF2GL.cxx, gl/src/TGLAxis.cxx,
	  gl/src/TGLBoundingBox.cxx, gl/src/TGLCamera.cxx,
	  gl/src/TGLClip.cxx, gl/src/TGLClipSetEditor.cxx,
	  gl/src/TGLContext.cxx, gl/src/TGLContextPrivate.cxx,
	  gl/src/TGLCylinder.cxx, gl/src/TGLFaceSet.cxx,
	  gl/src/TGLFormat.cxx, gl/src/TGLLegoPainter.cxx,
	  gl/src/TGLLogicalShape.cxx, gl/src/TGLManip.cxx,
	  gl/src/TGLManipSet.cxx, gl/src/TGLObject.cxx,
	  gl/src/TGLOrthoCamera.cxx, gl/src/TGLOutput.cxx,
	  gl/src/TGLOverlay.cxx, gl/src/TGLPShapeObjEditor.cxx,
	  gl/src/TGLParametric.cxx, gl/src/TGLParametricEquationGL.cxx,
	  gl/src/TGLPerspectiveCamera.cxx, gl/src/TGLPhysicalShape.cxx,
	  gl/src/TGLPlotPainter.cxx, gl/src/TGLPolyLine.cxx,
	  gl/src/TGLPolyMarker.cxx, gl/src/TGLQuadric.cxx,
	  gl/src/TGLRnrCtx.cxx, gl/src/TGLRotateManip.cxx,
	  gl/src/TGLSAFrame.cxx, gl/src/TGLSAViewer.cxx,
	  gl/src/TGLScaleManip.cxx, gl/src/TGLScene.cxx,
	  gl/src/TGLSceneBase.cxx, gl/src/TGLSceneInfo.cxx,
	  gl/src/TGLScenePad.cxx, gl/src/TGLSelectBuffer.cxx,
	  gl/src/TGLSelectRecord.cxx, gl/src/TGLSphere.cxx,
	  gl/src/TGLStopwatch.cxx, gl/src/TGLText.cxx,
	  gl/src/TGLTransManip.cxx, gl/src/TGLUtil.cxx,
	  gl/src/TGLViewer.cxx, gl/src/TGLViewerBase.cxx,
	  gl/src/TGLWidget.cxx, gl/src/TH2GL.cxx, gl/src/TPointSet3DGL.cxx,
	  gl/src/TX11GL.cxx, globusauth/src/GlobusAuth.cxx,
	  gpad/inc/LinkDef.h, gpad/inc/TAttCanvas.h, gpad/inc/TButton.h,
	  gpad/inc/TCanvas.h, gpad/inc/TClassTree.h,
	  gpad/inc/TColorWheel.h, gpad/inc/TControlBar.h,
	  gpad/inc/TCreatePrimitives.h, gpad/inc/TDialogCanvas.h,
	  gpad/inc/TGroupButton.h, gpad/inc/TInspectCanvas.h,
	  gpad/inc/TPad.h, gpad/inc/TPaveClass.h, gpad/inc/TSlider.h,
	  gpad/inc/TSliderBox.h, gpad/inc/TView.h, gpad/inc/TViewer3DPad.h,
	  gpad/src/TAttCanvas.cxx, gpad/src/TButton.cxx,
	  gpad/src/TCanvas.cxx, gpad/src/TClassTree.cxx,
	  gpad/src/TColorWheel.cxx, gpad/src/TControlBar.cxx,
	  gpad/src/TCreatePrimitives.cxx, gpad/src/TDialogCanvas.cxx,
	  gpad/src/TGroupButton.cxx, gpad/src/TInspectCanvas.cxx,
	  gpad/src/TPad.cxx, gpad/src/TPaveClass.cxx, gpad/src/TSlider.cxx,
	  gpad/src/TSliderBox.cxx, gpad/src/TView.cxx,
	  gpad/src/TViewer3DPad.cxx, graf/inc/LinkDef1.h,
	  graf/inc/LinkDef2.h, graf/inc/TArc.h, graf/inc/TArrow.h,
	  graf/inc/TAttImage.h, graf/inc/TBox.h, graf/inc/TCrown.h,
	  graf/inc/TCurlyArc.h, graf/inc/TCurlyLine.h, graf/inc/TCutG.h,
	  graf/inc/TDiamond.h, graf/inc/TEllipse.h, graf/inc/TFrame.h,
	  graf/inc/TGaxis.h, graf/inc/TGraph.h,
	  graf/inc/TGraphAsymmErrors.h, graf/inc/TGraphBentErrors.h,
	  graf/inc/TGraphErrors.h, graf/inc/TGraphPolar.h,
	  graf/inc/TGraphQQ.h, graf/inc/TGraphSmooth.h, graf/inc/TImage.h,
	  graf/inc/TImagePlugin.h, graf/inc/TLatex.h, graf/inc/TLegend.h,
	  graf/inc/TLegendEntry.h, graf/inc/TLine.h, graf/inc/TLink.h,
	  graf/inc/TMarker.h, graf/inc/TMultiGraph.h, graf/inc/TPave.h,
	  graf/inc/TPaveLabel.h, graf/inc/TPaveStats.h,
	  graf/inc/TPaveText.h, graf/inc/TPavesText.h, graf/inc/TPie.h,
	  graf/inc/TPoints.h, graf/inc/TPolyLine.h, graf/inc/TSpline.h,
	  graf/inc/TTF.h, graf/inc/TText.h, graf/inc/TWbox.h,
	  graf/src/TArc.cxx, graf/src/TArrow.cxx, graf/src/TAttImage.cxx,
	  graf/src/TBox.cxx, graf/src/TCrown.cxx, graf/src/TCurlyArc.cxx,
	  graf/src/TCurlyLine.cxx, graf/src/TCutG.cxx,
	  graf/src/TDiamond.cxx, graf/src/TEllipse.cxx,
	  graf/src/TFrame.cxx, graf/src/TGaxis.cxx, graf/src/TGraph.cxx,
	  graf/src/TGraphAsymmErrors.cxx, graf/src/TGraphBentErrors.cxx,
	  graf/src/TGraphErrors.cxx, graf/src/TGraphPolar.cxx,
	  graf/src/TGraphQQ.cxx, graf/src/TGraphSmooth.cxx,
	  graf/src/TImage.cxx, graf/src/TLatex.cxx, graf/src/TLegend.cxx,
	  graf/src/TLegendEntry.cxx, graf/src/TLine.cxx,
	  graf/src/TLink.cxx, graf/src/TMarker.cxx,
	  graf/src/TMultiGraph.cxx, graf/src/TPave.cxx,
	  graf/src/TPaveLabel.cxx, graf/src/TPaveStats.cxx,
	  graf/src/TPaveText.cxx, graf/src/TPavesText.cxx,
	  graf/src/TPie.cxx, graf/src/TPolyLine.cxx, graf/src/TSpline.cxx,
	  graf/src/TTF.cxx, graf/src/TText.cxx, graf/src/TWbox.cxx,
	  gui/inc/HelpText.h, gui/inc/LinkDef1.h, gui/inc/LinkDef2.h,
	  gui/inc/LinkDef3.h, gui/inc/TG3DLine.h, gui/inc/TGApplication.h,
	  gui/inc/TGButton.h, gui/inc/TGButtonGroup.h, gui/inc/TGCanvas.h,
	  gui/inc/TGClient.h, gui/inc/TGColorDialog.h,
	  gui/inc/TGColorSelect.h, gui/inc/TGComboBox.h,
	  gui/inc/TGDNDManager.h, gui/inc/TGDimension.h,
	  gui/inc/TGDockableFrame.h, gui/inc/TGDoubleSlider.h,
	  gui/inc/TGFSComboBox.h, gui/inc/TGFSContainer.h,
	  gui/inc/TGFileDialog.h, gui/inc/TGFont.h, gui/inc/TGFontDialog.h,
	  gui/inc/TGFrame.h, gui/inc/TGGC.h, gui/inc/TGIcon.h,
	  gui/inc/TGIdleHandler.h, gui/inc/TGImageMap.h,
	  gui/inc/TGInputDialog.h, gui/inc/TGLabel.h, gui/inc/TGLayout.h,
	  gui/inc/TGListBox.h, gui/inc/TGListTree.h, gui/inc/TGListView.h,
	  gui/inc/TGMdi.h, gui/inc/TGMdiDecorFrame.h, gui/inc/TGMdiFrame.h,
	  gui/inc/TGMdiMainFrame.h, gui/inc/TGMdiMenu.h, gui/inc/TGMenu.h,
	  gui/inc/TGMimeTypes.h, gui/inc/TGMsgBox.h,
	  gui/inc/TGNumberEntry.h, gui/inc/TGObject.h,
	  gui/inc/TGPasswdDialog.h, gui/inc/TGPicture.h,
	  gui/inc/TGProgressBar.h, gui/inc/TGRedirectOutputGuard.h,
	  gui/inc/TGResourcePool.h, gui/inc/TGScrollBar.h,
	  gui/inc/TGShutter.h, gui/inc/TGSlider.h, gui/inc/TGSpeedo.h,
	  gui/inc/TGSplitter.h, gui/inc/TGStatusBar.h, gui/inc/TGString.h,
	  gui/inc/TGTab.h, gui/inc/TGTableLayout.h, gui/inc/TGText.h,
	  gui/inc/TGTextBuffer.h, gui/inc/TGTextEdit.h,
	  gui/inc/TGTextEditDialogs.h, gui/inc/TGTextEditor.h,
	  gui/inc/TGTextEntry.h, gui/inc/TGTextView.h, gui/inc/TGToolBar.h,
	  gui/inc/TGToolTip.h, gui/inc/TGTripleSlider.h, gui/inc/TGView.h,
	  gui/inc/TGWidget.h, gui/inc/TGWindow.h, gui/inc/TGXYLayout.h,
	  gui/inc/TGuiBuilder.h, gui/inc/TRootApplication.h,
	  gui/inc/TRootBrowser.h, gui/inc/TRootCanvas.h,
	  gui/inc/TRootContextMenu.h, gui/inc/TRootControlBar.h,
	  gui/inc/TRootDialog.h, gui/inc/TRootEmbeddedCanvas.h,
	  gui/inc/TRootGuiFactory.h, gui/inc/TRootHelpDialog.h,
	  gui/inc/WidgetMessageTypes.h, gui/src/HelpText.cxx,
	  gui/src/TG3DLine.cxx, gui/src/TGApplication.cxx,
	  gui/src/TGButton.cxx, gui/src/TGButtonGroup.cxx,
	  gui/src/TGCanvas.cxx, gui/src/TGClient.cxx,
	  gui/src/TGColorDialog.cxx, gui/src/TGColorSelect.cxx,
	  gui/src/TGComboBox.cxx, gui/src/TGDNDManager.cxx,
	  gui/src/TGDimension.cxx, gui/src/TGDockableFrame.cxx,
	  gui/src/TGDoubleSlider.cxx, gui/src/TGFSComboBox.cxx,
	  gui/src/TGFSContainer.cxx, gui/src/TGFileDialog.cxx,
	  gui/src/TGFont.cxx, gui/src/TGFontDialog.cxx,
	  gui/src/TGFrame.cxx, gui/src/TGGC.cxx, gui/src/TGIcon.cxx,
	  gui/src/TGIdleHandler.cxx, gui/src/TGImageMap.cxx,
	  gui/src/TGInputDialog.cxx, gui/src/TGLabel.cxx,
	  gui/src/TGLayout.cxx, gui/src/TGListBox.cxx,
	  gui/src/TGListTree.cxx, gui/src/TGListView.cxx,
	  gui/src/TGMdiDecorFrame.cxx, gui/src/TGMdiFrame.cxx,
	  gui/src/TGMdiMainFrame.cxx, gui/src/TGMdiMenu.cxx,
	  gui/src/TGMenu.cxx, gui/src/TGMimeTypes.cxx,
	  gui/src/TGMsgBox.cxx, gui/src/TGNumberEntry.cxx,
	  gui/src/TGObject.cxx, gui/src/TGPasswdDialog.cxx,
	  gui/src/TGPicture.cxx, gui/src/TGProgressBar.cxx,
	  gui/src/TGRedirectOutputGuard.cxx, gui/src/TGResourcePool.cxx,
	  gui/src/TGScrollBar.cxx, gui/src/TGShutter.cxx,
	  gui/src/TGSlider.cxx, gui/src/TGSpeedo.cxx,
	  gui/src/TGSplitter.cxx, gui/src/TGStatusBar.cxx,
	  gui/src/TGString.cxx, gui/src/TGTab.cxx,
	  gui/src/TGTableLayout.cxx, gui/src/TGText.cxx,
	  gui/src/TGTextBuffer.cxx, gui/src/TGTextEdit.cxx,
	  gui/src/TGTextEditDialogs.cxx, gui/src/TGTextEditor.cxx,
	  gui/src/TGTextEntry.cxx, gui/src/TGTextView.cxx,
	  gui/src/TGToolBar.cxx, gui/src/TGToolTip.cxx,
	  gui/src/TGTripleSlider.cxx, gui/src/TGView.cxx,
	  gui/src/TGWindow.cxx, gui/src/TGXYLayout.cxx,
	  gui/src/TGuiBuilder.cxx, gui/src/TRootApplication.cxx,
	  gui/src/TRootBrowser.cxx, gui/src/TRootCanvas.cxx,
	  gui/src/TRootContextMenu.cxx, gui/src/TRootControlBar.cxx,
	  gui/src/TRootDialog.cxx, gui/src/TRootEmbeddedCanvas.cxx,
	  gui/src/TRootGuiFactory.cxx, gui/src/TRootHelpDialog.cxx,
	  guibuilder/inc/LinkDef.h, guibuilder/inc/TGuiBldDragManager.h,
	  guibuilder/inc/TGuiBldEditor.h,
	  guibuilder/inc/TGuiBldHintsButton.h,
	  guibuilder/inc/TGuiBldHintsEditor.h,
	  guibuilder/inc/TGuiBldNameFrame.h,
	  guibuilder/inc/TRootGuiBuilder.h,
	  guibuilder/src/TGuiBldDragManager.cxx,
	  guibuilder/src/TGuiBldEditor.cxx,
	  guibuilder/src/TGuiBldHintsButton.cxx,
	  guibuilder/src/TGuiBldHintsEditor.cxx,
	  guibuilder/src/TGuiBldNameFrame.cxx,
	  guibuilder/src/TRootGuiBuilder.cxx, hbook/inc/THbookBranch.h,
	  hbook/inc/THbookFile.h, hbook/inc/THbookKey.h,
	  hbook/inc/THbookTree.h, hbook/src/THbookBranch.cxx,
	  hbook/src/THbookFile.cxx, hbook/src/THbookKey.cxx,
	  hbook/src/THbookTree.cxx, hist/inc/Foption.h, hist/inc/LinkDef.h,
	  hist/inc/TAxis.h, hist/inc/TBinomialEfficiencyFitter.h,
	  hist/inc/TConfidenceLevel.h, hist/inc/TF1.h, hist/inc/TF12.h,
	  hist/inc/TF2.h, hist/inc/TF3.h, hist/inc/TFormula.h,
	  hist/inc/TFormulaPrimitive.h, hist/inc/TFractionFitter.h,
	  hist/inc/TGraph2D.h, hist/inc/TGraph2DErrors.h,
	  hist/inc/TGraphDelaunay.h, hist/inc/TH1.h, hist/inc/TH1C.h,
	  hist/inc/TH1D.h, hist/inc/TH1F.h, hist/inc/TH1I.h,
	  hist/inc/TH1K.h, hist/inc/TH1S.h, hist/inc/TH2.h,
	  hist/inc/TH2C.h, hist/inc/TH2D.h, hist/inc/TH2F.h,
	  hist/inc/TH2I.h, hist/inc/TH2S.h, hist/inc/TH3.h,
	  hist/inc/TH3C.h, hist/inc/TH3D.h, hist/inc/TH3F.h,
	  hist/inc/TH3I.h, hist/inc/TH3S.h, hist/inc/THLimitsFinder.h,
	  hist/inc/THStack.h, hist/inc/THnSparse.h, hist/inc/TLimit.h,
	  hist/inc/TLimitDataSource.h, hist/inc/TMultiDimFit.h,
	  hist/inc/TPolyMarker.h, hist/inc/TPrincipal.h,
	  hist/inc/TProfile.h, hist/inc/TProfile2D.h,
	  hist/inc/TProfile3D.h, hist/inc/TVirtualHistPainter.h,
	  hist/src/Haxis.cxx, hist/src/TAxis.cxx,
	  hist/src/TBinomialEfficiencyFitter.cxx,
	  hist/src/TConfidenceLevel.cxx, hist/src/TF1.cxx,
	  hist/src/TF12.cxx, hist/src/TF1Helper.cxx, hist/src/TF1Helper.h,
	  hist/src/TF2.cxx, hist/src/TF3.cxx, hist/src/TFormula.cxx,
	  hist/src/TFormulaPrimitive.cxx, hist/src/TFractionFitter.cxx,
	  hist/src/TGraph2D.cxx, hist/src/TGraph2DErrors.cxx,
	  hist/src/TGraphDelaunay.cxx, hist/src/TH1.cxx, hist/src/TH1K.cxx,
	  hist/src/TH2.cxx, hist/src/TH3.cxx, hist/src/THLimitsFinder.cxx,
	  hist/src/THStack.cxx, hist/src/THnSparse.cxx,
	  hist/src/TLimit.cxx, hist/src/TLimitDataSource.cxx,
	  hist/src/TMultiDimFit.cxx, hist/src/TPolyMarker.cxx,
	  hist/src/TPrincipal.cxx, hist/src/TProfile.cxx,
	  hist/src/TProfile2D.cxx, hist/src/TProfile3D.cxx,
	  hist/src/TVirtualHistPainter.cxx, histpainter/inc/Hoption.h,
	  histpainter/inc/Hparam.h, histpainter/inc/LinkDef.h,
	  histpainter/inc/TGraphPainter.h, histpainter/inc/THistPainter.h,
	  histpainter/inc/TLego.h, histpainter/inc/TPainter3dAlgorithms.h,
	  histpainter/inc/TPaletteAxis.h,
	  histpainter/src/TGraphPainter.cxx,
	  histpainter/src/THistPainter.cxx,
	  histpainter/src/TPainter3dAlgorithms.cxx,
	  histpainter/src/TPaletteAxis.cxx, html/inc/LinkDef.h,
	  html/inc/TClassDocOutput.h, html/inc/TDocDirective.h,
	  html/inc/TDocInfo.h, html/inc/TDocOutput.h,
	  html/inc/TDocParser.h, html/inc/THtml.h,
	  html/src/TClassDocOutput.cxx, html/src/TDocInfo.cxx,
	  html/src/TDocOutput.cxx, html/src/TDocParser.cxx,
	  html/src/THtml.cxx, io/inc/LinkDef.h, io/inc/TArchiveFile.h,
	  io/inc/TBufferFile.h, io/inc/TCollectionProxyFactory.h,
	  io/inc/TContainerConverters.h, io/inc/TDirectoryFile.h,
	  io/inc/TEmulatedCollectionProxy.h, io/inc/TEmulatedMapProxy.h,
	  io/inc/TFile.h, io/inc/TFileCacheRead.h,
	  io/inc/TFileCacheWrite.h, io/inc/TFree.h,
	  io/inc/TGenCollectionProxy.h, io/inc/TGenCollectionStreamer.h,
	  io/inc/TKey.h, io/inc/TKeyMapFile.h, io/inc/TMapFile.h,
	  io/inc/TStreamerInfo.h, io/inc/TZIPFile.h,
	  io/src/TArchiveFile.cxx, io/src/TBufferFile.cxx,
	  io/src/TCollectionProxyFactory.cxx,
	  io/src/TContainerConverters.cxx, io/src/TDirectoryFile.cxx,
	  io/src/TEmulatedCollectionProxy.cxx,
	  io/src/TEmulatedMapProxy.cxx, io/src/TFile.cxx,
	  io/src/TFileCacheRead.cxx, io/src/TFileCacheWrite.cxx,
	  io/src/TFree.cxx, io/src/TGenCollectionProxy.cxx,
	  io/src/TGenCollectionStreamer.cxx, io/src/TKey.cxx,
	  io/src/TKeyMapFile.cxx, io/src/TMapFile.cxx,
	  io/src/TStreamerInfo.cxx, io/src/TStreamerInfoReadBuffer.cxx,
	  io/src/TStreamerInfoWriteBuffer.cxx, io/src/TZIPFile.cxx,
	  krb5auth/inc/Krb5Auth.h, krb5auth/inc/TKSocket.h,
	  krb5auth/src/Krb5Auth.cxx, krb5auth/src/TKSocket.cxx,
	  ldap/inc/CintLDAP.h, ldap/inc/TLDAPAttribute.h,
	  ldap/inc/TLDAPEntry.h, ldap/inc/TLDAPResult.h,
	  ldap/inc/TLDAPServer.h, ldap/src/TLDAPAttribute.cxx,
	  ldap/src/TLDAPEntry.cxx, ldap/src/TLDAPResult.cxx,
	  ldap/src/TLDAPServer.cxx, main/src/cppmain.cxx,
	  main/src/h2root.cxx, main/src/pmain.cxx, main/src/rmain.cxx,
	  main/src/roots.cxx, main/src/ssh2rpd.cxx, math/inc/LinkDef.h,
	  math/inc/Math/ParamFunctor.h, math/inc/TComplex.h,
	  math/inc/TMath.h, math/inc/TRandom.h, math/inc/TRandom1.h,
	  math/inc/TRandom2.h, math/inc/TRandom3.h, math/src/TComplex.cxx,
	  math/src/TMath.cxx, math/src/TRandom.cxx, math/src/TRandom1.cxx,
	  math/src/TRandom2.cxx, math/src/TRandom3.cxx,
	  mathcore/build/Makefile.am, mathcore/build/doc_Makefile.am,
	  mathcore/build/inc_Makefile.am,
	  mathcore/build/inc_Math_GenVector_Makefile.am,
	  mathcore/build/inc_Math_Makefile.am,
	  mathcore/build/src_Makefile.am, mathcore/build/test_Makefile.am,
	  mathcore/inc/Math/AxisAngle.h, mathcore/inc/Math/Boost.h,
	  mathcore/inc/Math/BoostX.h, mathcore/inc/Math/BoostY.h,
	  mathcore/inc/Math/BoostZ.h, mathcore/inc/Math/Cartesian2D.h,
	  mathcore/inc/Math/Cartesian3D.h,
	  mathcore/inc/Math/Cylindrical3D.h,
	  mathcore/inc/Math/CylindricalEta3D.h,
	  mathcore/inc/Math/DisplacementVector2D.h,
	  mathcore/inc/Math/DisplacementVector3D.h,
	  mathcore/inc/Math/DistFunc.h,
	  mathcore/inc/Math/DistFuncMathCore.h,
	  mathcore/inc/Math/EulerAngles.h, mathcore/inc/Math/Functor.h,
	  mathcore/inc/Math/GenVector/3DConversions.h,
	  mathcore/inc/Math/GenVector/3DDistances.h,
	  mathcore/inc/Math/GenVector/AxisAngle.h,
	  mathcore/inc/Math/GenVector/AxisAnglefwd.h,
	  mathcore/inc/Math/GenVector/BitReproducible.h,
	  mathcore/inc/Math/GenVector/Boost.h,
	  mathcore/inc/Math/GenVector/BoostX.h,
	  mathcore/inc/Math/GenVector/BoostXfwd.h,
	  mathcore/inc/Math/GenVector/BoostY.h,
	  mathcore/inc/Math/GenVector/BoostYfwd.h,
	  mathcore/inc/Math/GenVector/BoostZ.h,
	  mathcore/inc/Math/GenVector/BoostZfwd.h,
	  mathcore/inc/Math/GenVector/Boostfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian2D.h,
	  mathcore/inc/Math/GenVector/Cartesian2Dfwd.h,
	  mathcore/inc/Math/GenVector/Cartesian3D.h,
	  mathcore/inc/Math/GenVector/Cartesian3Dfwd.h,
	  mathcore/inc/Math/GenVector/CoordinateSystemTags.h,
	  mathcore/inc/Math/GenVector/Cylindrical3D.h,
	  mathcore/inc/Math/GenVector/Cylindrical3Dfwd.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3D.h,
	  mathcore/inc/Math/GenVector/CylindricalEta3Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3D.h,
	  mathcore/inc/Math/GenVector/DisplacementVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/EulerAngles.h,
	  mathcore/inc/Math/GenVector/EulerAnglesfwd.h,
	  mathcore/inc/Math/GenVector/GenVectorIO.h,
	  mathcore/inc/Math/GenVector/GenVector_exception.h,
	  mathcore/inc/Math/GenVector/LorentzRotation.h,
	  mathcore/inc/Math/GenVector/LorentzRotationfwd.h,
	  mathcore/inc/Math/GenVector/LorentzVector.h,
	  mathcore/inc/Math/GenVector/LorentzVectorfwd.h,
	  mathcore/inc/Math/GenVector/Plane3D.h,
	  mathcore/inc/Math/GenVector/Polar2D.h,
	  mathcore/inc/Math/GenVector/Polar2Dfwd.h,
	  mathcore/inc/Math/GenVector/Polar3D.h,
	  mathcore/inc/Math/GenVector/Polar3Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector2D.h,
	  mathcore/inc/Math/GenVector/PositionVector2Dfwd.h,
	  mathcore/inc/Math/GenVector/PositionVector3D.h,
	  mathcore/inc/Math/GenVector/PositionVector3Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4D.h,
	  mathcore/inc/Math/GenVector/PtEtaPhiM4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzE4Dfwd.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4D.h,
	  mathcore/inc/Math/GenVector/PxPyPzM4Dfwd.h,
	  mathcore/inc/Math/GenVector/Quaternion.h,
	  mathcore/inc/Math/GenVector/Quaternionfwd.h,
	  mathcore/inc/Math/GenVector/Rotation3D.h,
	  mathcore/inc/Math/GenVector/Rotation3Dfwd.h,
	  mathcore/inc/Math/GenVector/RotationX.h,
	  mathcore/inc/Math/GenVector/RotationXfwd.h,
	  mathcore/inc/Math/GenVector/RotationY.h,
	  mathcore/inc/Math/GenVector/RotationYfwd.h,
	  mathcore/inc/Math/GenVector/RotationZ.h,
	  mathcore/inc/Math/GenVector/RotationZYX.h,
	  mathcore/inc/Math/GenVector/RotationZYXfwd.h,
	  mathcore/inc/Math/GenVector/RotationZfwd.h,
	  mathcore/inc/Math/GenVector/Transform3D.h,
	  mathcore/inc/Math/GenVector/Translation3D.h,
	  mathcore/inc/Math/GenVector/VectorUtil.h,
	  mathcore/inc/Math/GenVector/eta.h,
	  mathcore/inc/Math/GenVector/etaMax.h,
	  mathcore/inc/Math/IFunction.h, mathcore/inc/Math/IFunctionfwd.h,
	  mathcore/inc/Math/IParamFunction.h,
	  mathcore/inc/Math/IParamFunctionfwd.h,
	  mathcore/inc/Math/LinkDef.h, mathcore/inc/Math/LinkDef_Func.h,
	  mathcore/inc/Math/LinkDef_GenVector.h,
	  mathcore/inc/Math/LinkDef_GenVector32.h,
	  mathcore/inc/Math/LinkDef_Point3D.h,
	  mathcore/inc/Math/LinkDef_Rotation.h,
	  mathcore/inc/Math/LinkDef_Vector3D.h,
	  mathcore/inc/Math/LinkDef_Vector4D.h,
	  mathcore/inc/Math/LorentzRotation.h,
	  mathcore/inc/Math/LorentzVector.h, mathcore/inc/Math/Math.h,
	  mathcore/inc/Math/PdfFunc.h, mathcore/inc/Math/PdfFuncMathCore.h,
	  mathcore/inc/Math/Plane3D.h, mathcore/inc/Math/Point2D.h,
	  mathcore/inc/Math/Point2Dfwd.h, mathcore/inc/Math/Point3D.h,
	  mathcore/inc/Math/Point3Dfwd.h, mathcore/inc/Math/Polar2D.h,
	  mathcore/inc/Math/Polar3D.h,
	  mathcore/inc/Math/PositionVector2D.h,
	  mathcore/inc/Math/PositionVector3D.h,
	  mathcore/inc/Math/ProbFunc.h,
	  mathcore/inc/Math/ProbFuncMathCore.h,
	  mathcore/inc/Math/PtEtaPhiE4D.h, mathcore/inc/Math/PtEtaPhiM4D.h,
	  mathcore/inc/Math/PxPyPzE4D.h, mathcore/inc/Math/PxPyPzM4D.h,
	  mathcore/inc/Math/Quaternion.h, mathcore/inc/Math/Rotation3D.h,
	  mathcore/inc/Math/RotationX.h, mathcore/inc/Math/RotationY.h,
	  mathcore/inc/Math/RotationZ.h, mathcore/inc/Math/RotationZYX.h,
	  mathcore/inc/Math/SpecFunc.h,
	  mathcore/inc/Math/SpecFuncMathCore.h,
	  mathcore/inc/Math/Transform3D.h,
	  mathcore/inc/Math/Translation3D.h, mathcore/inc/Math/Util.h,
	  mathcore/inc/Math/Vector2D.h, mathcore/inc/Math/Vector2Dfwd.h,
	  mathcore/inc/Math/Vector3D.h, mathcore/inc/Math/Vector3Dfwd.h,
	  mathcore/inc/Math/Vector4D.h, mathcore/inc/Math/Vector4Dfwd.h,
	  mathcore/inc/Math/VectorUtil.h,
	  mathcore/inc/Math/VectorUtil_Cint.h,
	  mathcore/inc/Math/WrappedFunction.h,
	  mathcore/inc/Math/WrappedParamFunction.h,
	  mathcore/src/3DConversions.cxx, mathcore/src/3DDistances.cxx,
	  mathcore/src/AxisAngle.cxx, mathcore/src/AxisAngleXother.cxx,
	  mathcore/src/BitReproducible.cxx, mathcore/src/Boost.cxx,
	  mathcore/src/BoostX.cxx, mathcore/src/BoostY.cxx,
	  mathcore/src/BoostZ.cxx, mathcore/src/EulerAngles.cxx,
	  mathcore/src/GenVector_exception.cxx,
	  mathcore/src/LorentzRotation.cxx,
	  mathcore/src/PdfFuncMathCore.cxx, mathcore/src/Plane3D.cxx,
	  mathcore/src/ProbFuncMathCore.cxx, mathcore/src/Quaternion.cxx,
	  mathcore/src/QuaternionXaxial.cxx, mathcore/src/Rotation3D.cxx,
	  mathcore/src/Rotation3DxAxial.cxx, mathcore/src/RotationZYX.cxx,
	  mathcore/src/SpecFuncMathCore.cxx, mathcore/src/Transform3D.cxx,
	  mathcore/src/Translation3D.cxx, mathcore/src/VectorUtil.cxx,
	  mathcore/test/stress2D.cxx, mathmore/build/Makefile.am,
	  mathmore/build/doc_Makefile.am, mathmore/build/inc_Makefile.am,
	  mathmore/build/inc_Math_GenVector_Makefile.am,
	  mathmore/build/inc_Math_Makefile.am,
	  mathmore/build/src_Makefile.am, mathmore/build/test_Makefile.am,
	  mathmore/inc/Math/Chebyshev.h, mathmore/inc/Math/Derivator.h,
	  mathmore/inc/Math/DistFuncMathMore.h,
	  mathmore/inc/Math/GSLFunctionAdapter.h,
	  mathmore/inc/Math/GSLRndmEngines.h,
	  mathmore/inc/Math/GSLRootFinder.h,
	  mathmore/inc/Math/GSLRootFinderDeriv.h,
	  mathmore/inc/Math/GSLRootHelper.h,
	  mathmore/inc/Math/IntegrationTypes.h,
	  mathmore/inc/Math/Integrator.h,
	  mathmore/inc/Math/InterpolationTypes.h,
	  mathmore/inc/Math/Interpolator.h, mathmore/inc/Math/LinkDef.h,
	  mathmore/inc/Math/LinkDef_Func.h,
	  mathmore/inc/Math/LinkDef_RootFinding.h,
	  mathmore/inc/Math/LinkDef_SpecFunc.h,
	  mathmore/inc/Math/LinkDef_StatFunc.h,
	  mathmore/inc/Math/Minimizer1D.h,
	  mathmore/inc/Math/ParamFunction.h,
	  mathmore/inc/Math/PdfFuncMathMore.h,
	  mathmore/inc/Math/Polynomial.h, mathmore/inc/Math/ProbFuncInv.h,
	  mathmore/inc/Math/ProbFuncMathMore.h, mathmore/inc/Math/Random.h,
	  mathmore/inc/Math/RootFinder.h,
	  mathmore/inc/Math/RootFinderAlgorithms.h,
	  mathmore/inc/Math/SpecFuncMathMore.h,
	  mathmore/inc/Math/WrappedMultiTF1.h,
	  mathmore/inc/Math/WrappedTF1.h, mathmore/src/Chebyshev.cxx,
	  mathmore/src/Derivator.cxx, mathmore/src/GSL1DMinimizer.h,
	  mathmore/src/GSLChebSeries.h, mathmore/src/GSLDerivator.cxx,
	  mathmore/src/GSLDerivator.h, mathmore/src/GSLError.h,
	  mathmore/src/GSLFunctionWrapper.h,
	  mathmore/src/GSLIntegrationWorkspace.h,
	  mathmore/src/GSLIntegrator.cxx, mathmore/src/GSLIntegrator.h,
	  mathmore/src/GSLInterpolator.cxx, mathmore/src/GSLInterpolator.h,
	  mathmore/src/GSLRndmEngines.cxx, mathmore/src/GSLRootFSolver.h,
	  mathmore/src/GSLRootFdFSolver.h, mathmore/src/GSLRootFinder.cxx,
	  mathmore/src/GSLRootFinderDeriv.cxx,
	  mathmore/src/GSLRootHelper.cxx, mathmore/src/Integrator.cxx,
	  mathmore/src/Interpolator.cxx, mathmore/src/Minimizer1D.cxx,
	  mathmore/src/OneDimFunctionAdapter.h,
	  mathmore/src/ParamFunction.cxx, mathmore/src/PdfFuncMathMore.cxx,
	  mathmore/src/Polynomial.cxx, mathmore/src/ProbFuncInv.cxx,
	  mathmore/src/ProbFuncMathMore.cxx,
	  mathmore/src/RootFinderAlgorithms.cxx,
	  mathmore/src/SpecFuncMathMore.cxx,
	  mathmore/src/complex_quartic.h, matrix/inc/LinkDef.h,
	  matrix/inc/TDecompBK.h, matrix/inc/TDecompBase.h,
	  matrix/inc/TDecompChol.h, matrix/inc/TDecompLU.h,
	  matrix/inc/TDecompQRH.h, matrix/inc/TDecompSVD.h,
	  matrix/inc/TDecompSparse.h, matrix/inc/TMatrix.h,
	  matrix/inc/TMatrixDBase.h, matrix/inc/TMatrixDBasefwd.h,
	  matrix/inc/TMatrixDEigen.h, matrix/inc/TMatrixDLazy.h,
	  matrix/inc/TMatrixDSparse.h, matrix/inc/TMatrixDSym.h,
	  matrix/inc/TMatrixDSymEigen.h, matrix/inc/TMatrixDUtils.h,
	  matrix/inc/TMatrixDUtilsfwd.h, matrix/inc/TMatrixFBase.h,
	  matrix/inc/TMatrixFBasefwd.h, matrix/inc/TMatrixFLazy.h,
	  matrix/inc/TMatrixFSparse.h, matrix/inc/TMatrixFSym.h,
	  matrix/inc/TMatrixFUtils.h, matrix/inc/TMatrixFUtilsfwd.h,
	  matrix/inc/TMatrixT.h, matrix/inc/TMatrixTBase.h,
	  matrix/inc/TMatrixTCramerInv.h, matrix/inc/TMatrixTLazy.h,
	  matrix/inc/TMatrixTSparse.h, matrix/inc/TMatrixTSym.h,
	  matrix/inc/TMatrixTSymCramerInv.h, matrix/inc/TMatrixTUtils.h,
	  matrix/inc/TVector.h, matrix/inc/TVectorT.h,
	  matrix/src/TDecompBK.cxx, matrix/src/TDecompBase.cxx,
	  matrix/src/TDecompChol.cxx, matrix/src/TDecompLU.cxx,
	  matrix/src/TDecompQRH.cxx, matrix/src/TDecompSVD.cxx,
	  matrix/src/TDecompSparse.cxx, matrix/src/TMatrixDEigen.cxx,
	  matrix/src/TMatrixDSymEigen.cxx, matrix/src/TMatrixT.cxx,
	  matrix/src/TMatrixTBase.cxx, matrix/src/TMatrixTCramerInv.cxx,
	  matrix/src/TMatrixTLazy.cxx, matrix/src/TMatrixTSparse.cxx,
	  matrix/src/TMatrixTSym.cxx, matrix/src/TMatrixTSymCramerInv.cxx,
	  matrix/src/TMatrixTUtils.cxx, matrix/src/TVectorT.cxx,
	  meta/inc/LinkDef.h, meta/inc/TBaseClass.h, meta/inc/TCint.h,
	  meta/inc/TClass.h, meta/inc/TClassGenerator.h,
	  meta/inc/TClassMenuItem.h, meta/inc/TClassRef.h,
	  meta/inc/TClassStreamer.h, meta/inc/TDataMember.h,
	  meta/inc/TDataType.h, meta/inc/TDictionary.h,
	  meta/inc/TFunction.h, meta/inc/TGenericClassInfo.h,
	  meta/inc/TGlobal.h, meta/inc/TInterpreter.h,
	  meta/inc/TIsAProxy.h, meta/inc/TMemberStreamer.h,
	  meta/inc/TMethod.h, meta/inc/TMethodArg.h,
	  meta/inc/TMethodCall.h, meta/inc/TRealData.h,
	  meta/inc/TStreamer.h, meta/inc/TStreamerElement.h,
	  meta/inc/TVirtualIsAProxy.h, meta/inc/TVirtualRefProxy.h,
	  meta/inc/TVirtualStreamerInfo.h, meta/src/TBaseClass.cxx,
	  meta/src/TCint.cxx, meta/src/TClass.cxx,
	  meta/src/TClassGenerator.cxx, meta/src/TClassMenuItem.cxx,
	  meta/src/TClassRef.cxx, meta/src/TDataMember.cxx,
	  meta/src/TDataType.cxx, meta/src/TFunction.cxx,
	  meta/src/TGenericClassInfo.cxx, meta/src/TGlobal.cxx,
	  meta/src/TInterpreter.cxx, meta/src/TIsAProxy.cxx,
	  meta/src/TMethod.cxx, meta/src/TMethodArg.cxx,
	  meta/src/TMethodCall.cxx, meta/src/TRealData.cxx,
	  meta/src/TStreamerElement.cxx, meta/src/TToggle.cxx,
	  meta/src/TToggleGroup.cxx, meta/src/TVirtualStreamerInfo.cxx,
	  metautils/inc/TClassEdit.h, metautils/src/TClassEdit.cxx,
	  minuit/inc/LinkDef.h, minuit/inc/TFitter.h,
	  minuit/inc/TLinearFitter.h, minuit/inc/TMinuit.h,
	  minuit/src/TFitter.cxx, minuit/src/TLinearFitter.cxx,
	  minuit/src/TMinuit.cxx, minuit2/build/inc_Makefile.am,
	  minuit2/inc/LinkDef.h, minuit2/inc/Minuit2/ABObj.h,
	  minuit2/inc/Minuit2/ABProd.h, minuit2/inc/Minuit2/ABSum.h,
	  minuit2/inc/Minuit2/ABTypes.h,
	  minuit2/inc/Minuit2/AnalyticalGradientCalculator.h,
	  minuit2/inc/Minuit2/BasicFunctionGradient.h,
	  minuit2/inc/Minuit2/BasicFunctionMinimum.h,
	  minuit2/inc/Minuit2/BasicMinimumError.h,
	  minuit2/inc/Minuit2/BasicMinimumParameters.h,
	  minuit2/inc/Minuit2/BasicMinimumSeed.h,
	  minuit2/inc/Minuit2/BasicMinimumState.h,
	  minuit2/inc/Minuit2/CombinedMinimizer.h,
	  minuit2/inc/Minuit2/CombinedMinimumBuilder.h,
	  minuit2/inc/Minuit2/ContoursError.h,
	  minuit2/inc/Minuit2/DavidonErrorUpdator.h,
	  minuit2/inc/Minuit2/FCNBase.h,
	  minuit2/inc/Minuit2/FCNGradientBase.h,
	  minuit2/inc/Minuit2/FumiliBuilder.h,
	  minuit2/inc/Minuit2/FumiliChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliErrorUpdator.h,
	  minuit2/inc/Minuit2/FumiliFCNBase.h,
	  minuit2/inc/Minuit2/FumiliGradientCalculator.h,
	  minuit2/inc/Minuit2/FumiliMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FumiliMinimizer.h,
	  minuit2/inc/Minuit2/FumiliStandardChi2FCN.h,
	  minuit2/inc/Minuit2/FumiliStandardMaximumLikelihoodFCN.h,
	  minuit2/inc/Minuit2/FunctionGradient.h,
	  minuit2/inc/Minuit2/FunctionMinimizer.h,
	  minuit2/inc/Minuit2/FunctionMinimum.h,
	  minuit2/inc/Minuit2/GenericFunction.h,
	  minuit2/inc/Minuit2/GradientCalculator.h,
	  minuit2/inc/Minuit2/HessianGradientCalculator.h,
	  minuit2/inc/Minuit2/InitialGradientCalculator.h,
	  minuit2/inc/Minuit2/LASymMatrix.h,
	  minuit2/inc/Minuit2/LAVector.h, minuit2/inc/Minuit2/LaInverse.h,
	  minuit2/inc/Minuit2/LaOuterProduct.h,
	  minuit2/inc/Minuit2/LaProd.h, minuit2/inc/Minuit2/LaSum.h,
	  minuit2/inc/Minuit2/MatrixInverse.h,
	  minuit2/inc/Minuit2/MinimumBuilder.h,
	  minuit2/inc/Minuit2/MinimumError.h,
	  minuit2/inc/Minuit2/MinimumErrorUpdator.h,
	  minuit2/inc/Minuit2/MinimumParameters.h,
	  minuit2/inc/Minuit2/MinimumSeed.h,
	  minuit2/inc/Minuit2/MinimumSeedGenerator.h,
	  minuit2/inc/Minuit2/MinimumState.h,
	  minuit2/inc/Minuit2/MinosError.h,
	  minuit2/inc/Minuit2/MinuitParameter.h,
	  minuit2/inc/Minuit2/MnApplication.h,
	  minuit2/inc/Minuit2/MnConfig.h, minuit2/inc/Minuit2/MnContours.h,
	  minuit2/inc/Minuit2/MnCovarianceSqueeze.h,
	  minuit2/inc/Minuit2/MnCross.h, minuit2/inc/Minuit2/MnEigen.h,
	  minuit2/inc/Minuit2/MnFcn.h,
	  minuit2/inc/Minuit2/MnFumiliMinimize.h,
	  minuit2/inc/Minuit2/MnFunctionCross.h,
	  minuit2/inc/Minuit2/MnGlobalCorrelationCoeff.h,
	  minuit2/inc/Minuit2/MnHesse.h,
	  minuit2/inc/Minuit2/MnLineSearch.h,
	  minuit2/inc/Minuit2/MnMachinePrecision.h,
	  minuit2/inc/Minuit2/MnMatrix.h, minuit2/inc/Minuit2/MnMigrad.h,
	  minuit2/inc/Minuit2/MnMinimize.h, minuit2/inc/Minuit2/MnMinos.h,
	  minuit2/inc/Minuit2/MnParabola.h,
	  minuit2/inc/Minuit2/MnParabolaFactory.h,
	  minuit2/inc/Minuit2/MnParabolaPoint.h,
	  minuit2/inc/Minuit2/MnParameterScan.h,
	  minuit2/inc/Minuit2/MnPlot.h, minuit2/inc/Minuit2/MnPosDef.h,
	  minuit2/inc/Minuit2/MnPrint.h,
	  minuit2/inc/Minuit2/MnRefCountedPointer.h,
	  minuit2/inc/Minuit2/MnReferenceCounter.h,
	  minuit2/inc/Minuit2/MnScan.h,
	  minuit2/inc/Minuit2/MnSeedGenerator.h,
	  minuit2/inc/Minuit2/MnSimplex.h,
	  minuit2/inc/Minuit2/MnStrategy.h, minuit2/inc/Minuit2/MnTiny.h,
	  minuit2/inc/Minuit2/MnUserCovariance.h,
	  minuit2/inc/Minuit2/MnUserFcn.h,
	  minuit2/inc/Minuit2/MnUserParameterState.h,
	  minuit2/inc/Minuit2/MnUserParameters.h,
	  minuit2/inc/Minuit2/MnUserTransformation.h,
	  minuit2/inc/Minuit2/MnVectorTransform.h,
	  minuit2/inc/Minuit2/ModularFunctionMinimizer.h,
	  minuit2/inc/Minuit2/NegativeG2LineSearch.h,
	  minuit2/inc/Minuit2/Numerical2PGradientCalculator.h,
	  minuit2/inc/Minuit2/ParametricFunction.h,
	  minuit2/inc/Minuit2/ScanBuilder.h,
	  minuit2/inc/Minuit2/ScanMinimizer.h,
	  minuit2/inc/Minuit2/SimplexBuilder.h,
	  minuit2/inc/Minuit2/SimplexMinimizer.h,
	  minuit2/inc/Minuit2/SimplexParameters.h,
	  minuit2/inc/Minuit2/SimplexSeedGenerator.h,
	  minuit2/inc/Minuit2/SinParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtLowParameterTransformation.h,
	  minuit2/inc/Minuit2/SqrtUpParameterTransformation.h,
	  minuit2/inc/Minuit2/StackAllocator.h,
	  minuit2/inc/Minuit2/VariableMetricBuilder.h,
	  minuit2/inc/Minuit2/VariableMetricEDMEstimator.h,
	  minuit2/inc/Minuit2/VariableMetricMinimizer.h,
	  minuit2/inc/Minuit2/VectorOuterProduct.h,
	  minuit2/inc/TBinLikelihoodFCN.h, minuit2/inc/TChi2ExtendedFCN.h,
	  minuit2/inc/TChi2ExtendedFitData.h, minuit2/inc/TChi2FCN.h,
	  minuit2/inc/TChi2FitData.h, minuit2/inc/TFcnAdapter.h,
	  minuit2/inc/TFitterFumili.h, minuit2/inc/TFitterMinuit.h,
	  minuit2/inc/TFumiliFCN.h,
	  minuit2/src/AnalyticalGradientCalculator.cxx,
	  minuit2/src/BasicMinimumError.cxx,
	  minuit2/src/CombinedMinimumBuilder.cxx,
	  minuit2/src/DavidonErrorUpdator.cxx, minuit2/src/FitterUtil.cxx,
	  minuit2/src/FitterUtil.h, minuit2/src/FumiliBuilder.cxx,
	  minuit2/src/FumiliErrorUpdator.cxx,
	  minuit2/src/FumiliGradientCalculator.cxx,
	  minuit2/src/FumiliMinimizer.cxx,
	  minuit2/src/FumiliStandardChi2FCN.cxx,
	  minuit2/src/FumiliStandardMaximumLikelihoodFCN.cxx,
	  minuit2/src/HessianGradientCalculator.cxx,
	  minuit2/src/InitialGradientCalculator.cxx,
	  minuit2/src/LaEigenValues.cxx, minuit2/src/LaInnerProduct.cxx,
	  minuit2/src/LaInverse.cxx, minuit2/src/LaOuterProduct.cxx,
	  minuit2/src/LaSumOfElements.cxx,
	  minuit2/src/LaVtMVSimilarity.cxx, minuit2/src/MnApplication.cxx,
	  minuit2/src/MnContours.cxx, minuit2/src/MnCovarianceSqueeze.cxx,
	  minuit2/src/MnEigen.cxx, minuit2/src/MnFcn.cxx,
	  minuit2/src/MnFumiliMinimize.cxx,
	  minuit2/src/MnFunctionCross.cxx,
	  minuit2/src/MnGlobalCorrelationCoeff.cxx,
	  minuit2/src/MnHesse.cxx, minuit2/src/MnLineSearch.cxx,
	  minuit2/src/MnMachinePrecision.cxx, minuit2/src/MnMinos.cxx,
	  minuit2/src/MnParabolaFactory.cxx,
	  minuit2/src/MnParameterScan.cxx, minuit2/src/MnPlot.cxx,
	  minuit2/src/MnPosDef.cxx, minuit2/src/MnPrint.cxx,
	  minuit2/src/MnScan.cxx, minuit2/src/MnSeedGenerator.cxx,
	  minuit2/src/MnStrategy.cxx, minuit2/src/MnTiny.cxx,
	  minuit2/src/MnUserFcn.cxx, minuit2/src/MnUserParameterState.cxx,
	  minuit2/src/MnUserParameters.cxx,
	  minuit2/src/MnUserTransformation.cxx,
	  minuit2/src/ModularFunctionMinimizer.cxx,
	  minuit2/src/NegativeG2LineSearch.cxx,
	  minuit2/src/Numerical2PGradientCalculator.cxx,
	  minuit2/src/ParametricFunction.cxx, minuit2/src/ScanBuilder.cxx,
	  minuit2/src/SimplexBuilder.cxx,
	  minuit2/src/SimplexParameters.cxx,
	  minuit2/src/SimplexSeedGenerator.cxx,
	  minuit2/src/SinParameterTransformation.cxx,
	  minuit2/src/SqrtLowParameterTransformation.cxx,
	  minuit2/src/SqrtUpParameterTransformation.cxx,
	  minuit2/src/TBinLikelihoodFCN.cxx,
	  minuit2/src/TChi2ExtendedFCN.cxx,
	  minuit2/src/TChi2ExtendedFitData.cxx, minuit2/src/TChi2FCN.cxx,
	  minuit2/src/TChi2FitData.cxx, minuit2/src/TFcnAdapter.cxx,
	  minuit2/src/