43 lines
2.3 KiB
PHP
43 lines
2.3 KiB
PHP
*
|
|
* ********************************************************************
|
|
* * DISCLAIMER *
|
|
* * *
|
|
* * The following disclaimer summarizes all the specific disclaimers *
|
|
* * of contributors to this software. The specific disclaimers,which *
|
|
* * govern, are listed with their locations in: *
|
|
* * http://cern.ch/geant4/license *
|
|
* * *
|
|
* * Neither the authors of this software system, nor their employing *
|
|
* * institutes,nor the agencies providing financial support for this *
|
|
* * work make any representation or warranty, express or implied, *
|
|
* * regarding this software system or assume any liability for its *
|
|
* * use. *
|
|
* * *
|
|
* * This code implementation is the intellectual property of the *
|
|
* * GEANT4 collaboration. *
|
|
* * By copying, distributing or modifying the Program (or any work *
|
|
* * based on the Program) you indicate your acceptance of this *
|
|
* * statement, and all its terms. *
|
|
* ********************************************************************
|
|
*
|
|
*
|
|
* $Id: G3toG4.inc,v 1.3 2001/07/11 09:58:58 gunter Exp $
|
|
* GEANT4 tag $Name: geant4-05-00 $
|
|
*
|
|
integer maxlines
|
|
parameter (maxlines = 750) ! max no. of cmd lines per C++ source file
|
|
|
|
integer irot_index
|
|
integer imat_index
|
|
character context*4
|
|
logical doclist ! Build call list
|
|
logical docode ! Build C++ code
|
|
logical dogeom ! Build the Geant geometry as well
|
|
integer lunlist ! Output logical unit for call list
|
|
integer luncode ! Output logical unit for code
|
|
integer nfile ! Current source code file number
|
|
integer nlines ! Current source code line count
|
|
common /g3tog4_c/ irot_index, imat_index,
|
|
+ doclist, docode, dogeom, lunlist, luncode, context, nfile,
|
|
+ nlines
|