1 |
C $Header$ |
C $Header$ |
2 |
C $Name$ |
C $Name$ |
3 |
|
|
4 |
C CPP options file for RW package |
C CPP options file for Read-Write (RW) package |
|
C |
|
5 |
C Use this file for selecting options within the RW package |
C Use this file for selecting options within the RW package |
6 |
|
|
7 |
#ifndef RW_OPTIONS_H |
#ifndef RW_OPTIONS_H |
8 |
#define RW_OPTIONS_H |
#define RW_OPTIONS_H |
9 |
#include "PACKAGES_CONFIG.h" |
#include "PACKAGES_CONFIG.h" |
|
#ifdef ALLOW_RW |
|
|
|
|
10 |
#include "CPP_OPTIONS.h" |
#include "CPP_OPTIONS.h" |
11 |
|
|
12 |
|
#ifdef ALLOW_RW |
13 |
|
C Package-specific Options & Macros go here |
14 |
|
|
15 |
C use READ_MFLDS S/R in "safe" mode (set/check/unset for each file to read) |
C use READ_MFLDS S/R in "safe" mode (set/check/unset for each file to read) |
16 |
C involves more thread synchronization (could slow down multi-threaded run) |
C involves more thread synchronization (could slow down multi-threaded run) |
17 |
#define RW_SAFE_MFLDS |
#define RW_SAFE_MFLDS |
18 |
|
|
19 |
C disable writing of small-overlap size array (to reduce memory size |
C disable writing of small-overlap size array (to reduce memory size |
20 |
C since those S/R do a local copy to 3-D full-size overlap array) |
C since those S/R do a local copy to 3-D full-size overlap array) |
21 |
#undef RW_DISABLE_SMALL_OVERLAP |
#undef RW_DISABLE_SMALL_OVERLAP |
22 |
|
|