Commit 8caa7e83c402cea4909b71ee781c7dde8328f41f

Authored by Benjamin Renard
1 parent a4ef4a7e
Exists in master and in 1 other branch ubuntu

Add NoCompression option for VI (#7490)

src/DDClientLibC/INCLUDE/DD_comm.h
... ... @@ -124,6 +124,7 @@
124 124 /*------ Constant to understand data availabilities -------------------------------*/
125 125 #define GLOBSTARTNAME "GlobalStart"
126 126 #define GLOBSTOPNAME "GlobalStop"
  127 +#define NOCOMPRESSIONNAME "NoCompression"
127 128 #define SAMPLNAME "MinSampling"
128 129 #define REMARCHNAME "DataBaseID"
129 130 #define REMINSTNAME "DataSetID"
... ... @@ -245,6 +246,7 @@ typedef struct { char InstrName[MAXSETLENGTH]; /* Virtual Instrument Name */
245 246 double MinGap; /* The minimal gap between two files */
246 247 double GlobalStart; /* The principal begin of data */
247 248 double GlobalStop; /* The principal end of data */
  249 + int NoCompression; /* 1 if the VI don't use data file compression */
248 250 char BaseName[MAXSETLENGTH]; /* The name of external data archive */
249 251 char RemSetID[MAXSETLENGTH]; /* The name of VI in exterval archiving */
250 252 int ExtCallAllowed; /* 1 If Server can call external archiving */
... ...
src/DDClientLibCpp/INCLUDE/DD_comm.hh
... ... @@ -126,6 +126,7 @@
126 126 /*------ Constant to understand data availabilities -------------------------------*/
127 127 #define GLOBSTARTNAME "GlobalStart"
128 128 #define GLOBSTOPNAME "GlobalStop"
  129 +#define NOCOMPRESSIONNAME "NoCompression"
129 130 #define SAMPLNAME "MinSampling"
130 131 #define REMARCHNAME "DataBaseID"
131 132 #define REMINSTNAME "DataSetID"
... ... @@ -291,6 +292,7 @@ typedef struct { char InstrName[MAXSETLENGTH]; /* Virtual Instrument Name */
291 292 double MinGap; /* The minimal gap between two files */
292 293 double GlobalStart; /* The principal begin of data */
293 294 double GlobalStop; /* The principal end of data */
  295 + int NoCompression; /* 1 if the VI don't use data file compression */
294 296 char BaseName[MAXSETLENGTH]; /* The name of external data archive */
295 297 char RemSetID[MAXSETLENGTH]; /* The name of VI in exterval archiving */
296 298 int ExtCallAllowed; /* 1 If Server can call external archiving */
... ...