Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooSuperCategory.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooSuperCategory.h,v 1.17 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_SUPER_CATEGORY
17 #define ROO_SUPER_CATEGORY
18 
19 class TObject ;
20 #include "RooAbsCategoryLValue.h"
21 #include "RooCatType.h"
22 #include "RooArgSet.h"
23 #include "RooSetProxy.h"
24 
25 
26 class RooSuperCategory : public RooAbsCategoryLValue {
27 public:
28  // Constructors etc.
29  inline RooSuperCategory() { }
30  RooSuperCategory(const char *name, const char *title, const RooArgSet& inputCatList);
31  RooSuperCategory(const RooSuperCategory& other, const char *name=0) ;
32  virtual TObject* clone(const char* newname) const { return new RooSuperCategory(*this,newname); }
33  virtual ~RooSuperCategory();
34 
35  virtual Bool_t setIndex(Int_t index, Bool_t printError=kTRUE) ;
36  virtual Bool_t setLabel(const char* label, Bool_t printError=kTRUE) ;
37 
38  // Printing interface (human readable)
39  virtual void printMultiline(std::ostream& os, Int_t content, Bool_t verbose=kFALSE, TString indent="") const ;
40 
41  // I/O streaming interface (machine readable)
42  virtual Bool_t readFromStream(std::istream& is, Bool_t compact, Bool_t verbose=kFALSE) ;
43  virtual void writeToStream(std::ostream& os, Bool_t compact) const ;
44 
45  TIterator* MakeIterator() const ;
46  const RooArgSet& inputCatList() const { return _catSet ; }
47 
48  virtual Bool_t inRange(const char* rangeName) const ;
49  virtual Bool_t hasRange(const char* rangeName) const ;
50 
51 protected:
52 
53  Bool_t setType(const RooCatType* type, Bool_t prinError=kTRUE) ;
54  void updateIndexList() ;
55  TString currentLabel() const ;
56 
57  RooSetProxy _catSet ; // Set of input category
58 
59  virtual RooCatType evaluate() const ;
60 
61  ClassDef(RooSuperCategory,1) // Lvalue product operator for catategory lvalues
62 };
63 
64 #endif