From 6417e4da9741b9544556f38338c34ce3036b3548 Mon Sep 17 00:00:00 2001 From: Raquel Alvarez Banos Date: Thu, 20 Nov 2014 11:39:22 +0000 Subject: [PATCH] Re #10577 Remove old PhaseQuadMuon-v1.rst --- .../source/algorithms/PhaseQuadMuon-v1.rst | 58 ------------------- 1 file changed, 58 deletions(-) delete mode 100644 Code/Mantid/docs/source/algorithms/PhaseQuadMuon-v1.rst diff --git a/Code/Mantid/docs/source/algorithms/PhaseQuadMuon-v1.rst b/Code/Mantid/docs/source/algorithms/PhaseQuadMuon-v1.rst deleted file mode 100644 index 4dbece609394..000000000000 --- a/Code/Mantid/docs/source/algorithms/PhaseQuadMuon-v1.rst +++ /dev/null @@ -1,58 +0,0 @@ -.. algorithm:: - -.. summary:: - -.. alias:: - -.. properties:: - -Description ------------ - -Assuming that the *InputWorkspace* contains measured -counts as a function of time, the algorithm returns a workspace -containing two spectra (squashograms) as a function of the same time binning. - -*DeadTimeTable* is expected to have a six-row header, including overall information, and 6 columns: - -1. Boolean type, containing if detector is OK -2. Double type, containing detector asymmetry -3. Double type, containing detector phase -4. Double type, containing detector lag -5. Double type, containing detector deadtime:math:`_{c}` -6. Double type, containing detector deadtime:math:`_{m}` - -Usage ------ - -.. include:: ../usagedata-note.txt - -**Example - Computing squashograms:** - -.. testcode:: ExCompSquash - - # Load the first two spectra from a MUSR run - input = LoadMuonNexus('MUSR0015189.nxs',EntryNumber=1,SpectrumMin=1,SpectrumMax=2) - - # Create a PhaseTable file with some arbitrary detector information - file = open('PhaseTable.txt','w') - file.write("MuSR\n") - file.write("Dummy line\n") - file.write("Dummy line\n") - file.write("Dummy line\n") - file.write("Dummy line\n") - file.write("2 0 60 0.0\n") - for i in range(0,2): - file.write("1 1.0 0.0 -1 -1 -1\n") - file.close() - - output = PhaseQuad('input','PhaseTable.txt') - print "Counts: ", input[0].readY(0)[24] - -Output: - -.. testoutput:: ExCompSquash - - Counts: 3.0 - -.. categories:: \ No newline at end of file