Changeset 79290f for pcp/src/data.h


Ignore:
Timestamp:
Jun 7, 2008, 1:13:29 PM (17 years ago)
Author:
Frederik Heber <heber@…>
Children:
02bc3c
Parents:
a97897
Message:

config.h is included in each and every file. After trying to compile on JUMP (with xlc).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pcp/src/data.h

    ra97897 r79290f  
    1717  $Id: data.h,v 1.102 2007-02-09 09:13:48 foo Exp $
    1818*/
    19 #include "mpi.h"
    20 
    21 // use double precision fft when we have it
     19
    2220#ifdef HAVE_CONFIG_H
    2321#include <config.h>
    2422#endif
    2523
     24#include "mpi.h"
     25
     26// use double precision fft when we have it
    2627#ifdef HAVE_DFFTW_H
    2728#include "dfftw.h"
     
    149150                            };
    150151
     152// Specifying the cast type to be read of a parameter, see ParseForParameter()
     153enum value_type { string_type, double_type, int_type, row_int, row_double, grid, lower_trigrid, upper_trigrid};
     154
     155// Specifting whether a value in the parameter file must be specified or is optional
     156enum necessity { optional,    //!< parameter is optional, if not given sensible value is chosen
     157                 critical     //!< parameter must be given or programme won't initiate
     158               };
     159
    151160
    152161#define perturbations 6
Note: See TracChangeset for help on using the changeset viewer.