Millepede-II  V04-00-00
 All Classes Files Functions Variables Enumerator
mpdef.f90
Go to the documentation of this file.
00001 
00003 
00005 MODULE mpdef
00006     IMPLICIT NONE
00007     SAVE
00008     ! constants
00009     INTEGER, PARAMETER :: large=LARGE_SIZE !< size of LARGE integers (*4 or *8) from preprocessor
00010     INTEGER, PARAMETER :: lscale=large/4   !< number of (32bit) words
00011     INTEGER, PARAMETER :: maxi4=2147483647 !< max. INTEGER*4
00012 
00013     TYPE listItem
00014         INTEGER :: label
00015         REAL :: value
00016     END TYPE listItem
00017 END MODULE mpdef