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

PipelineAlgorithm.h

00001 #ifndef PIPELINEALGORITHM_H
00002 #define PIPELINEALGORITHM_H
00003 
00004 #include "AnalysisAlgorithm.h"
00005 
00006 namespace SctAnalysis {
00011 class PipelineAlgorithm : public AnalysisAlgorithm {
00012 public:
00013     virtual void analyze();
00014     virtual void loadData();
00015     virtual bool canAnalyze() const;
00016     virtual shared_ptr<SctData::TestResult> createTestResult() const;
00017     virtual boost::shared_ptr<AnalysisAlgorithm> clone(const TestData& testData, const string& moduleName) const throw();
00021     PipelineAlgorithm(const TestData& testData, const string& moduleName, const AnalysisAlgorithm& alg) throw() : AnalysisAlgorithm(testData, moduleName, alg) {}
00025     virtual ~PipelineAlgorithm() throw() {}
00026 private:
00027     PipelineAlgorithm() {}
00028     static bool inMap;
00029 };
00030 }
00031 
00032 #endif //PIPELINEALGORITHM_H

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