1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "DataFormats/Provenance/interface/EventAux.h"
#include "DataFormats/Provenance/interface/EventAuxiliary.h"
/*----------------------------------------------------------------------
----------------------------------------------------------------------*/
namespace edm {
void conversion(EventAux const& from, EventAuxiliary& to) {
to.processHistoryID_ = from.processHistoryID_;
to.id_ = from.id_;
to.time_ = from.time_;
to.luminosityBlock_ = from.luminosityBlockID_;
}
} // namespace edm
|