/* * DO NOT MANUALLY UPDATE THIS FILE. * If needed: make cpp_headers * * fortran2c.py - automatic conversion * iounit.inc -> iounit.h */ #ifndef __IOUNIT__ #define __IOUNIT__ #include "types.h" #ifdef __cplusplus extern "C" { #endif // * //=== iounit ===========================================================* // * //----------------------------------------------------------------------* // * // Copyright (C) 2003-2019: CERN & INFN * // All Rights Reserved. * // * // Iounit: included in any routine * // * // Created on 01 June 1990 by Alfredo Ferrari, INFN -Milan * // * // lunin = standard input unit * // lunout = standard output unit * // lunerr = standard error unit * // lunber = input file for the nuclear data file * // lunech = echo file for pemf dat (obsolete, no longer used) * // lunflu = input file for photoelectric edges and X-ray fluo- * // rescence data * // lungeo = scratch file for combinatorial geometry * // lunpmf = input file for pemf material data (obsolete, no * // longer used) * // lunran = output file for the final random number seed * // lunxsc = input file for low energy neutron cross sections * // lundet = output file for the detect option * // lunray = output file for ray-tracing options * // lunrdb = unit number for reading (extra) auxiliary external * // files to be closed just after reading * // lunrd2 = unit number for reading (extra) auxiliary external * // files to be closed just after reading * // lundpm = output unit for Dpmjet2.5/3 * // lunscr = unit number to be used for temporary scratch files * // lunpgo = output file for plotgeom * // lunpgs = store (formatted/unformatted) file for plotgeom * // * //----------------------------------------------------------------------* // * // Start_VAX_seq // PARAMETER ( LUNOUT = 6 ) // End_VAX_seq // Start_IBM_seq // PARAMETER ( LUNOUT = 6 ) // End_IBM_seq // Start_UNIX_seq const int LUNIN = 5; // End_UNIX_seq const int LUNOUT = 11; const int LUNERR = 15; const int LUNBER = 14; const int LUNECH = 8; const int LUNFLU = 13; const int LUNGEO = 16; const int LUNPMF = 12; const int LUNRAN = 2; const int LUNXSC = 9; const int LUNDET = 17; const int LUNRAY = 10; const int LUNRDB = 1; const int LUNRD2 = 18; const int LUNDPM = 19; const int LUNPGO = 7; const int LUNPGS = 4; const int LUNSCR = 3; #ifdef __cplusplus } #endif #endif