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();
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
virtual const fileName & name() const
Return the name of the stream.
Definition: IOstream.H:297
static const char nl
Definition: Ostream.H:262
messageStream Info