#ifndef CONST_H
#define CONST_H

enum t_irc {failure = -1, success, fatal}; // return code

class t_CST {
 public:
  static const double aell;
  static const double fInv;
};


#endif