TABLE OF CONTENTS


::pwtk::neb

SYNOPSIS

proc ::pwtk::neb {neb} {

PURPOSE

Explicitly set the full pathname/filename for neb.x executable (i.e. /full/path/to/neb.x).

RETURN VALUE

The value of the neb.

SOURCE

    variable QEprog

    if { ! [file executable $neb] } {
        ::pwtk::error "specified neb.x program \"$neb\" is not executable."
    }
    return [set QEprog(NEB) $neb]
}