aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-06-05 14:17:07 +0200
committerThomas White <taw@physics.org>2014-06-05 14:19:29 +0200
commitcfb9a9979cab8eacc4636a8360502c3d33c66f2a (patch)
tree6ff0d8db299ca77753bdc6f26ffd0a5641f5fbb4
parent945a899b01ffc54d95e961cd4df5e6616ae7ee18 (diff)
ambigator: Add --corr-matrix
-rw-r--r--doc/man/ambigator.13
-rw-r--r--src/ambigator.c116
2 files changed, 119 insertions, 0 deletions
diff --git a/doc/man/ambigator.1 b/doc/man/ambigator.1
index 4aa5da98..14b87491 100644
--- a/doc/man/ambigator.1
+++ b/doc/man/ambigator.1
@@ -100,6 +100,9 @@ Use \fIn\fR correlations per crystal. The default is to correlate against every
.IP \fB--really-random\fR
Be non-deterministic by seeding the random number generator (used to make the initial indexing assignments and select patterns to correlate against) from /dev/urandom. Otherwise, with single-threaded operation (\fB-j 1\fR) on the same data, the results from this program should be the same if it is re-run. Using more than one thread already introduces some non-deterministic behaviour.
+.PD 0
+.IP \fB--corr-matrix=\fR\fIfilename\fR
+Write the the correlation matrices in HDF5 format to \fIfilename\fR. The file will contain two datasets: \fBcorrelation_matrix\fR and \fBcorrelation_matrix_reindexed\fR. They contain, respectively, the correlation matrix with all crystals in their original orientations and all crystals in the reindexed orientations. If the ambiguity operator is unknown (i.e. neither \fB--operator\fR nor \fB-w\fR were used), then the latter will be zero everywhere.
.SH AUTHOR
This page was written by Thomas White.
diff --git a/src/ambigator.c b/src/ambigator.c
index 1c11578d..26722aad 100644
--- a/src/ambigator.c
+++ b/src/ambigator.c
@@ -78,6 +78,7 @@ static void show_help(const char *s)
" --ncorr=<n> Use <n> correlations per crystal. Default 1000\n"
" -j <n> Use <n> threads for CC calculation.\n"
" --really-random Be non-deterministic.\n"
+" --corr-matrix=<f> Write the correlation matrix to file.\n"
);
}
@@ -789,6 +790,110 @@ static void write_reindexed_stream(const char *infile, const char *outfile,
}
+static void save_corr(const char *filename, struct cc_list *ccs, int n_crystals,
+ int *assignments)
+{
+ hid_t fh, sh, dh;
+ hid_t ph; /* Property list */
+ herr_t r;
+ hsize_t size[2];
+ float *matrix;
+ float *rmatrix;
+ int i;
+
+ matrix = malloc(n_crystals*n_crystals*sizeof(float));
+ rmatrix = malloc(n_crystals*n_crystals*sizeof(float));
+ if ( (matrix == NULL) || (rmatrix == NULL) ) return;
+
+ for ( i=0; i<n_crystals; i++ ) {
+
+ int k;
+
+ /* Set all values to zero */
+ for ( k=0; k<n_crystals; k++ ) {
+ matrix[i+n_crystals*k] = 0.0;
+ rmatrix[i+n_crystals*k] = 0.0;
+ }
+
+ /* CCs in current orientation */
+ k = 0;
+ do {
+ int j = ccs[i].ind[k];
+ if ( j == 0 ) break;
+ j -= 1; /* Because we add one to use 0 as a marker */
+ matrix[i+n_crystals*j] = ccs[i].cc[k];
+ k++;
+ } while ( 1 );
+
+ /* CCs after reindexing */
+ k = 0;
+ do {
+ int j = ccs[i].ind_reidx[k];
+ if ( j == 0 ) break;
+ j -= 1;
+ rmatrix[i+n_crystals*j] = ccs[i].cc_reidx[k];
+ k++;
+ } while ( 1 );
+
+ }
+
+ fh = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+ if ( fh < 0 ) {
+ ERROR("Couldn't create file: %s\n", filename);
+ return;
+ }
+
+ size[0] = n_crystals;
+ size[1] = n_crystals;
+ sh = H5Screate_simple(2, size, NULL);
+
+ /* Set compression */
+ ph = H5Pcreate(H5P_DATASET_CREATE);
+ H5Pset_chunk(ph, 2, size);
+ H5Pset_deflate(ph, 3);
+
+ dh = H5Dcreate2(fh, "correlation_matrix", H5T_NATIVE_FLOAT, sh,
+ H5P_DEFAULT, ph, H5P_DEFAULT);
+ if ( dh < 0 ) {
+ ERROR("Couldn't create dataset\n");
+ H5Fclose(fh);
+ return;
+ }
+ r = H5Dwrite(dh, H5T_NATIVE_FLOAT, H5S_ALL,
+ H5S_ALL, H5P_DEFAULT, matrix);
+ if ( r < 0 ) {
+ ERROR("Couldn't write data\n");
+ H5Dclose(dh);
+ H5Fclose(fh);
+ return;
+ }
+ H5Dclose(dh);
+
+ dh = H5Dcreate2(fh, "correlation_matrix_reindexed", H5T_NATIVE_FLOAT,
+ sh, H5P_DEFAULT, ph, H5P_DEFAULT);
+ if ( dh < 0 ) {
+ ERROR("Couldn't create dataset\n");
+ H5Fclose(fh);
+ return;
+ }
+ r = H5Dwrite(dh, H5T_NATIVE_FLOAT, H5S_ALL,
+ H5S_ALL, H5P_DEFAULT, rmatrix);
+ if ( r < 0 ) {
+ ERROR("Couldn't write data\n");
+ H5Dclose(dh);
+ H5Fclose(fh);
+ return;
+ }
+ H5Dclose(dh);
+
+ H5Fclose(fh);
+ free(matrix);
+ free(rmatrix);
+
+ STATUS("Wrote correlation matrix in HDF5 format to %s\n", filename);
+}
+
+
int main(int argc, char *argv[])
{
int c;
@@ -822,6 +927,7 @@ int main(int argc, char *argv[])
int n_threads = 1;
int config_random = 0;
char *operator = NULL;
+ char *corr_matrix_fn = NULL;
/* Long options */
const struct option longopts[] = {
@@ -838,6 +944,7 @@ int main(int argc, char *argv[])
{"ncorr", 1, NULL, 6},
{"start-assignments", 1, NULL, 7},
{"operator", 1, NULL, 8},
+ {"corr-matrix", 1, NULL, 9},
{"really-random", 0, &config_random, 1},
@@ -924,6 +1031,10 @@ int main(int argc, char *argv[])
operator = strdup(optarg);
break;
+ case 9 :
+ corr_matrix_fn = strdup(optarg);
+ break;
+
case 0 :
break;
@@ -1163,6 +1274,11 @@ int main(int argc, char *argv[])
detwin(ccs, n_crystals, assignments, fgfh, crystals);
}
+ if ( corr_matrix_fn != NULL ) {
+ save_corr(corr_matrix_fn, ccs, n_crystals, assignments);
+ free(corr_matrix_fn);
+ }
+
if ( fgfh != NULL ) {
fclose(fgfh);
}