LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
History.cc
Go to the documentation of this file.
2 
3 namespace art {
4 
6  History::size() const
7  {
8  return eventSelections_.size();
9  }
10 
11  void
13  {
14  eventSelections_.push_back(eventSelection);
15  }
16 
17  void
19  {
20  branchListIndexes_.push_back(branchListIndex);
21  }
22 
23  EventSelectionID const&
25  {
26  return eventSelections_[i];
27  }
28 
31  {
32  return eventSelections_;
33  }
34 }
EventSelectionIDVector eventSelections_
Definition: History.h:72
std::vector< EventSelectionID > EventSelectionIDVector
void addEventSelectionEntry(EventSelectionID const &eventSelection)
Definition: History.cc:12
BranchListIndexes branchListIndexes_
Definition: History.h:74
EventSelectionID const & getEventSelectionID(size_type i) const
Definition: History.cc:24
EventSelectionIDVector const & eventSelectionIDs() const
Definition: History.cc:30
unsigned short BranchListIndex
void addBranchListIndexEntry(BranchListIndex const &branchListIndex)
Definition: History.cc:18
HLT enums.
std::size_t size_type
Definition: History.h:21
size_type size() const
Definition: History.cc:6