@@ -43,9 +43,6 @@ def get_beads(data_container, level):
4343 return list_of_beads
4444
4545
46- # END
47-
48-
4946def get_axes (data_container , level , index = 0 ):
5047 """
5148 Function to set the translational and rotational axes.
@@ -126,9 +123,6 @@ def get_axes(data_container, level, index=0):
126123 return trans_axes , rot_axes
127124
128125
129- # END
130-
131-
132126def get_avg_pos (atom_set , center ):
133127 """
134128 Function to get the average position of a set of atoms.
@@ -168,9 +162,6 @@ def get_avg_pos(atom_set, center):
168162 return avg_position
169163
170164
171- # END
172-
173-
174165def get_sphCoord_axes (arg_r ):
175166 """
176167 For a given vector in space, treat it is a radial vector rooted at 0,0,0 and
@@ -243,9 +234,6 @@ def get_sphCoord_axes(arg_r):
243234 return spherical_basis
244235
245236
246- # END
247-
248-
249237def get_weighted_forces (
250238 data_container , bead , trans_axes , highest_level , force_partitioning = 0.5
251239):
@@ -291,9 +279,6 @@ def get_weighted_forces(
291279 return weighted_force
292280
293281
294- # END
295-
296-
297282def get_weighted_torques (data_container , bead , rot_axes , force_partitioning = 0.5 ):
298283 """
299284 Function to calculate the moment of inertia weighted torques for a given bead.
@@ -379,9 +364,6 @@ def get_weighted_torques(data_container, bead, rot_axes, force_partitioning=0.5)
379364 return weighted_torque
380365
381366
382- # END
383-
384-
385367def create_submatrix (data_i , data_j , number_frames ):
386368 """
387369 Function for making covariance matrices.
@@ -411,9 +393,6 @@ def create_submatrix(data_i, data_j, number_frames):
411393 return submatrix
412394
413395
414- # END
415-
416-
417396def filter_zero_rows_columns (arg_matrix , verbose ):
418397 """
419398 function for removing rows and columns that contain only zeros from a matrix
@@ -461,6 +440,3 @@ def filter_zero_rows_columns(arg_matrix, verbose):
461440 )
462441
463442 return arg_matrix
464-
465-
466- # END
0 commit comments