Changeset 1480 in Sophya for trunk/ArchTOIPipe/TestPipes
- Timestamp:
- Apr 27, 2001, 11:33:51 AM (24 years ago)
- Location:
- trunk/ArchTOIPipe/TestPipes
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/TestPipes/Makefile.in
r1477 r1480 46 46 CPPFLAGS := $(CPPFLAGS) @cfitsincdir@ -I. -I.. -DANSI -I$(srcdir)/../kernel -I$(srcdir)/../processors -I$(srcdir)/../sophya -I$(srcdir)/.. 47 47 48 LDLIBS=@cfitslibdir@ -lcfitsio $(LIBS) -L.. -latkern -latproc 48 ifeq ($(USE_SOPHYA),1) 49 LDLIBS=-L.. -latsop -latkern -latproc @cfitslibdir@ -lcfitsio $(LIBS) 50 LIBDEPS=../libatsop.a ../libatkern.a ../libatproc.a 51 else 52 LDLIBS=-L.. -latkern -latproc @cfitslibdir@ -lcfitsio $(LIBS) 53 LIBDEPS=../libatkern.a ../libatproc.a 54 endif 49 55 50 56 ifeq ($(MACHEROS),IRIX64) … … 62 68 endif 63 69 70 ifeq ($(CXX), cxx) 71 CXXFLAGS := $(CXXFLAGS) -ptr ../cxx_repository 72 endif 73 74 64 75 default: 65 76 echo "no program specified" … … 69 80 rm -rf rii_files ii_files cxxrep cxx_repository 70 81 71 %: %.o $(FILES) 82 %: %.o $(FILES) $(LIBDEPS) 72 83 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -pthread -o $@ -lm 73 84 -
trunk/ArchTOIPipe/TestPipes/tsttoi.cc
r1464 r1480 1 1 #include "toi.h" 2 #include "toi regwindow.h"2 #include "toiseqbuff.h" 3 3 #include "toiprocessor.h" 4 4 #include "fitstoirdr.h" … … 16 16 17 17 18 TOI* toi = new TOI RegularWindow("t1");18 TOI* toi = new TOISeqBuffered(); 19 19 // toi->dbg=true; 20 20 r.addOutput("boloMuV_11", toi); 21 21 f.addInput("signal", toi); 22 22 23 toi = new TOI RegularWindow("t2");23 toi = new TOISeqBuffered(); 24 24 // toi->dbg = true; 25 25 f.addOutput("out", toi);
Note:
See TracChangeset
for help on using the changeset viewer.