/usr/include/xylib/canberra_mca.h is in libxy-dev 0.8-1.
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 | // one of Canberra MCA output formats
// Licence: Lesser GNU Public License 2.1 (LGPL)
// $Id: canberra_mca.h 485 2009-05-11 01:02:17Z wojdyr $
// based on a chapter from an unknown instruction, pages B1-B5:
// APPENDIX B: FILE STRUCTURES
// "Spectral data acquired on the MCA system are directly
// accumulated in memory. These data are transferred to a disk
// file via the \Move command in the MCA program."
//
// This format is (was?) used in two synchrotron stations in Hamburg.
// Data is produced by Canberra multi-channel analyser (MCA).
// NOTE: .mca is not a canonical extension.
#ifndef XYLIB_CANBERRA_MCA_H_
#define XYLIB_CANBERRA_MCA_H_
#include "xylib.h"
namespace xylib {
class CanberraMcaDataSet : public DataSet
{
OBLIGATORY_DATASET_MEMBERS(CanberraMcaDataSet)
public:
static double pdp11_f (char* p);
};
}
#endif // CANBERRA_MCA_H_
|