Skip to content
Snippets Groups Projects
Commit 51346c1f authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Use static functions to write transition matrix

parent 67e9e04a
No related branches found
No related tags found
No related merge requests found
......@@ -917,10 +917,9 @@ int cluster_jxi488_cycle(int jxi488, ScattererConfiguration *sconf, GeometryConf
if (jxi488 == jwtm) {
int nlemt = 2 * c4->nlem;
string ttms_name = output_path + "/c_TTMS.hd5";
TransitionMatrix ttms(nlemt, lm, vk, exri, c1ao->am0m);
ttms.write_binary(ttms_name, "HDF5");
TransitionMatrix::write_binary(ttms_name, nlemt, lm, vk, exri, c1ao->am0m, "HDF5");
ttms_name = output_path + "/c_TTMS";
ttms.write_binary(ttms_name);
TransitionMatrix::write_binary(ttms_name, nlemt, lm, vk, exri, c1ao->am0m);
}
}
// label 156: continue from here
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment