Logo ROOT   6.14/05
Reference Guide
RooCategory.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooCategory.h,v 1.27 2007/05/11 09:11:30 verkerke Exp $
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 ROO_CATEGORY
17 #define ROO_CATEGORY
18 
19 #include "RooAbsCategoryLValue.h"
20 
23 
25 public:
26  // Constructor, assignment etc.
27  RooCategory() ;
28  RooCategory(const char *name, const char *title);
29  RooCategory(const RooCategory& other, const char* name=0) ;
30  virtual ~RooCategory();
31  virtual TObject* clone(const char* newname) const { return new RooCategory(*this,newname); }
32 
33  // Value modifiers
34  virtual Int_t getIndex() const {
35  return _value.getVal() ;
36  // Return index value
37  }
38 
39  virtual const char* getLabel() const {
40  const char* ret = _value.GetName() ;
41  if (ret==0) {
43  }
44  return _value.GetName() ;
45  }
46 
47  virtual Bool_t setIndex(Int_t index, Bool_t printError=kTRUE) ;
48  virtual Bool_t setLabel(const char* label, Bool_t printError=kTRUE) ;
49 
50  // I/O streaming interface (machine readable)
51  virtual Bool_t readFromStream(std::istream& is, Bool_t compact, Bool_t verbose=kFALSE) ;
52  virtual void writeToStream(std::ostream& os, Bool_t compact) const ;
53 
54  // We implement a fundamental type of AbsArg that can be stored in a dataset
55  inline virtual Bool_t isFundamental() const {
56  // Return true as a RooCategory is a fundamental (non-derived) type
57  return kTRUE;
58  }
59 
60  virtual Bool_t isDerived() const {
61  // Does value or shape of this arg depend on any other arg?
62  return kFALSE ;
63  }
64 
65  Bool_t defineType(const char* label) ;
66  Bool_t defineType(const char* label, Int_t index) ;
68 
69  void clearRange(const char* name, Bool_t silent) ;
70  void setRange(const char* rangeName, const char* stateNameList) ;
71  void addToRange(const char* rangeName, const char* stateNameList) ;
72  Bool_t isStateInRange(const char* rangeName, const char* stateName) const ;
73  virtual Bool_t inRange(const char* rangeName) const {
74  // Returns true of current value of category is inside given range
75  return isStateInRange(rangeName,getLabel()) ;
76  }
77  virtual Bool_t hasRange(const char* rangeName) const {
78  // Returns true if category has range with given name
79  return _sharedProp->_altRanges.FindObject(rangeName) ? kTRUE : kFALSE ;
80  }
81 
82 protected:
83 
84  static RooSharedPropertiesList _sharedPropList; // List of properties shared among clone sets
85  static RooCategorySharedProperties _nullProp ; // Null property
86  RooCategorySharedProperties* _sharedProp ; //! Shared properties associated with this instance
87 
88  virtual RooCatType evaluate() const {
89  // Dummy implementation
90  return RooCatType() ;
91  }
92 
93  ClassDef(RooCategory,2) // Discrete valued variable type
94 };
95 
96 #endif
virtual RooCatType evaluate() const
Shared properties associated with this instance.
Definition: RooCategory.h:88
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:47
TObject * FindObject(const char *name) const
Return pointer to obejct with given name.
void clearTypes()
Definition: RooCategory.h:67
virtual Bool_t setIndex(Int_t index, Bool_t printError=kTRUE)
Set value by specifying the index code of the desired state.
RooCatType _value
Transient cache for byte values from tree branches.
void clearRange(const char *name, Bool_t silent)
Check that both input arguments are not null pointers.
void clearTypes()
Delete all currently defined states.
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
RooCategorySharedProperties is the container for all properties that are shared between instance of R...
virtual Bool_t readFromStream(std::istream &is, Bool_t compact, Bool_t verbose=kFALSE)
Read object contents from given stream.
virtual Bool_t setLabel(const char *label, Bool_t printError=kTRUE)
Set value by specifying the name of the desired state If printError is set, a message will be printed...
#define ClassDef(name, id)
Definition: Rtypes.h:320
static RooSharedPropertiesList _sharedPropList
Definition: RooCategory.h:84
RooCatType is an auxilary class for RooAbsCategory and defines a a single category state...
Definition: RooCatType.h:22
virtual Bool_t hasRange(const char *rangeName) const
Definition: RooCategory.h:77
RooAbsCategoryLValue is the common abstract base class for objects that represent a discrete value th...
Bool_t isStateInRange(const char *rangeName, const char *stateName) const
If no range is specified [ i.e. the default range ] all category states are in range.
void addToRange(const char *rangeName, const char *stateNameList)
Check that both input arguments are not null pointers.
RooCategorySharedProperties * _sharedProp
Definition: RooCategory.h:86
virtual Bool_t isDerived() const
Definition: RooCategory.h:60
virtual const Text_t * GetName() const
Returns name of object.
Definition: RooCatType.h:44
const RooCatType * lookupType(Int_t index, Bool_t printError=kFALSE) const
Find our type corresponding to the specified index, or return 0 for no match.
virtual TObject * clone(const char *newname) const
Definition: RooCategory.h:31
RooCategory represents a fundamental (non-derived) discrete value object.
Definition: RooCategory.h:24
virtual Int_t getIndex() const
Return index number of current state.
Definition: RooCategory.h:34
virtual void writeToStream(std::ostream &os, Bool_t compact) const
compact only at the moment
const Bool_t kFALSE
Definition: RtypesCore.h:88
static RooCategorySharedProperties _nullProp
Definition: RooCategory.h:85
virtual const char * getLabel() const
Return label string of current state.
Definition: RooCategory.h:39
Class RooSharedPropertiesList maintains the properties of RooRealVars and RooCategories that are clon...
virtual void SetName(const Text_t *name)
Constructor with name argument.
Definition: RooCatType.cxx:46
Mother of all ROOT objects.
Definition: TObject.h:37
virtual Bool_t inRange(const char *rangeName) const
Definition: RooCategory.h:73
Int_t getVal() const
Definition: RooCatType.h:79
virtual ~RooCategory()
Destructor.
Definition: RooCategory.cxx:88
virtual Bool_t isFundamental() const
Definition: RooCategory.h:55
Bool_t defineType(const char *label)
Define a state with given name, the lowest available positive integer is assigned as index...
const Bool_t kTRUE
Definition: RtypesCore.h:87
void setRange(const char *rangeName, const char *stateNameList)
char name[80]
Definition: TGX11.cxx:109