Main Page
Namespaces
Classes
Package Documentation
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
DetectorDescription
Core
src
DDSplit.cc
Go to the documentation of this file.
1
#include "
DetectorDescription/Core/interface/DDSplit.h
"
2
3
std::pair<std::string, std::string>
DDSplit
(
const
std::string
&
n
) {
4
std::string
name
, ns;
5
std::string::size_type
pos = n.find(
':'
);
6
if
(pos == std::string::npos) {
7
ns =
""
;
8
name =
n
;
9
}
else
{
10
ns =
std::string
(n, 0, pos);
11
name =
std::string
(n, pos + 1, n.size() - 1);
12
}
13
return
std::make_pair(name, ns);
14
}
trigger::size_type
uint16_t size_type
Definition:
TriggerTypeDefs.h:18
mergeVDriftHistosByStation.name
string name
Definition:
mergeVDriftHistosByStation.py:78
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
DDSplit.h
DDSplit
std::pair< std::string, std::string > DDSplit(const std::string &n)
split into (name,namespace), separator = ':'
Definition:
DDSplit.cc:3
dqmiodumpmetadata.n
int n
Definition:
dqmiodumpmetadata.py:28
Generated for CMSSW Reference Manual by
1.8.5