ROOT logo
/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 *    File: $Id: RooRealVarSharedProperties.h,v 1.3 2007/05/11 09:11:30 verkerke Exp $
 * Authors:                                                                  *
 *   WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu       *
 *   DK, David Kirkby,    UC Irvine,         dkirkby@uci.edu                 *
 *                                                                           *
 * Copyright (c) 2000-2005, Regents of the University of California          *
 *                          and Stanford University. All rights reserved.    *
 *                                                                           *
 * Redistribution and use in source and binary forms,                        *
 * with or without modification, are permitted according to the terms        *
 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)             *
 *****************************************************************************/
#ifndef ROO_REAL_VAR_SHARED_PROPERTY
#define ROO_REAL_VAR_SHARED_PROPERTY

#include "TObject.h"
#include "RooSharedProperties.h"
#include "RooLinkedList.h"

class RooRealVarSharedProperties : public RooSharedProperties {
public:

  RooRealVarSharedProperties() ;
  RooRealVarSharedProperties(const RooRealVarSharedProperties&) ;
  RooRealVarSharedProperties(const char* uuidstr) ;
  virtual ~RooRealVarSharedProperties() ;

  RooSharedProperties* clone() { return new RooRealVarSharedProperties(*this)  ; }

protected:

  friend class RooRealVar ;

  RooLinkedList _altBinning ;  // Optional alternative ranges and binnings

  ClassDef(RooRealVarSharedProperties,1) // Shared properties of a RooRealVar clone set
};


#endif
 RooRealVarSharedProperties.h:1
 RooRealVarSharedProperties.h:2
 RooRealVarSharedProperties.h:3
 RooRealVarSharedProperties.h:4
 RooRealVarSharedProperties.h:5
 RooRealVarSharedProperties.h:6
 RooRealVarSharedProperties.h:7
 RooRealVarSharedProperties.h:8
 RooRealVarSharedProperties.h:9
 RooRealVarSharedProperties.h:10
 RooRealVarSharedProperties.h:11
 RooRealVarSharedProperties.h:12
 RooRealVarSharedProperties.h:13
 RooRealVarSharedProperties.h:14
 RooRealVarSharedProperties.h:15
 RooRealVarSharedProperties.h:16
 RooRealVarSharedProperties.h:17
 RooRealVarSharedProperties.h:18
 RooRealVarSharedProperties.h:19
 RooRealVarSharedProperties.h:20
 RooRealVarSharedProperties.h:21
 RooRealVarSharedProperties.h:22
 RooRealVarSharedProperties.h:23
 RooRealVarSharedProperties.h:24
 RooRealVarSharedProperties.h:25
 RooRealVarSharedProperties.h:26
 RooRealVarSharedProperties.h:27
 RooRealVarSharedProperties.h:28
 RooRealVarSharedProperties.h:29
 RooRealVarSharedProperties.h:30
 RooRealVarSharedProperties.h:31
 RooRealVarSharedProperties.h:32
 RooRealVarSharedProperties.h:33
 RooRealVarSharedProperties.h:34
 RooRealVarSharedProperties.h:35
 RooRealVarSharedProperties.h:36
 RooRealVarSharedProperties.h:37
 RooRealVarSharedProperties.h:38
 RooRealVarSharedProperties.h:39
 RooRealVarSharedProperties.h:40
 RooRealVarSharedProperties.h:41
 RooRealVarSharedProperties.h:42
 RooRealVarSharedProperties.h:43