// // C++ Implementation: STFitEntry // // Description: // // // Author: Malte Marquarding , (C) 2006 // // Copyright: See COPYING file that comes with this distribution // // #include "STFitEntry.h" #include namespace asap { STFitEntry::STFitEntry() /* : functions_( std::vector()), components_(std::vector()), parameters_(std::vector()), errors_(std::vector()), parmasks_(std::vector()), frameinfo_(std::vector()) */ { } STFitEntry::STFitEntry(const STFitEntry& other) { if ( this != &other ) { this->functions_ = std::vector(); this->components_ = other.components_; this->parameters_ = other.parameters_; this->errors_ = other.errors_; this->frameinfo_ = other.frameinfo_; } } STFitEntry& STFitEntry::operator=(const STFitEntry& other) { if ( this != &other ) { this->functions_ = other.functions_; this->components_ = other.components_; this->parameters_ = other.parameters_; this->errors_ = other.errors_; this->parmasks_ = other.parmasks_; this->frameinfo_ = other.frameinfo_; } return *this; } STFitEntry::~STFitEntry() { } }