createTimes.H
Go to the documentation of this file.
1 Info<< nl << "Create Times" << endl;
2
3 const fileName masterCasePath = masterCase.path();
4 const fileName masterCaseName = masterCase.name();
5
6 Time runTimeMaster
7 (
8 Time::controlDictName,
9 masterCasePath,
10 masterCaseName
11 );
12 runTimeMaster.functionObjects().off();
13
14 const fileName addCasePath = addCase.path();
15 const fileName addCaseName = addCase.name();
16
17 Time runTimeToAdd
18 (
19 Time::controlDictName,
20 addCasePath,
21 addCaseName
22 );
23 runTimeToAdd.functionObjects().off();
virtual const fileName & name() const
Return the name of the stream.
Definition: IOstream.C:40
messageStream Info
Information stream (stdout output on master, null elsewhere)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:372
constexpr char nl
The newline '\n' character (0x0a)
Definition: Ostream.H:53