File indexing completed on 2023-03-17 10:49:50
0001 #ifndef DataFormats_FWLite_RunHistoryGetter_h
0002 #define DataFormats_FWLite_RunHistoryGetter_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #include "DataFormats/FWLite/interface/Run.h"
0022 #include "DataFormats/FWLite/interface/HistoryGetterBase.h"
0023
0024 namespace fwlite {
0025 class RunHistoryGetter : public HistoryGetterBase {
0026 public:
0027 RunHistoryGetter(const Run*);
0028 ~RunHistoryGetter() override;
0029
0030
0031 const edm::ProcessHistory& history() const override;
0032
0033 RunHistoryGetter(const RunHistoryGetter&) = delete;
0034
0035 const RunHistoryGetter& operator=(const RunHistoryGetter&) = delete;
0036
0037 private:
0038
0039 const fwlite::Run* run_;
0040 };
0041
0042 }
0043
0044 #endif