00001 #ifndef EVENT_LOOP_ALGS_UNIT_TEST_SKIM_H
00002 #define EVENT_LOOP_ALGS_UNIT_TEST_SKIM_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00017
00018
00019
00020 #include <EventLoopAlgs/Global.h>
00021
00022 #include <EventLoop/Algorithm.h>
00023
00024 namespace EL
00025 {
00026 class UnitTestSkim : public Algorithm
00027 {
00028
00029
00030
00031
00034 public:
00035 void testInvariant () const;
00036
00037
00041 public:
00042 UnitTestSkim ();
00043
00044
00045
00046
00047
00048
00049
00055 private:
00056 virtual StatusCode changeInput (bool firstFile);
00057
00058
00069 private:
00070 virtual StatusCode initialize ();
00071
00072
00077 private:
00078 virtual StatusCode execute ();
00079
00080
00081
00082
00083
00084
00085
00087 private:
00088 NTupleSvc *m_skim;
00089
00091 private:
00092 Int_t el_n;
00093
00095 private:
00096 Int_t el_n2;
00097
00098 ClassDef(UnitTestSkim, 1);
00099 };
00100 }
00101
00102 #endif