LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
History.cc
Go to the documentation of this file.
2 // vim: set sw=2 expandtab :
3 
4 namespace art {
5 
6  History::History() = default;
7 
8  History::History(ProcessHistoryID const& phid) : processHistoryID_{phid} {}
9 
10  ProcessHistoryID const&
11  History::processHistoryID() const noexcept
12  {
13  return processHistoryID_;
14  }
15 
16  void
18  {
19  processHistoryID_ = phid;
20  }
21 
22 } // namespace art
void setProcessHistoryID(ProcessHistoryID const &phid)
Definition: History.cc:17
ProcessHistoryID processHistoryID_
Definition: History.h:24
ProcessHistoryID const & processHistoryID() const noexcept
Definition: History.cc:11
Definition: MVAAlg.h:12