Skip to content

Commit 433cd4a

Browse files
committed
Cleaned/added comments of LEVEL.
1 parent 4f9256a commit 433cd4a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

faclib/structure.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ typedef struct _SHAMILTON_ {
4949
} SHAMILTON;
5050

5151
typedef struct _LEVEL_ {
52-
int uta; /* flag indicating it is an UTA level or not */
53-
int ilev; /* level # in corresponding pj Hamiltonian (g - 1 in UTA) */
54-
int pj; /* parity & j encoded (only P in UTA) */
55-
int iham; /* symmetry Hamiltonian # (config. group # in UTA)*/
52+
int uta; /* flag indicating it is an UTA level or not */
53+
int ilev; /* level # in corresponding pj Hamiltonian (non-UTA) */
54+
int pj; /* parity & j encoded (only parity in UTA) */
55+
int iham; /* symmetry Hamiltonian # (non-UTA) */
5656
int n_basis;
57-
int pb; /* principle (??) basis (group's config # in UTA) */
57+
int pb; /* principle (??) basis (non-UTA) */
5858
int kpb[NPRINCIPLE];
59-
int ibase;
59+
int ibase; /* index of the base level, if it can be determined */
6060
int *basis;
6161
short *ibasis;
6262
double *mixing;
63-
double energy; /* energy */
63+
double energy; /* energy */
6464

65-
int uta_g; /* used to be ilev + 1 */
66-
int uta_p; /* used to be pj */
67-
int uta_cfg_g; /* used to be iham */
68-
int uta_g_cfg; /* used to be pb */
65+
int uta_g; /* used to be ilev + 1 in UTA */
66+
int uta_p; /* used to be pj in UTA */
67+
int uta_cfg_g; /* used to be iham in UTA */
68+
int uta_g_cfg; /* used to be pb in UTA */
6969
} LEVEL;
7070

7171
typedef struct _LEVEL_ION_ {

0 commit comments

Comments
 (0)