[root] / trunk / roofit / roofitcore / inc / RooArgList.h Repository:
ViewVC logotype

Log of /trunk/roofit/roofitcore/inc/RooArgList.h

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 44507 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 4 12:30:41 2012 UTC (2 years, 7 months ago) by axel
File length: 4503 byte(s)
Diff to previous 30333
Remove
  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.

Revision 30333 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 21 15:39:17 2009 UTC (5 years, 4 months ago) by wouter
File length: 4493 byte(s)
Diff to previous 24261
   Import changes in roofit/roofit and roofit/roofitcore from dev/roostats branch

Revision 24261 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jun 13 10:18:57 2008 UTC (6 years, 7 months ago) by wouter
File length: 4344 byte(s)
Diff to previous 23134
   o RooCachedPdf RooCachedReal RooChi2Var RooAddModelRooChangeTracker RooCategory RooAddPdf
     RooAdaptiveGaussKronrodIntegrator1D RooCacheManager RooArgList RooCatType RooBanner RooBrentRootFinder 
     RooArgProxy RooCategorySharedProperties RooAddGenContext RooCategoryProxy RooBinning RooAddition RooAcceptReject RooArgSet

     - Upgrade inline documention: make sure that every member function has some descriptive comments, every
       data member has a descriptive comment, make sure that each class has a description.

     - Fix class description header so that it is correctly identified by THtml

   o RooAddPdf

     - Add DIV0 protection in updateCoefficients() when running in extended ML mode

Revision 23134 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Apr 11 07:53:39 2008 UTC (6 years, 9 months ago) by rdm
File length: 4146 byte(s)
Diff to previous 20879
move the following directories to "roofit":

roofitcore, roofit

Revision 20879 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:22:56 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4146 byte(s)
Diff to previous 20161
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.

Revision 20161 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Oct 1 16:28:25 2007 UTC (7 years, 3 months ago) by wouter
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4146 byte(s)
Diff to previous 18735
   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

