aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrideout <rideout@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-02-14 00:37:37 +0000
committerrideout <rideout@6a38eb6e-646e-4a02-a296-d141613ad6c4>2003-02-14 00:37:37 +0000
commit7d93d9515961a769c22c32fd425d37439206f912 (patch)
tree85f3f34dd71f00d39ad6d97091b8dd6366413717
parent79d582e24202a9cc6c136fe5ba7572e020b3befc (diff)
Add parameters, one for each boundary condition, which allow one to
turn off registration of that boundary condition. (e.g. if one wants to register their own routine as providing the same boundary condition.) git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@197 6a38eb6e-646e-4a02-a296-d141613ad6c4
-rw-r--r--param.ccl30
1 files changed, 29 insertions, 1 deletions
diff --git a/param.ccl b/param.ccl
index d7b107b..618200f 100644
--- a/param.ccl
+++ b/param.ccl
@@ -7,4 +7,32 @@ restricted:
INT radpower "Power of decay rate in extrapolation used in radiative boundaries"
{
: :: "A negative value switches off this feature"
-} -1 \ No newline at end of file
+} -1
+
+BOOLEAN register_scalar "Register routine to handle the 'Scalar' boundary condition"
+{
+} "yes"
+
+BOOLEAN register_flat "Register routine to handle the 'Flat' boundary condition"
+{
+} "yes"
+
+BOOLEAN register_radiation "Register routine to handle the 'Radiation' boundary condition"
+{
+} "yes"
+
+BOOLEAN register_copy "Register routine to handle the 'Copy' boundary condition"
+{
+} "yes"
+
+BOOLEAN register_robin "Register routine to handle the 'Robin' boundary condition"
+{
+} "yes"
+
+BOOLEAN register_static "Register routine to handle the 'Static' boundary condition"
+{
+} "yes"
+
+BOOLEAN register_none "Register routine to handle the 'None' boundary condition"
+{
+} "yes"