Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

aghermann(1) [debian man page]

Aghermann(1)							     Aghermann							      Aghermann(1)

NAME
Aghermann -- a sleep research experiment manager and Achermann et al (1993) model simulator SYNOPSIS
aghermann [exp_root_dir] DESCRIPTION
Aghermann is GTK+ program designed to run Process S simulations on Slow-Wave Activity profiles from EEG recordings as outlined in Achermann et al (1993). In this capacity, Aghermann produces a set of sleep homeostat parameters which can be used to describe and differentiate individual sleepers, such as short vs long sleepers, early vs late, etc. Also provided are general-purpose facilities for displaying EEG and accompanying recordings, such as EOG and EMG, saved in EDF (European Data Format) files. These recordings can then be conveniently scored; scores can be imported/exported in plain ASCII. For the particulars of how Aghermann treats the various fields, see edfhed(1). If run without arguments, your last session will be restored; an experiment located in exp_root_dir will be selected otherwise. FILES
~/.config/aghermann/sessionrc, contains a list of paths to recent experiment trees. ./.agherman.conf and ./.expdesign.conf, saved settings of the experiment located in this tree. SEE ALSO
edfhed-gtk(1), edfhed(1). The project's git repository is kept on sf.net and also on github.com; more details on the Achermann model as well as on usage and project background can be found at http://johnhommer.com/academic/code/aghermann. Locally, please refer to /usr/share/doc/aghermann/README[.gz]. AUTHOR
Aghermann is written by Andrei Zavada <johnhommer@gmail.com>. Parts of the code (in src/libexstrom) have been borrowed from http://exstrom.com. 0.6.0.1 2012-06-04 Aghermann(1)

Check Out this Related Man Page

EGD_OPEN(3)						       EEGDEV library manual						       EGD_OPEN(3)

NAME
egd_open - Open an EEG device SYNOPSIS
#include <eegdev.h> struct eegdev* egd_open(const char* devstring); DESCRIPTION
egd_open() opens a EEG device according to the devstring description. If devstring is NULL, the first device supported by the library will be opened. The devstring argument specifies the type of EEG device required to be opened and the parameters parameters which the system should be con- figured with (overriding defaults settings). The syntax of the string is defined in eegdev-open-options(5). The syntax may change in future releases and programs should not rely on it to configure the device. It is provided only to users of the programs to select the EEG acquisition device and configure it. Programs using the eegdev library should pass the string provided by the users untouched. devstring is not the only way to provides configuration information about the device to open. The configuration is read from the configura- tion files. The final values of the settings provided to the opening function are defined (and overriden) in the following order: * default values * shared configuration file * device specific configuration file * devstring This order indicates that a setting value specified in devstring will always override any setting value defined by other mean. RETURN VALUE
The function returns a pointer to the opened EEG device in case of success. Otherwise NULL is returned errno is set accordingly. ERRORS
egd_open() will fail if: ENOSYS the device part of devstring does not refer to a device supported by any of the installed eegdev plugin modules. EINVAL one of the option specified in devstring is unknown. ENODEV The specified device is not connected. EBUSY The specified device is already in use. ECHILD The specified device needs an auxiliary child process whose executable file cannot be found. ENVIRONMENT
EEGDEV_PLUGINS_DIR This variable controls which folder should be search to find plugin modules. If unset, they will be searched in the subfolder eegdev of the installation folder of the libraries. EEGDEV_CONF_DIR This variable controls which folder should be search to find the configuration files. If unset, they will be searched in /etc/eegdev. SEE ALSO
egd_close(3), eegdev-open-options(5) EPFL
2010 EGD_OPEN(3)
Man Page