ProvenanceMetaData » History » Version 1
Ted Sume, 11/13/2019 03:44 PM
1 | 1 | Ted Sume | # ProvenanceMetaData |
---|---|---|---|
2 | |||
3 | # Provenance metadata |
||
4 | |||
5 | There should be only one group of this kind in a file. |
||
6 | |||
7 | ``` |
||
8 | Group "myruninfo" { |
||
9 | Att vsType = "runInfo" // Required string |
||
10 | Att vsSoftware = "VORPAL" // Required string |
||
11 | Att vsSwVersion = "3.1.0" // Required string |
||
12 | Att vsVsVersion = "2.1.0" // Required string |
||
13 | Att vsSwRevision = "r10168" // Optional string |
||
14 | Att vsCxxCompiler = "g++" // Optional string |
||
15 | Att vsCxxCompilerVersion = "4.3.0" // Optional string |
||
16 | Att vsCxxCompilerFlags = "-O2 -g" // Optional string |
||
17 | Att vsBuildHost = "boron.txcorp.com" // Optional string |
||
18 | Att vsBuildHostType = "x86_64-unknown-linux-gnu" // Optional string |
||
19 | Att vsRunHost = "boron.txcorp.com" // Optional string |
||
20 | Att vsUser = "cary" // Optional string |
||
21 | Att vsRunDate = "Mon Nov 10 09:06:14 MST 2008" // Optional string |
||
22 | Att vsCommandLine = "vorpal -i run.in" // Optional string |
||
23 | } |
||
24 | ``` |
||
25 | * vsSoftware gives the name of the application that generated the data |
||
26 | * vsSwVersion gives the version of that application |
||
27 | * vsVsVersion gives the version of VizSchema that the file complies with |
||
28 | * vsSwRevsion gives the revision number (e.g., from subversion) |
||
29 | * vsCxxCompiler gives the C++ compiler used to build the application |
||
30 | * vsCxxCompilerVersion gives the version of the C++ compiler |
||
31 | * vsCxxCompilerFlags gives flags used for C++ compilation |
||
32 | * vsBuildHost gives the host the executable was built on |
||
33 | * vsBuildHostType gives the type of host the executable was built on |
||
34 | * vsRunHost gives the host the executable was run on |
||
35 | * vsUser gives the name of the user login which executed the run |
||
36 | * vsRunDate gives the time at which the run was executed |
||
37 | * vsCommandLine gives the command line used to execute the job |