Skip to content

Commit

Permalink
PyDarkNewsCrossSectionCollection to PyDarkNewsInteractionCollection
Browse files Browse the repository at this point in the history
  • Loading branch information
nickkamp1 authored and austinschneider committed Jan 10, 2024
1 parent 3d277ab commit e9148f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/LIController.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import numpy as np

import leptoninjector as LI
from LIDarkNews import PyDarkNewsCrossSectionCollection
from LIDarkNews import PyDarkNewsInteractionCollection

# For determining fiducial volume of different experiments
fid_vol_dict = {'MiniBooNE':'fid_vol',
Expand Down Expand Up @@ -133,7 +133,7 @@ def InputDarkNewsModel(self,
# Add nuclear targets to the model arguments
model_kwargs['nuclear_targets'] = self.GetDetectorModelTargets()[1]
# Initialize DarkNews cross sections and decays
self.DN_processes = PyDarkNewsCrossSectionCollection(table_dir=table_dir,
self.DN_processes = PyDarkNewsInteractionCollection(table_dir=table_dir,
**model_kwargs)

# Initialize primary InteractionCollection
Expand Down
2 changes: 1 addition & 1 deletion python/LIDarkNews.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from DarkNews.integrands import get_decay_momenta_from_vegas_samples

# Class containing all upscattering and decay modes available in DarkNews
class PyDarkNewsCrossSectionCollection:
class PyDarkNewsInteractionCollection:

def __init__(self,
table_dir=None,
Expand Down

0 comments on commit e9148f9

Please sign in to comment.