Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > by-pkgid > 87f956008f5479527bcce97ec30dbca7 > files > 164

fityk-debug-0.8.6-3mdv2009.1.i586.rpm

// ISO14976 VAMAS Surface Chemical Analysis Standard Data Transfer Format File
// Licence: Lesser GNU Public License 2.1 (LGPL) 
// $Id: vamas.h 395 2008-02-18 17:00:08Z wojdyr $

// This implementation is based on [1] and on the analysis of sample files.
//
//[1] W.A. Dench, L. B. Hazell and M. P. Seah, VAMAS Surface Chemical Analysis 
//    Standard Data Transfer Format with Skeleton Decoding Programs, 
//    Surface and Interface Analysis, 13 (1988) 63-122 
//    or National Physics Laboratory Report DMA(A)164 July 1988
// 

#ifndef VAMAS_DATASET_H_
#define VAMAS_DATASET_H_
#include "xylib.h"

namespace xylib {

    class VamasDataSet : public DataSet
    {
        OBLIGATORY_DATASET_MEMBERS(VamasDataSet)

    protected:
        // a complete block contains 40 parts. 
        // include[i] indicates if the i-th part (0-based) is included 
        std::vector<bool> include;

        int blk_fue;            // number of future upgrade experiment entries
        int exp_fue;            // number of future upgrade block entries
        std::string exp_mode;   // experimental mode
        std::string scan_mode;  // scan mode
        int exp_var_cnt;        // count of experimental variables
        
        Block *read_block(std::istream &f);
    }; 

} // namespace xylib
#endif // VAMAS_DATASET_H_