Sophie

Sophie

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

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

// one of Canberra MCA output formats
// Licence: Lesser GNU Public License 2.1 (LGPL) 
// $Id: canberra_mca.h 387 2008-02-04 12:22:45Z 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 CANBERRA_MCA_DATASET_H_
#define CANBERRA_MCA_DATASET_H_
#include "xylib.h"

namespace xylib {

    class CanberraMcaDataSet : public DataSet
    {
        OBLIGATORY_DATASET_MEMBERS(CanberraMcaDataSet)
    public:
        static double pdp11_f (char* p);
    };

}
#endif // CANBERRA_MCA_DATASET_H_