/* * DO NOT MANUALLY UPDATE THIS FILE. * If needed: make cpp_headers * * fortran2c.py - automatic conversion * ncddat.inc -> ncddat.h */ #ifndef __NCDDAT__ #define __NCDDAT__ #include "types.h" #ifdef __cplusplus extern "C" { #endif // //=== ncddat ===========================================================* // //----------------------------------------------------------------------* // * // Copyright (C) 2020: CERN * // All Rights Reserved. * // * // Auxiliary data from nuclear.bin * // * // description of the common block(s) and variable(s) * // * // Nchlen = Header string length * // Cnchdr = Header string * // Ncvlen = Version string length * // Cncver = Version string * // Ncalen = Auxiliary string length * // Cncaux = Auxiliary string * // Ncvers = Version number * // Ncsubv = Version sub number * // MXPDUM = ? * // MXADUM = ? * // MXNDUM = ? * // MXZDUM = ? * // * //----------------------------------------------------------------------* extern struct { int nchlen; char cnchdr[80]; int ncvlen; char cncver[80]; int ncalen; char cncaux[80]; int ncvers; int ncsubv; int mxpdum; int mxadum; int mxndum; int mxzdum; } ncddat_; #ifdef __cplusplus } #endif #endif