KaliVeda
Toolkit for HIC analysis
KVString Class Reference

Detailed Description

Extension of ROOT TString class which allows backwards compatibility with ROOT v3.10/02 onwards.

Tokenize() and IsDigit() methods are added here if they don't exist in the version of ROOT being used.

IsFloat() method is added: returns true if string is a floating-point number, i.e. if it has any of following formats (only first one returns kTRUE with TString::IsDigit()):

64320
6.4320 6,4320
6.43e20 6.43E20 6,43e20
6.43e-20 6.43E-20 6,43e-20

Also Atoi() and Atof() are extended to include the following possibilities:

  • Atoi(): with string="123 456", TString::Atoi() gives value=123. KVString::Atoi() gives value=123456
  • Atof(): with string="12,34", TString::Atof() gives value=12. KVString::Atof() gives value=12.34

Begin(), Next() and End() can be used to loop over items in a string separated by the delimiter character given as argument to Begin().

Example:

KVString str("First | Second | Third");
str.Begin("|");
while( !str.End() ){
cout << str.Next().Data() << endl;
}
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
Definition: KVString.h:73

This will give the following output:

First
Second
Third

or, if Next() is called with argument strip_whitespace=kTRUE,

First
Second
Third

Definition at line 73 of file KVString.h.

#include <KVString.h>

Inheritance diagram for KVString:

Public Member Functions

 KVString ()
 
 KVString (const Char_t *s)
 
 KVString (const KVString &s)
 
 KVString (const TString &s)
 
 KVString (Double_t value, Double_t error)
 
virtual ~ KVString ()
 
void Begin (TString delim) const
 
void Capitalize ()
 Change first character of string from lower to upper case. More...
 
Bool_t End () const
 
KVStringFindCommonCharacters (const TCollection *, const char bug=' *')
 
KVStringFindCommonTitleCharacters (const TCollection *, const char bug=' *')
 
Int_t GetNValues (TString delim) const
 
virtual Bool_t Match (TString pattern)
 
KVString Next (Bool_t strip_whitespace=kFALSE) const
 
KVStringoperator= (const char *s)
 
KVStringoperator= (const KVString &s)
 
KVStringoperator= (const TString &s)
 
void RandomLetterSequence (Int_t length)
 
void RBegin (TString delim) const
 
void RemoveAllExtraWhiteSpace ()
 
KVString RNext (Bool_t strip_whitespace=kFALSE) const
 
virtual Int_t Sscanf (const Char_t *fmt,...)
 
KVString StripAllExtraWhiteSpace () const
 
virtual KVStringSubstitute (const Char_t c1, const Char_t c2)
 Replace every occurence of 'c1' with 'c2'. More...
 
std::vector< KVStringVectorize (TString delim, Bool_t strip_whitespace=kFALSE)
 

Static Public Member Functions

static KVString BaseConvert (const KVString &s_in, Int_t base_in, Int_t base_out)
 
static KVString Itoa (Int_t value, Int_t base)
 
static KVString LLtoa (Long64_t value, Int_t base)
 
static KVString UItoa (UInt_t value, Int_t base)
 
static KVString ULLtoa (ULong64_t value, Int_t base)
 

Private Attributes

Bool_t fEndList
 used by Next() & End() to iterate over list More...
 
Int_t fIterIndex
 used by Next() to iterate over list More...
 
std::unique_ptr< TObjArray > kObjArr
 used by Next() to iterate over list More...
 

Constructor & Destructor Documentation

◆ KVString() [1/5]

KVString::KVString ( )
inline

Definition at line 83 of file KVString.h.

◆ KVString() [2/5]

KVString::KVString ( const Char_t *  s)
inline

Definition at line 86 of file KVString.h.

◆ KVString() [3/5]

KVString::KVString ( const TString &  s)
inline

Definition at line 89 of file KVString.h.

◆ KVString() [4/5]

KVString::KVString ( const KVString s)
inline

Definition at line 92 of file KVString.h.

◆ KVString() [5/5]

KVString::KVString ( Double_t  value,
Double_t  error 
)

Definition at line 1466 of file KVString.cpp.

◆ ~ KVString()

virtual KVString::~ KVString ( )
inlinevirtual

Definition at line 97 of file KVString.h.

Member Function Documentation

◆ BaseConvert()

KVString KVString::BaseConvert ( const KVString s_in,
Int_t  base_in,
Int_t  base_out 
)
static

Converts string from base base_in to base base_out. Supported bases are 2-36. At most 64 bit data can be converted.

Definition at line 1192 of file KVString.cpp.

◆ Begin()

void KVString::Begin ( TString  delim) const

Begin(), Next() and End() can be used to loop over items in a string separated by the delimiter character given as argument to Begin().

Example:

KVString str("First | Second | Third");
str.Begin("|");
while( !str.End() ){
cout << str.Next().Data() << endl;
}

This will give the following output:

First
Second
Third
Warning
If the delimiter character is not contained in the string, calling Next() will return the entire contents of the string, after which End() will return kTRUE. This allows to parse strings containing variable numbers of parameters separated by a delimiter which is only used with 2 or more parameters, i.e.:
"par1|par2|par3" -> "par1" "par2" "par3"
"par1" -> "par1"

Definition at line 565 of file KVString.cpp.

◆ Capitalize()

void KVString::Capitalize ( )

Change first character of string from lower to upper case.

Definition at line 1454 of file KVString.cpp.

◆ End()

Bool_t KVString::End ( void  ) const

Begin(), Next() and End() can be used to loop over items in a string separated by the delimiter character given as argument to Begin().

Example:

KVString str("First | Second | Third");
str.Begin("|");
while( !str.End() ){
cout << str.Next().Data() << endl;
}

This will give the following output:

First
Second
Third

Definition at line 634 of file KVString.cpp.

◆ FindCommonCharacters()

KVString & KVString::FindCommonCharacters ( const TCollection *  list,
const char  bug = '*' 
)

list is a collection of objects with names this method generates a string containing all characters which appear in every name in the list, the others are replaced by the 'bug' character.

example: list contains a set of TNamed with names: run_0001.root run_0002.root ... run_0099.root

then toto.FindCommonCharacters(list) will produce toto="run_00*.root"

Definition at line 1307 of file KVString.cpp.

◆ FindCommonTitleCharacters()

KVString & KVString::FindCommonTitleCharacters ( const TCollection *  list,
const char  bug = '*' 
)

list is a collection of objects with titles this method generates a string containing all characters which appear in every title in the list, the others are replaced by the 'bug' character.

example: list contains a set of TNamed with titles: run_0001.root run_0002.root ... run_0099.root

then toto.FindCommonCharacters(list) will produce toto="run_00*.root"

Definition at line 1377 of file KVString.cpp.

◆ GetNValues()

Int_t KVString::GetNValues ( TString  delim) const

Count the number of substrings in this string separated by the given character(s) e.g. given a string "one | two | three", GetNValues("|") returns 3 Note that if the 'delim' character is not contained in the string, GetNValues() will return 1 (not 0) - see Begin().

Definition at line 886 of file KVString.cpp.

◆ Itoa()

KVString KVString::Itoa ( Int_t  value,
Int_t  base 
)
static

Converts an Int_t to a KVString with respect to the base specified (2-36). Thus it is an enhanced version of sprintf (adapted from versions 0.4 of http://www.jb.man.ac.uk/~slowe/cpp/itoa.html). Usage: the following statement produce the same output, namely "1111" std::cout << KVString::Itoa(15,2) ; std::cout << KVString::Itoa(0xF,2) ; /// 0x prefix to handle hex std::cout << KVString::Itoa(017,2) ; /// 0 prefix to handle oct In case of error returns the "!" string.

Definition at line 1038 of file KVString.cpp.

◆ LLtoa()

KVString KVString::LLtoa ( Long64_t  value,
Int_t  base 
)
static

Converts a Long64_t to a KVString with respect to the base specified (2-36). Thus it is an enhanced version of sprintf (adapted from versions 0.4 of http://www.jb.man.ac.uk/~slowe/cpp/itoa.html). In case of error returns the "!" string.

Definition at line 1118 of file KVString.cpp.

◆ Match()

Bool_t KVString::Match ( TString  pattern)
virtual

Check if pattern fit the considered string As in ls shell command the * symbol represents the non discriminant part of the pattern if no * is present in the pattern, the result correspond to TString::Contains method Example KVString st(file_R45.dat); st.Match("*") -> kTRUE st.Match("file") ->kTRUE st.Match("*file*R*") ->kTRUE etc ....

Definition at line 494 of file KVString.cpp.

◆ Next()

KVString KVString::Next ( Bool_t  strip_whitespace = kFALSE) const

Begin(), Next() and End() can be used to loop over items in a string separated by the delimiter character given as argument to Begin().

Parameters
[in]strip_whitespaceif kTRUE (default is kFALSE), any leading or trailing whitespace is removed from each item
Returns
next item in string separated by delimiter(s) given to Begin()

Example:

KVString str("First | Second | Third");
str.Begin("|");
while( !str.End() ){
cout << str.Next(kTRUE).Data() << endl;
}

This will give the following output:

First
Second
Third

whereas if Next() is used (i.e. strip_whitespace=kFALSE), this gives:

First
Second
Third

Definition at line 695 of file KVString.cpp.

◆ operator=() [1/3]

KVString & KVString::operator= ( const char *  s)
inline

Definition at line 183 of file KVString.h.

◆ operator=() [2/3]

KVString & KVString::operator= ( const KVString s)
inline

Definition at line 169 of file KVString.h.

◆ operator=() [3/3]

KVString & KVString::operator= ( const TString &  s)
inline

Definition at line 177 of file KVString.h.

◆ RandomLetterSequence()

void KVString::RandomLetterSequence ( Int_t  length)

Generate a random sequence of upper- and lower-case letters of given length

Definition at line 1436 of file KVString.cpp.

◆ RBegin()

void KVString::RBegin ( TString  delim) const

RBegin(), RNext() and End() can be used to loop BACKWARDS over items in a string separated by the delimiter character given as argument to RBegin().

Example: KVString str("First | Second | Third"); str.RBegin("|"); while( !str.End() ){ cout << str.RNext().Data() << endl; }

This will give the following output:

Third Second First

WARNING: If the delimiter character is not contained in the string, calling RNext() will return the entire contents of the string, after which End() will return kTRUE. This allows to parse strings containing variable numbers of parameters separated by a delimiter which is only used with 2 or more parameters, i.e.:

"par1|par2|par3" -> "par3" "par2" "par1" "par1" -> "par1"

Definition at line 768 of file KVString.cpp.

◆ RemoveAllExtraWhiteSpace()

void KVString::RemoveAllExtraWhiteSpace ( )

Remove any superfluous whitespace (or tabs or newlines) from this string (modifies string) i.e. transform " Mary Had\tA Little \n Laaaaaaaaaaaaaaaaaamb" into "Mary Had A Little Lamb"

Definition at line 1253 of file KVString.cpp.

◆ RNext()

KVString KVString::RNext ( Bool_t  strip_whitespace = kFALSE) const

RBegin(), RNext() and End() can be used to loop BACKWARDS over items in a string separated by the delimiter character given as argument to RBegin(). If strip_whitespace=kTRUE (default is kFALSE), any leading or trailing whitespace is removed from each item.

Example: KVString str("First | Second | Third"); str.RBegin("|"); while( !str.End() ){ cout << str.RNext(kTRUE).Data() << endl; }

This will give the following output:

Third Second First

whereas if RNext() is used (i.e. strip_whitespace=kFALSE), this gives:

Third Second First

Definition at line 841 of file KVString.cpp.

◆ Sscanf()

Int_t KVString::Sscanf ( const Char_t *  fmt,
  ... 
)
virtual

A more strict implementation than the standard 'sscanf' We require that any characters in the format string which are not format descriptors ("%d" etc.) be identical to the characters in this KVString

i.e. for a string "file6.root", sscanf("file6.root", "file%d.root", &some_integer) returns 1 but so does sscanf("file6.root", "file%danything_you_want_here_i_dont_care", &some_integer).

Use this method when you ONLY want "file%d.root" to match "file6.root"

Returns number of fields read from string

HANDLED FORMAT DESCRIPTORS

d - simple integer descriptor %3d - simple integer descriptor with length - only integers of correct length accepted (leading characters may be white space, i.e. ' 4' for 4 written with '%3d') %03d - simple integer descriptor with length + zero padding - only integers of correct length accepted (leading characters may be zeroes, i.e. '004' for 4 written with '%03d') %* - just garbage, no argument required, it is not read. we ignore the rest of the string and the rest of the format. this is not counted as a field to be read. i.e. Sscanf("%*") gives 0 for any string, not because it doesn't match, but because there is nothing to read.

Definition at line 320 of file KVString.cpp.

◆ StripAllExtraWhiteSpace()

KVString KVString::StripAllExtraWhiteSpace ( ) const

Remove any superfluous whitespace (or tabs or newlines) from string (does not modify string) i.e. transform " Mary Had\tA Little \n Laaaaaaaaaaaaaaaaaamb" into "Mary Had A Little Lamb"

Definition at line 1275 of file KVString.cpp.

◆ Substitute()

KVString & KVString::Substitute ( const Char_t  c1,
const Char_t  c2 
)
virtual

Replace every occurence of 'c1' with 'c2'.

Definition at line 275 of file KVString.cpp.

◆ UItoa()

KVString KVString::UItoa ( UInt_t  value,
Int_t  base 
)
static

Converts a UInt_t (twice the range of an Int_t) to a KVString with respect to the base specified (2-36). Thus it is an enhanced version of sprintf (adapted from versions 0.4 of http://www.jb.man.ac.uk/~slowe/cpp/itoa.html). In case of error returns the "!" string.

Definition at line 1081 of file KVString.cpp.

◆ ULLtoa()

KVString KVString::ULLtoa ( ULong64_t  value,
Int_t  base 
)
static

Converts a ULong64_t (twice the range of an Long64_t) to a KVString with respect to the base specified (2-36). Thus it is an enhanced version of sprintf (adapted from versions 0.4 of http://www.jb.man.ac.uk/~slowe/cpp/itoa.html). In case of error returns the "!" string.

Definition at line 1157 of file KVString.cpp.

◆ Vectorize()

std::vector< KVString > KVString::Vectorize ( TString  delim,
Bool_t  strip_whitespace = kFALSE 
)

Split string into components according to delimiter 'delim' See Begin()/Next()/End()

Definition at line 909 of file KVString.cpp.

Member Data Documentation

◆ fEndList

Bool_t KVString::fEndList
mutableprivate

used by Next() & End() to iterate over list

Definition at line 79 of file KVString.h.

◆ fIterIndex

Int_t KVString::fIterIndex
mutableprivate

used by Next() to iterate over list

Definition at line 78 of file KVString.h.

◆ kObjArr

std::unique_ptr<TObjArray> KVString::kObjArr
mutableprivate

used by Next() to iterate over list

Definition at line 77 of file KVString.h.