Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:03

0001 #include "DataFormats/Provenance/interface/History.h"
0002 
0003 namespace edm {
0004 
0005   History::size_type History::size() const { return eventSelections_.size(); }
0006 
0007   void History::addEventSelectionEntry(EventSelectionID const& eventSelection) {
0008     eventSelections_.push_back(eventSelection);
0009   }
0010 
0011   void History::addBranchListIndexEntry(BranchListIndex const& branchListIndex) {
0012     branchListIndexes_.push_back(branchListIndex);
0013   }
0014 
0015   EventSelectionID const& History::getEventSelectionID(History::size_type i) const { return eventSelections_[i]; }
0016 }  // namespace edm