Main Page   Modules   Namespace List   Class Hierarchy   Data Structures   File List   Namespace Members   Data Fields   Globals   Related Pages  

FitObjectIOHelper.cpp

Go to the documentation of this file.
00001 #include "FitObjectIOHelper.h"
00002 
00003 namespace SctData {
00004 
00005 void FitObjectIOHelper::set(FitObject& ob) const throw() {
00006     this->ob = &ob;
00007 }
00008 
00009 void FitObjectIOHelper::setNDim(const int n) const throw(LogicError) {
00010     ob->setNDim(n);
00011 }
00012     
00013 void FitObjectIOHelper::setNPar(const int npar) const throw(LogicError) {
00014     ob->setNPar(npar);
00015 }
00016     
00017 void FitObjectIOHelper::setChiSquared(const double c) const throw() {
00018     ob->setChiSquared(c);   
00019 }
00020 
00021 void FitObjectIOHelper::setNDF(const int d) const throw(LogicError) {
00022     ob->setNDF(d);
00023 }
00024 
00025 void FitObjectIOHelper::setFormula(char const* f) const throw() {
00026     ob->setFormula(f);
00027 }
00028 
00029     
00030 }

Generated on Mon Dec 15 19:36:01 2003 for SCT DAQ/DCS Software by doxygen1.3-rc3