Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:49:52

0001 // -*- C++ -*-
0002 //
0003 // Package:     DataFormats
0004 // Class  :     LumiHistoryGetter
0005 //
0006 // Implementation:
0007 //     [Notes on implementation]
0008 //
0009 // Original Author:
0010 //         Created:  Wed Feb 10 11:15:18 CST 2010
0011 //
0012 
0013 // user include files
0014 #include "DataFormats/FWLite/interface/RunHistoryGetter.h"
0015 
0016 namespace fwlite {
0017 
0018   //
0019   // constructors and destructor
0020   //
0021   RunHistoryGetter::RunHistoryGetter(const Run* run) { run_ = run; }
0022 
0023   RunHistoryGetter::~RunHistoryGetter() {}
0024 
0025   //
0026   // const member functions
0027   //
0028   const edm::ProcessHistory& RunHistoryGetter::history() const { return run_->history(); }
0029 }  // namespace fwlite