Commit 4c2be2fd authored by kyleabeauchamp's avatar kyleabeauchamp
Browse files

Fix extra text in comment.

parent 5061f42d
......@@ -122,7 +122,7 @@ class DCDFile(object):
boxVectors = (Vec3(unitCellDimensions[0], 0, 0), Vec3(0, unitCellDimensions[1], 0), Vec3(0, 0, unitCellDimensions[2]))*nanometers
(a_length, b_length, c_length, alpha, beta, gamma) = computeLengthsAndAngles(boxVectors)
a_length = a_length / 10. # computeLengthsAndAngles returns unitless nanometers, but need angstroms here.
b_length = b_length / 10. # computeLengthsAndAngles returns unitless nanometers, but need angstroms here..value_in_unit(angstroms)
b_length = b_length / 10. # computeLengthsAndAngles returns unitless nanometers, but need angstroms here.
c_length = c_length / 10. # computeLengthsAndAngles returns unitless nanometers, but need angstroms here.
angle1 = math.sin(math.pi/2-gamma)
angle2 = math.sin(math.pi/2-beta)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment