Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / src / OpenFOAM / interpolations / interpolationTable / tableReaders / csv / csvTableReader.H
blob282dd92ccb6e0badc691434678b1e54acea019c9
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::csvTableReader
27 Description
28     Reads an interpolation table from a file - CSV-format
30 SourceFiles
31     tableReader.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef csvTableReader_H
36 #define csvTableReader_H
38 #include "tableReader.H"
39 #include "labelList.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                         Class csvTableReader Declaration
48 \*---------------------------------------------------------------------------*/
50 template<class Type>
51 class csvTableReader
53     public tableReader<Type>
55     // Private data
57         //- Does the file have a header line?
58         const bool headerLine_;
60         //- Column of the time
61         const label timeColumn_;
63         //- Labels of the components
64         const labelList componentColumns_;
66         //- Read the next value from the splitted string
67         Type readValue(const List<string>&);
69         //- Separator character
70         const char separator_;
73 public:
75     //- Runtime type information
76     TypeName("csv");
79     // Constructors
81         //- Construct from dictionary
82         csvTableReader(const dictionary& dict);
84         //- Construct and return a copy
85         virtual autoPtr<tableReader<Type> > clone() const
86         {
87             return autoPtr<tableReader<Type> >
88             (
89                 new csvTableReader<Type>
90                 (
91                     *this
92                 )
93             );
94         }
97     //- Destructor
98     virtual ~csvTableReader();
101     // Member Functions
103         //- Read the table
104         virtual void operator()(const fileName&, List<Tuple2<scalar, Type> >&);
106         //- write the remaining parameters
107         virtual void write(Ostream& os) const;
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 } // End namespace Foam
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 #ifdef NoRepository
118 #   include "csvTableReader.C"
119 #endif
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 #endif
125 // ************************************************************************* //