##// END OF EJS Templates
Bug fixed selecting heis: Dc array has 2 dimensions, not 3
Miguel Valdez -
r291:5df7dc63df70
parent child
Show More
@@ -917,7 +917,7 class SpectraProc(ProcessingUnit):
917 917
918 918 data_dc = None
919 919 if self.dataOut.data_dc != None:
920 data_dc = self.dataOut.data_dc[:,:,minIndex:maxIndex+1]
920 data_dc = self.dataOut.data_dc[:,minIndex:maxIndex+1]
921 921
922 922 self.dataOut.data_spc = data_spc
923 923 self.dataOut.data_cspc = data_cspc
General Comments 0
You need to be logged in to leave comments. Login now