laura is hosted by Hepforge, IPPP Durham
Laura++  3.6.0
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauTextFileParser.cc
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 
29 // Class for defining strings that can also handle numbers
30 // Useful for writing lines of output text that has a combination of
31 // words and numbers
32 
33 #include "LauTextFileParser.hh"
34 
35 #include "LauString.hh"
36 
37 #include <fstream>
38 
39 using std::cerr;
40 using std::cout;
41 using std::endl;
42 
44  theFile_( s ),
45  totalLines_( 0 ),
46  lineNumber_( 0 )
47 {
48 }
49 
50 LauTextFileParser::LauTextFileParser( const std::string& s ) :
51  theFile_( s ),
52  totalLines_( 0 ),
53  lineNumber_( 0 )
54 {
55 }
56 
58  theFile_( s.Data() ),
59  totalLines_( 0 ),
60  lineNumber_( 0 )
61 {
62 }
63 
65 {
66  LineMap::iterator mapIter;
67  for ( mapIter = lineMap_.begin(); mapIter != lineMap_.end(); ++mapIter ) {
68  std::vector<std::string> line = mapIter->second;
69  line.clear();
70  }
71  lineMap_.clear();
72 }
73 
75 {
76  // Read the input file and store each (non-comment) line in the internal map.
77  // Store the strings/numbers from each line in a vector, using a whitespace
78  // separator to get each value.
79 
80  std::ifstream getData( theFile_.c_str() );
81 
82  std::string whiteSpace( " " );
83  UInt_t lineNo( 0 );
84 
85  cout << "Processing input file " << theFile_ << endl;
86 
87  // Loop while the input file is readable
88  while ( getData.good() ) {
89 
90  if ( getData.peek() == '\n' ) {
91 
92  // Finish reading line
93  char c;
94  getData.get( c );
95 
96  // Stop while loop if we have reached the end of the file
97  if ( getData.eof() ) {
98  break;
99  }
100 
101  } else if ( getData.peek() == '#' ) {
102 
103  // Skip comment line
104  getData.ignore( 1000, '\n' );
105  getData.putback( '\n' );
106 
107  // Stop while loop if we have reached the end of the file
108  if ( getData.eof() ) {
109  break;
110  }
111 
112  } else {
113 
114  // Read data line
115  char line[100];
116  getData.getline( line, 100 );
117 
118  // Stop while loop if we have reached the end of the file
119  if ( getData.eof() ) {
120  break;
121  }
122 
123  LauString lineString( line );
124  // Split up the line according to white spaces
125  std::vector<std::string> lineVect = lineString.split( whiteSpace );
126 
127  // Store this line in the internal map
128  lineMap_[lineNo] = lineVect;
129  lineNo++;
130  }
131  }
132 
133  totalLines_ = lineNo;
134  cout << "Finished storing " << totalLines_ << " lines from " << theFile_ << endl;
135 }
136 
137 std::vector<std::string> LauTextFileParser::getNextLine()
138 {
139  // Get the next line of white-space separated strings/numbers
140  ++lineNumber_;
141 
142  std::vector<std::string> theLine = this->getLine( lineNumber_ );
143  return theLine;
144 }
145 
146 std::vector<std::string> LauTextFileParser::getLine( UInt_t lineNo )
147 {
148  // Retrieve the vector of white-space separated strings/numbers
149  // for the given (non-commented) line number
150  std::vector<std::string> line;
151 
152  LineMap::iterator mapIter = lineMap_.find( lineNo - 1 );
153  if ( mapIter != lineMap_.end() ) {
154  line = mapIter->second;
155  }
156 
157  return line;
158 }
LineMap lineMap_
The parsed text.
LauTextFileParser(const char *s)
Constructor.
File containing declaration of LauString class.
UInt_t lineNumber_
The current line number.
UInt_t totalLines_
The total number of lines in the file.
File containing declaration of LauTextFileParser class.
void processFile()
Parse the file.
std::string theFile_
The name of the file.
Class for defining a string.
Definition: LauString.hh:43
std::vector< std::string > getLine(UInt_t lineNo)
Retrieve the specified line.
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 ~LauTextFileParser()
Destructor.
std::vector< std::string > getNextLine()
Retrieve the next line.