Skip to content

Commit

Permalink
Rename function name from get_line_interaction to track_boundary_inte…
Browse files Browse the repository at this point in the history
…raction
  • Loading branch information
Sumit112192 committed Aug 9, 2024
1 parent ac18f0b commit 428c45d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tardis/transport/montecarlo/packet_trackers.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def track_boundary_interaction(self, current_shell_id, next_shell_id):

self.boundary_interactions_index += 1

def get_line_interaction(self, r_packet):
def track_line_interaction(self, r_packet):
"""
Track line interaction properties
"""
Expand Down Expand Up @@ -329,7 +329,7 @@ def track_boundary_interaction(self, current_shell_id, next_shell_id):
"""
pass

def get_line_interaction(self, r_packet):
def track_line_interaction(self, r_packet):
pass


Expand Down
2 changes: 1 addition & 1 deletion tardis/transport/montecarlo/single_packet_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def single_packet_loop(
opacity_state,
montecarlo_configuration.ENABLE_FULL_RELATIVITY,
)
rpacket_tracker.get_line_interaction(r_packet)
rpacket_tracker.track_line_interaction(r_packet)
trace_vpacket_volley(
r_packet,
vpacket_collection,
Expand Down

0 comments on commit 428c45d

Please sign in to comment.