- Dec 17, 2013
-
-
Danilo Piparo authored
which happens through rootcling and not anymore through rlibmap. Signed-off-by:
Danilo Piparo <danilo.piparo@cern.ch> Signed-off-by:
Fons Rademakers <Fons.Rademakers@cern.ch>
-
- Dec 05, 2013
-
-
Lorenzo Moneta authored
-
- Oct 01, 2013
-
-
Lorenzo Moneta authored
- Add a Scalar typedef definition in the TVectors in order to use the ROOT::Math::VectorUtil functions - Fix a bug introduced in the Choleski decomposition for making it compiling with Vc. This fixes the testInversion test
-
- Jul 18, 2013
-
-
Philippe Canal authored
-
Philippe Canal authored
-
Philippe Canal authored
-
- Jun 12, 2013
-
-
Philippe Canal authored
-
- Feb 06, 2013
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@48477 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 17, 2012
-
-
Lorenzo Moneta authored
Add proper default constructors This fixes https://savannah.cern.ch/bugs/?98203 git-svn-id: http://root.cern.ch/svn/root/trunk@46612 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Aug 29, 2012
-
-
Lorenzo Moneta authored
(see https://savannah.cern.ch/bugs/?96380 ) git-svn-id: http://root.cern.ch/svn/root/trunk@45725 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
-
- May 03, 2012
-
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44084 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 30, 2012
-
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44032 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jan 19, 2012
-
-
Axel Naumann authored
git-svn-id: http://root.cern.ch/svn/root/trunk@42733 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 27, 2011
-
-
Fons Rademakers authored
Introduce alternative cmake based build system. Cmake is especially convenient for building on Windows, as it can produce VC projects or nmake files and does not require cygwin to be installed. In addition on OSX Xcode projects can be generated. git-svn-id: http://root.cern.ch/svn/root/trunk@39463 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 11, 2011
-
-
Rene Brun authored
--The argument double* mass of TGenPhaseSpace::SetDecay is now const double* mass. his line, and those below, will be ignored-- M math/physics/src/TGenPhaseSpace.cxx M math/physics/inc/TGenPhaseSpace.h git-svn-id: http://root.cern.ch/svn/root/trunk@38051 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 15, 2010
-
-
Fons Rademakers authored
To make an out of source build do, assuming the source is in ~/root: mkdir ~/root-x8664 cd ~/root-x8664 ~/root/configure make This is convenient to build e.g. 32 and 64-bit version from one source, but also needed for cross-compilation, where it is now possible to build in a special directory only the compile time tools, like rootcint for the host architecture while the binary is build for the remote architecture (like iOS). git-svn-id: http://root.cern.ch/svn/root/trunk@36659 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Sep 07, 2010
-
-
Rene Brun authored
I'd like to suggest to improve the TLorentzVector outputmessage printed calling the ::Print() method. In all the current versions the TLorentzVector print just a static message with the class description. I'm proposing a very simple change, similar to what TVector3 does, that for each vector prints the content in (x,y,z,t) form and (P,eta,phi,E) form. git-svn-id: http://root.cern.ch/svn/root/trunk@35182 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 23, 2009
-
-
Lorenzo Moneta authored
- TRolke: fix some of the issues reported in https://savannah.cern.ch/bugs/index.php?53585 git-svn-id: http://root.cern.ch/svn/root/trunk@30837 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 20, 2009
-
-
Fons Rademakers authored
contain all needed headers to define all used types. This is in general good practice and needed to syntax-check the individual headers files with clang. git-svn-id: http://root.cern.ch/svn/root/trunk@30815 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 15, 2009
-
-
Rene Brun authored
This patch fixes the spelling of "function" in the root source code and documentation, which is misspelled (sometimes as part of larger "function"-based words) at least 152 times: * "funciton" 48 times * "funcion" 36 times * "funtion" 23 times * "fucntion" 17 times * "functionn" 6 times * "fuction" 6 times * "fuunction" 4 times * "functioin" 3 times * "fonction" 3 times * "funstion" twice * "fnuction" once * "functiom" once * "functio" once * "funcition" once git-svn-id: http://root.cern.ch/svn/root/trunk@30749 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 06, 2009
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@27701 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 05, 2009
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@27697 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 23, 2009
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@27570 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Feb 22, 2009
-
-
Lorenzo Moneta authored
* New user interface: The old user interface was very hard to use, and the documentation in the source was also not on par with the correct usage. The old interface was a single get-function with 12 arguments, and the user was supposed to figure out which ~ 5 arguments were relevant for a specific model (1 out of 7 models). The new user interface is is easy to use correctly and hard to use incorrectly (TM). It's a single set-method for each method: SetPoissonBkgBinomialEff(Int_t x,Int_t y,Int_t z,Double_t tau,Int_t m); SetPoissonBkgGaussianEff(Int_t x,Int_t y,Double_t em, Double_t tau,Double_t sde); SetGaussianBkgGaussianEff(Int_t x,Double_t bm,Double_t em, Double_t sde,Double_t sdb); SetPoissondBkgknownEff(Int_t x,Int_t y,Double_t tau,Double_t e); SetGaussianBkgknownEff(Int_t x,Double_t bm,Double_t sdb,Double_t e); SetKnownBkgBinomialEff(Int_t x, Int_t z,Int_t m,Double_t b); SetknownBkgGaussianEff(Int_t x,Double_t em,Double_t sde,Double_t b); * New methods for getting: - 'sensitivity' (average limits) and related quantities - 'critical number' related to rejection of the null-hypothesis (no signal). * Bug fixes. There was a few bugs in that some variables was used uninitialized. (Eg, input arguments which were not supposed to be used were used anyway.) git-svn-id: http://root.cern.ch/svn/root/trunk@27566 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Dec 09, 2008
-
-
http://savannah.cern.ch/bugs/?45128Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@26746 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Nov 10, 2008
-
-
Lorenzo Moneta authored
- in SetPtEtaPhi and SetPtEtaPhiM use the expression z = pt * sinh(eta) instead of using the tangent and the arc-tangent. This avoids a problem found on 64 bit machines when eta=0. by Dariusz Miskowiec git-svn-id: http://root.cern.ch/svn/root/trunk@26127 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Oct 28, 2008
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@26006 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 04, 2008
-
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@24127 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 23, 2008
-
-
Lorenzo Moneta authored
make now consistent with original Fortran code (available at Phystat : https://plone4.fnal.gov/P0/phystat/packages/0707001/1.1.0/view ) git-svn-id: http://root.cern.ch/svn/root/trunk@23481 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23477 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23440 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
-