Skip to content

Commit

Permalink
Merge pull request #952 from wddgit/multithreadedTriggerNamesService
Browse files Browse the repository at this point in the history
Multithreaded framework -- Multithreaded TriggerNamesService
  • Loading branch information
ktf committed Oct 2, 2013
2 parents 209b50b + 5563158 commit df9cda8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions FWCore/Framework/interface/TriggerNamesService.h
Expand Up @@ -115,13 +115,6 @@ namespace edm {
}
}

void loadPosMap(PosMap& posmap, Strings const& names) {
size_type const n(names.size());
for (size_type i = 0; i != n; ++i) {
posmap[names[i]] = i;
}
}

std::string const& getProcessName() const { return process_name_; }
bool wantSummary() const { return wantSummary_; }

Expand All @@ -130,6 +123,13 @@ namespace edm {

private:

void loadPosMap(PosMap& posmap, Strings const& names) {
size_type const n(names.size());
for (size_type i = 0; i != n; ++i) {
posmap[names[i]] = i;
}
}

edm::ParameterSet trigger_pset_;

Strings trignames_;
Expand Down

0 comments on commit df9cda8

Please sign in to comment.