CoMD
A Mini-app for Co-Design of Classical Molecular Dynamics.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
yamlOutput.h
Go to the documentation of this file.
1 /// \file
2 /// Write simulation information in YAML format.
3 
4 #ifndef __YAML_OUTPUT_H
5 #define __YAML_OUTPUT_H
6 
7 #include <stdio.h>
8 
9 /// Provide access to the YAML file in other compliation units.
10 extern FILE* yamlFile;
11 
12 void yamlBegin(void);
13 void yamlEnd(void);
14 
15 void yamlAppInfo(FILE* file);
16 
17 void printSeparator(FILE* file);
18 
19 #endif