5 #include "CLHEP/Units/PhysicalConstants.h"
11 #include <unordered_map>
21 size_t startPos = input.find_first_not_of(
" \t");
22 size_t endPos = input.find_last_not_of(
" \t");
25 if (startPos == std::string::npos || endPos == std::string::npos) {
30 return input.substr(startPos, endPos - startPos + 1);
35 result.erase(std::remove(result.begin(), result.end(),
' '), result.end());
40 std::size_t lastSlashPos = path.find_last_of(
'/');
41 if (lastSlashPos == std::string::npos) {
45 return path.substr(lastSlashPos + 1);
49 auto lastSlash = path.find_last_of(
'/');
50 if (lastSlash == std::string::npos)
return ".";
51 return path.substr(0, lastSlash);
55 std::vector <std::string> pvalues;
56 stringstream plist(input);
58 while (plist >> tmp) {
60 if (!trimmed.empty()) {
61 pvalues.push_back(trimmed);
70 for (
const char &ch: input) {
71 if (toReplace.find(ch) != std::string::npos) {
72 output.append(replacement);
81 if (from.empty())
return source;
85 size_t findPos = source.find(from, lastPos);
87 while (findPos != string::npos) {
89 newString.append(source, lastPos, findPos - lastPos);
91 lastPos = findPos + from.length();
92 findPos = source.find(from, lastPos);
96 newString += source.substr(lastPos);
102 string fillDigits(
const string &word,
const string &c,
int ndigits) {
103 if (c.empty() || ndigits <=
static_cast<int>(word.size()))
return word;
107 int toFill = ndigits -
static_cast<int>(word.size());
108 filled.reserve(ndigits);
110 filled.append(toFill, c[0]);
121 if (value.find(
'*') == string::npos) {
122 if (!value.empty() && warnIfNotUnit && stod(value) != 0) {
123 cerr <<
" ! Warning: value " << v <<
" does not contain units." << endl;
128 }
catch (
const exception &e) {
129 cerr <<
FATALERRORL <<
"stod exception in gutilities: could not convert string to double. "
130 <<
"Value: >" << v <<
"<, error: " << e.what() << endl;
135 size_t pos = value.find(
'*');
136 string rootValue = value.substr(0, pos);
137 string units = value.substr(pos + 1);
141 answer = stod(rootValue);
142 }
catch (
const exception &e) {
143 cerr <<
FATALERRORL <<
"stod exception in gutilities: could not convert string to double. "
144 <<
"Value: >" << v <<
"<, error: " << e.what() << endl;
149 static const unordered_map<string, double> unitConversion = {
153 {
"um", 1E-6 * CLHEP::m},
154 {
"fm", 1E-15 * CLHEP::m},
155 {
"inches", 2.54 * CLHEP::cm},
156 {
"inch", 2.54 * CLHEP::cm},
158 {
"degrees", CLHEP::deg},
159 {
"arcmin", CLHEP::deg / 60.0},
161 {
"mrad", CLHEP::mrad},
164 {
"KeV", 0.001 * CLHEP::MeV},
167 {
"T/m", CLHEP::tesla / CLHEP::m},
168 {
"Tesla", CLHEP::tesla},
169 {
"gauss", CLHEP::gauss},
170 {
"kilogauss", CLHEP::gauss * 1000},
178 auto it = unitConversion.find(units);
179 if (it != unitConversion.end()) {
180 answer *= it->second;
182 cerr <<
GWARNING <<
">" << units <<
"<: unit not recognized for string <" << v <<
">" << endl;
192 string gnumber = to_string(input) +
"*" + unit;
197 vector<double> output;
198 output.reserve(vstring.size());
200 for (
const auto &s: vstring) {
214 ifstream in(filename);
216 cerr <<
FATALERRORL <<
"can't open input file " << filename <<
". Check your spelling. " << endl;
220 stringstream strStream;
222 cout << endl <<
CIRCLEITEM <<
" Loading string from " << filename << endl;
224 strStream << in.rdbuf();
227 string parsedString = strStream.str();
231 while ((nFPos = parsedString.find(commentChars)) != string::npos) {
232 size_t firstNL = parsedString.rfind(
'\n', nFPos);
233 size_t secondNL = parsedString.find(
'\n', nFPos);
234 parsedString.erase(firstNL, secondNL - firstNL);
241 size_t firstpos = input.find(firstDelimiter);
242 size_t secondpos = input.find(secondDelimiter);
244 if (firstpos == string::npos || secondpos == string::npos) {
247 return input.substr(firstpos + firstDelimiter.length(), secondpos - firstpos - firstDelimiter.length());
251 vector <string> pvalues;
254 for (
char ch: input) {
307 #include <sys/stat.h>
311 if (stat(path.c_str(), &info) != 0) {
314 return (info.st_mode & S_IFDIR) != 0;
318 for (
const auto &trialLocation: possibleLocations) {
319 string possibleDir = trialLocation +
"/" + dirName;
324 return "UNINITIALIZEDSTRINGQUANTITY";
328 bool hasExtension(
const std::string &filename,
const std::vector <std::string> &extensions) {
329 for (
const auto &ext: extensions) {
330 if (filename.size() >= ext.size() &&
331 filename.compare(filename.size() - ext.size(), ext.size(), ext) == 0) {
339 vector <string> fileList;
341 DIR *dir = opendir(dirName.c_str());
343 struct dirent *entry;
344 while ((entry = readdir(dir)) !=
nullptr) {
346 string filepath = dirName +
"/" + entry->d_name;
347 if (stat(filepath.c_str(), &info) == 0 && S_ISREG(info.st_mode)) {
348 string filename = entry->d_name;
350 fileList.push_back(filename);
362 transform(lower.begin(), lower.end(), lower.begin(), ::tolower);
367 template<
class KEY,
class VALUE>
368 vector<KEY>
getKeys(
const map<KEY, VALUE>& map) {
370 keys.reserve(map.size());
372 for (
const auto& it : map) {
373 keys.push_back(it.first);
380 static const std::unordered_map <std::string, randomModel> strToEnum = {
387 auto it = strToEnum.find(str);
388 if (it != strToEnum.end()) {
391 throw std::invalid_argument(
"Invalid string for randomModel: " + str);
#define GWARNING
Warning label.
#define EC__FILENOTFOUND
File not found error code.
#define CIRCLEITEM
Symbol for circle item.
#define EC__G4NUMBERERROR
G4 number error code.
#define FATALERRORL
Fatal error label.
string replaceAllStringsWithString(const string &source, const string &from, const string &to)
Replaces all occurrences of a substring with another string.
bool hasExtension(const std::string &filename, const std::vector< std::string > &extensions)
Checks if a filename has one of the specified extensions.
vector< double > getG4NumbersFromString(const string &vstring, bool warnIfNotUnit)
Converts a comma-separated string of numbers with units to a vector of doubles.
string removeAllSpacesFromString(const std::string &str)
Removes all spaces from a string.
vector< string > getStringVectorFromStringWithDelimiter(const string &input, const string &x)
Splits a string into a vector of substrings using a specified delimiter.
randomModel stringToRandomModel(const std::string &str)
Converts a string to a corresponding randomModel enum value.
vector< string > getListOfFilesInDirectory(const string &dirName, const vector< string > &extensions)
Retrieves a list of files with specific extensions from a directory.
vector< double > getG4NumbersFromStringVector(const vector< string > &vstring, bool warnIfNotUnit)
Converts a vector of strings representing numbers with units to a vector of doubles.
string retrieveStringBetweenChars(const string &input, const string &firstDelimiter, const string &secondDelimiter)
Retrieves a substring between two specified delimiters in a string.
string replaceCharInStringWithChars(const std::string &input, const std::string &toReplace, const std::string &replacement)
Replaces all occurrences of specified characters in a string with another string.
string fillDigits(const string &word, const string &c, int ndigits)
Pads a string with a specified character until it reaches a desired length.
randomModel
Enumeration of random models.
@ gaussian
Gaussian distribution.
@ uniform
Uniform distribution.
@ sphere
Sphere distribution.
@ cosine
Cosine distribution.
string getDirFromPath(const std::string &path)
Extracts the directory path from a given file path.
string convertToLowercase(const string &str)
Converts a string to lowercase.
bool directoryExists(const std::string &path)
Checks if a directory exists at the given path.
vector< KEY > getKeys(const map< KEY, VALUE > &map)
Retrieves all keys from a map.
string removeLeadingAndTrailingSpacesFromString(const std::string &input)
Removes leading and trailing spaces and tabs from a string.
string searchForDirInLocations(const string &dirName, const vector< string > &possibleLocations)
Searches for a directory within a list of possible locations.
string parseFileAndRemoveComments(const string &filename, const string &commentChars, int verbosity)
Parses a file and removes all lines containing specified comment characters.
string getFileFromPath(const std::string &path)
Extracts the filename from a given file path.
vector< std::string > getStringVectorFromString(const std::string &input)
Splits a string into a vector of strings using spaces as delimiters.
double getG4Number(double input, const string &unit)
Converts a numeric value with a unit into a G4 number format and returns the converted value.