Skip to content

Commit

Permalink
Fixed bug but need to be tested by IS. This refs #10630
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanBilheux committed Nov 24, 2014
1 parent 8386003 commit 6230f88
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -30,8 +30,8 @@ class sfCalculator():
bFittingPlot = False

#size of detector
alpha_pixel_nbr = 256
beta_pixel_nbr = 304 #will be integrated over this dimension
alpha_pixel_nbr = 304
beta_pixel_nbr = 256 #will be integrated over this dimension

#name of numerators and denominators
numerator = None #ex: AiD0
Expand Down Expand Up @@ -245,8 +245,8 @@ def _calculateFinalYAxis(self, bNumerator=True):
self.alpha_pixel_nbr = 304
self.beta_pixel_nbr = 256
else:
alpha_pixel_nbr = 256
beta_pixel_nbr = 304 #will be integrated over this dimension
self.alpha_pixel_nbr = 256
self.beta_pixel_nbr = 304 #will be integrated over this dimension

proton_charge = self._getProtonCharge(EventDataWks)
print '----> rebinning '
Expand Down

0 comments on commit 6230f88

Please sign in to comment.