/usr/include/xylib/dbws.h is in libxy-dev 1.3-1.1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | // DBWS data file
// Licence: Lesser GNU Public License 2.1 (LGPL)
// From DBWS-9807a User's Guide page 37-38:
// The observed data file > Category 1 >
// Case (0): The 'standard' DBWS observed data file (Tape/Unit 4) . IDATA= 0
// Case (1): Free format. IDATA= 1
//
// The first line contains the variables START, STEP, STOP,
// and DATAID in (3F8.2, A48) format.
// The rest of the file consists of the intensity data themselves in:
// - case (0): (8(F7.0,1X)) format
// - case (1): in free format. Any number of columns of any width are allowed.
// The delimiters are commas or spaces.
//
// It's also DMPLOT raw data format. The raw data file names for DMPLOT must
// have the extensions *.rit for x-ray data *.neu for neutron data.
#ifndef XYLIB_DBWS_H_
#define XYLIB_DBWS_H_
#include "xylib.h"
namespace xylib {
class DbwsDataSet : public DataSet
{
OBLIGATORY_DATASET_MEMBERS(DbwsDataSet)
};
}
#endif // XYLIB_DBWS_H_
|