Commit a0fb723f authored by Daniel Williams's avatar Daniel Williams
Browse files

Commented out the measurement of the hrss in WNBs

parent 925c1d74
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -194,7 +194,6 @@ class MDCSet():
            except TypeError: 
                print a, getattr(row,a)
                continue # the structure is different than the TableRow
        #print row.numrel_data
        try:
            self.swig_row.numrel_data = row.numrel_data
        except:
@@ -461,8 +460,8 @@ class MDCSet():
        output.append(strains[0])                 # SimHrss
        output.append(energy)                     # SimEgwR2
        output.append(strains[0])                 # GravEn_Ampl
        output.append(0)                          # Internal_x (currently not implemented)
        output.append(0)                          # Intenal_phi ('')
        output.append(row.incl)                          # Internal_x (currently not implemented)
        output.append(row.phi)                          # Intenal_phi ('')
        output.append(np.cos(row.ra))                     # cos(External_x)
        output.append(row.dec)                    # External_phi
        output.append(row.psi)            # External_psi
+2 −4
Original line number Diff line number Diff line
@@ -363,10 +363,8 @@ class WhiteNoiseBurst(Waveform):
        # the old pyBurst code measured this by generating the waveform
        # which seems wasteful, but I'll replicate it here anyway, for
        # consistency with the method used for O1.
        hp, hx, _, _ = self._generate(half=True)
        self.params['hrss'] =  lalsimulation.MeasureHrss(hp, hx)
        del(hp)
        del(hx)
        #hp, hx, _, _ = self._generate(half=True)
        #self.params['hrss'] =  lalsimulation.MeasureHrss(hp, hx)


class Supernova(Waveform):