1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef DataFormats_Provenance_RunAux_h
#define DataFormats_Provenance_RunAux_h
#include <iosfwd>
#include "DataFormats/Provenance/interface/ProcessHistoryID.h"
#include "DataFormats/Provenance/interface/RunID.h"
// Auxiliary run information that is persistent.
// Obsolete format, used for backward compatibility only.
namespace edm {
class RunAuxiliary;
class RunAux {
public:
RunAux() : processHistoryID_(), id_() {}
~RunAux() {}
ProcessHistoryID processHistoryID_;
RunNumber_t id_;
};
void conversion(RunAux const& from, RunAuxiliary& to);
} // namespace edm
#endif
|