Skip to content

Commit 6c93fa0

Browse files
committed
Remove unused GlobalSchedule::beginJob arguments
1 parent c49536b commit 6c93fa0

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

FWCore/Framework/interface/GlobalSchedule.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,7 @@ namespace edm {
7373
ServiceToken const& token,
7474
bool cleaningUpAfterException = false);
7575

76-
void beginJob(ProductRegistry const&,
77-
eventsetup::ESRecordsToProductResolverIndices const&,
78-
ProcessBlockHelperBase const&,
79-
ProcessContext const&);
76+
void beginJob(ProcessContext const&);
8077
void endJob(ExceptionCollector& collector);
8178

8279
/// Return a vector allowing const access to all the

FWCore/Framework/src/GlobalSchedule.cc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,7 @@ namespace edm {
8080

8181
} // GlobalSchedule::GlobalSchedule
8282

83-
void GlobalSchedule::beginJob(ProductRegistry const& iRegistry,
84-
eventsetup::ESRecordsToProductResolverIndices const& iESIndices,
85-
ProcessBlockHelperBase const& processBlockHelperBase,
86-
ProcessContext const& processContext) {
83+
void GlobalSchedule::beginJob(ProcessContext const& processContext) {
8784
GlobalContext globalContext(GlobalContext::Transition::kBeginJob, processContext_);
8885
unsigned int const managerIndex =
8986
numberOfConcurrentLumis_ + numberOfConcurrentRuns_ + numberOfConcurrentProcessBlocks_;

FWCore/Framework/src/Schedule.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ namespace edm {
11781178
iHolder->selectInputProcessBlocks(iRegistry, processBlockHelperBase);
11791179
});
11801180

1181-
globalSchedule_->beginJob(iRegistry, iESIndices, processBlockHelperBase, processContext);
1181+
globalSchedule_->beginJob(processContext);
11821182
}
11831183

11841184
void Schedule::beginStream(unsigned int streamID) {

0 commit comments

Comments
 (0)