Fix index mismatch
Former-commit-id: b1077e37785539b055c9d182b35273e321c0eda8
This commit is contained in:
parent
4674fa5844
commit
80a9f8703a
|
@ -228,8 +228,8 @@ qpms_scatsys_at_omega_t *qpms_scatsys_apply_symmetry(const qpms_scatsys_t *orig,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (j == ss->tm_count) { // duplicity not found, save both the "abstract" and "at omega" T-matrices
|
if (j == ss->tm_count) { // duplicity not found, save both the "abstract" and "at omega" T-matrices
|
||||||
qpms_tmatrix_operation_copy(&ss->tm[j].op, &orig->tm[j].op);
|
qpms_tmatrix_operation_copy(&ss->tm[j].op, &orig->tm[i].op);
|
||||||
ss->tm[j].tmgi = orig->tm[j].tmgi; // T-matrix functions are preserved.
|
ss->tm[j].tmgi = orig->tm[i].tmgi; // T-matrix functions are preserved.
|
||||||
ssw->tm[j] = ti;
|
ssw->tm[j] = ti;
|
||||||
ss->max_bspecn = MAX(ssw->tm[j]->spec->n, ss->max_bspecn);
|
ss->max_bspecn = MAX(ssw->tm[j]->spec->n, ss->max_bspecn);
|
||||||
lMax = MAX(lMax, ssw->tm[j]->spec->lMax);
|
lMax = MAX(lMax, ssw->tm[j]->spec->lMax);
|
||||||
|
|
Loading…
Reference in New Issue