00001 #ifndef EVENT_LOOP_SOGE_DRIVER_HH
00002 #define EVENT_LOOP_SOGE_DRIVER_HH
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00017
00018
00019
00020 #include <EventLoop/Global.h>
00021
00022 #include <EventLoop/BatchDriver.h>
00023 #include <SampleHandler/Global.h>
00024
00025 namespace EL
00026 {
00027 class SoGEDriver : public BatchDriver
00028 {
00029
00030
00031
00032
00035 public:
00036 void testInvariant () const;
00037
00038
00042 public:
00043 SoGEDriver ();
00044
00045
00046
00047
00048
00049
00050
00059 private:
00060 virtual std::string batchJobId () const override;
00061
00062
00067 private:
00068 virtual void
00069 batchSubmit (const std::string& location, const SH::MetaObject& options,
00070 std::size_t njob) const override;
00071
00072
00073
00074
00075
00076
00077
00078 #pragma GCC diagnostic push
00079 #pragma GCC diagnostic ignored "-Wpragmas"
00080 #pragma GCC diagnostic ignored "-Wunknown-pragmas"
00081 #pragma GCC diagnostic ignored "-Winconsistent-missing-override"
00082 ClassDef(SoGEDriver, 1);
00083 #pragma GCC diagnostic pop
00084 };
00085 }
00086
00087 #endif