![]() |
|
|||
File indexing completed on 2023-03-17 10:51:39
0001 #include "DetectorDescription/Core/interface/DDSplit.h" 0002 0003 std::pair<std::string, std::string> DDSplit(const std::string& n) { 0004 std::string name, ns; 0005 std::string::size_type pos = n.find(':'); 0006 if (pos == std::string::npos) { 0007 ns = ""; 0008 name = n; 0009 } else { 0010 ns = std::string(n, 0, pos); 0011 name = std::string(n, pos + 1, n.size() - 1); 0012 } 0013 return std::make_pair(name, ns); 0014 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |
![]() ![]() |