10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-22 18:57:31 +02:00
quantum_package/scripts/pseudo/elts_num_ele.py
Anthony Scemama 7ebc2ac896
Fixed last merge (#217)
* Fixes #211

* Removed debug print

* Revert input coordinates

* Fix MPI
2017-12-19 13:48:21 +01:00

16 lines
285 B
Python

#!/usr/bin/env python
import os
QP_ROOT=os.environ["QP_ROOT"]
name_to_elec = {}
with open(QP_ROOT+"/data/list_element.txt","r") as f:
data = f.readlines()
for line in data:
b = line.split()
name_to_elec[b[1]] = int(b[0])
if __name__ == '__main__':
print name_to_elec