First page Back Continue Last page Overview Graphics
Online Data Analysis
3 wrapping scenarios
- library of routines e.g. GNU Scientific Library
- easy, wrap each routines
- modular program which can be refactored e.g. ImageD11
- refactor the program to provide entry points which are callable from outside, wrap these routines
- non-modular program which cannot be refactored e.g. Fit2D
- do not refactor, call the program from a script
- moral : not every analysis program can be wrapped