ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / postProcessing / functionObjects / systemCall / systemCall.H
blob9baf118ef8aba9a96614282d30fb08a87069eebb
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::systemCall
27 Description
28     Executes system calls, entered in the form of a string list
30 SourceFiles
31     systemCall.C
32     IOsystemCall.H
34 \*---------------------------------------------------------------------------*/
36 #ifndef systemCall_H
37 #define systemCall_H
39 #include "stringList.H"
40 #include "pointFieldFwd.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 // Forward declaration of classes
48 class objectRegistry;
49 class dictionary;
50 class mapPolyMesh;
52 /*---------------------------------------------------------------------------*\
53                        Class systemCall Declaration
54 \*---------------------------------------------------------------------------*/
56 class systemCall
58 protected:
60     // Private data
62         //- Name of this set of system calls
63         word name_;
65         //- List of calls to execute - every step
66         stringList executeCalls_;
68         //- List of calls to execute when exiting the time-loop
69         stringList endCalls_;
71         //- List of calls to execute - write steps
72         stringList writeCalls_;
75     // Private Member Functions
77         //- Disallow default bitwise copy construct
78         systemCall(const systemCall&);
80         //- Disallow default bitwise assignment
81         void operator=(const systemCall&);
84 public:
86     //- Runtime type information
87     TypeName("systemCall");
90     // Constructors
92         //- Construct for given objectRegistry and dictionary.
93         //  Allow the possibility to load fields from files
94         systemCall
95         (
96             const word& name,
97             const objectRegistry& unused,
98             const dictionary&,
99             const bool loadFromFilesUnused = false
100         );
103     //- Destructor
104     virtual ~systemCall();
107     // Member Functions
109         //- Return name of the system call set
110         virtual const word& name() const
111         {
112             return name_;
113         }
115         //- Read the system calls
116         virtual void read(const dictionary&);
118         //- Execute the "executeCalls" at each time-step
119         virtual void execute();
121         //- Execute the "endCalls" at the final time-loop
122         virtual void end();
124         //- Write, execute the "writeCalls"
125         virtual void write();
127         //- Update for changes of mesh
128         virtual void updateMesh(const mapPolyMesh&)
129         {}
131         //- Update for changes of mesh
132         virtual void movePoints(const pointField&)
133         {}
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
139 } // End namespace Foam
141 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 #endif
145 // ************************************************************************* //