Skip to content

Commit

Permalink
Delete some obsolete/unused code (forking related)
Browse files Browse the repository at this point in the history
  • Loading branch information
wddgit committed Aug 28, 2020
1 parent 56ac1dc commit 5744cef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
2 changes: 0 additions & 2 deletions IOPool/Output/interface/PoolOutputModule.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,6 @@ namespace edm {
bool initializedFromInput_;
int outputFileCount_;
int inputFileCount_;
unsigned int childIndex_;
unsigned int numberOfDigitsInIndex_;
BranchParents branchParents_;
BranchChildren branchChildren_;
std::vector<BranchID> producedBranches_;
Expand Down
8 changes: 0 additions & 8 deletions IOPool/Output/src/PoolOutputModule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ namespace edm {
initializedFromInput_(false),
outputFileCount_(0),
inputFileCount_(0),
childIndex_(0U),
numberOfDigitsInIndex_(0U),
branchParents_(),
branchChildren_(),
overrideInputFileSplitLevels_(pset.getUntrackedParameter<bool>("overrideInputFileSplitLevels")),
Expand Down Expand Up @@ -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()) {
Expand Down

0 comments on commit 5744cef

Please sign in to comment.