Skip to content
Snippets Groups Projects
Commit 32fdc538 authored by Alexis GAMELIN's avatar Alexis GAMELIN
Browse files

Improve representations for Bunch and Beam classes

parent 61370bd3
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,7 @@ class Bunch:
def __repr__(self):
"""Return representation of alive particles"""
return f'{pd.DataFrame(self[:])!r}'
return f'Bunch with macro-particles: \n {pd.DataFrame(self[:])!r}'
@property
def mp_number(self):
......@@ -583,7 +583,7 @@ class Beam:
def __repr__(self):
"""Return representation of the beam filling pattern"""
return f'{list((self.filling_pattern))!r}'
return f'Beam with bunch current:\n {list((self.bunch_current))!r}'
@property
def not_empty(self):
......
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