CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/DataFormats/Provenance/src/RunID.cc

Go to the documentation of this file.
00001 #include "DataFormats/Provenance/interface/RunID.h"
00002 #include <ostream>
00003 
00004 namespace edm {
00005   std::ostream& operator<<(std::ostream& oStream, RunID const& iID) {
00006     oStream << "run: " << iID.run();
00007     return oStream;
00008   }
00009 }