Skip to content

Commit

Permalink
Merge pull request #11 from LFB-MRI/RBEGamer-patch-1
Browse files Browse the repository at this point in the history
Update main.py
  • Loading branch information
RBEGamer authored Apr 5, 2024
2 parents 845f7b3 + e9abae7 commit 5050d47
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion documentation/minimal_project/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import numpy as np
# IMPORT SOME HELPER FUNCTIONS FOR IMPORT EXPORT AND PLOTTING
from MRPudpp.UDPPFunctionCollection import UDPPFunctionCollection as mrphelper
from MRP import MRPAnalysis, MRPPolarVisualization, MRPReading
from MRP import MRPAnalysis, MRPPolarVisualization, MRPReading, MRPReadingEntry
# IMPORT OTHER FUNTIONS


Expand All @@ -29,6 +29,16 @@ def main():
print("mean for magnet 1 is {:.2}".format(mean))


# ADVANCED DATA ACCESS
# entry is type of MRPReadingEntry.MRPReadingEntry
for entry in magnet_readings[0]:
pass
#entry.temperature()
#entry. value()
#entry.is_valid()
#entry.id()
#entry.theta()
#entry.phi



Expand Down

0 comments on commit 5050d47

Please sign in to comment.