ATLAS Offline Software
Trigger/TrigT1/L1Topo/L1TopoCommon/Root/StringUtils.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 using namespace std;
8 
9 string
10 TCS::join(const vector<string>& v, const char c) {
11  string joined{""};
12  for(const string & s : v) {
13  if(!joined.empty()) joined += c;
14  joined += s;
15  }
16  return joined;
17 }
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
StringUtils.h
TCS::join
std::string join(const std::vector< std::string > &v, const char c=',')
Definition: Trigger/TrigT1/L1Topo/L1TopoCommon/Root/StringUtils.cxx:10
python.PyAthena.v
v
Definition: PyAthena.py:157
python.compressB64.c
def c
Definition: compressB64.py:93