00001 /***************************************************************************** 00002 * Project: RooFit * 00003 * Package: RooFitCore * 00004 * File: $Id: RooRealVarSharedProperties.h,v 1.3 2007/05/11 09:11:30 verkerke Exp $ 00005 * Authors: * 00006 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu * 00007 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu * 00008 * * 00009 * Copyright (c) 2000-2005, Regents of the University of California * 00010 * and Stanford University. All rights reserved. * 00011 * * 00012 * Redistribution and use in source and binary forms, * 00013 * with or without modification, are permitted according to the terms * 00014 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) * 00015 *****************************************************************************/ 00016 #ifndef ROO_REAL_VAR_SHARED_PROPERTY 00017 #define ROO_REAL_VAR_SHARED_PROPERTY 00018 00019 #include "TObject.h" 00020 #include "RooSharedProperties.h" 00021 #include "RooLinkedList.h" 00022 00023 class RooRealVarSharedProperties : public RooSharedProperties { 00024 public: 00025 00026 RooRealVarSharedProperties() ; 00027 RooRealVarSharedProperties(const RooRealVarSharedProperties&) ; 00028 RooRealVarSharedProperties(const char* uuidstr) ; 00029 virtual ~RooRealVarSharedProperties() ; 00030 00031 RooSharedProperties* clone() { return new RooRealVarSharedProperties(*this) ; } 00032 00033 protected: 00034 00035 friend class RooRealVar ; 00036 00037 RooLinkedList _altBinning ; // Optional alternative ranges and binnings 00038 00039 ClassDef(RooRealVarSharedProperties,1) // Shared properties of a RooRealVar clone set 00040 }; 00041 00042 00043 #endif