CMS 3D CMS Logo

RunHistoryGetter.h
Go to the documentation of this file.
1 #ifndef DataFormats_FWLite_RunHistoryGetter_h
2 #define DataFormats_FWLite_RunHistoryGetter_h
3 // -*- C++ -*-
4 //
5 // Package: DataFormats
6 // Class : RunHistoryGetter
7 //
16 //
17 // Original Author:
18 // Created: Wed Feb 10 11:15:16 CST 2010
19 //
20 
23 
24 namespace fwlite {
26  public:
27  RunHistoryGetter(const Run*);
28  virtual ~RunHistoryGetter();
29 
30  // ---------- const member functions ---------------------
31  const edm::ProcessHistory& history() const;
32 
33  private:
34  RunHistoryGetter(const RunHistoryGetter&); // stop default
35 
36  const RunHistoryGetter& operator=(const RunHistoryGetter&); // stop default
37 
38  // ---------- member data --------------------------------
39  const fwlite::Run* run_;
40  };
41 
42 }
43 
44 #endif
const edm::ProcessHistory & history() const
const fwlite::Run * run_
const RunHistoryGetter & operator=(const RunHistoryGetter &)