Go to the documentation of this file.00001
00002
00003
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "L1Trigger/GlobalMuonTrigger/src/L1MuGMTLUTHelpers.h"
00021
00022
00023
00024 #include <ctype.h>
00025
00026 using namespace std;
00027
00028
00029
00030
00031 int L1MuGMTLUTHelpers::replace(string & input, const string& gone, const string& it, bool multiple) {
00032 int n=0;
00033 size_t i = input.find(gone,0);
00034 while(i!=string::npos) {
00035 n++;
00036 input.replace(i,gone.size(),it);
00037 i = input.find(gone,i+(multiple ? 0 : it.size()));
00038 }
00039 return n;
00040 }
00041
00042
00043
00044
00045 string L1MuGMTLUTHelpers::upperCase(const string& s) {
00046 char* buf = new char[s.length()];
00047 s.copy(buf, s.length());
00048 for(unsigned i = 0; i < s.length(); i++)
00049 buf[i] = toupper(buf[i]);
00050 string r(buf, s.length());
00051 delete buf;
00052 return r;
00053 }
00054
00055
00056
00057
00058
00059
00060 string L1MuGMTLUTHelpers::lowerCase(const string& s) {
00061 char* buf = new char[s.length()];
00062 s.copy(buf, s.length());
00063 for(unsigned i = 0; i < s.length(); i++)
00064 buf[i] = tolower(buf[i]);
00065 string r(buf, s.length());
00066 delete buf;
00067 return r;
00068 }
00069
00070
00071
00072
00073