Difference between revisions of "Rupture Variation Generator v5.4.2 code changes"
From SCECpedia
Jump to navigationJump to searchLine 1: | Line 1: | ||
− | This page documents the code changes required to turn the stand-alone version, genslip-v5.4.2, into an API callable by the CyberShake post-processing | + | This page documents the code changes required to turn the stand-alone version, genslip-v5.4.2, into an API callable by the CyberShake post-processing. |
− | In this document, $ROOT_DIR is taken to be the RupGen-api-5.4.2 directory. | + | In this document, $ROOT_DIR is taken to be the <CyberShake home>/software/RuptureCodes/RupGen-api-5.4.2 directory. GenRandV5.0 is the code as received from Rob Graves. |
− | + | == Installing files == | |
+ | |||
+ | <ol> | ||
+ | <li>Create src, include, lib, and bin directories inside $ROOT_DIR .</li> | ||
+ | <li>Inside src, create GenRandV5.0.</li> | ||
+ | <li>Copy rupgen_api.c from a previous API version into src. </li> | ||
+ | <li>Copy rupgen_api.h from a previous API version into include. </li> | ||
+ | <li>Confusingly, there are two files named structure.h. One is in StandRupFormat and contains the structures needed for an SRF. The other is in GenRandV5.0 and contains the definition for complex, along with a few other supporting structures. | ||
+ | <ol> | ||
+ | <li>Copy the StandRupFormat/structure.h into include/srf_structure.h .</li> | ||
+ | <li>Copy the GenRandV5.0/structure.h into include/structure.h .</li> | ||
+ | <li>Create a symlink to both | ||
+ | |||
+ | == | ||
+ | |||
+ | == Editing files == | ||
+ | |||
+ | === structure.h === | ||
− | |||
<ol> | <ol> | ||
− | |||
<li>At the top of the file, add: | <li>At the top of the file, add: | ||
<pre> | <pre> | ||
Line 17: | Line 32: | ||
#endif | #endif | ||
</pre></li> | </pre></li> | ||
− | |||
<li>Create a symlink from $ROOT_DIR/GenRandV5.0/structure.h which points to the file in $ROOT_DIR/src.</li> | <li>Create a symlink from $ROOT_DIR/GenRandV5.0/structure.h which points to the file in $ROOT_DIR/src.</li> | ||
</ol> | </ol> |
Revision as of 15:21, 2 October 2019
This page documents the code changes required to turn the stand-alone version, genslip-v5.4.2, into an API callable by the CyberShake post-processing.
In this document, $ROOT_DIR is taken to be the <CyberShake home>/software/RuptureCodes/RupGen-api-5.4.2 directory. GenRandV5.0 is the code as received from Rob Graves.
Installing files
- Create src, include, lib, and bin directories inside $ROOT_DIR .
- Inside src, create GenRandV5.0.
- Copy rupgen_api.c from a previous API version into src.
- Copy rupgen_api.h from a previous API version into include.
- Confusingly, there are two files named structure.h. One is in StandRupFormat and contains the structures needed for an SRF. The other is in GenRandV5.0 and contains the definition for complex, along with a few other supporting structures.
- Copy the StandRupFormat/structure.h into include/srf_structure.h .
- Copy the GenRandV5.0/structure.h into include/structure.h .
- Create a symlink to both
==
Editing files
structure.h
- At the top of the file, add:
#ifndef STRUCT_H #define STRUCT_H
- At the end of the file, add:
#endif
- Create a symlink from $ROOT_DIR/GenRandV5.0/structure.h which points to the file in $ROOT_DIR/src.
- At the top of the file, add: