00001 #ifndef EVENT_LOOP_CONDOR_DRIVER_HH
00002 #define EVENT_LOOP_CONDOR_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 CondorDriver : public BatchDriver
00028 {
00029
00030
00031
00032
00035 public:
00036 void testInvariant () const;
00037
00038
00042 public:
00043 CondorDriver ();
00044
00045
00046
00047
00048
00049
00050
00055 private:
00056 virtual void
00057 batchSubmit (const std::string& location, const SH::MetaObject& options,
00058 std::size_t njob) const override;
00059
00064 private:
00065 virtual std::string batchInit () const override;
00066
00067
00068
00069
00070
00071
00072 #pragma GCC diagnostic push
00073 #pragma GCC diagnostic ignored "-Wpragmas"
00074 #pragma GCC diagnostic ignored "-Wunknown-pragmas"
00075 #pragma GCC diagnostic ignored "-Winconsistent-missing-override"
00076 ClassDef(CondorDriver, 1);
00077 #pragma GCC diagnostic pop
00078 };
00079 }
00080
00081 #endif