Millepede-II  V04-00-00_preview
 All Classes Files Functions Variables Enumerator Pages
mpdef.f90
Go to the documentation of this file.
1 
3 
5 MODULE mpdef
6  IMPLICIT NONE
7  SAVE
8  ! constants
9  INTEGER, PARAMETER :: large=LARGE_SIZE !< size of LARGE integers (*4 or *8) from preprocessor
10  INTEGER, PARAMETER :: lscale=large/4 !< number of (32bit) words
11  INTEGER, PARAMETER :: maxi4=2147483647 !< max. INTEGER*4
12 
13  TYPE listitem
14  INTEGER :: label
15  REAL :: value
16  END TYPE listitem
17 END MODULE mpdef