/* ************************************************************************ * * imp.h - * * Copyright (c) 1995 * * ETH Zuerich * Institut fuer Molekularbiologie und Biophysik * ETH-Hoenggerberg * CH-8093 Zuerich * * All Rights Reserved * * Date of last modification : 95/09/15 * Pathname of SCCS file : /export/home3/cb/garant-1.0/src/SCCS/s.imp.h * SCCS identification : 1.2 * ************************************************************************ */ /**************************************************************************/ /* imp.h */ /* */ /* determine significance of deviation of two mean values */ /**************************************************************************/ #ifndef _IMP_H_ #define _IMP_H_ class Imp { float x1,x2,q1,q2; float n1,n2; public: float sig; Imp(); void update(float v); void calcsignif(); }; #endif