aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/BrillLindquist.c2
-rw-r--r--src/Kerr.c2
-rw-r--r--src/Misner_multiple.c2
-rw-r--r--src/Misner_standard.c2
-rw-r--r--src/Schwarzschild.c2
5 files changed, 10 insertions, 0 deletions
diff --git a/src/BrillLindquist.c b/src/BrillLindquist.c
index ef3801e..7c069f5 100644
--- a/src/BrillLindquist.c
+++ b/src/BrillLindquist.c
@@ -54,6 +54,8 @@ void BrillLindquist(CCTK_ARGUMENTS)
/* Check if we should create and store conformal factor stuff */
if(CCTK_EQUALS(metric_type, "static conformal"))
{
+ *conformal_state = 1;
+
if(CCTK_EQUALS(conformal_storage,"factor+derivs"))
{
*conformal_state = 2;
diff --git a/src/Kerr.c b/src/Kerr.c
index 6d0734b..4854224 100644
--- a/src/Kerr.c
+++ b/src/Kerr.c
@@ -79,6 +79,8 @@ void KerrID(CCTK_ARGUMENTS)
/* Check if we should create and store conformal factor stuff */
if(CCTK_EQUALS(metric_type, "static conformal"))
{
+ *conformal_state = 1;
+
if(CCTK_EQUALS(conformal_storage,"factor+derivs"))
{
*conformal_state = 2;
diff --git a/src/Misner_multiple.c b/src/Misner_multiple.c
index 7a4cd38..52a21fb 100644
--- a/src/Misner_multiple.c
+++ b/src/Misner_multiple.c
@@ -55,6 +55,8 @@ void Misner_multiple(CCTK_ARGUMENTS)
/* Check if we should create and store conformal factor stuff */
if(CCTK_EQUALS(metric_type, "static conformal"))
{
+ *conformal_state = 1;
+
if(CCTK_EQUALS(conformal_storage,"factor+derivs"))
{
*conformal_state = 2;
diff --git a/src/Misner_standard.c b/src/Misner_standard.c
index cfa435b..ece12db 100644
--- a/src/Misner_standard.c
+++ b/src/Misner_standard.c
@@ -83,6 +83,8 @@ void Misner_standard(CCTK_ARGUMENTS)
/* Check if we should create and store conformal factor stuff */
if(CCTK_EQUALS(metric_type, "static conformal"))
{
+ *conformal_state = 1;
+
if(CCTK_EQUALS(conformal_storage,"factor+derivs"))
{
*conformal_state = 2;
diff --git a/src/Schwarzschild.c b/src/Schwarzschild.c
index 6fb744e..fa442e8 100644
--- a/src/Schwarzschild.c
+++ b/src/Schwarzschild.c
@@ -37,6 +37,8 @@ void Schwarzschild(CCTK_ARGUMENTS)
{
int make_conformal_derivs;
+ *conformal_state = 1;
+
if(CCTK_EQUALS(conformal_storage,"factor+derivs"))
{
*conformal_state = 2;