laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauString.hh
Go to the documentation of this file.
1 
2 /*
3 Copyright 2008 University of Warwick
4 
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8 
9  http://www.apache.org/licenses/LICENSE-2.0
10 
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 */
17 
18 /*
19 Laura++ package authors:
20 John Back
21 Paul Harrison
22 Thomas Latham
23 */
24 
33 #ifndef LAU_STRING_HH
34 #define LAU_STRING_HH
35 
36 #include "TString.h"
37 
38 #include <iostream>
39 #include <sstream>
40 #include <string>
41 #include <vector>
42 
43 class LauString {
44 
45  public:
47  LauString();
48 
50 
53  LauString( const char* s );
54 
56 
59  LauString( const std::string& s );
60 
62 
65  LauString( const TString& s );
66 
68  LauString( const LauString& s );
69 
71  LauString& operator=( const LauString& s );
72 
74  virtual ~LauString();
75 
77 
80  void addInteger( int integer );
81 
83 
86  void addDouble( double value );
87 
89 
92  void addText( const char* text ) { theString_ += text; }
93 
95 
98  void addText( const std::string& text ) { theString_ += text; }
99 
101 
104  void addText( const TString& text ) { theString_ += text.Data(); }
105 
107 
110  LauString operator+=( int integer );
111 
113 
116  LauString operator+=( double value );
117 
119 
122  LauString operator+=( const char* text );
123 
125 
128  LauString operator+=( const std::string& text );
129 
131 
134  LauString operator+=( const TString& text );
135 
137 
140  std::string getString() const { return theString_; }
141 
143 
146  const char* getData() const { return theString_.c_str(); }
147 
149 
152  TString getTString() const { return TString( theString_.c_str() ); }
153 
155 
158  int size() const { return theString_.size(); }
159 
161 
164  std::vector<std::string> split( const std::string& splitter ) const;
165 
167 
170  std::vector<std::string> split( const LauString& splitter ) const;
171 
172  protected:
173 
174  private:
176  std::string theString_;
177 };
178 
179 #endif
void addText(const char *text)
Add some text from a character array.
Definition: LauString.hh:92
LauString()
Constructor for an empty string.
Definition: LauString.cc:37
std::string getString() const
Retrieve the string as an STL string.
Definition: LauString.hh:140
LauString operator+=(int integer)
Add an integer to the string.
Definition: LauString.cc:88
std::string theString_
The string.
Definition: LauString.hh:176
void addDouble(double value)
Add a double value to the string.
Definition: LauString.cc:81
LauString & operator=(const LauString &s)
Copy assignment operator.
Definition: LauString.cc:62
void addText(const std::string &text)
Add some text from an STL string.
Definition: LauString.hh:98
void addText(const TString &text)
Add some text from a TString.
Definition: LauString.hh:104
int size() const
Retrieve the total size of the string.
Definition: LauString.hh:158
Class for defining a string.
Definition: LauString.hh:43
const char * getData() const
Retrieve the string as an array of characters.
Definition: LauString.hh:146
void addInteger(int integer)
Add an integer value to the string.
Definition: LauString.cc:74
std::vector< std::string > split(const std::string &splitter) const
Split up a string according to a split string (e.g. ":" or " ")
Definition: LauString.cc:125
virtual ~LauString()
Destructor.
Definition: LauString.cc:70
TString getTString() const
Retrieve the string as a TString.
Definition: LauString.hh:152