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(shared_ptr<const TestData> testData, const string& moduleName) const throw();
00021     PipelineAlgorithm(shared_ptr<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 Mon Feb 6 14:01:24 2006 for SCT DAQ/DCS Software - C++ by  doxygen 1.4.6