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

ScanResult.cpp

Go to the documentation of this file.
00001 #include "ScanResult.h"
00002 #include "ConfigurationVariable.h"
00003 
00004 namespace SctData {
00005 
00006 ScanResult::ScanResult(const ScanHeader& header, const ModuleConfiguration& moduleConfig, const ScanPoints& points) throw() :
00007                        header(header), moduleConfig(moduleConfig), points(points)
00008 {
00009 }
00010 
00011 ScanResult::ScanResult(const ScanResult& copyMe) throw() :
00012                        header(copyMe.header), moduleConfig(copyMe.moduleConfig), points(copyMe.points) 
00013 {
00014 }
00015 
00016 ScanResult::~ScanResult() throw() {
00017 }   
00018 
00019 //For the builders
00020 ScanResult::ScanResult() throw() {}
00021     
00022 }

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