Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > f1ecd063c6d262afb9915d704694d301 > files > 8

libfityk-devel-0.8.6-3mdv2009.1.i586.rpm

// Powder Diffraction CIF (pdCIF)
// Licence: Lesser GNU Public License 2.1 (LGPL) 
// $Id: pdcif.h 390 2008-02-14 16:27:01Z wojdyr $

// Powder Diffraction CIF (Crystallographic Information File)
// specification: http://www.iucr.org/iucr-top/cif/index.html
//
// This file doesn't implement full CIF grammar. The parser may fail to read 
// some valid files and read invalid ones.
//
// There may be more than one data-blocks in one block (defined by the format 
// specification), and the point counts of these data-blocks are different. 
// To handle this, xylib uses a new xylib::Block with duplicated meta-info to 
// represent them. 
//
// implementation is based on the file format specification and the tcl/tk
// program ciftools

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

namespace xylib {

    class PdCifDataSet : public DataSet
    {
        OBLIGATORY_DATASET_MEMBERS(PdCifDataSet)
    }; 

} // namespace

#endif // #ifndef PDCIF_DATASET_H