Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-12-17 02:41:07

0001 #include "DataFormats/Provenance/interface/BranchID.h"
0002 #include "FWCore/Utilities/interface/calculateCRC32.h"
0003 #include <ostream>
0004 
0005 namespace edm {
0006 
0007   BranchID::value_type BranchID::toID(std::string const& branchName) { return cms::calculateCRC32(branchName); }
0008 
0009   std::ostream& operator<<(std::ostream& os, BranchID const& id) {
0010     os << id.id();
0011     return os;
0012   }
0013 }  // namespace edm