Query whether a summation field has an applied main weight in the given tabulation job.
Available To
PrepareJob
PerformJob
CleanUpJob
CPP
HasAppliedMainWeightT(JobInfoT* JobInfo,int Dimension, int FieldOffset)
Arguments
JobInfo
Input
Information about the current job.
Dimension
Input
The dimension index within the data cube.
FieldOffset
Input
The field index within this dimension to check.
Returns
1
The summation has a main weight.
0
The summation does not have a main weight.
HasAppliedReplicateWeightsT()
Query whether a summation field has applied replicate weights in the given tabulation job.
Available To
PrepareJob
PerformJob
CleanUpJob
CPP
HasAppliedReplicateWeightsT(JobInfoT* JobInfo,int Dimension, int FieldOffset)
Arguments
JobInfo
Input
Information about the current job.
Dimension
Input
The dimension index within the data cube.
FieldOffset
Input
The field index within this dimension to check.
Returns
1
The summation has applied replicate weights.
0
The summation does not have applied replicate weights.
GetAppliedReplicateWeightsT()
Retrieve the names of the replicate weights for the given summation field in the given tabulation job. The order of the names will be the same as the order of retrieved replicate weight values for a given cell.
Available To
PrepareJob
PerformJob
CleanUpJob
CPP
GetAppliedReplicateWeightsT(JobInfoT* JobInfo,int Dimension, int FieldOffset, const char*** Replicates,int* Len)
Arguments
JobInfo
Input
Information about the current job.
Dimension
Input
The dimension index within the data cube.
FieldOffset
Input
The field index within this dimension to get replicate weights from.
Replicates
Output
The names of replicate weights.
Len
Output
The number of replicate weights returned.
Returns
1
Success.
0
Failed.
HasAppliedMainWeightOnDefaultSummationT()
Query whether the default summation field has an applied main weight in the given tabulation job. This function must be used when the given tabulation job does not have an explicitly added summation.
The summation does not have an applied main weight.
GetAppliedMainWeightOnDefaultSummationT()
Retrieve the name of the main weight for the given summation field in the given tabulation job. This function must be used when the given tabulation job does not have an explicitly added summation.
The default summation has applied replicate weights.
0
The summation does not have applied replicate weights.
GetAppliedReplicateWeightsOnDefaultSummationT()
Retrieve the names of the replicate weights for the given summation field in the given tabulation job. The order of the names is the same as the order of retrieved values of replicate weights for a given cell. This function must be used when the given tabulation job doesn't have an explicitly added summation.
Retrieve the values of replicate weights for the current cell in the given tabulation job. The order of the values will be the same as the order of retrieved replicate weight names for the current cell.
The lifetime of the returned value of const double** may last up to the next function call. However, if your client code needs to maintain the returned value in the scope of the tabulation job, the client should make a copy of the returned value.
Retrieve the values of replicate weights for the given cell in the given tabulation job. The order of the values will be the same as the order of retrieved replicate weight names for the given cell.
The lifetime of the returned value of const double** may last up to the next function call. However, if your client code needs to maintain the returned value in the scope of the tabulation job, the client should make a copy of the returned value.