Skip to content
Snippets Groups Projects
Commit d8518979 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

move pre-XML SPHERES reading routines to old/

parent 49570ec8
No related branches found
No related tags found
No related merge requests found
File moved
File moved
......@@ -41,8 +41,6 @@ rng.cpp \
rng.h \
rssm.cpp \
rssm.h \
r-temp.cpp \
r-temp.h \
scan.cpp \
scan.h \
special2.cpp \
......
......@@ -56,7 +56,7 @@ am_frida2_OBJECTS = asi.$(OBJEXT) coord.$(OBJEXT) curve.$(OBJEXT) \
file_io.$(OBJEXT) frida2.$(OBJEXT) func.$(OBJEXT) \
index.$(OBJEXT) list.$(OBJEXT) manip.$(OBJEXT) mystd.$(OBJEXT) \
olm.$(OBJEXT) opr.$(OBJEXT) plotaux.$(OBJEXT) readln.$(OBJEXT) \
rng.$(OBJEXT) rssm.$(OBJEXT) r-temp.$(OBJEXT) scan.$(OBJEXT) \
rng.$(OBJEXT) rssm.$(OBJEXT) scan.$(OBJEXT) \
special2.$(OBJEXT) xax_lex.$(OBJEXT) xax_yacc.$(OBJEXT) \
yamc.$(OBJEXT)
frida2_OBJECTS = $(am_frida2_OBJECTS)
......@@ -259,8 +259,6 @@ rng.cpp \
rng.h \
rssm.cpp \
rssm.h \
r-temp.cpp \
r-temp.h \
scan.cpp \
scan.h \
special2.cpp \
......@@ -381,7 +379,6 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/olm.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/plotaux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r-temp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readln.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rng.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rssm.Po@am__quote@
......
......@@ -21,7 +21,6 @@
#include "edif.h"
#include "file_io.h"
#include "rssm.h"
#include "r-temp.h"
#include "manip.h"
#include "special.h"
#include "rng.h"
......@@ -466,16 +465,7 @@ int main()
" rxd load only spectra for two directions\n"
" rxs load series of energy spectra\n"
" rxs2 load also spectra for open state\n"
" rdc load dopp, chop from stream\n"
" rda analyse dopp\n"
" rca analyse chop\n"
" rstr load from stream\n"
" ra0 load from acquire v0\n"
" ra0t load from acquire v0, two directions separately\n"
" ra0d load from acquire v0, difference between two files\n"
" rc0 load chopper histogram from acquire v0\n"
" rc0d load chopper histogram difference\n"
" rh load from Drochner histogram\n";
" rdc load dopp, chop from stream\n";
} else if (cmd == "ry" ) {
NRSSM::ReadScan( 5, 0 );
......@@ -507,27 +497,6 @@ int main()
} else if (cmd == "rxs2") {
NRSSM::ReadSeries( 2, 1 );
} else if (cmd == "rdc") {
NR_Stream::Stream2DoppChop();
} else if (cmd == "rstr") {
NR_Stream::ReadStream();
} else if (cmd == "ra0") {
NR_Temp::ReadAcq0( false, false );
} else if (cmd == "ra0t") {
NR_Temp::ReadAcq0( false, true );
} else if (cmd == "ra0d") {
NR_Temp::ReadAcq0( true, false );
} else if (cmd == "rc0") {
NR_Temp::ReadCho0( false );
} else if (cmd == "rc0d") {
NR_Temp::ReadCho0( true );
} else if (cmd == "rda") {
NR_Temp::AnalyseDopp();
} else if (cmd == "rca") {
NR_Temp::AnalyseChop();
} else if (cmd == "rh") {
NR_Temp::ReadHisto();
} else if (cmd == "t") {
double time_total =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment