Skip to content
Snippets Groups Projects
Select Git revision
  • 4132a64778b91c4b090d0213938e00d7b2b64b10
  • master default protected
2 results

dev-tools

user avatar
giannozz authored
Updating PWgui and QE-modes + some necessary helpdoc changes

See merge request QEF/q-e!366
f5f3bdc5
History

Dev Tools

This directory contains several tools that may be useful for developers

  • mem_counter. A script that tracks all calls to allocate and deallocate, appending a call to subroutine UtilXlib/mem_counter.f90. Calls python script mem_counter.py, written by Pietro Bonfà (CINECA). mem_counter -h gives information on how to use it.

  • src-normal. A script that "normalizes" the fortran syntax to QE style (see below). Calls python script src-normal.py, written by Norbert Nemec.

    Usage: src-normal file1.f90 [file2.f90 ...] or src-normal

  • calltree.pl A perl script, to be run from the root QE directory, producing in the standard output the tree of called routines

  • callhtml.pl As above, producing a html page with the tree of called routines

  • Utilities for PWgui:

    • check_gui (called via Makefile)
    • diff_gui_help
    • guihelp.xsl
    • update_gui_help
  • Utilities for helpdoc (see README.helpdoc):

    • helpdoc
    • helpdoc.d
    • helpdoc.schema
    • input_xx.xsl
  • Utilities for emacs_mode:

    • gen-emacs-mode
    • gen-emacs-mode.tcl

Coding style

These are some basic rules to follow when writing Fortran code.

  • Use spaces for indentation instead of tabs (tab width 8 characters).
  • Trailing whitespaces at the end the line should be removed.
  • Normalize multiword keywords (e.g. END DO).
  • Use capitalize version of the intrisic keywords (IF, DO, SUBROUTINE, etc.).
  • Use the newest version of the comparison operators (==, >, etc.) instead of the old one (.eq., .gt., etc.)