Logo ROOT   6.10/09
Reference Guide
HistFactorySimultaneous.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id$
5  * Authors: *
6  * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7  * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8  * *
9  * Copyright (c) 2000-2005, Regents of the University of California *
10  * and Stanford University. All rights reserved. *
11  * *
12  * Redistribution and use in source and binary forms, *
13  * with or without modification, are permitted according to the terms *
14  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15  *****************************************************************************/
16 #ifndef HISTFACTORY_SIMULTANEOUS
17 #define HISTFACTORY_SIMULTANEOUS
18 
19 //#include "THashList.h"
20 #include "RooSimultaneous.h"
21 
22 namespace RooStats{
23 namespace HistFactory{
24 
25 
27 public:
28 
29  // Constructors, assignment etc
30  inline HistFactorySimultaneous() : RooSimultaneous() {} //_plotCoefNormRange(0) { }
31  HistFactorySimultaneous(const char *name, const char *title, RooAbsCategoryLValue& indexCat) ;
32  HistFactorySimultaneous(const char *name, const char *title, std::map<std::string,RooAbsPdf*> pdfMap, RooAbsCategoryLValue& inIndexCat) ;
33  HistFactorySimultaneous(const char *name, const char *title, const RooArgList& pdfList, RooAbsCategoryLValue& indexCat) ;
34  HistFactorySimultaneous(const HistFactorySimultaneous& other, const char* name=0);
35  HistFactorySimultaneous(const RooSimultaneous& other, const char* name=0);
37 
38  virtual TObject* clone(const char* newname) const { return new HistFactorySimultaneous(*this,newname) ; }
39 
40  virtual RooAbsReal* createNLL(RooAbsData& data, const RooLinkedList& cmdList);
41 
42  virtual RooAbsReal* createNLL(RooAbsData& data,
43  const RooCmdArg& arg1 = RooCmdArg::none(), const RooCmdArg& arg2 = RooCmdArg::none(),
44  const RooCmdArg& arg3 = RooCmdArg::none(), const RooCmdArg& arg4 = RooCmdArg::none(),
45  const RooCmdArg& arg5 = RooCmdArg::none(), const RooCmdArg& arg6 = RooCmdArg::none(),
46  const RooCmdArg& arg7 = RooCmdArg::none(), const RooCmdArg& arg8 = RooCmdArg::none());
47 
48 
49 protected:
50 
51  ClassDef(RooStats::HistFactory::HistFactorySimultaneous,2) // Simultaneous operator p.d.f, functions like C++ 'switch()' on input p.d.fs operating on index category5A
52 };
53 
54 }
55 }
56 
57 #endif
virtual RooAbsReal * createNLL(RooAbsData &data, const RooLinkedList &cmdList)
Construct representation of -log(L) of PDFwith given dataset.
static const RooCmdArg & none()
Return reference to null argument.
Definition: RooCmdArg.cxx:50
#define ClassDef(name, id)
Definition: Rtypes.h:297
RooAbsCategoryLValue is the common abstract base class for objects that represent a discrete value th...
const RooAbsCategoryLValue & indexCat() const
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition: RooAbsData.h:37
virtual TObject * clone(const char *newname) const
RooLinkedList is an collection class for internal use, storing a collection of RooAbsArg pointers in ...
Definition: RooLinkedList.h:35
Namespace for the RooStats classes.
Definition: Asimov.h:20
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:53
Mother of all ROOT objects.
Definition: TObject.h:37
RooSimultaneous facilitates simultaneous fitting of multiple PDFs to subsets of a given dataset...
RooCmdArg is a named container for two doubles, two integers two object points and three string point...
Definition: RooCmdArg.h:27