CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/DataFormats/Provenance/src/LuminosityBlockAux.cc

Go to the documentation of this file.
00001 #include "DataFormats/Provenance/interface/LuminosityBlockAux.h"
00002 #include "DataFormats/Provenance/interface/LuminosityBlockAuxiliary.h"
00003 #include "DataFormats/Provenance/interface/Timestamp.h"
00004 
00005 /*----------------------------------------------------------------------
00006 
00007 $Id: LuminosityBlockAux.cc,v 1.3 2007/07/31 23:58:53 wmtan Exp $
00008 
00009 ----------------------------------------------------------------------*/
00010 
00011 namespace edm {
00012   void conversion(LuminosityBlockAux const& from, LuminosityBlockAuxiliary & to) {
00013     to.processHistoryID_ = from.processHistoryID_;
00014     to.id_ = LuminosityBlockID(from.runID_, from.id_);
00015     to.beginTime_ = to.endTime_ = Timestamp::invalidTimestamp();
00016   }
00017 }