mailr17151 - /branches/interatomic/data/__init__.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on July 03, 2012 - 11:03:
Author: bugman
Date: Tue Jul  3 11:03:15 2012
New Revision: 17151

URL: http://svn.gna.org/viewcvs/relax?rev=17151&view=rev
Log:
Refinement and fixes for the Relax_data_store._back_compat_hook() method.


Modified:
    branches/interatomic/data/__init__.py

Modified: branches/interatomic/data/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/interatomic/data/__init__.py?rev=17151&r1=17150&r2=17151&view=diff
==============================================================================
--- branches/interatomic/data/__init__.py (original)
+++ branches/interatomic/data/__init__.py Tue Jul  3 11:03:15 2012
@@ -208,6 +208,9 @@
                 for res in mol.res:
                     # Loop over the spins.
                     for spin in res.spin:
+                        # The current spin ID.
+                        spin_id = 
generic_fns.mol_res_spin.generate_spin_id(mol_name=mol.name, res_num=res.num, 
res_name=res.name, spin_name=spin.name, spin_num=spin.num)
+
                         # The interatomic data container design.
                         if hasattr(spin, 'heteronuc_type'):
                             # Rename the nuclear isotope.
@@ -216,19 +219,29 @@
                             # Name the spin if needed.
                             if spin.name == None:
                                 if search('N', spin.isotope):
-                                    spin.name = 'N'
+                                    
generic_fns.mol_res_spin.name_spin(spin_id=spin_id, name='N')
                                 elif search('C', spin.isotope):
-                                    spin.name = 'C'
+                                    
generic_fns.mol_res_spin.name_spin(spin_id=spin_id, name='C')
 
                             # An attached proton - convert into a spin 
container.
-                            if hasattr(spin, 'attached_proton') and 
spin.attached_proton != None:
-                                # Create a new spin container for the 
proton, then set up a dipole interaction between the two spins.
-                                h_spin = 
generic_fns.mol_res_spin.create_spin(mol_name=mol.name, res_num=res.num, 
res_name=res.name, spin_name=spin.attached_proton)
+                            if (hasattr(spin, 'attached_proton') and 
spin.attached_proton != None) or (hasattr(spin, 'proton_type') and 
spin.proton_type != None):
+                                # The proton name.
+                                if hasattr(spin, 'attached_proton') and 
spin.attached_proton != None:
+                                    proton_name = spin.attached_proton
+                                else:
+                                    proton_name = 'H'
+
+                                # The two spin IDs (newly regenerated due to 
the above renaming).
+                                spin_id1 = 
generic_fns.mol_res_spin.generate_spin_id(mol_name=mol.name, res_num=res.num, 
res_name=res.name, spin_name=spin.name, spin_num=spin.num)
+                                spin_id2 = 
generic_fns.mol_res_spin.generate_spin_id(mol_name=mol.name, res_num=res.num, 
res_name=res.name, spin_name=proton_name)
+
+                                # Create a new spin container for the proton.
+                                h_spin = 
generic_fns.mol_res_spin.create_spin(mol_name=mol.name, res_num=res.num, 
res_name=res.name, spin_name=proton_name)
                                 h_spin.select = False
-                                h_spin.element = 'H'
-                                h_spin.isotope = '1H'
-                                spin_id1 = 
generic_fns.mol_res_spin.generate_spin_id(mol_name=mol.name, res_num=res.num, 
res_name=res.name, spin_name=spin.name, spin_num=spin.num)
-                                spin_id2 = 
generic_fns.mol_res_spin.generate_spin_id(mol_name=mol.name, res_num=res.num, 
res_name=res.name, spin_name='H')
+
+                                # Set up a dipole interaction between the 
two spins.
+                                
generic_fns.mol_res_spin.set_spin_element(spin_id=spin_id2, element='H')
+                                
generic_fns.mol_res_spin.set_spin_isotope(spin_id=spin_id2, isotope='1H')
                                 generic_fns.dipole_pair.define(spin_id1, 
spin_id2, verbose=False)
 
                                 # Get the interatomic data container.




Related Messages


Powered by MHonArc, Updated Tue Jul 03 11:40:02 2012