00001 /***************************************************************************** 00002 * Project: RooFit * 00003 * Package: RooFitCore * 00004 * @(#)root/roofitcore:$Id: RooRealVarSharedProperties.cxx 24285 2008-06-16 15:05:15Z wouter $ 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 00017 ////////////////////////////////////////////////////////////////////////////// 00018 // 00019 // BEGIN_HTML 00020 // Class RooRealVarSharedProperties is an implementation of RooSharedProperties 00021 // that stores the properties of a RooRealVar that are shared among clones. 00022 // For RooRealVars these are the definitions of the named ranges. 00023 // END_HTML 00024 // 00025 00026 #include "RooFit.h" 00027 #include "RooRealVarSharedProperties.h" 00028 #include "Riostream.h" 00029 00030 00031 ClassImp(RooRealVarSharedProperties) 00032 ; 00033 00034 00035 00036 //_____________________________________________________________________________ 00037 RooRealVarSharedProperties::RooRealVarSharedProperties() 00038 { 00039 // Default constructor 00040 } 00041 00042 00043 //_____________________________________________________________________________ 00044 RooRealVarSharedProperties::RooRealVarSharedProperties(const char* uuidstr) : RooSharedProperties(uuidstr) 00045 { 00046 // Constructor with unique-id string 00047 } 00048 00049 00050 //_____________________________________________________________________________ 00051 RooRealVarSharedProperties::RooRealVarSharedProperties(const RooRealVarSharedProperties& other) : 00052 RooSharedProperties(other), 00053 _altBinning(other._altBinning) 00054 { 00055 // Copy constructor 00056 } 00057 00058 00059 00060 //_____________________________________________________________________________ 00061 RooRealVarSharedProperties::~RooRealVarSharedProperties() 00062 { 00063 // Destructor 00064 00065 _altBinning.Delete() ; 00066 } 00067 00068