Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #include "DataFormats/Provenance/interface/RunID.h"
0002 #include <ostream>
0003 
0004 namespace edm {
0005   std::ostream& operator<<(std::ostream& oStream, RunID const& iID) {
0006     oStream << "run: " << iID.run();
0007     return oStream;
0008   }
0009 }  // namespace edm