Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:02

0001 #ifndef DataFormats_Provenance_RunAux_h
0002 #define DataFormats_Provenance_RunAux_h
0003 
0004 #include <iosfwd>
0005 
0006 #include "DataFormats/Provenance/interface/ProcessHistoryID.h"
0007 #include "DataFormats/Provenance/interface/RunID.h"
0008 
0009 // Auxiliary run information that is persistent.
0010 // Obsolete format, used for backward compatibility only.
0011 
0012 namespace edm {
0013   class RunAuxiliary;
0014   class RunAux {
0015   public:
0016     RunAux() : processHistoryID_(), id_() {}
0017     ~RunAux() {}
0018     ProcessHistoryID processHistoryID_;
0019     RunNumber_t id_;
0020   };
0021   void conversion(RunAux const& from, RunAuxiliary& to);
0022 }  // namespace edm
0023 #endif