EsoRex Configuration

20 08 2009

After installing the VIMOS Pipeline Recipes, do

$ esorex –help vmbias

to check if it finds the recipes at all. For me it didn’t and I got an error saying

[georgiana@localhost ~]$ esorex –help vmbias

esorex — ESO Recipe Execution Tool, version 1.0.1

ERROR : Unable to find recipe “vmbias”

Bummer. I had to configure-build-install the Recipes again, this time using the info in the VIMOS Manual (why the heck can’t they write this in the README file?!). Go to the vimos-1.3.1p directory and do

$ ./configure –prefix=/usr/local/pipeline –with-cpl=/usr/local/cpl –with-qfits=/usr/local/qfits –with-cext=/usr/local/cpl

and then

$ make
$ su
$ make install

Exit su mode. Now create an EsoRex configuration file with

$ esorex –create-config –recipe-dir=/usr/local/pipeline/lib/vimos/plugins/vimos-1.3.1

Ignore the warnings.

I also added this path to my .bashrc:

export PIPE_HOME=$PATH:/usr/local/pipeline/lib/vimos/plugins/vimos-1.3.1

Then I did

$ cd
$ source .bashrc
$ esorex –help vmbias

and finally got the happy

[georgiana@localhost ~]$ esorex –help vmbias

esorex — ESO Recipe Execution Tool, version 1.0.1

Recipe: vmbias — Create a master bias from set of raw bias frames.

Usage: esorex [esorex-options] vmbias [vmbias-options] sof

Options:

–AllowSingleFrames : Frame combination method is ignored. [TRUE]
–StackMethod : Frame combination method (Average | Median | MinMax | Ksigma | Auto) [Median]
–KSigmaLow : Low threshold for K-sigma clipping method [5.0]
–KSigmaHigh : High threshold for K-sigma clipping method [5.0]
–MinRejection : Number of lowest rejected values for rejection method [1]
–MaxRejection : Number of highest rejected values for rejection method [1]
–RemoveOverscan : Remove overscan regions from master bias [TRUE]
–CleanBadPixel : Bad pixel correction on master bias [FALSE]
–CleanCosmic : Cosmic ray removal from each raw bias [FALSE]
–ComputeQC : Compute QC1 parameters [TRUE]

For help on the options of esorex itself, please use the command ‘esorex –help’ (that is, without specifying any recipe name). For more information
about the recipe, one can also use the command ‘esorex –man-page vmbias’.

Yay!