[go: up one dir, main page]

Menu

Tree [r809] / libmona /
 History

HTTPS access


File Date Author Commit
 doc 2008-06-12 gerddie [r808] something to ignore
 libmona 2008-06-12 gerddie [r802] add all the old mona programs
 libopt 2008-06-12 gerddie [r799] update ignores
 m4 2008-06-12 gerddie [r798] add ignores
 plugins 2008-06-12 gerddie [r804] correct the test
 scripts 2008-06-12 gerddie [r803] add some scripts
 src 2008-06-12 gerddie [r802] add all the old mona programs
 test 2008-06-12 gerddie [r802] add all the old mona programs
 .cvsignore 2008-06-12 gerddie [r792] Initial import
 AUTHORS 2008-06-12 gerddie [r809] something to ignore
 COPYING 2008-06-12 gerddie [r792] Initial import
 ChangeLog 2008-06-12 gerddie [r792] Initial import
 INSTALL 2008-06-12 gerddie [r792] Initial import
 Makefile.am 2008-06-12 gerddie [r803] add some scripts
 NEWS 2008-06-12 gerddie [r792] Initial import
 README 2008-06-12 gerddie [r809] something to ignore
 TODO 2008-06-12 gerddie [r792] Initial import
 autogen.sh 2008-06-12 gerddie [r798] add ignores
 configure.ac 2008-06-12 gerddie [r809] something to ignore
 install-sh 2008-06-12 gerddie [r792] Initial import
 libmona-config.in 2008-06-12 gerddie [r792] Initial import
 libmona.pc.in 2008-06-12 gerddie [r792] Initial import
 libmona.spec.in 2008-06-12 gerddie [r792] Initial import
 missing 2008-06-12 gerddie [r792] Initial import
 mkinstalldirs 2008-06-12 gerddie [r792] Initial import
 mona.hh 2008-06-12 gerddie [r802] add all the old mona programs

Read Me

	MONA - MOrpometry for Neurobiological Applications

This is the core library and Applications for 2D/3D image processing 
of the MPI for Human Cognitive and Brain Sciences and the 
MPI for Evolutionary Anthropology (Human Evolution)  

It includes classes to handle 
3D images, vector fields and surface meshes. 

The coding style of this library relates to the coding style of the 
linux kernel. If you edit using (x)emacs, you should put the following 
in your .emacs or .xemacs/init.el file: 

(defun mona-c++-mode ()
  "mode with adjusted defaults for use with libmona."
  (interactive)
  (c++-mode)
  (c-set-style "K&R")
  (setq tab-width 8)
  (setq indent-tabs-mode t)
  (setq c-basic-offset 8)
)

and add the string "-*- mona-c++ -*-" to the first (or second) line of 
the files you edit. Then, if you turn on "auto-indent"  (x)emacs will 
take care of the proper indention. 
If your code does not following the style 
	"astyle --style=linux <file>" 
can cure this.