Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooMultiCatIter.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooMultiCatIter.h,v 1.14 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_MULTI_CAT_ITER
17 #define ROO_MULTI_CAT_ITER
18 
19 #include "TIterator.h"
20 #include "RooArgSet.h"
21 #include "TObjString.h"
22 class RooCategory ;
23 class RooCatType ;
24 class RooAbsCategoryLValue ;
25 
26 typedef TIterator* pTIterator ;
27 typedef RooAbsCategoryLValue* pRooCategory ;
28 
29 class RooMultiCatIter : public TIterator {
30 public:
31  // Constructors, assignment etc.
32  RooMultiCatIter(const RooArgSet& catList, const char* rangeName=0) ;
33  RooMultiCatIter(const RooMultiCatIter& other) ;
34  virtual ~RooMultiCatIter() ;
35 
36  // Iterator implementation
37  virtual const TCollection* GetCollection() const ;
38  virtual TObject* Next() ;
39  virtual void Reset() ;
40  virtual bool operator!=(const TIterator &aIter) const ;
41  virtual TObject *operator*() const ;
42 
43 protected:
44 
45  TIterator& operator=(const TIterator&) { return *this ; } // forbidden for now
46 
47  void initialize(const RooArgSet& catList) ;
48  TObjString* compositeLabel() ;
49 
50  RooArgSet _catList ; // Set of categories iterated over
51  pTIterator* _iterList ; // Array of category type iterators
52  pRooCategory* _catPtrList ; // Array of pointers to original categories
53  RooCatType* _curTypeList ; // List of current types
54  Int_t _nIter ; // Number of categories/iterators in use
55  Int_t _curIter ; // Current location of master iterator
56  TObjString _compositeLabel ; //
57  TString _rangeName ; // Range name (optional)
58  TObject* _curItem; // Current item returned by Next()
59 
60  ClassDef(RooMultiCatIter,0) // Iterator over all state permutations of a list of categories
61 };
62 
63 #endif