/* * DO NOT MANUALLY UPDATE THIS FILE. * If needed: make cpp_headers * * fortran2c.py - automatic conversion * bgmutv.inc -> bgmutv.h */ #ifndef __BGMUTV__ #define __BGMUTV__ #include "types.h" #ifdef __cplusplus extern "C" { #endif // //=== bgmutv ===========================================================* // //----------------------------------------------------------------------* // * // Copyright (C) 2003-2019: CERN & INFN * // All Rights Reserved. * // * // Common block for event by event HE atmospheric muon event * // * // Created on 18 Sept 2006 by G. Battistoni * // Infn - Milan * // * // Included in the nuatmmvax library * // * //----------------------------------------------------------------------* // const int MXTVMU = 600; extern struct { double etevmu[MXTVMU]; double wtevmu[MXTVMU]; double xtevmu[MXTVMU]; double ytevmu[MXTVMU]; double ztevmu[MXTVMU]; double cxtvmu[MXTVMU]; double cytvmu[MXTVMU]; double cztvmu[MXTVMU]; int idtvmu[MXTVMU]; double tevnmu; int itevmu; } bgmutv_; #ifdef __cplusplus } #endif #endif