- May 09, 2012
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44195 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44191 27541ba8-7e3a-0410-8455-c3a389f83636
-
Timur Pocheptsov authored
Add default ctor in XLFDName struct not to rely on initialization with '={}' git-svn-id: http://root.cern.ch/svn/root/trunk@44190 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44189 27541ba8-7e3a-0410-8455-c3a389f83636
-
Timur Pocheptsov authored
(in XLFD format, '-' is a delimiter/separator). Do not list such font names in TGCocoa::ListFonts, their names can not be extracted and such a font can not be loaded later (as LoadQueryFont will have incorrect name). git-svn-id: http://root.cern.ch/svn/root/trunk@44188 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44186 27541ba8-7e3a-0410-8455-c3a389f83636
-
Timur Pocheptsov authored
thus constant (by nature) function modifies object's state. This makes it impossible to paint the same widget twice by calling DoRedraw, the second time exposed region is empty. This does not work with cocoa. 2. CreateFontCollection for a specific name always finds only 1 font, not all variations of the same font, instead I have to request the full list every time and filter it myself. 3. TGFontDialog: connects signal/slot only for gVirtualX inherited from TGX11 (or TGX11 itself), must also work for TGCocoa. all_sizes and all_styles variables also were set incorrectly for TGCocoa (initialization uses check InheritsFrom("TGX11")). git-svn-id: http://root.cern.ch/svn/root/trunk@44185 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44184 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 08, 2012
-
-
Lorenzo Moneta authored
from Gabriel: new version with asymptotic and hybrid tests. Disable also one MCMC test which behaves strangely git-svn-id: http://root.cern.ch/svn/root/trunk@44181 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44180 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
TFileMerger silently modifies gDirectory. This has weird consequences, in particular people may have a null gDirectory after using TFileMerger. This patch saves and restores the current gDirectory. git-svn-id: http://root.cern.ch/svn/root/trunk@44177 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44176 27541ba8-7e3a-0410-8455-c3a389f83636
-
Gerardo Ganis authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44175 27541ba8-7e3a-0410-8455-c3a389f83636
-
https://savannah.cern.ch/bugs/index.php?93983Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44174 27541ba8-7e3a-0410-8455-c3a389f83636
-
Bertrand Bellenot authored
Fix to prevent a potential crash when deleting canvas with toolbar, as reported on the forum (http://root.cern.ch/phpBB3//viewtopic.php?f=3&t=14627) git-svn-id: http://root.cern.ch/svn/root/trunk@44173 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44171 27541ba8-7e3a-0410-8455-c3a389f83636
-
Timur Pocheptsov authored
color wheel object creates a canvas (step 1), appends itself into this canvas (step 2). This code relies on the fact, that all events (configure/expose/etc) will be received _after_ step 2 and canvas will be eventually repainted later. This is not true in case of cocoa: window is created and made visible on step 1, it's repainted after step 1 and before step 2, so any contents added after step 2 will become visible only after gPad->Update() call (BTW, this is how it's done in TRootCanvas for "View"->"Markers". Call gPad->Update(), do not rely on X11 specific (events in a queue at the end of event loop iteration). git-svn-id: http://root.cern.ch/svn/root/trunk@44170 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44168 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 07, 2012
-
-
Fons Rademakers authored
There is an extraneous "}" in the REFLEX_GENERATE_DICTIONARY cmake macro. git-svn-id: http://root.cern.ch/svn/root/trunk@44166 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44165 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44164 27541ba8-7e3a-0410-8455-c3a389f83636
-
Matevz Tadel authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44163 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
from 43442 to 43445 committed by G. Lewis: - Removed Warning in RooStats HistFactory ConfigParser.cxx - Updated HistFactory xml Parser, Added support for scripting, added various helper classes from 43455 through r44158 by G. Lewis and Kyle Cranmer new shape interpolation option Updated histfactory: Streamline HistoToWorkspaceFactoryFast, MakeMeasurementAndModel, return workspace pointer git-svn-id: http://root.cern.ch/svn/root/trunk@44159 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44158 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
Modifications by Jakub Ademek and Max Baak : ensure that ToyMCSampler can return TTree with detailed fit output. See for a detailed description: https://indico.cern.ch/getFile.py/access?contribId=0&resId=3&materialId=slides&confId=182211 Modifications by Sven Kreiss: ProfileLikelihoodTestStat: - added option to add errors and pulls to detailed output Revision 44128 - Directory Listing Modified Fri May 4 21:33:08 2012 UTC (2 days, 17 hours ago) by sven ToyMCSampler, ToyMCStudy, SamplingDistribution, DetailedOutputAggregator: - bugfixes for the naming of the result - return toys with weight=1 when generating unweighted toys (not -1) - make it optional to return errors and pulls with detailed output - from Tim Adye: catch NaNs at the right place ProfileLikelihoodTestStat: - added option to add errors and pulls to detailed output FrequentistCalculator (from Tim Adye): - skip the profiling if there are no free nuisance parameters --This line, and those below, wil _M roostats _M roostats/src M roostats/src/HypoTestResult.cxx M roostats/src/FrequentistCalculator.cxx M roostats/src/HypoTestCalculatorGeneric.cxx M roostats/src/RooStatsUtils.cxx M roostats/src/ToyMCSampler.cxx M roostats/src/ToyMCStudy.cxx M roostats/src/ProfileLikelihoodTestStat.cxx M roostats/src/SamplingDistribution.cxx _M roostats/inc M roostats/inc/LinkDef.h M roostats/inc/RooStats/ProfileLikelihoodTestStat.h _M roostats/inc/RooStats/ToyMCSamplerOld.h M roostats/inc/RooStats/FrequentistCalculator.h M roostats/inc/RooStats/HypoTestCalculatorGeneric.h A + roostats/inc/RooStats/DetailedOutputAggregator.h M roostats/inc/RooStats/RatioOfProfiledLikelihoodsTestStat.h M roostats/inc/RooStats/ToyMCStudy.h M roostats/inc/RooStats/TestStatistic.h M roostats/inc/RooStats/SamplingDistribution.h M roostats/inc/RooStats/HypoTestResult.h A + roostats/inc/RooStats/MinNLLTestStat.h M roostats/inc/RooStats/RooStatsUtils.h M roostats/inc/RooStats/ToyMCSampler.h git-svn-id: http://root.cern.ch/svn/root/trunk@44157 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
- HypoTestInverterResult: another fix for lower/upper limit search git-svn-id: http://root.cern.ch/svn/root/trunk@44156 27541ba8-7e3a-0410-8455-c3a389f83636
-
Timur Pocheptsov authored
But this is not true - scope guard object restores state, but aa flag is lost and it's easy to see - window's titlebar has ugly screwed font. The same problem can be reproduced in a standalone program. I have to manually turn on anti-aliasing every time I turn it off. git-svn-id: http://root.cern.ch/svn/root/trunk@44155 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44153 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
fix a printing message and add default to teh GetExpectedPValue function to make it backward compatible git-svn-id: http://root.cern.ch/svn/root/trunk@44152 27541ba8-7e3a-0410-8455-c3a389f83636
-
Timur Pocheptsov authored
it crashes - parses this XLFD, sets foundry to 0 and later use strcasecmp on this pointer. 1. 'Fix' TGFontPool not to use 0 pointers, 2. return fake foundry. git-svn-id: http://root.cern.ch/svn/root/trunk@44151 27541ba8-7e3a-0410-8455-c3a389f83636
-
Timur Pocheptsov authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44150 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44149 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44147 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44146 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 06, 2012
-
-
Lorenzo Moneta authored
fix a bug in doing interpolation for upper/lower limits when there the points are not crossing the line git-svn-id: http://root.cern.ch/svn/root/trunk@44145 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44144 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44143 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
git-svn-id: http://root.cern.ch/svn/root/trunk@44142 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
- commit also the missing models file git-svn-id: http://root.cern.ch/svn/root/trunk@44141 27541ba8-7e3a-0410-8455-c3a389f83636
-
Lorenzo Moneta authored
from Grabriel: mke printing of the "." as a Progress message in RooFit. Remove suppression of messages below Error git-svn-id: http://root.cern.ch/svn/root/trunk@44140 27541ba8-7e3a-0410-8455-c3a389f83636
-