aboutsummaryrefslogtreecommitdiff
path: root/src/CODESTYLE
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-07-27 14:02:53 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-07-27 14:02:53 +0000
commitb6a5c035ba5870ea3d2a1bd8b88e5f644b905f9e (patch)
tree9e81fbd1387ccc674c39ff0367a3de18ba9153f4 /src/CODESTYLE
parentdc62954d5bd7e17a5b032d85b8a225c969183c2e (diff)
switch mask processing from being done at the tail of
AHFinderDirect_find_horizons() (which is scheduled with options:GLOBAL) into a separately scheduled routine, so we can schedle this without options:GLOBAL -- we want to set the mask on each refined subgrid! git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1149 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/CODESTYLE')
-rw-r--r--src/CODESTYLE9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/CODESTYLE b/src/CODESTYLE
index 4e7439b..dbbc9c3 100644
--- a/src/CODESTYLE
+++ b/src/CODESTYLE
@@ -1,6 +1,6 @@
AHFinderDirect Code Style
=========================
-$Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/CODESTYLE,v 1.4 2003-06-23 19:38:34 jthorn Exp $
+$Header: /usr/local/svn/cvs-repositories/numrelcvs/AEIThorns/AHFinderDirect/src/CODESTYLE,v 1.5 2003-07-27 14:02:53 jthorn Exp $
This file documents some general programming conventions used in this
thorn.
@@ -240,3 +240,10 @@ names, contain the substring "__" (two consecutive underscores).
According to the C++ standard, such names are reserved to the [compiler]
implementation, so this code isn't strictly legal. In practice, so
far I haven't had any problems...
+
+Each .cc source file should begin with a "table of comments" block
+comment listing all the functions defined in the file. Functions with
+a "///" comment (or "**" for C) are local to the file; functions with
+a "//" comment (or "*" for C) are visible to the linker.
+//
+//