Changeset 1542 in Sophya
- Timestamp:
- Jun 18, 2001, 4:46:22 PM (24 years ago)
- Location:
- trunk/ArchTOIPipe/TestPipes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/TestPipes/tgenw.cc
r1532 r1542 268 268 ntoiout=1; 269 269 w = new FITSTOIWriter(outfile); 270 w->setOutFlags(true);271 270 cout << "fits writer created" << endl; 272 271 } … … 290 289 if(w && toiout) { 291 290 cout << " Connecting to FitsWriter ... " << endl; 292 w->addInput("genout",toiout );291 w->addInput("genout",toiout,true); 293 292 } 294 293 -
trunk/ArchTOIPipe/TestPipes/tstrztoi.cc
r1464 r1542 167 167 168 168 169 w.setOutFlags(true);170 169 w.addInput("bolodrift", toi2); 171 170 -
trunk/ArchTOIPipe/TestPipes/tsttoi2.cc
r1464 r1542 13 13 FITSTOIReader r(argv[1]); cout << "reader created" << endl; 14 14 FITSTOIWriter w(argv[2]); 15 w.setOutFlags(true);16 15 17 16 TOI* toi = new TOIRegularWindow("t1"); 18 17 // toi->dbg=true; 19 18 r.addOutput("boloMuV_11", toi); 20 w.addInput("bolo_filtered", toi );19 w.addInput("bolo_filtered", toi, true); 21 20 22 21 r.start();
Note:
See TracChangeset
for help on using the changeset viewer.