From 405c024aa13c4a2659d33131a72acc95538547b3 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 4 Jan 2012 14:40:59 +0100 Subject: [PATCH] Add test_filter tests --- test/Makefile.am | 3 +- test/test_filter.cfg | 37 ++++++++ test/test_filter.sh | 47 ++++++++++ test/test_filter.urls | 13 +++ test/test_filter_1.res | 2 + test/test_filter_10.res | 33 +++++++ test/test_filter_11.res | 2 + test/test_filter_12.res | 232 +++++++++++++++++++++++++++++++++++++++++++++++ test/test_filter_13.res | 48 ++++++++++ test/test_filter_2.res | 2 + test/test_filter_3.res | 232 +++++++++++++++++++++++++++++++++++++++++++++++ test/test_filter_4.res | 48 ++++++++++ test/test_filter_5.res | 2 + test/test_filter_6.res | 104 +++++++++++++++++++++ test/test_filter_7.res | 33 +++++++ test/test_filter_8.res | 2 + test/test_filter_9.res | 104 +++++++++++++++++++++ 17 files changed, 943 insertions(+), 1 deletion(-) create mode 100644 test/test_filter.cfg create mode 100755 test/test_filter.sh create mode 100644 test/test_filter.urls create mode 100644 test/test_filter_1.res create mode 100644 test/test_filter_10.res create mode 100644 test/test_filter_11.res create mode 100644 test/test_filter_12.res create mode 100644 test/test_filter_13.res create mode 100644 test/test_filter_2.res create mode 100644 test/test_filter_3.res create mode 100644 test/test_filter_4.res create mode 100644 test/test_filter_5.res create mode 100644 test/test_filter_6.res create mode 100644 test/test_filter_7.res create mode 100644 test/test_filter_8.res create mode 100644 test/test_filter_9.res diff --git a/test/Makefile.am b/test/Makefile.am index e6521da..a40eabb 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,7 +1,7 @@ # This file is part of Pazpar2. check_SCRIPTS = test_http.sh test_icu.sh test_post.sh \ test_settings.sh test_turbomarcxml.sh test_facets.sh \ - test_solr.sh test_url.sh + test_solr.sh test_url.sh test_filter.sh EXTRA_DIST = run_pazpar2.sh marc21_test.xsl tmarc.xsl solr-pz2.xsl \ z3950_indexdata_com_marc.xml \ @@ -14,6 +14,7 @@ EXTRA_DIST = run_pazpar2.sh marc21_test.xsl tmarc.xsl solr-pz2.xsl \ test_solr.cfg test_solr.urls \ test_turbomarcxml.cfg test_turbomarcxml.urls \ test_url.cfg test_url.urls \ + test_filter.cfg test_filter.urls \ $(check_SCRIPTS) TESTS = $(check_SCRIPTS) diff --git a/test/test_filter.cfg b/test/test_filter.cfg new file mode 100644 index 0000000..6f07275 --- /dev/null +++ b/test/test_filter.cfg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/test_filter.sh b/test/test_filter.sh new file mode 100755 index 0000000..07e7747 --- /dev/null +++ b/test/test_filter.sh @@ -0,0 +1,47 @@ +#!/bin/sh +# + +# srcdir might be set by make +srcdir=${srcdir:-"."} + + +# look for yaz-ztest in PATH +oIFS=$IFS +IFS=: +F='' +for p in $PATH; do + if test -x $p/yaz-ztest -a -x $p/yaz-client; then + VERSION=`$p/yaz-client -V|awk '{print $3;}'|awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` + if test $VERSION -ge 4000000; then + F=$p/yaz-ztest + break + fi + fi +done +IFS=$oIFS + +if test -z "$F"; then + echo "yaz-ztest not found" + exit 0 +fi + +rm -f ztest.pid +$F -l ztest.log -p ztest.pid -D tcp:localhost:9999 +sleep 1 +if test ! -f ztest.pid; then + echo "yaz-ztest could not be started" + exit 0 +fi + +# Test using test_http.cfg +${srcdir}/run_pazpar2.sh test_filter +E=$? +kill `cat ztest.pid` +rm ztest.pid +exit $E + +# Local Variables: +# mode:shell-script +# sh-indentation: 2 +# sh-basic-offset: 4 +# End: diff --git a/test/test_filter.urls b/test/test_filter.urls new file mode 100644 index 0000000..a0c93ba --- /dev/null +++ b/test/test_filter.urls @@ -0,0 +1,13 @@ +http://localhost:9763/search.pz2?command=init +http://localhost:9763/search.pz2?session=1&command=search&query=the +http://localhost:9763/search.pz2?session=1&command=show&block=1 +http://localhost:9763/search.pz2?session=1&command=termlist&name=author,date,subject,xtargets +http://localhost:9763/search.pz2?session=1&command=search&query=the&filter=pz%3Aid%3Dlocalhost%3A9999%2FSlow +http://localhost:9763/search.pz2?session=1&command=show&block=1 +http://localhost:9763/search.pz2?session=1&command=termlist&name=author,date,subject,xtargets +http://localhost:9763/search.pz2?session=1&command=search&query=the&filter=pz%3Aid%3Dlocalhost%3A9999%2FSlow +http://localhost:9763/search.pz2?session=1&command=show +http://localhost:9763/search.pz2?session=1&command=termlist&name=author,date,subject,xtargets +http://localhost:9763/search.pz2?session=1&command=search&query=the&filter=pz%3Aid%3Dz3950.indexdata.com%2Fmarc +http://localhost:9763/search.pz2?session=1&command=show&block=1 +http://localhost:9763/search.pz2?session=1&command=termlist&name=author,date,subject,xtargets diff --git a/test/test_filter_1.res b/test/test_filter_1.res new file mode 100644 index 0000000..81ff9ff --- /dev/null +++ b/test/test_filter_1.res @@ -0,0 +1,2 @@ + +OK11 \ No newline at end of file diff --git a/test/test_filter_10.res b/test/test_filter_10.res new file mode 100644 index 0000000..ae1d3a0 --- /dev/null +++ b/test/test_filter_10.res @@ -0,0 +1,33 @@ + +0 + +Jack Collins2 +Mairs, John W1 + + +19742 +19772 +19731 +19801 + + +Bible1 +Bible. O.T1 +Cartography1 +Imaging systems in medicine1 +Optical pattern recognition1 +Puget Sound region (Wash.)1 +Radioisotope scanning1 +Scintillation cameras1 +Tomography1 + + + +localhost:9999/Slow +ztest slow +7 +Client_Idle +0 + + + \ No newline at end of file diff --git a/test/test_filter_11.res b/test/test_filter_11.res new file mode 100644 index 0000000..ab63fe6 --- /dev/null +++ b/test/test_filter_11.res @@ -0,0 +1,2 @@ + +OK \ No newline at end of file diff --git a/test/test_filter_12.res b/test/test_filter_12.res new file mode 100644 index 0000000..63f3e42 --- /dev/null +++ b/test/test_filter_12.res @@ -0,0 +1,232 @@ + +OK +0 +12 +12 +0 +12 + + +The late shift +Letterman, Leno, and the network battle for the night +1993 +Carter, Bill +Tonight show (Television program) +Letterman, David +Leno, Jay +Talk shows +Includes index +The late shift +Letterman, Leno, and the network battle for the night +1993 +Carter, Bill +Tonight show (Television program) +Letterman, David +Leno, Jay +Talk shows +Includes index +27070 +content: title the late shift author carter bill medium book + + + +The Computer Bible +1973-1980 +Bible. O.T +Bible +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +The Computer Bible +1973-1980 +Bible. O.T +Bible +Hebrew and Greek; introductions in English +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +17402 +content: title the computer bible author medium book + + + +The religious teachers of Greece +1972 +Adam, James +Greek literature +Philosophy, Ancient +Greece +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +The religious teachers of Greece +1972 +Adam, James +Greek literature +Philosophy, Ancient +Greece +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Includes bibliographical references +15187 +content: title the religious teachers of greece author adam james medium book + + + +The Puget Sound Region +a portfolio of thematic computer maps +1974 +Mairs, John W +Cartography +Puget Sound region (Wash.) +Scale of maps ca. 1:1,000,000 +The Puget Sound Region +a portfolio of thematic computer maps +1974 +Mairs, John W +Cartography +Puget Sound region (Wash.) +Scale of maps ca. 1:1,000,000 +Bibliography: p. 4 +13051 +content: title the puget sound region author mairs john w medium book + + + +Reconstruction tomography in diagnostic radiology and nuclear medicine +proceedings of the workshop +1977 +Tomography +Includes bibliographical references and index +Reconstruction tomography in diagnostic radiology and nuclear medicine +proceedings of the workshop +1977 +Tomography +Includes bibliographical references and index +10876 +content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + + +Computer processing of dynamic images from an Anger scintillation camera +the proceedings of a workshop +1974 +Radioisotope scanning +Scintillation cameras +Imaging systems in medicine +Includes bibliographical references and index +Computer processing of dynamic images from an Anger scintillation camera +the proceedings of a workshop +1974 +Radioisotope scanning +Scintillation cameras +Imaging systems in medicine +Includes bibliographical references and index +8701 +content: title computer processing of dynamic images from an anger scintillation camera author medium book + + + +Dealing with dropouts +the urban superintendents' call to action +1987 +Paulu, Nancy +Dropouts +Distributed to depository libraries in microfiche +Dealing with dropouts +the urban superintendents' call to action +1987 +Paulu, Nancy +Dropouts +Microfiche +Distributed to depository libraries in microfiche +7251 +content: title dealing with dropouts author paulu nancy medium + + + +National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 +final report, I'M SPECIAL network +1986 +Physical education +Handicapped children +Distributed to depository libraries in microfiche +National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 +final report, I'M SPECIAL network +1986 +Physical education +Handicapped children +Microfiche +Distributed to depository libraries in microfiche +6960 +content: title national dissemination model for the i m special program of physical education for the handicapped author medium + + + +The use of passwords for controlled access to computer resources +1977 +Wood, Helen M +Computers +The use of passwords for controlled access to computer resources +1977 +Wood, Helen M +Computers +5220 +content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + + +Computer science & technology +proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 +1977 +Optical pattern recognition +Computer science & technology +proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 +1977 +Optical pattern recognition +3107 +content: title computer science technology author medium book + + + +Technology programs that work +1984 +United States +Educational technology +Federal aid to education +"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso +Technology programs that work +1984 +United States +Educational technology +Federal aid to education +"Spons agency Office of Educational Research and Improvement"--Doc. resume +"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso +Distributed to depository libraries in microfiche +"December 1984." +Includes indexes +1740 +content: title technology programs that work author medium book + + + +Check this out +library program models +1987 +Seager, Andrew J +Libraries and community +Libraries and education +School libraries +Instructional materials centers +Public libraries +Distributed to depository libraries in microfiche +Check this out +library program models +1987 +Seager, Andrew J +Libraries and community +Libraries and education +School libraries +Instructional materials centers +Public libraries +Distributed to depository libraries in microfiche +"July 1987." +Includes bibliographical references +"LP 87-403c." +0 +content: title check this out author seager andrew j medium book + + \ No newline at end of file diff --git a/test/test_filter_13.res b/test/test_filter_13.res new file mode 100644 index 0000000..b367099 --- /dev/null +++ b/test/test_filter_13.res @@ -0,0 +1,48 @@ + +0 + +Adam, James1 +Carter, Bill1 +Mairs, John W1 +Paulu, Nancy1 +Seager, Andrew J1 +Wood, Helen M1 + + +19773 +19742 +19872 +19721 +19731 +19801 +19841 +19861 +19931 + + +Bible1 +Bible. O.T1 +Cartography1 +Computers1 +Educational technology1 +Federal aid to education1 +Greece1 +Greek literature1 +Imaging systems in medicine1 +Instructional materials centers1 +Leno, Jay1 +Letterman, David1 +Libraries and community1 +Libraries and education1 +Optical pattern recognition1 + + + +z3950.indexdata.com/marc +Index Data MARC test server +12 +Client_Idle +0 + + + \ No newline at end of file diff --git a/test/test_filter_2.res b/test/test_filter_2.res new file mode 100644 index 0000000..ab63fe6 --- /dev/null +++ b/test/test_filter_2.res @@ -0,0 +1,2 @@ + +OK \ No newline at end of file diff --git a/test/test_filter_3.res b/test/test_filter_3.res new file mode 100644 index 0000000..8d84ad9 --- /dev/null +++ b/test/test_filter_3.res @@ -0,0 +1,232 @@ + +OK +1 +12 +12 +0 +12 + + +The late shift +Letterman, Leno, and the network battle for the night +1993 +Carter, Bill +Tonight show (Television program) +Letterman, David +Leno, Jay +Talk shows +Includes index +The late shift +Letterman, Leno, and the network battle for the night +1993 +Carter, Bill +Tonight show (Television program) +Letterman, David +Leno, Jay +Talk shows +Includes index +27070 +content: title the late shift author carter bill medium book + + + +The Computer Bible +1973-1980 +Bible. O.T +Bible +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +The Computer Bible +1973-1980 +Bible. O.T +Bible +Hebrew and Greek; introductions in English +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +17402 +content: title the computer bible author medium book + + + +The religious teachers of Greece +1972 +Adam, James +Greek literature +Philosophy, Ancient +Greece +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +The religious teachers of Greece +1972 +Adam, James +Greek literature +Philosophy, Ancient +Greece +Reprint of the 1909 ed., which was issued as the 1904-1906 Gifford lectures +Includes bibliographical references +15187 +content: title the religious teachers of greece author adam james medium book + + + +The Puget Sound Region +a portfolio of thematic computer maps +1974 +Mairs, John W +Cartography +Puget Sound region (Wash.) +Scale of maps ca. 1:1,000,000 +The Puget Sound Region +a portfolio of thematic computer maps +1974 +Mairs, John W +Cartography +Puget Sound region (Wash.) +Scale of maps ca. 1:1,000,000 +Bibliography: p. 4 +13051 +content: title the puget sound region author mairs john w medium book + + + +Reconstruction tomography in diagnostic radiology and nuclear medicine +proceedings of the workshop +1977 +Tomography +Includes bibliographical references and index +Reconstruction tomography in diagnostic radiology and nuclear medicine +proceedings of the workshop +1977 +Tomography +Includes bibliographical references and index +10876 +content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + + +Computer processing of dynamic images from an Anger scintillation camera +the proceedings of a workshop +1974 +Radioisotope scanning +Scintillation cameras +Imaging systems in medicine +Includes bibliographical references and index +Computer processing of dynamic images from an Anger scintillation camera +the proceedings of a workshop +1974 +Radioisotope scanning +Scintillation cameras +Imaging systems in medicine +Includes bibliographical references and index +8701 +content: title computer processing of dynamic images from an anger scintillation camera author medium book + + + +Dealing with dropouts +the urban superintendents' call to action +1987 +Paulu, Nancy +Dropouts +Distributed to depository libraries in microfiche +Dealing with dropouts +the urban superintendents' call to action +1987 +Paulu, Nancy +Dropouts +Microfiche +Distributed to depository libraries in microfiche +7251 +content: title dealing with dropouts author paulu nancy medium + + + +National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 +final report, I'M SPECIAL network +1986 +Physical education +Handicapped children +Distributed to depository libraries in microfiche +National dissemination model for the I'M SPECIAL Program of Physical Education for the Handicapped, 1983-1986 +final report, I'M SPECIAL network +1986 +Physical education +Handicapped children +Microfiche +Distributed to depository libraries in microfiche +6960 +content: title national dissemination model for the i m special program of physical education for the handicapped author medium + + + +The use of passwords for controlled access to computer resources +1977 +Wood, Helen M +Computers +The use of passwords for controlled access to computer resources +1977 +Wood, Helen M +Computers +5220 +content: title the use of passwords for controlled access to computer resources author wood helen m medium book + + + +Computer science & technology +proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 +1977 +Optical pattern recognition +Computer science & technology +proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 +1977 +Optical pattern recognition +3107 +content: title computer science technology author medium book + + + +Technology programs that work +1984 +United States +Educational technology +Federal aid to education +"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso +Technology programs that work +1984 +United States +Educational technology +Federal aid to education +"Spons agency Office of Educational Research and Improvement"--Doc. resume +"This directory was developed by the Technology for the National Diffusion Network Project, Teachers College, Columbia University pursuant to contract number OE-300-83-0253, U.S. Department of Education"--T.p. verso +Distributed to depository libraries in microfiche +"December 1984." +Includes indexes +1740 +content: title technology programs that work author medium book + + + +Check this out +library program models +1987 +Seager, Andrew J +Libraries and community +Libraries and education +School libraries +Instructional materials centers +Public libraries +Distributed to depository libraries in microfiche +Check this out +library program models +1987 +Seager, Andrew J +Libraries and community +Libraries and education +School libraries +Instructional materials centers +Public libraries +Distributed to depository libraries in microfiche +"July 1987." +Includes bibliographical references +"LP 87-403c." +0 +content: title check this out author seager andrew j medium book + + \ No newline at end of file diff --git a/test/test_filter_4.res b/test/test_filter_4.res new file mode 100644 index 0000000..1307b60 --- /dev/null +++ b/test/test_filter_4.res @@ -0,0 +1,48 @@ + +1 + +Adam, James1 +Carter, Bill1 +Mairs, John W1 +Paulu, Nancy1 +Seager, Andrew J1 +Wood, Helen M1 + + +19773 +19742 +19872 +19721 +19731 +19801 +19841 +19861 +19931 + + +Bible1 +Bible. O.T1 +Cartography1 +Computers1 +Educational technology1 +Federal aid to education1 +Greece1 +Greek literature1 +Imaging systems in medicine1 +Instructional materials centers1 +Leno, Jay1 +Letterman, David1 +Libraries and community1 +Libraries and education1 +Optical pattern recognition1 + + + +z3950.indexdata.com/marc +Index Data MARC test server +12 +Client_Idle +0 + + + \ No newline at end of file diff --git a/test/test_filter_5.res b/test/test_filter_5.res new file mode 100644 index 0000000..ab63fe6 --- /dev/null +++ b/test/test_filter_5.res @@ -0,0 +1,2 @@ + +OK \ No newline at end of file diff --git a/test/test_filter_6.res b/test/test_filter_6.res new file mode 100644 index 0000000..51c8923 --- /dev/null +++ b/test/test_filter_6.res @@ -0,0 +1,104 @@ + +OK +0 +6 +7 +0 +6 + + +The Computer Bible +1973-1980 +Bible. O.T +Bible +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +The Computer Bible +1973-1980 +Bible. O.T +Bible +Hebrew and Greek; introductions in English +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +67294 +content: title the computer bible author medium book + + + +The Puget Sound Region +a portfolio of thematic computer maps +1974 +Mairs, John W +Cartography +Puget Sound region (Wash.) +Scale of maps ca. 1:1,000,000 +The Puget Sound Region +a portfolio of thematic computer maps +1974 +Mairs, John W +Cartography +Puget Sound region (Wash.) +Scale of maps ca. 1:1,000,000 +Bibliography: p. 4 +50470 +content: title the puget sound region author mairs john w medium book + + + +Reconstruction tomography in diagnostic radiology and nuclear medicine +proceedings of the workshop +1977 +Tomography +Includes bibliographical references and index +Reconstruction tomography in diagnostic radiology and nuclear medicine +proceedings of the workshop +1977 +Tomography +Includes bibliographical references and index +42059 +content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + + +Computer processing of dynamic images from an Anger scintillation camera +the proceedings of a workshop +1974 +Radioisotope scanning +Scintillation cameras +Imaging systems in medicine +Includes bibliographical references and index +Computer processing of dynamic images from an Anger scintillation camera +the proceedings of a workshop +1974 +Radioisotope scanning +Scintillation cameras +Imaging systems in medicine +Includes bibliographical references and index +33647 +content: title computer processing of dynamic images from an anger scintillation camera author medium book + + + +Computer science & technology +proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 +1977 +Optical pattern recognition +Computer science & technology +proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 +1977 +Optical pattern recognition +12016 +content: title computer science technology author medium book + + + +How to program a computer +Jack Collins +How to program a computer +Jack Collins + +How to program a computer +Jack Collins +2 +0 +content: title how to program a computer author jack collins medium book + + \ No newline at end of file diff --git a/test/test_filter_7.res b/test/test_filter_7.res new file mode 100644 index 0000000..ae1d3a0 --- /dev/null +++ b/test/test_filter_7.res @@ -0,0 +1,33 @@ + +0 + +Jack Collins2 +Mairs, John W1 + + +19742 +19772 +19731 +19801 + + +Bible1 +Bible. O.T1 +Cartography1 +Imaging systems in medicine1 +Optical pattern recognition1 +Puget Sound region (Wash.)1 +Radioisotope scanning1 +Scintillation cameras1 +Tomography1 + + + +localhost:9999/Slow +ztest slow +7 +Client_Idle +0 + + + \ No newline at end of file diff --git a/test/test_filter_8.res b/test/test_filter_8.res new file mode 100644 index 0000000..ab63fe6 --- /dev/null +++ b/test/test_filter_8.res @@ -0,0 +1,2 @@ + +OK \ No newline at end of file diff --git a/test/test_filter_9.res b/test/test_filter_9.res new file mode 100644 index 0000000..51c8923 --- /dev/null +++ b/test/test_filter_9.res @@ -0,0 +1,104 @@ + +OK +0 +6 +7 +0 +6 + + +The Computer Bible +1973-1980 +Bible. O.T +Bible +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +The Computer Bible +1973-1980 +Bible. O.T +Bible +Hebrew and Greek; introductions in English +Vols. 2, 8: Missoula, Mont. : Published by Scholars Press for Biblical Research Associates +67294 +content: title the computer bible author medium book + + + +The Puget Sound Region +a portfolio of thematic computer maps +1974 +Mairs, John W +Cartography +Puget Sound region (Wash.) +Scale of maps ca. 1:1,000,000 +The Puget Sound Region +a portfolio of thematic computer maps +1974 +Mairs, John W +Cartography +Puget Sound region (Wash.) +Scale of maps ca. 1:1,000,000 +Bibliography: p. 4 +50470 +content: title the puget sound region author mairs john w medium book + + + +Reconstruction tomography in diagnostic radiology and nuclear medicine +proceedings of the workshop +1977 +Tomography +Includes bibliographical references and index +Reconstruction tomography in diagnostic radiology and nuclear medicine +proceedings of the workshop +1977 +Tomography +Includes bibliographical references and index +42059 +content: title reconstruction tomography in diagnostic radiology and nuclear medicine author medium book + + + +Computer processing of dynamic images from an Anger scintillation camera +the proceedings of a workshop +1974 +Radioisotope scanning +Scintillation cameras +Imaging systems in medicine +Includes bibliographical references and index +Computer processing of dynamic images from an Anger scintillation camera +the proceedings of a workshop +1974 +Radioisotope scanning +Scintillation cameras +Imaging systems in medicine +Includes bibliographical references and index +33647 +content: title computer processing of dynamic images from an anger scintillation camera author medium book + + + +Computer science & technology +proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 +1977 +Optical pattern recognition +Computer science & technology +proceedings of a workshop held at the National Bureau of Standards, Gaithersburg, MD, June 3-4, 1976 +1977 +Optical pattern recognition +12016 +content: title computer science technology author medium book + + + +How to program a computer +Jack Collins +How to program a computer +Jack Collins + +How to program a computer +Jack Collins +2 +0 +content: title how to program a computer author jack collins medium book + + \ No newline at end of file -- 1.7.10.4