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

ScanResult.cpp

00001 #include "ScanResult.h"
00002 #include "ConfigurationVariable.h"
00003 
00004 namespace SctData {
00005 
00006 ScanResult::ScanResult(const ResultHeader& header, const ModuleConfiguration& moduleConfig, const ScanPoints& points)  :
00007                        header(header), moduleConfig(moduleConfig), points(points)
00008 {
00009 }
00010 
00011 ScanResult::ScanResult(const ScanResult& copyMe) :
00012                        header(copyMe.header), moduleConfig(copyMe.moduleConfig), points(copyMe.points) 
00013 {
00014 }
00015 
00016 //For the builders
00017 ScanResult::ScanResult() {}
00018     
00019 }

Generated on Thu Jul 15 09:50:52 2004 for SCT DAQ/DCS Software - C++ by doxygen 1.3.5