From 5744cef0427d0d4624dc8d7f75298c321dfe00c5 Mon Sep 17 00:00:00 2001 From: "W. David Dagenhart" Date: Fri, 28 Aug 2020 16:58:53 +0200 Subject: [PATCH] Delete some obsolete/unused code (forking related) --- IOPool/Output/interface/PoolOutputModule.h | 2 -- IOPool/Output/src/PoolOutputModule.cc | 8 -------- 2 files changed, 10 deletions(-) diff --git a/IOPool/Output/interface/PoolOutputModule.h b/IOPool/Output/interface/PoolOutputModule.h index b6c0ec87222e6..3fda9aff33816 100644 --- a/IOPool/Output/interface/PoolOutputModule.h +++ b/IOPool/Output/interface/PoolOutputModule.h @@ -202,8 +202,6 @@ namespace edm { bool initializedFromInput_; int outputFileCount_; int inputFileCount_; - unsigned int childIndex_; - unsigned int numberOfDigitsInIndex_; BranchParents branchParents_; BranchChildren branchChildren_; std::vector producedBranches_; diff --git a/IOPool/Output/src/PoolOutputModule.cc b/IOPool/Output/src/PoolOutputModule.cc index 342d123888c07..44c7cbfc504fe 100644 --- a/IOPool/Output/src/PoolOutputModule.cc +++ b/IOPool/Output/src/PoolOutputModule.cc @@ -57,8 +57,6 @@ namespace edm { initializedFromInput_(false), outputFileCount_(0), inputFileCount_(0), - childIndex_(0U), - numberOfDigitsInIndex_(0U), branchParents_(), branchChildren_(), overrideInputFileSplitLevels_(pset.getUntrackedParameter("overrideInputFileSplitLevels")), @@ -348,12 +346,6 @@ namespace edm { std::ostringstream lfilename; ofilename << fileBase; lfilename << logicalFileName(); - if (numberOfDigitsInIndex_) { - ofilename << '_' << std::setw(numberOfDigitsInIndex_) << std::setfill('0') << childIndex_; - if (!logicalFileName().empty()) { - lfilename << '_' << std::setw(numberOfDigitsInIndex_) << std::setfill('0') << childIndex_; - } - } if (outputFileCount_) { ofilename << std::setw(3) << std::setfill('0') << outputFileCount_; if (!logicalFileName().empty()) {