Revision 18735 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri May 11 09:13:47 2007 UTC (7 years, 8 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4149 byte(s)
Diff to previous 13546
Change structure and names of files to that of ROOT CVS repository

Revision 13546 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 8 13:19:58 2005 UTC (9 years, 1 month ago) by wverkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4173 byte(s)
Diff to previous 12082
   o RooCategorySharedProperties

     - Shared properties implementation for RooCategory. Contains
       definition of named ranges.

   o RooCategory

     - Move towards shared properties implementation of named ranges


   o Roo1DTable RooAbsArg RooAbsCategory
     RooAbsCollection RooAbsString RooArgList
     RooArgSet RooCategory RooCategory
     RooCategoryProxy RooConvCoefVar RooConvGenContext
     RooCustomizer RooDataHist RooErrorVar
     RooFitResult RooGenCategory RooGenCategory
     RooGraphEdge RooGraphNode RooGraphNode RooHtml
     RooImproperIntegrator1D RooMultiCategory RooNameSet
     RooNumIntConfig RooNumIntFactory RooSuperCategory
     RooSuperCategory RooTable RooThreshEntry

     - Replace many ROOT header includes by forward declarations

Revision 12082 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 20 15:45:21 2005 UTC (9 years, 7 months ago) by wverkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4237 byte(s)
Diff to previous 11181
   o RooBanner

     - Update version number and copyright


   o Many files

     - Change <iostream> to "Riostream" to support compilation on platforms
       that do not have iostream classes in namespace std


   o RooAbsAnaConvPdf

     - Fix bug in range integration in getAnalyticalIntegralWN()

     - Change getCoefAnalyticalIntegral() signature to include rangeName in argument list


   o RooAbsArg

     - Add methods getObservables()/getParameters with const RooAbsData& argument


   o RooAbsPdf

     - Add support for Range(Double_t, Double_t) to specify fit range in fitTo()

     - Migrate getMaxVal()/maxVal() to RooAbsReal [Gerhard]

     - Fix bug in normalization of PDF projections over limited range: account for both
       fraction of data in range and fraction of projection in range (calculation of latter
       deferred to RooAbsReal::plotOn)


   o RooAbsReal

     - Migrate getMaxVal()/maxVal() from RooAbsReal [Gerhard]

     - Add code in plotOn() to support normalization of PDF projections plotted in limited range


   o RooAbsRealLValue, RooRealVar, RooErrorVar, RooLinearVar

     - Change getBinning() so that it only creates a new binning on the fly if a newly added boolean argument
       is true. Otherwise, return default binning


   o RooAdaptiveGaussKronrodIntegrator1D, RooGaussKronrodIntegrator1D

     - Declare prototypes for glue functions


   o RooArgSet

     - Fix readFromStream() and writeToStream() so that they are consistent with each other again for
       both regular and scientific notation mode.

     - Fix processing of include directives inside files in readFromFile()

     - Suppress warning messages about ignored lines in files unless verbose flag is set. Add verbosity control
       flag to readFromFile().


   o RooCategory

     - Support concept of ranges for categories as well through new member functions setRange(),addToRange(),
       clearRange(),hasRange(),isInRange() and isStateInRange(). Ranges are named TLists containing a non-owned
       subset of the possible RooCatTypes.


   o RooCategoryProxy

     - Make lvptr() const since it is.


   o RooConvCoefVar

     - Pass rangeName in getAnalyticalIntegral() to getCoefAnalyticalIntegral()


   o RooPlotable, RooCurve, RooHist, RooEllipse

     - Implement getFitRangeNEvt(Double_t, Double_t) that returns the number of events in the given sub-range.


   o RooDataHist

     - Fix bug using RooAbsData::plotOn --> using RooTreeData::plotOn


   o RooGlobalFunc

     - Add adjustNorm boolean argument to named argumentss Range()


   o RooMultiCatIter

     - Require that input is RooAbsCategoryLValue rather than RooAbsCategory.


   o RooPlot

     - Keep track of object that generated normalization event count in addition to event count itself.
       This allows to later on calculate an event count in a limited range through getFitRangeNEvt(Double_t, Double_t)


   o RooRealIntegral

     - Support ranges in category summation in integration code.


   o RooSimPdfBuilder

     - Fix bug in unitarity constraint split of parameter in partial build: adjust formula for remainder fraction
       so that it only uses the states that are actually built.

     - Improve error handling


   o RooSuperCategory

     -  Implement hasRange() and isInRange() functionality inherited from RooAbsRealLValue


   o RooClassFactory

     - New class that automatically generates code for PDFs and functions given a name and a list of argument names


   o RooEffProd

     - New class that implement product of PDF and efficiency function. Main feature is efficient implementation
       of event generator in case input PDF has 'smart' event generator

   o RooEffGenContext

     - Generator context associated with RooEffProd


   o Module.mk

     - ROOT make file module needed to compile RooFit as part of ROOT


   o make_roofit_installkit

     - Script to package RooFit source as ROOT module for compilation with ROOT system

Revision 11181 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Feb 25 14:23:04 2005 UTC (9 years, 10 months ago) by wverkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4247 byte(s)
Diff to previous 10638
   o All files

     - Update copyright notice from 2004 to 2005

Revision 10638 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 29 12:22:24 2004 UTC (10 years, 1 month ago) by wverkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4246 byte(s)
Diff to previous 8538
  o All Classes

    Migration from classic to standard IOstreams

Revision 8538 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Apr 5 22:44:13 2004 UTC (10 years, 9 months ago) by wverkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4235 byte(s)
Diff to previous 5212
  o All files

    - Update (c) to 2004

Revision 5212 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 5 04:34:04 2002 UTC (12 years, 4 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4179 byte(s)
Diff to previous 5209
  o All files

   - Fix aesthetic detail in new headers

Revision 5209 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 4 21:07:02 2002 UTC (12 years, 4 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 4241 byte(s)
Diff to previous 3240
  o All files

    - Replace file header with new 'legalized' version

  o LICENSE

    - New file with full text of license agreement

Revision 3240 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 07:24:00 2001 UTC (13 years, 2 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 3623 byte(s)
Diff to previous 3067
  o RooAbsArg

    - Improved verboseDirty messaging a bit

  o RooAbsCategoryLValue

    - fix assignment operator (OSF compiler warnings)

    - move RooAbsCategory& assignment operator here from RooCategory

  o RooAbsPdf

    - Improve verboseEval messaging a bit

    - Add virtual fitContext() method that returns fit context
      appropriate for top-level PDF

    - Change fitTo() to use new fitContext method

    - Add fitTo() method with added const RooArgSet& to specify
      dependents to be projected with datat

  o RooAbsReal

    - Deprecate plot range / bins related functions

    - Move frame() to RooAbsRealLValue

  o RooAbsRealLValue

    - Fix assignment operators (OSF compiler warnings)

    - Add frame() method from RooAbsReal that passes the fit range/bins
      to the RooPlot. Checks that ranges is not zero of open ended

    - Add new frame() method that takes range and number of bins to
      supercede the default (taken from fitrange/bins)

  o RooAddModel

    - Some fixes to normalization propagation when used as regular PDF

  o RooArgList, RooArgSet

    - Declare constructors with name (const char*) and from TCollection&
      as 'explicit' to avoid funny implicit conversions (i.e. giving
      a quoted string where a const RooArgSet& is expected would be ok...)

  o RooCategory

    - Move assignment operator from RooAbsCategory to RooAbsCategoryLValue

  o RooDataHist

    - Deprecate plotBins/Range propagation

  o RooDataSet

    - Force uniqe name of each THx created with createHistogram() by
      adding static counter to name. (Without THx objects with the
      same name supercede each other)

  o RooErrorHandler

    - include stdlib (OSF compiler warning)

  o RooErrorVar

    - Make inherit from RooAbsRealLValue instead of RooAbsReal.
      Add methods and datamembers for fitRange/Bins

  o RooFitContext

    - Add support for dependent intergration via projection

    - Change nLogLikelihood to take extended status from argument
      instead of from _extendMode datamember

    - Improve dirty state optimizer to only declare branches
      as 'always dirty' that actually depend on the the dataset
      variable

  o RooHistError

    - Remove default value of last arg in implementation
      asymmetry ctor (Solaris compiler error)

    - Change name of BinomialSum data members from _n,_N
      to _n1,_N1 to work around bizarre Solaris compiler bug

  o RooHistPdf

    - Fix overzealous getAnalyticalIntegal()

  o RooLinearVar

    - Deprecate plotRange/Bins forwarding

  o RooLinkedList

    - Add optional hashtable lookup (off by default)

  o RooHashTable

    - Simple hash table implementation

  o RooLinkedListIter

    - Fix assignment operator (OSF compiler warning)

  o RooMCStudy

    - Changes due to plotRanges/Bins deprecation

  o RooPlot

    - Add ctor from RooAbsReal with alternate range and bins

    - Add nameOf() utility function to access element properties
      by index

  o RooRealIntegral

    - Implement dependent integration via projection
      (i.e. simply treat those dependents as parameters)

  o RooRealVar

    - Deprecate plotRange/Bins interface

    - Modify readFromStream/writeToStream to no longer read/write
      plot ranges tokens (existing tokens will be ignored with
      a warning message). Also change prefix of fitRange token
      from F to L in preparation of renaming fitRange to limits.
      readFromStream() currently still accepts F without warning

  o RooResolutionModel

    - Fix normalization behaviour when used as a regular PDF

  o RooSimFitContext

    - Add support for dependents normalized via projection

    - Allow mixed extended/regular components in extended mode

  o RooSimultaneous

    - Change condition for extendability from having only extendable
      PDFs to having any extendable PDF

    - Deprecate custom fitTo()

    - Overload fitContext() to return specialized RooSimFitContext

  o RooStringVar

    - Fix assignment operator (OSF compiler warnings)

  o RooTruthModel

    - Fix return values of evaluate/analyticalIntegral() (Solaris compiler
      warnings)

  o RooPolyVar

    - New RooAbsReal derived class implementing a polynomial function
      with RooAbsReals as coefficients

Revision 3067 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Oct 19 06:56:53 2001 UTC (13 years, 3 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 3605 byte(s)
Diff to previous 3025
  o RooAbsArg

    - Introduce static variable and function nameFieldLength()
      that controls size of the name field when printing
      in standard print mode. Default(0) makes field fit
      name of object

    - Introduce universal value assignment via virtual
      operator=() to Double_t, Int_t, const char*.
      Default implementation in RooAbsArg results in user
      error message.

    - Extend createFundamental() to optionally take a new name
      as argument

    - Add new pure virtual fillTreeBranch() method in which
      subclasses must implement a method to fill their branches
      in the given tree with their current value

  o  RooAbsCategory,RooAbsReal,RooAbsString

     - Implement fillTreeBranch()
     - Adjust createFundamental()

  o  RooAbsCollection

     - Fix replace() to find correct replacement candidate if >1
       object exists in list with name of variable to be replaced

     - In printToStream() adjust RooAbsArg::nameFieldLength()
       to size of longest argName contained in list

  o  RooAbsData

     - Fix default ctor to instantiate unpersisted data members

  o  RooArgList

     - Add operator[] taking index as argument, returning a
       RooAbsArg&. If index is out of range, a softAbort() is
       generated

  o  RooArgSet

     - Add operator[] taking arg name as argument, returning a
       RooAbsArg&. If index is out of range, a softAbort() is
       generated

  o  RooErrorHandler

     - New lightweight class implementing softAssert()
       and softAbort() that will terminate processing
       but not kill the root session.

  o  RooCustomizer

     - Make inherit from RooPrintable and implement Print() method

  o  RooDataSet

     - Add self to gDirectory() in every ctor to facilitate persistence.
       Remove internal ttree from gDirectory to avoid unnecessary entries.

  o  RooFormula

     - Disable conditional compilation pending investigation of some
       obscure problems

  o  RooRealVar

     - Add static functions printScientific() and printSigDigits()
       that control formatting in print() and writeToStream().

     - Augment format() to be able to print both value and error
       with specified precision (instead of always using the precision
       from the error when its printed)

  o RooStreamParser

     - Process continuation line sequences '\\' in readLine()

  o RooStringVar

     - Implement operator=(const char*)

  o RooTreeData

    - Change cacheArg() and cacheArgs() to use new column adding
      technique implemented via fillTreeBranch()

    - Change addColumn() and to use new column adding
      technique implemented via fillTreeBranch().
      Add new addColumns() member to do multiple columns at once.

Revision 3025 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Oct 13 21:53:22 2001 UTC (13 years, 3 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 3519 byte(s)
Diff to previous 2967
   Fix coding errors and memory leaks found by
   CodeWizard, Insure++ and Chaperon such as

     - Omitted tests for self assignment in operator=
     - Iterators and cloneSets not deleted
     - delete[] instead of delete
     - Classes with virtual member functions w/o virtual dtor

Revision 2967 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Oct 3 21:54:00 2001 UTC (13 years, 3 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 3525 byte(s)
Diff to previous 2927
 Documentation update
 --------------------

 o RooAbsCollection, RooArgSet, RooArgList

   - Update inline documentation


 Misc small fixes
 ----------------

 o RooAbsCollection

   - Change name of _isCopy to _ownCont and change message
     in printToStream accordingly

 o RooArgSet

   - Deprecate compact mode of readFromStream()/writeToStream()
     as order of set can no longer be used to assign ascii fields

   - Add readFromFile() and writeToFile() wrapper functions
     around readFromStream()/writeToStream() for users convenience

 o RooArgList

   - Introduce readFromStream()/writeToStream(), compact mode only.

 o RooDataSet

   - Change read() method to take an ArgList instead of an ArgSet
     as only the former can be used to match the fields of an ascii file.
     Actual reading of file is now done by RooArgList::readFromStream()
     in compact mode. Mapping to RooDataSets internal RooArgSet (which
     potentially has a different order) is done by
     RooAbsCollection::operator=()

Revision 2927 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Oct 1 22:04:21 2001 UTC (13 years, 3 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 3327 byte(s)
Diff to previous 2798
  o RooRealIntegral

    - Introduce LValue detection in tree structure analysis.

      An iterative algorithm determines if there is a non-empty
      set of LValue branch nodes suitable for analytical integration
      and a set of leaf nodes to be integrated, that exclusively
      relate to each other (i.e. set of leafs serves only exactly one
      element of the set of LV branches; LV branches only depend on
      that set of leafs). If such sets can be found, the LV branches
      are substituted for the leafs in the list of dependents to be
      integrated.

      Actual use of these LV branches in analytical integration
      still depends on capability of integrated function. If not,
      numerical integration will be performed on LValue.

      Caveats: currently the algorithm does not optimize scenarios
      like 'server a -> LVnodes (A,B), server b ->LVnodes(A,B), i.e.
      multi-dimensional coordinate rotations. Although the
      iterative algorithm could easily identify the potential replacement
      (a,b) -> (A,B), such substitutions would have to be reviewed
      after interaction with the integrated functions' getAnalyticalIntl().
      If it turns out the function can only analytically integrate A or B
      but not both, the entire substitution would have to be backed out
      as an integral over (A,a,b) or (B,a,b) has a redundant dimension.

  o RooArgSet,RooArgList

    - Add ctor from TCollection. RooArgSet ctor will skips and warns about
      eventual duplicate entries by name.

  o RooAbsPdf

    - Remove obsolete fitTo(TH1*,...) dummy entry point.

  o RooLinearVar

    - Remove debug print statement

Revision 2798 - (view) (download) (as text) (annotate) - [select for diffs]
Added Mon Sep 17 18:48:17 2001 UTC (13 years, 4 months ago) by verkerke
Original Path: trunk/roofitcore/inc/RooArgList.h
File length: 3209 byte(s)
  Generalize RooArgSet to RooAbsCollection and introduce RooArgList
  and corresponding proxy. Introduce RooArgList where appropriate
  as replacement of a TList of proxies, eliminate all use of TList
  inherited functions in RooArgSet/List.

  Some optimizations implemented following profiling studies

  Various fixes for compilation with Solaris CC 5.0

  o RooAbsArg

    - Change signature of server management function to use RooAbsCollection
      instead of RooArgSet
    - Add proxy management support for new RooListProxy class

  o RooAbsPdf

    - Disable use of RooNameSets as optimization attempt. It appears
      to cost more time than it saves

  o RooAbsProxy, RooArgProxy, RooAbsReal, RooAcceptReject,
    RooDataHist, RooFormula, RooFormulaVar, RooGenCategory,
    RooGenContext, RooGenericPdf, RooPlot, RooRealIntegral,
    RooResolutionModel, RooSetProxy, RooSuperCategory, RooTreeData

    - Follow RooAbsArg member function signature changes

  o RooAddPdf, RooConvolutedPdf, RooFitContext, RooSimFitContext,
    RooFitResult, RooPdfCustomizer, RooProdPdf,

    - Change implementation from using TList to using RooArgList

  o RooAbsCollection

    - New abstract base class for collections of RooAbsArgs. This
      class contains mostly code from the former RooArgSet implementation

  o RooArgSet

    - Re-implement as derived class of RooAbsCollection. A RooArgSet
      cannot contain duplicates (as before), but also doesn't give
      random access (by index) to its member elements

  o RooArgList

    - New implementation of RooAbsCollection that allows duplicates
      in the list, allows sorting and lookup by index.

  o RooListProxy

    - Proxy version of RooArgList, similar to RooSetProxy. To be used
      as data member of RooAbsArg implementation to hold external
      RooAbsArg references.

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9