ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
PhysicsAnalysis
D3PDTools
EventLoop
Root
GEDriver.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
7
8
//
9
// includes
10
//
11
12
#include <
EventLoop/GEDriver.h
>
13
14
#include <
AsgMessaging/StatusCode.h
>
15
#include <
EventLoop/Job.h
>
16
#include <
EventLoop/ManagerData.h
>
17
#include <
EventLoop/MessageCheck.h
>
18
#include <
RootCoreUtils/ShellExec.h
>
19
#include <TSystem.h>
20
#include <sstream>
21
22
//
23
// method implementations
24
//
25
26
ClassImp
(
EL::GEDriver
)
27
28
namespace
EL
29
{
30
void
GEDriver ::
31
testInvariant ()
const
32
{}
33
34
35
36
GEDriver ::
37
GEDriver ()
38
{
39
RCU_NEW_INVARIANT
(
this
);
40
}
41
42
43
44
::StatusCode
GEDriver ::
45
doManagerStep (Detail::ManagerData& data)
const
46
{
47
RCU_READ_INVARIANT
(
this
);
48
using namespace
msgEventLoop;
49
ANA_CHECK
(
BatchDriver::doManagerStep
(data));
50
switch
(data.step)
51
{
52
case
Detail::ManagerStep::submitJob
:
53
case
Detail::ManagerStep::doResubmit
:
54
{
55
// safely ignoring: resubmit
56
57
std::ostringstream cmd;
58
cmd <<
"cd "
<<
RCU::Shell::quote
(data.submitDir) <<
"/submit"
;
59
for
(std::size_t iter : data.batchJobIndices)
60
{
61
cmd <<
" && qsub "
<< data.options.castString (
Job::optSubmitFlags
)
62
<<
" -o "
<<
RCU::Shell::quote
(data.submitDir) <<
"/submit/log-"
<< iter <<
".out"
63
<<
" -e "
<<
RCU::Shell::quote
(data.submitDir) <<
"/submit/log-"
<< iter <<
".err"
64
<<
" run "
<< iter;
65
}
66
if
(gSystem->Exec (cmd.str().c_str()) != 0)
67
{
68
ANA_MSG_ERROR
(
"failed to execute: "
<< cmd.str());
69
return ::StatusCode::FAILURE;
70
}
71
data.submitted =
true
;
72
}
73
break
;
74
75
default
:
76
break
;
77
}
78
return ::StatusCode::SUCCESS;
79
}
80
}
RCU_NEW_INVARIANT
#define RCU_NEW_INVARIANT(x)
Definition
Assert.h:221
RCU_READ_INVARIANT
#define RCU_READ_INVARIANT(x)
Definition
Assert.h:217
ANA_MSG_ERROR
#define ANA_MSG_ERROR(xmsg,...)
Macro printing error messages.
Definition
Control/AthToolSupport/AsgMessaging/AsgMessaging/MessageCheck.h:295
ANA_CHECK
#define ANA_CHECK(EXP)
check whether the given expression was successful
Definition
Control/AthToolSupport/AsgMessaging/AsgMessaging/MessageCheck.h:325
StatusCode.h
ClassImp
ClassImp(EL::GEDriver) namespace EL
Definition
GEDriver.cxx:26
GEDriver.h
Job.h
ManagerData.h
MessageCheck.h
ShellExec.h
EL::BatchDriver::doManagerStep
virtual::StatusCode doManagerStep(Detail::ManagerData &data) const override
EL::GEDriver
a Driver for running on GE batch systems
Definition
GEDriver.h:19
EL::Job::optSubmitFlags
static const std::string optSubmitFlags
description: the name of the option for supplying extra submit parameters to batch systems rationale:...
Definition
Job.h:292
EL::Detail::ManagerStep::doResubmit
@ doResubmit
call the actual doResubmit method
Definition
ManagerStep.h:116
EL::Detail::ManagerStep::submitJob
@ submitJob
do the actual job submission
Definition
ManagerStep.h:92
EL
This module defines the arguments passed from the BATCH driver to the BATCH worker.
Definition
AsgComponentFactories.h:16
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
RCU::Shell::quote
std::string quote(const std::string &name)
effects: quote the given name to protect it from the shell returns: the quoted name guarantee: strong...
Definition
ShellExec.cxx:65
Generated on
for ATLAS Offline Software by
1.17.0