| 52 |
|
uint32 ac; // accumulation count |
| 53 |
|
}; |
| 54 |
|
|
| 55 |
+ |
// Get format identifier |
| 56 |
+ |
const char * |
| 57 |
+ |
formstr(int f) |
| 58 |
+ |
{ |
| 59 |
+ |
switch (f) { |
| 60 |
+ |
case 'a': return("ascii"); |
| 61 |
+ |
case 'f': return("float"); |
| 62 |
+ |
case 'd': return("double"); |
| 63 |
+ |
case 'c': return(NCSAMP==3 ? COLRFMT : SPECFMT); |
| 64 |
+ |
} |
| 65 |
+ |
return("unknown"); |
| 66 |
+ |
} |
| 67 |
+ |
|
| 68 |
|
// Our default data share function |
| 69 |
|
RdataShare * |
| 70 |
|
defDataShare(const char *name, RCOutputOp op, size_t siz) |
| 77 |
|
NewRcMod(const char *prms, const char *binexpr, int ncbins) |
| 78 |
|
{ |
| 79 |
|
if (!prms) prms = ""; |
| 80 |
< |
if (!binexpr & (ncbins > 1)) { |
| 80 |
> |
if ((ncbins > 1) & !binexpr) { |
| 81 |
|
error(USER, "missing bin expression"); |
| 82 |
|
return NULL; |
| 83 |
|
} |
| 84 |
< |
if (ncbins <= 1) { // shouldn't have bin expression? |
| 85 |
< |
if (binexpr && strcmp(binexpr, "0")) |
| 73 |
< |
error(WARNING, "ignoring non-zero expression for single bin"); |
| 74 |
< |
prms = ""; |
| 75 |
< |
binexpr = NULL; |
| 76 |
< |
ncbins = 1; |
| 77 |
< |
} |
| 84 |
> |
if (ncbins < 1) ncbins = 1; |
| 85 |
> |
|
| 86 |
|
RcontribMod * mp = (RcontribMod *)ecalloc(1, sizeof(RcontribMod) + |
| 87 |
|
sizeof(DCOLORV)*(NCSAMP*ncbins-1) + |
| 88 |
|
strlen(prms)+1); |
| 89 |
|
|
| 90 |
< |
mp->params = strcpy((char *)(mp->cbin + ncbins*NCSAMP), prms); |
| 83 |
< |
if (binexpr) { |
| 90 |
> |
if (binexpr) { // check bin expression |
| 91 |
|
mp->binv = eparse(const_cast<char *>(binexpr)); |
| 92 |
< |
CHECK(mp->binv->type==NUM, WARNING, "constant bin expression"); |
| 92 |
> |
if (mp->binv->type == NUM) { // constant expression (0)? |
| 93 |
> |
if ((int)(evalue(mp->binv) + .5) > 0) { |
| 94 |
> |
sprintf(errmsg, "illegal positive constant for bin (%s)", |
| 95 |
> |
binexpr); |
| 96 |
> |
error(USER, errmsg); |
| 97 |
> |
} |
| 98 |
> |
if (ncbins > 1) { |
| 99 |
> |
sprintf(errmsg, "bad bin count (%d should be 1)", ncbins); |
| 100 |
> |
error(USER, errmsg); |
| 101 |
> |
} |
| 102 |
> |
epfree(mp->binv, true); |
| 103 |
> |
mp->binv = NULL; |
| 104 |
> |
prms = ""; |
| 105 |
> |
ncbins = 1; |
| 106 |
> |
} |
| 107 |
|
} |
| 108 |
+ |
mp->params = strcpy((char *)(mp->cbin + ncbins*NCSAMP), prms); |
| 109 |
|
mp->nbins = ncbins; |
| 110 |
|
return mp; |
| 111 |
|
} |