Skip to content
Snippets Groups Projects
Commit c3f10f7f authored by root's avatar root
Browse files

Changed properties type from integer to string

parent 69e54c17
No related branches found
No related tags found
No related merge requests found
......@@ -19,14 +19,15 @@ class StructureFactors(StructuredNode):
"""
# Properties
# uuid=StringProperty(unique_index=True, default=uuid4)
uuid=StringProperty(unique_index=True, default=uuid4)
# processingtype=StringProperty()
gamma=IntegerProperty()
a=IntegerProperty()
alpha=IntegerProperty()
b=IntegerProperty()
beta=IntegerProperty()
c=IntegerProperty()
gamma=StringProperty()
a=StringProperty()
alpha=StringProperty()
b=StringProperty()
beta=StringProperty()
c=StringProperty()
# rsf_source=StringProperty()
# rsf_filesize=StringProperty()
# rsf_filepath=StringProperty()
......@@ -48,7 +49,7 @@ class StructureFactors(StructuredNode):
return {
'structurefactors_node_properties': {
# 'uuid': self.uuid,
'uuid': self.uuid,
# 'rsf_source': self.rsf_source,
# 'rsf_filesize': self.rsf_filesize,
# 'rsf_filepath': self.rsf_filepath,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment