aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/source/ops_feature.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-12-10 21:57:13 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-12-10 21:57:13 +0000
commitfdca1f5103adda0421002ef21370b434ed4c8202 (patch)
tree6601c0de9686e53b37d47b0c276485f71313f8fc /externals/grill/vasp/source/ops_feature.cpp
parentd399ea9333e69c2506ba09754a8c1b8d292e9085 (diff)
resurrected help message functionality
preparing RIP release adapt to new flext version svn path=/trunk/; revision=4185
Diffstat (limited to 'externals/grill/vasp/source/ops_feature.cpp')
-rw-r--r--externals/grill/vasp/source/ops_feature.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/externals/grill/vasp/source/ops_feature.cpp b/externals/grill/vasp/source/ops_feature.cpp
index 78eefaa8..299625c6 100644
--- a/externals/grill/vasp/source/ops_feature.cpp
+++ b/externals/grill/vasp/source/ops_feature.cpp
@@ -168,6 +168,8 @@ public:
ToOutFloat(1,p.peaks.density);
return ret;
}
+
+ virtual V m_help() { post("%s - Get non-zero values only for peaks",thisName()); }
};
FLEXT_LIB_V("vasp, vasp.peaks",vasp_peaks)
@@ -183,6 +185,8 @@ public:
CVasp cdst(dst),cref(ref);
return VaspOp::m_valleys(p,cref,&cdst);
}
+
+ virtual V m_help() { post("%s - Get non-zero values only for values",thisName()); }
};
FLEXT_LIB_V("vasp, vasp.valleys",vasp_valleys)
@@ -198,6 +202,8 @@ public:
CVasp cdst(dst),cref(ref);
return VaspOp::m_rpeaks(p,cref,&cdst);
}
+
+ virtual V m_help() { post("%s - Get non-zero values only for peaks of the complex radius",thisName()); }
};
FLEXT_LIB_V("vasp, vasp.rpeaks",vasp_rpeaks)
@@ -213,6 +219,8 @@ public:
CVasp cdst(dst),cref(ref);
return VaspOp::m_rvalleys(p,cref,&cdst);
}
+
+ virtual V m_help() { post("%s - Get non-zero values only for valleys of the complex radius",thisName()); }
};
FLEXT_LIB_V("vasp, vasp.rvalleys",vasp_rvalleys)