- Feb 04, 2013
-
-
Fons Rademakers authored
on llvm 3.2svn). Mostly were: warning: private field 'fOneDim' is not used [-Wunused-private-field] git-svn-id: http://root.cern.ch/svn/root/trunk@48467 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 14, 2012
-
-
Fons Rademakers authored
while with cling ;-) ). git-svn-id: http://root.cern.ch/svn/root/trunk@48043 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jul 04, 2012
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44879 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 04, 2012
-
-
Axel Naumann authored
using namespace std; from Riostream.h, which has huge consequences for all of ROOT. Riostream.h is now a simple wrapper for fstream, iostream, iomanip for backward compatibility; Riosfwd.h simply wraps iosfwd. Because of templates and their inline functions, Riostream.h needed to be included in headers, too (e.g. TParameter.h), which violated the assumption that Riostream.h is not exposing its using namespace std to headers. ROOT now requires R__ANSISTREAM, R__SSTREAM, which does not change the set of supported compilers. Without "using namespace std", several identifiers are now prefixed by std::; e.g. roofit/* source files now have a using namespace std to keep their coding style. TFile::MakeProject() now generates "using namespace std" to convert the CINT-style class names into C++ ones. git-svn-id: http://root.cern.ch/svn/root/trunk@44507 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 10, 2011
-
-
Philippe Canal authored
Remove all assigned but unused variable discovered by g++ 4.6.1 (including one completely nop function) git-svn-id: http://root.cern.ch/svn/root/trunk@41891 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 08, 2010
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@37419 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 07, 2010
-
-
Lorenzo Moneta authored
(have different default name for 1D or multi-dim) - update doc - add from Bartolomeu binning of kdtree returning array with volume edges. They can be used to fill a variable bin histogram or a TH2Poly in the 2D case git-svn-id: http://root.cern.ch/svn/root/trunk@37371 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 03, 2010
-
-
Lorenzo Moneta authored
add method DistSampler::Init passing the options add new class TFoamSampler implementing the DistSampler interface using TFoam fix correct number of function calls when using the Fumili-like methods git-svn-id: http://root.cern.ch/svn/root/trunk@37232 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 02, 2010
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@36037 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 01, 2010
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@36024 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 30, 2010
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@35900 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 21, 2010
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@35526 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 26, 2010
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@35030 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 25, 2010
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@34996 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 23, 2010
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@34950 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 30, 2010
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@34238 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 22, 2009
-
-
Rene Brun authored
Fix a memory leak. git-svn-id: http://root.cern.ch/svn/root/trunk@29138 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 15, 2009
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@28994 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 16, 2009
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@28260 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 31, 2008
-
-
Rene Brun authored
The concrete implementation of the class is in TCint. The new functions are essentially interfaces to the existing CINT C++ classes like G__ClassInfo, G__CallFunc, G__DataMemberInfo, G__MethodInfo, G__TypeInfo and G__TypedefInfo. Most of these functions will call the Reflex interface once the CINT/Reflex interface will be available later this year. All direct calls to CINT are replaced by calls like gCint->ClassInfo_xxx where gCint points to the TCint implementation. The existing calls to TCint via gInterpreter are kept because on Windows gInterpreter does not call directly TCint, but instead call TWin32InterpreterProxy that in turns call TCint. On Linux and Mac, gInterpreter and gCint are equivalent. Once the transformation using gCint will be completed, it will be possible to specify at startup time which version of CINT (CINT or CINT7) by loading dynamically TCint or TCint7.--This line, and those below, will be ignored-- M core/meta/src/TStreamerElement.cxx M core/meta/src/TCint.cxx M core/meta/src/TGlobal.cxx M core/meta/src/TBaseClass.cxx M core/meta/src/TDataMember.cxx M core/meta/src/TInterpreter.cxx M core/meta/src/TClass.cxx M core/meta/src/TMethodArg.cxx M core/meta/src/TDataType.cxx M core/meta/src/TMethodCall.cxx M core/meta/src/TIsAProxy.cxx M core/meta/src/TMethod.cxx M core/meta/src/TFunction.cxx M core/meta/inc/TClass.h M core/meta/inc/TDictionary.h M core/meta/inc/TMethodArg.h M core/meta/inc/TDataType.h M core/meta/inc/TMethodCall.h M core/meta/inc/TMethod.h M core/meta/inc/TFunction.h M core/meta/inc/TCint.h M core/meta/inc/TGlobal.h M core/meta/inc/TBaseClass.h M core/meta/inc/TDataMember.h M core/meta/inc/TInterpreter.h M core/thread/src/TThread.cxx M core/base/src/TVirtualFitter.cxx M core/base/src/TStorage.cxx M core/base/src/TQConnection.cxx M core/base/src/TROOT.cxx M core/base/src/TSystem.cxx M core/base/src/TQObject.cxx M core/rint/src/TRint.cxx M core/rint/src/TTabCom.cxx M math/foam/src/TFoam.cxx M math/minuit2/src/TFitterMinuit.cxx M math/mathcore/src/FunctorCint.cxx M math/minuit/src/TMinuit.cxx M tree/tree/src/TTree.cxx M tree/tree/src/TSelectorCint.cxx M tree/tree/src/TSelector.cxx M tree/tree/inc/TSelectorCint.h M roofit/roofitcore/src/RooGenCategory.cxx M roofit/roofitcore/src/RooWorkspace.cxx M hist/hist/src/TF1.cxx M gui/guibuilder/src/TGuiBldDragManager.cxx M net/alien/inc/TAlienSystem.h git-svn-id: http://root.cern.ch/svn/root/trunk@24077 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 28, 2008
-
-
Fons Rademakers authored
mathcore mathmore fftw foam fumili genvector matrix minuit minuit2 mlp physics smatrix splot unuran quadp git-svn-id: http://root.cern.ch/svn/root/trunk@22885 27541ba8-7e3a-0410-8455-c3a389f83636
-