Changeset 3058 in Sophya
- Timestamp:
- Aug 13, 2006, 3:15:57 PM (19 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pawexecut.cc
r2817 r3058 218 218 kw = "h/plot/2d"; 219 219 usage = "Specific plot for 2D histogrammes"; 220 usage += "\n h/plot/2d nameh2d show : infos on 2D histogramme ";220 usage += "\n h/plot/2d nameh2d show : infos on 2D histogramme projections"; 221 221 usage += "\n h/plot/2d nameh2d h [dopt] : plot 2D histogramme"; 222 222 usage += "\n h/plot/2d nameh2d px [dopt] : plot X projection"; … … 227 227 usage += "\n h/plot/2d nameh2d sy n [dopt] : plot Y slice number n"; 228 228 usage += "\n n < 0 means Show Info"; 229 piac->RegisterCommand(kw,usage,this,hgrp); 230 231 kw = "h/2d/geth"; 232 usage = "Get histo projections, bandes and slices"; 233 usage += "\n h/2d/geth nameh2d : infos on 2D histogramme projections"; 234 usage += "\n h/2d/geth h nameh2d px : copy X projection into histo h"; 235 usage += "\n h/2d/geth h nameh2d py : copy Y projection into histo h"; 236 usage += "\n h/2d/geth h nameh2d bx n : copy X band number n into histo h"; 237 usage += "\n h/2d/geth h nameh2d by n : copy Y band number n into histo h"; 238 usage += "\n h/2d/geth h nameh2d sx n : copy X slice number n into histo h"; 239 usage += "\n h/2d/geth h nameh2d sy n : copy Y slice number n into histo h"; 240 usage += "\n Related commands: h/plot/2d"; 229 241 piac->RegisterCommand(kw,usage,this,hgrp); 230 242 … … 346 358 } else if(kw == "h/plot/2d") { 347 359 h_plot_2d(tokens); return(0); 360 } else if(kw == "h/2d/geth") { 361 h_2d_geth(tokens); return(0); 348 362 } else if(kw == "h/put_vec") { 349 363 h_put_vec(tokens); return(0); … … 1837 1851 1838 1852 /* methode */ 1853 void PAWExecutor::h_2d_geth(vector<string>& tokens) 1854 // copy bandx/y, slicex/y or projx/y from an 2D histo into a 1D histo 1855 { 1856 NamedObjMgr omg; 1857 1858 if(tokens.size()==1) { 1859 AnyDataObj* mobj = omg.GetObj(tokens[0]); 1860 Histo2D* h2 = dynamic_cast<Histo2D*>(mobj); 1861 if(!h2) return; 1862 h2->ShowProj(); 1863 h2->ShowBand(2); 1864 h2->ShowSli(2); 1865 return; 1866 } 1867 1868 if(tokens.size()<3) 1869 {cout<<"Usage: h/2d/geth h nameh2d [px,py,bx n,by n,sx n,sy n]"<<endl; return;} 1870 1871 string nameh1 = tokens[0]; 1872 string nameh2 = tokens[1]; 1873 string proj = tokens[2]; 1874 int_4 nump = (tokens.size()>3)? atoi(tokens[3].c_str()): -1; 1875 1876 // Decodage Histo2D 1877 AnyDataObj* mobj = omg.GetObj(tokens[1]); 1878 if(mobj==NULL) 1879 {cout<<"PAWExecutor::h_2d_geth Error: unknow object"<<tokens[1]<<endl; 1880 return;} 1881 Histo2D* h2 = dynamic_cast<Histo2D*>(mobj); 1882 if(!h2) 1883 {cout<<"PAWExecutor::h_plot_2d Error: "<<tokens[1]<<" not an Histo2D"<<endl; 1884 return;} 1885 1886 // Remplissage histo 1D avec la projection demandee 1887 Histo *h1p; 1888 if(proj == "px") { 1889 if((h1p=h2->HProjX())) {Histo* h=new Histo(*h1p); omg.AddObj(h,nameh1);} 1890 else h2->ShowProj(); 1891 } else if(proj == "py") { 1892 if((h1p=h2->HProjY())) {Histo* h=new Histo(*h1p); omg.AddObj(h,nameh1);} 1893 else h2->ShowProj(); 1894 } else if(proj == "bx" && nump>=0) { 1895 if((h1p=h2->HBandX(nump))) {Histo* h=new Histo(*h1p); omg.AddObj(h,nameh1);} 1896 else h2->ShowBand(); 1897 } else if(proj == "by" && nump>=0) { 1898 if((h1p=h2->HBandY(nump))) {Histo* h=new Histo(*h1p); omg.AddObj(h,nameh1);} 1899 else h2->ShowBand(); 1900 } else if(proj == "sx" && nump>=0) { 1901 if((h1p=h2->HSliX(nump))) {Histo* h=new Histo(*h1p); omg.AddObj(h,nameh1);} 1902 else h2->ShowSli(); 1903 } else if(proj == "sy" && nump>=0) { 1904 if((h1p=h2->HSliY(nump))) {Histo* h=new Histo(*h1p); omg.AddObj(h,nameh1);} 1905 else h2->ShowSli(); 1906 } else { 1907 cout<<"PAWExecutor::h_2d_geth Error: Unknown proj name "<<proj 1908 <<" or bad projection number "<<nump<<endl; 1909 } 1910 1911 return; 1912 } 1913 1914 /* methode */ 1839 1915 int_4 PAWExecutor::decodepawstring(string tokens,string& nameobj 1840 1916 ,string& xexp,string& yexp,string& zexp) -
trunk/SophyaPI/PIext/pawexecut.h
r2817 r3058 41 41 void h_oper(vector<string>& tokens); 42 42 void h_plot_2d(vector<string>& tokens); 43 void h_2d_geth(vector<string>& tokens); 43 44 void h_put_vec(vector<string>& tokens); 44 45 void h_get_vec(vector<string>& tokens); -
trunk/SophyaPI/PIext/smakefile
r3007 r3058 29 29 $(SOPHYAINCP)timestamp.h \ 30 30 $(SOPHYAINCP)ctimer.h \ 31 $(SOPHYAINCP)zthread.h dlftypes.h \ 32 basexecut.h $(SOPHYAINCP)pdlmgr.h \ 31 $(SOPHYAINCP)zthread.h \ 32 dlftypes.h basexecut.h \ 33 $(SOPHYAINCP)pdlmgr.h \ 33 34 $(SOPHYAINCP)ctimer.h \ 34 $(SOPHYAINCP)strutilxx.h pistdimgapp.h \ 35 $(SOPHYAINCP)strutilxx.h \ 36 pistdimgapp.h \ 35 37 $(SOPHYAINCP)pisysdep.h \ 36 38 $(SOPHYAINCP)piapplx.h \ … … 89 91 $(SOPHYAINCP)pi3dwdg.h \ 90 92 $(SOPHYAINCP)pi3ddrw.h \ 91 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 93 $(SOPHYAINCP)pigraph3d.h \ 94 nobjmgr.h \ 92 95 $(SOPHYAINCP)anydataobj.h \ 93 96 $(SOPHYAINCP)ppersist.h \ … … 98 101 $(SOPHYAINCP)piperiodx.h \ 99 102 $(SOPHYAINCP)pitherm.h \ 100 $(SOPHYAINCP)resusage.h servnobjm.h \ 101 nomgadapter.h $(SOPHYAINCP)pidrawer.h \ 103 $(SOPHYAINCP)resusage.h \ 104 servnobjm.h nomgadapter.h \ 105 $(SOPHYAINCP)pidrawer.h \ 102 106 $(SOPHYAINCP)parradapter.h \ 103 107 $(SOPHYAINCP)ntupintf.h \ … … 131 135 132 136 $(SOPHYAOBJP)contmodex.o: contmodex.cc \ 133 $(SOPHYAINCP)sopnamsp.h contmodex.h \ 137 $(SOPHYAINCP)sopnamsp.h \ 138 contmodex.h \ 134 139 $(SOPHYAINCP)machdefs.h piacmd.h \ 135 140 $(SOPHYAINCP)commander.h \ … … 148 153 $(SOPHYAINCP)timestamp.h \ 149 154 $(SOPHYAINCP)ctimer.h \ 150 $(SOPHYAINCP)zthread.h dlftypes.h \ 151 nobjmgr.h $(SOPHYAINCP)anydataobj.h \ 155 $(SOPHYAINCP)zthread.h \ 156 dlftypes.h nobjmgr.h \ 157 $(SOPHYAINCP)anydataobj.h \ 152 158 $(SOPHYAINCP)ppersist.h \ 153 159 $(SOPHYAINCP)dvlist.h \ … … 224 230 $(SOPHYAINCP)gp_graph3d.h \ 225 231 $(SOPHYAINCP)gp_alloc.h \ 226 $(SOPHYAINCP)pidrawer.h nomgadapter.h \ 232 $(SOPHYAINCP)pidrawer.h \ 233 nomgadapter.h \ 227 234 $(SOPHYAINCP)parradapter.h \ 228 235 $(SOPHYAINCP)ntupintf.h \ … … 246 253 247 254 $(SOPHYAOBJP)cxxexecutor.o: cxxexecutor.cc \ 248 $(SOPHYAINCP)sopnamsp.h cxxexecutor.h \ 255 $(SOPHYAINCP)sopnamsp.h \ 256 cxxexecutor.h \ 249 257 $(SOPHYAINCP)machdefs.h piacmd.h \ 250 258 $(SOPHYAINCP)commander.h \ … … 263 271 $(SOPHYAINCP)timestamp.h \ 264 272 $(SOPHYAINCP)ctimer.h \ 265 $(SOPHYAINCP)zthread.h dlftypes.h \ 266 nobjmgr.h $(SOPHYAINCP)anydataobj.h \ 273 $(SOPHYAINCP)zthread.h \ 274 dlftypes.h nobjmgr.h \ 275 $(SOPHYAINCP)anydataobj.h \ 267 276 $(SOPHYAINCP)ppersist.h \ 268 277 $(SOPHYAINCP)dvlist.h \ 269 278 $(SOPHYAINCP)strutilxx.h \ 270 $(SOPHYAINCP)cxxcmplnk.h nomgadapter.h \ 279 $(SOPHYAINCP)cxxcmplnk.h \ 280 nomgadapter.h \ 271 281 $(SOPHYAINCP)pidrawer.h \ 272 282 $(SOPHYAINCP)pibwdggen.h \ … … 308 318 $(SOPHYAINCP)utils.h \ 309 319 $(SOPHYAINCP)perrors.h \ 310 $(SOPHYAINCP)fmath.h pistdimgapp.h \ 320 $(SOPHYAINCP)fmath.h \ 321 pistdimgapp.h \ 311 322 $(SOPHYAINCP)pisysdep.h \ 312 323 $(SOPHYAINCP)piapplx.h \ … … 344 355 $(SOPHYAINCP)pi3dwdg.h \ 345 356 $(SOPHYAINCP)pi3ddrw.h \ 346 $(SOPHYAINCP)pigraph3d.h pisiadw.h\347 $(SOPHYAINCP)pilistx.h \357 $(SOPHYAINCP)pigraph3d.h \ 358 pisiadw.h $(SOPHYAINCP)pilistx.h \ 348 359 $(SOPHYAINCP)pilistgen.h \ 349 360 $(SOPHYAINCP)pistzwin.h \ … … 354 365 355 366 $(SOPHYAOBJP)cxxexecwin.o: cxxexecwin.cc \ 356 $(SOPHYAINCP)sopnamsp.h cxxexecutor.h \ 367 $(SOPHYAINCP)sopnamsp.h \ 368 cxxexecutor.h \ 357 369 $(SOPHYAINCP)machdefs.h piacmd.h \ 358 370 $(SOPHYAINCP)commander.h \ … … 371 383 $(SOPHYAINCP)timestamp.h \ 372 384 $(SOPHYAINCP)ctimer.h \ 373 $(SOPHYAINCP)zthread.h dlftypes.h \ 374 nobjmgr.h $(SOPHYAINCP)anydataobj.h \ 375 $(SOPHYAINCP)ppersist.h \ 376 $(SOPHYAINCP)dvlist.h cxxexecwin.h \ 377 $(SOPHYAINCP)pisysdep.h pistdimgapp.h \ 385 $(SOPHYAINCP)zthread.h \ 386 dlftypes.h nobjmgr.h \ 387 $(SOPHYAINCP)anydataobj.h \ 388 $(SOPHYAINCP)ppersist.h \ 389 $(SOPHYAINCP)dvlist.h \ 390 cxxexecwin.h \ 391 $(SOPHYAINCP)pisysdep.h \ 392 pistdimgapp.h \ 378 393 $(SOPHYAINCP)piapplx.h \ 379 394 $(SOPHYAINCP)piapplgen.h \ … … 431 446 $(SOPHYAINCP)pi3dwdg.h \ 432 447 $(SOPHYAINCP)pi3ddrw.h \ 433 $(SOPHYAINCP)pigraph3d.h pisiadw.h\434 $(SOPHYAINCP)pilistx.h \448 $(SOPHYAINCP)pigraph3d.h \ 449 pisiadw.h $(SOPHYAINCP)pilistx.h \ 435 450 $(SOPHYAINCP)pilistgen.h \ 436 451 $(SOPHYAINCP)pistzwin.h \ … … 441 456 442 457 $(SOPHYAOBJP)flowmodex.o: flowmodex.cc \ 443 $(SOPHYAINCP)sopnamsp.h flowmodex.h \ 458 $(SOPHYAINCP)sopnamsp.h \ 459 flowmodex.h \ 444 460 $(SOPHYAINCP)machdefs.h piacmd.h \ 445 461 $(SOPHYAINCP)commander.h \ … … 458 474 $(SOPHYAINCP)timestamp.h \ 459 475 $(SOPHYAINCP)ctimer.h \ 460 $(SOPHYAINCP)zthread.h dlftypes.h \ 461 nobjmgr.h $(SOPHYAINCP)anydataobj.h \ 476 $(SOPHYAINCP)zthread.h \ 477 dlftypes.h nobjmgr.h \ 478 $(SOPHYAINCP)anydataobj.h \ 462 479 $(SOPHYAINCP)ppersist.h \ 463 480 $(SOPHYAINCP)dvlist.h pi2dvec.h \ 464 pistdimgapp.h $(SOPHYAINCP)pisysdep.h \ 481 pistdimgapp.h \ 482 $(SOPHYAINCP)pisysdep.h \ 465 483 $(SOPHYAINCP)piapplx.h \ 466 484 $(SOPHYAINCP)piapplgen.h \ … … 518 536 $(SOPHYAINCP)pi3dwdg.h \ 519 537 $(SOPHYAINCP)pi3ddrw.h \ 520 $(SOPHYAINCP)pigraph3d.h pisiadw.h\521 $(SOPHYAINCP)pilistx.h \538 $(SOPHYAINCP)pigraph3d.h \ 539 pisiadw.h $(SOPHYAINCP)pilistx.h \ 522 540 $(SOPHYAINCP)pilistgen.h \ 523 541 $(SOPHYAINCP)pistzwin.h \ … … 529 547 $(SOPHYAINCP)ntuple.h \ 530 548 $(SOPHYAINCP)ntupintf.h \ 531 $(SOPHYAINCP)pidrawer.h nomgadapter.h \ 549 $(SOPHYAINCP)pidrawer.h \ 550 nomgadapter.h \ 532 551 $(SOPHYAINCP)parradapter.h \ 533 552 $(SOPHYAINCP)generalfit.h \ … … 567 586 $(SOPHYAINCP)timestamp.h \ 568 587 $(SOPHYAINCP)ctimer.h \ 569 $(SOPHYAINCP)zthread.h dlftypes.h \ 570 graphexecut.h $(SOPHYAINCP)strutilxx.h \ 571 pistdimgapp.h $(SOPHYAINCP)pisysdep.h \ 588 $(SOPHYAINCP)zthread.h \ 589 dlftypes.h graphexecut.h \ 590 $(SOPHYAINCP)strutilxx.h \ 591 pistdimgapp.h \ 592 $(SOPHYAINCP)pisysdep.h \ 572 593 $(SOPHYAINCP)piapplx.h \ 573 594 $(SOPHYAINCP)piapplgen.h \ … … 625 646 $(SOPHYAINCP)pi3dwdg.h \ 626 647 $(SOPHYAINCP)pi3ddrw.h \ 627 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 648 $(SOPHYAINCP)pigraph3d.h \ 649 nobjmgr.h \ 628 650 $(SOPHYAINCP)anydataobj.h \ 629 651 $(SOPHYAINCP)ppersist.h \ … … 634 656 $(SOPHYAINCP)piperiodx.h \ 635 657 $(SOPHYAINCP)pitherm.h \ 636 $(SOPHYAINCP)resusage.h nomgadapter.h \ 658 $(SOPHYAINCP)resusage.h \ 659 nomgadapter.h \ 637 660 $(SOPHYAINCP)pidrawer.h \ 638 661 $(SOPHYAINCP)parradapter.h \ … … 663 686 $(SOPHYAINCP)strutil.h \ 664 687 $(SOPHYAINCP)datatypes.h \ 665 $(SOPHYAINCP)machdefs.h nobjmgr.h \ 666 $(SOPHYAINCP)machdefs.h \ 667 $(SOPHYAINCP)anydataobj.h \ 668 $(SOPHYAINCP)ppersist.h \ 669 $(SOPHYAINCP)pexceptions.h \ 670 $(SOPHYAINCP)gnumd5.h \ 671 $(SOPHYAINCP)ppfbinstream.h \ 672 $(SOPHYAINCP)rawstream.h \ 673 $(SOPHYAINCP)ppfnametag.h \ 674 $(SOPHYAINCP)ppersist.h \ 675 $(SOPHYAINCP)dvlist.h \ 676 $(SOPHYAINCP)objfio.h \ 677 $(SOPHYAINCP)anydataobj.h \ 678 $(SOPHYAINCP)mutyv.h \ 679 $(SOPHYAINCP)timestamp.h dlftypes.h \ 680 servnobjm.h $(SOPHYAINCP)pdlmgr.h \ 681 $(SOPHYAINCP)zthread.h nomgadapter.h \ 688 $(SOPHYAINCP)machdefs.h \ 689 nobjmgr.h \ 690 $(SOPHYAINCP)machdefs.h \ 691 $(SOPHYAINCP)anydataobj.h \ 692 $(SOPHYAINCP)ppersist.h \ 693 $(SOPHYAINCP)pexceptions.h \ 694 $(SOPHYAINCP)gnumd5.h \ 695 $(SOPHYAINCP)ppfbinstream.h \ 696 $(SOPHYAINCP)rawstream.h \ 697 $(SOPHYAINCP)ppfnametag.h \ 698 $(SOPHYAINCP)ppersist.h \ 699 $(SOPHYAINCP)dvlist.h \ 700 $(SOPHYAINCP)objfio.h \ 701 $(SOPHYAINCP)anydataobj.h \ 702 $(SOPHYAINCP)mutyv.h \ 703 $(SOPHYAINCP)timestamp.h \ 704 dlftypes.h servnobjm.h \ 705 $(SOPHYAINCP)pdlmgr.h \ 706 $(SOPHYAINCP)zthread.h \ 707 nomgadapter.h \ 682 708 $(SOPHYAINCP)pidrawer.h \ 683 709 $(SOPHYAINCP)pibwdggen.h \ … … 720 746 $(SOPHYAINCP)utils.h \ 721 747 $(SOPHYAINCP)perrors.h \ 722 $(SOPHYAINCP)fmath.h pistdimgapp.h \ 748 $(SOPHYAINCP)fmath.h \ 749 pistdimgapp.h \ 723 750 $(SOPHYAINCP)pisysdep.h \ 724 751 $(SOPHYAINCP)piapplx.h \ … … 756 783 $(SOPHYAINCP)pi3dwdg.h \ 757 784 $(SOPHYAINCP)pi3ddrw.h \ 758 $(SOPHYAINCP)pigraph3d.h piacmd.h \ 785 $(SOPHYAINCP)pigraph3d.h \ 786 piacmd.h \ 759 787 $(SOPHYAINCP)commander.h \ 760 788 $(SOPHYAINCP)pdlmgr.h \ … … 766 794 $(SOPHYAINCP)pitherm.h \ 767 795 $(SOPHYAINCP)resusage.h \ 768 $(SOPHYAINCP)tvector.h pitvmaad.h \ 796 $(SOPHYAINCP)tvector.h \ 797 pitvmaad.h \ 769 798 $(SOPHYAINCP)tmatrix.h \ 770 799 $(SOPHYAINCP)piyfxdrw.h \ 771 $(SOPHYAINCP)pisurfdr.h pipodrw.h\772 $(SOPHYAINCP)histos2.h \800 $(SOPHYAINCP)pisurfdr.h \ 801 pipodrw.h $(SOPHYAINCP)histos2.h \ 773 802 $(SOPHYAINCP)histos.h pintuple.h \ 774 pintup3d.h $(SOPHYAINCP)pi3ddrw.h pigfd1.h \ 775 $(SOPHYAINCP)generaldata.h pigfd2.h 803 pintup3d.h \ 804 $(SOPHYAINCP)pi3ddrw.h pigfd1.h \ 805 $(SOPHYAINCP)generaldata.h \ 806 pigfd2.h 776 807 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ nobjmgr.cc 777 808 778 809 $(SOPHYAOBJP)nomgadapter.o: nomgadapter.cc \ 779 810 $(SOPHYAINCP)sopnamsp.h \ 780 $(SOPHYAINCP)machdefs.h nomgadapter.h \ 811 $(SOPHYAINCP)machdefs.h \ 812 nomgadapter.h \ 781 813 $(SOPHYAINCP)ppersist.h \ 782 814 $(SOPHYAINCP)machdefs.h \ … … 837 869 $(SOPHYAOBJP)nomgfdadapter.o: nomgfdadapter.cc \ 838 870 $(SOPHYAINCP)sopnamsp.h \ 839 $(SOPHYAINCP)machdefs.h nomgfdadapter.h \ 840 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 871 $(SOPHYAINCP)machdefs.h \ 872 nomgfdadapter.h nomgadapter.h \ 873 $(SOPHYAINCP)ppersist.h \ 841 874 $(SOPHYAINCP)machdefs.h \ 842 875 $(SOPHYAINCP)pexceptions.h \ … … 904 937 $(SOPHYAOBJP)nomhistadapter.o: nomhistadapter.cc \ 905 938 $(SOPHYAINCP)sopnamsp.h \ 906 $(SOPHYAINCP)machdefs.h nomhistadapter.h \ 907 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 939 $(SOPHYAINCP)machdefs.h \ 940 nomhistadapter.h nomgadapter.h \ 941 $(SOPHYAINCP)ppersist.h \ 908 942 $(SOPHYAINCP)machdefs.h \ 909 943 $(SOPHYAINCP)pexceptions.h \ … … 967 1001 $(SOPHYAINCP)xntuple.h \ 968 1002 $(SOPHYAINCP)basedtable.h \ 969 $(SOPHYAINCP)segdatablock.h pihisto.h \ 970 pihisto2d.h $(SOPHYAINCP)pisysdep.h \ 1003 $(SOPHYAINCP)segdatablock.h \ 1004 pihisto.h pihisto2d.h \ 1005 $(SOPHYAINCP)pisysdep.h \ 971 1006 $(SOPHYAINCP)pimenux.h \ 972 1007 $(SOPHYAINCP)pimenugen.h \ … … 1009 1044 $(SOPHYAINCP)machdefs.h \ 1010 1045 $(SOPHYAINCP)datatype.h \ 1011 $(SOPHYAINCP)machdefs.h nomimagadapter.h \ 1012 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 1046 $(SOPHYAINCP)machdefs.h \ 1047 nomimagadapter.h nomgadapter.h \ 1048 $(SOPHYAINCP)ppersist.h \ 1013 1049 $(SOPHYAINCP)pexceptions.h \ 1014 1050 $(SOPHYAINCP)gnumd5.h \ … … 1064 1100 $(SOPHYAINCP)fmath.h \ 1065 1101 $(SOPHYAINCP)cimage.h \ 1066 $(SOPHYAINCP)fioarr.h pimgadapter.h \ 1102 $(SOPHYAINCP)fioarr.h \ 1103 pimgadapter.h \ 1067 1104 $(SOPHYAINCP)objfitter.h \ 1068 1105 $(SOPHYAINCP)cimage.h \ … … 1077 1114 $(SOPHYAINCP)machdefs.h \ 1078 1115 $(SOPHYAINCP)datatype.h \ 1079 $(SOPHYAINCP)machdefs.h nomskymapadapter.h \ 1080 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 1116 $(SOPHYAINCP)machdefs.h \ 1117 nomskymapadapter.h nomgadapter.h \ 1118 $(SOPHYAINCP)ppersist.h \ 1081 1119 $(SOPHYAINCP)pexceptions.h \ 1082 1120 $(SOPHYAINCP)gnumd5.h \ … … 1151 1189 $(SOPHYAINCP)fiospherehealpix.h \ 1152 1190 $(SOPHYAINCP)fiolocalmap.h \ 1153 $(SOPHYAINCP)fiosphereecp.h pitvmaad.h \ 1191 $(SOPHYAINCP)fiosphereecp.h \ 1192 pitvmaad.h \ 1154 1193 $(SOPHYAINCP)tvector.h \ 1155 1194 $(SOPHYAINCP)complexios.h … … 1224 1263 $(SOPHYAINCP)machdefs.h \ 1225 1264 $(SOPHYAINCP)datatype.h \ 1226 $(SOPHYAINCP)machdefs.h nomtarradapter.h \ 1227 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 1265 $(SOPHYAINCP)machdefs.h \ 1266 nomtarradapter.h nomgadapter.h \ 1267 $(SOPHYAINCP)ppersist.h \ 1228 1268 $(SOPHYAINCP)pexceptions.h \ 1229 1269 $(SOPHYAINCP)gnumd5.h \ … … 1279 1319 $(SOPHYAINCP)fmath.h \ 1280 1320 $(SOPHYAINCP)tarray.h \ 1281 $(SOPHYAINCP)tvector.h pitvmaad.h \ 1321 $(SOPHYAINCP)tvector.h \ 1322 pitvmaad.h \ 1282 1323 $(SOPHYAINCP)tmatrix.h \ 1283 1324 $(SOPHYAINCP)piyfxdrw.h \ … … 1326 1367 $(SOPHYAINCP)generaldata.h \ 1327 1368 $(SOPHYAINCP)ntupintf.h \ 1328 $(SOPHYAINCP)poly.h nomtmatvecadapter.h \ 1329 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 1369 $(SOPHYAINCP)poly.h \ 1370 nomtmatvecadapter.h nomgadapter.h \ 1371 $(SOPHYAINCP)ppersist.h \ 1330 1372 $(SOPHYAINCP)anydataobj.h \ 1331 1373 $(SOPHYAINCP)pidrawer.h \ … … 1358 1400 $(SOPHYAINCP)piyfxdrw.h \ 1359 1401 $(SOPHYAINCP)parradapter.h \ 1360 $(SOPHYAINCP)pidrawer.h pitvmaad.h \ 1361 $(SOPHYAINCP)fioarr.h nobjmgr.h \ 1362 $(SOPHYAINCP)dvlist.h dlftypes.h 1402 $(SOPHYAINCP)pidrawer.h \ 1403 pitvmaad.h $(SOPHYAINCP)fioarr.h \ 1404 nobjmgr.h $(SOPHYAINCP)dvlist.h \ 1405 dlftypes.h 1363 1406 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ nomtmatvecadapter.cc 1364 1407 … … 1400 1443 $(SOPHYAINCP)datatable.h \ 1401 1444 $(SOPHYAINCP)basedtable.h \ 1402 $(SOPHYAINCP)segdatablock.h pawexecut.h \ 1403 $(SOPHYAINCP)machdefs.h \ 1404 $(SOPHYAINCP)anydataobj.h piacmd.h \ 1445 $(SOPHYAINCP)segdatablock.h \ 1446 pawexecut.h \ 1447 $(SOPHYAINCP)machdefs.h \ 1448 $(SOPHYAINCP)anydataobj.h \ 1449 piacmd.h \ 1405 1450 $(SOPHYAINCP)commander.h \ 1406 1451 $(SOPHYAINCP)pdlmgr.h \ 1407 1452 $(SOPHYAINCP)ctimer.h \ 1408 $(SOPHYAINCP)zthread.h dlftypes.h \ 1409 nobjmgr.h $(SOPHYAINCP)ppersist.h \ 1410 $(SOPHYAINCP)dvlist.h servnobjm.h \ 1411 $(SOPHYAINCP)pdlmgr.h nomgadapter.h \ 1453 $(SOPHYAINCP)zthread.h \ 1454 dlftypes.h nobjmgr.h \ 1455 $(SOPHYAINCP)ppersist.h \ 1456 $(SOPHYAINCP)dvlist.h \ 1457 servnobjm.h \ 1458 $(SOPHYAINCP)pdlmgr.h \ 1459 nomgadapter.h \ 1412 1460 $(SOPHYAINCP)pidrawer.h \ 1413 1461 $(SOPHYAINCP)pibwdggen.h \ … … 1436 1484 $(SOPHYAINCP)generalfit.h \ 1437 1485 $(SOPHYAINCP)generaldata.h \ 1438 $(SOPHYAINCP)poly.h pistdimgapp.h \ 1486 $(SOPHYAINCP)poly.h \ 1487 pistdimgapp.h \ 1439 1488 $(SOPHYAINCP)pisysdep.h \ 1440 1489 $(SOPHYAINCP)piapplx.h \ … … 1472 1521 $(SOPHYAINCP)pi3dwdg.h \ 1473 1522 $(SOPHYAINCP)pi3ddrw.h \ 1474 $(SOPHYAINCP)pigraph3d.h pisiadw.h\1475 $(SOPHYAINCP)pilistx.h \1523 $(SOPHYAINCP)pigraph3d.h \ 1524 pisiadw.h $(SOPHYAINCP)pilistx.h \ 1476 1525 $(SOPHYAINCP)pilistgen.h \ 1477 1526 $(SOPHYAINCP)pistzwin.h \ 1478 1527 $(SOPHYAINCP)piperiodx.h \ 1479 1528 $(SOPHYAINCP)pitherm.h \ 1480 $(SOPHYAINCP)resusage.h pihisto.h\1481 $(SOPHYAINCP)tmatrix.h \1529 $(SOPHYAINCP)resusage.h \ 1530 pihisto.h $(SOPHYAINCP)tmatrix.h \ 1482 1531 $(SOPHYAINCP)tvector.h 1483 1532 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ pawexecut.cc … … 1514 1563 $(SOPHYAINCP)ntupintf.h \ 1515 1564 $(SOPHYAINCP)nbtri.h pi2dvec.h \ 1516 pistdimgapp.h $(SOPHYAINCP)pisysdep.h \ 1565 pistdimgapp.h \ 1566 $(SOPHYAINCP)pisysdep.h \ 1517 1567 $(SOPHYAINCP)piapplx.h \ 1518 1568 $(SOPHYAINCP)piapplgen.h \ … … 1570 1620 $(SOPHYAINCP)pi3dwdg.h \ 1571 1621 $(SOPHYAINCP)pi3ddrw.h \ 1572 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 1573 $(SOPHYAINCP)anydataobj.h \ 1574 $(SOPHYAINCP)ppersist.h \ 1575 $(SOPHYAINCP)dvlist.h dlftypes.h piacmd.h \ 1622 $(SOPHYAINCP)pigraph3d.h \ 1623 nobjmgr.h \ 1624 $(SOPHYAINCP)anydataobj.h \ 1625 $(SOPHYAINCP)ppersist.h \ 1626 $(SOPHYAINCP)dvlist.h dlftypes.h \ 1627 piacmd.h \ 1576 1628 $(SOPHYAINCP)commander.h \ 1577 1629 $(SOPHYAINCP)pdlmgr.h \ … … 1588 1640 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ pi2dvec.cc 1589 1641 1590 $(SOPHYAOBJP)piacmd.o: piacmd.cc $(SOPHYAINCP)sopnamsp.h \ 1591 piacmd.h $(SOPHYAINCP)machdefs.h \ 1642 $(SOPHYAOBJP)piacmd.o: piacmd.cc \ 1643 $(SOPHYAINCP)sopnamsp.h piacmd.h \ 1644 $(SOPHYAINCP)machdefs.h \ 1592 1645 $(SOPHYAINCP)commander.h \ 1593 1646 $(SOPHYAINCP)machdefs.h \ … … 1605 1658 $(SOPHYAINCP)timestamp.h \ 1606 1659 $(SOPHYAINCP)ctimer.h \ 1607 $(SOPHYAINCP)zthread.h dlftypes.h\1608 $(SOPHYAINCP)pdlmgr.h \1660 $(SOPHYAINCP)zthread.h \ 1661 dlftypes.h $(SOPHYAINCP)pdlmgr.h \ 1609 1662 $(SOPHYAINCP)ctimer.h \ 1610 1663 $(SOPHYAINCP)strutil.h \ 1611 1664 $(SOPHYAINCP)strutilxx.h \ 1612 $(SOPHYAINCP)srandgen.h pistdimgapp.h \ 1665 $(SOPHYAINCP)srandgen.h \ 1666 pistdimgapp.h \ 1613 1667 $(SOPHYAINCP)pisysdep.h \ 1614 1668 $(SOPHYAINCP)piapplx.h \ … … 1667 1721 $(SOPHYAINCP)pi3dwdg.h \ 1668 1722 $(SOPHYAINCP)pi3ddrw.h \ 1669 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 1723 $(SOPHYAINCP)pigraph3d.h \ 1724 nobjmgr.h \ 1670 1725 $(SOPHYAINCP)anydataobj.h \ 1671 1726 $(SOPHYAINCP)ppersist.h \ … … 1676 1731 $(SOPHYAINCP)piperiodx.h \ 1677 1732 $(SOPHYAINCP)pitherm.h \ 1678 $(SOPHYAINCP)resusage.h basexecut.h\1679 graphexecut.h piafitting.h nomgadapter.h \1733 $(SOPHYAINCP)resusage.h \ 1734 basexecut.h graphexecut.h piafitting.h nomgadapter.h \ 1680 1735 $(SOPHYAINCP)pidrawer.h \ 1681 1736 $(SOPHYAINCP)parradapter.h \ … … 1697 1752 $(SOPHYAINCP)perrors.h \ 1698 1753 $(SOPHYAINCP)fmath.h \ 1699 $(SOPHYAINCP)tvector.h pawexecut.h\1700 cxxexecutor.h cxxexecwin.h contmodex.h flowmodex.h1754 $(SOPHYAINCP)tvector.h \ 1755 pawexecut.h cxxexecutor.h cxxexecwin.h contmodex.h flowmodex.h 1701 1756 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ piacmd.cc 1702 1757 … … 1748 1803 $(SOPHYAINCP)cimage.h \ 1749 1804 $(SOPHYAINCP)histos2.h \ 1750 $(SOPHYAINCP)hisprof.h piafitting.h \ 1751 $(SOPHYAINCP)machdefs.h nomgadapter.h \ 1805 $(SOPHYAINCP)hisprof.h \ 1806 piafitting.h \ 1807 $(SOPHYAINCP)machdefs.h \ 1808 nomgadapter.h \ 1752 1809 $(SOPHYAINCP)ppersist.h \ 1753 1810 $(SOPHYAINCP)anydataobj.h \ … … 1776 1833 $(SOPHYAINCP)lut.h \ 1777 1834 $(SOPHYAINCP)ntupintf.h \ 1778 $(SOPHYAINCP)pdlmgr.h dlftypes.h piacmd.h \ 1835 $(SOPHYAINCP)pdlmgr.h dlftypes.h \ 1836 piacmd.h \ 1779 1837 $(SOPHYAINCP)commander.h \ 1780 1838 $(SOPHYAINCP)pdlmgr.h \ 1781 1839 $(SOPHYAINCP)ctimer.h \ 1782 1840 $(SOPHYAINCP)zthread.h nobjmgr.h \ 1783 $(SOPHYAINCP)dvlist.h pistdimgapp.h \ 1841 $(SOPHYAINCP)dvlist.h \ 1842 pistdimgapp.h \ 1784 1843 $(SOPHYAINCP)pisysdep.h \ 1785 1844 $(SOPHYAINCP)piapplx.h \ … … 1817 1876 $(SOPHYAINCP)pi3dwdg.h \ 1818 1877 $(SOPHYAINCP)pi3ddrw.h \ 1819 $(SOPHYAINCP)pigraph3d.h pisiadw.h\1820 $(SOPHYAINCP)pilistx.h \1878 $(SOPHYAINCP)pigraph3d.h \ 1879 pisiadw.h $(SOPHYAINCP)pilistx.h \ 1821 1880 $(SOPHYAINCP)pilistgen.h \ 1822 1881 $(SOPHYAINCP)pistzwin.h \ 1823 1882 $(SOPHYAINCP)piperiodx.h \ 1824 1883 $(SOPHYAINCP)pitherm.h \ 1825 $(SOPHYAINCP)resusage.h nomhistadapter.h \ 1884 $(SOPHYAINCP)resusage.h \ 1885 nomhistadapter.h \ 1826 1886 $(SOPHYAINCP)histerr.h \ 1827 1887 $(SOPHYAINCP)xntuple.h \ … … 1832 1892 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ piafitting.cc 1833 1893 1834 $(SOPHYAOBJP)pigfd1.o: pigfd1.cc $(SOPHYAINCP)sopnamsp.h \ 1835 pigfd1.h $(SOPHYAINCP)generaldata.h \ 1894 $(SOPHYAOBJP)pigfd1.o: pigfd1.cc \ 1895 $(SOPHYAINCP)sopnamsp.h pigfd1.h \ 1896 $(SOPHYAINCP)generaldata.h \ 1836 1897 $(SOPHYAINCP)objfio.h \ 1837 1898 $(SOPHYAINCP)machdefs.h \ … … 1883 1944 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ pigfd1.cc 1884 1945 1885 $(SOPHYAOBJP)pigfd2.o: pigfd2.cc $(SOPHYAINCP)sopnamsp.h \ 1886 pigfd2.h $(SOPHYAINCP)generaldata.h \ 1946 $(SOPHYAOBJP)pigfd2.o: pigfd2.cc \ 1947 $(SOPHYAINCP)sopnamsp.h pigfd2.h \ 1948 $(SOPHYAINCP)generaldata.h \ 1887 1949 $(SOPHYAINCP)objfio.h \ 1888 1950 $(SOPHYAINCP)machdefs.h \ … … 1971 2033 $(SOPHYAINCP)psfile.h \ 1972 2034 $(SOPHYAINCP)pigraphps.h \ 1973 $(SOPHYAINCP)sopnamsp.h pihisto2d.h \ 2035 $(SOPHYAINCP)sopnamsp.h \ 2036 pihisto2d.h \ 1974 2037 $(SOPHYAINCP)pimenux.h \ 1975 2038 $(SOPHYAINCP)pimenubarx.h \ … … 2014 2077 2015 2078 $(SOPHYAOBJP)pihisto.o: pihisto.cc \ 2016 $(SOPHYAINCP)sopnamsp.h pihisto.h\2017 $(SOPHYAINCP)histos.h \2079 $(SOPHYAINCP)sopnamsp.h \ 2080 pihisto.h $(SOPHYAINCP)histos.h \ 2018 2081 $(SOPHYAINCP)objfio.h \ 2019 2082 $(SOPHYAINCP)machdefs.h \ … … 2065 2128 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ pihisto.cc 2066 2129 2067 $(SOPHYAOBJP)piinit.o: piinit.cc $(SOPHYAINCP)sopnamsp.h \ 2130 $(SOPHYAOBJP)piinit.o: piinit.cc \ 2131 $(SOPHYAINCP)sopnamsp.h \ 2068 2132 $(SOPHYAINCP)machdefs.h piinit.h \ 2069 2133 $(SOPHYAINCP)sambainit.h \ … … 2072 2136 $(SOPHYAINCP)machdefs.h \ 2073 2137 $(SOPHYAINCP)ntoolsinit.h \ 2074 $(SOPHYAINCP)tarrinit.h pistdimgapp.h \ 2138 $(SOPHYAINCP)tarrinit.h \ 2139 pistdimgapp.h \ 2075 2140 $(SOPHYAINCP)pisysdep.h \ 2076 2141 $(SOPHYAINCP)piapplx.h \ … … 2129 2194 $(SOPHYAINCP)pi3dwdg.h \ 2130 2195 $(SOPHYAINCP)pi3ddrw.h \ 2131 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 2132 $(SOPHYAINCP)anydataobj.h \ 2133 $(SOPHYAINCP)ppersist.h \ 2134 $(SOPHYAINCP)pexceptions.h \ 2135 $(SOPHYAINCP)gnumd5.h \ 2136 $(SOPHYAINCP)ppfbinstream.h \ 2137 $(SOPHYAINCP)rawstream.h \ 2138 $(SOPHYAINCP)ppfnametag.h \ 2139 $(SOPHYAINCP)ppersist.h \ 2140 $(SOPHYAINCP)dvlist.h \ 2141 $(SOPHYAINCP)objfio.h \ 2142 $(SOPHYAINCP)anydataobj.h \ 2143 $(SOPHYAINCP)mutyv.h \ 2144 $(SOPHYAINCP)timestamp.h dlftypes.h \ 2145 piacmd.h $(SOPHYAINCP)commander.h \ 2196 $(SOPHYAINCP)pigraph3d.h \ 2197 nobjmgr.h \ 2198 $(SOPHYAINCP)anydataobj.h \ 2199 $(SOPHYAINCP)ppersist.h \ 2200 $(SOPHYAINCP)pexceptions.h \ 2201 $(SOPHYAINCP)gnumd5.h \ 2202 $(SOPHYAINCP)ppfbinstream.h \ 2203 $(SOPHYAINCP)rawstream.h \ 2204 $(SOPHYAINCP)ppfnametag.h \ 2205 $(SOPHYAINCP)ppersist.h \ 2206 $(SOPHYAINCP)dvlist.h \ 2207 $(SOPHYAINCP)objfio.h \ 2208 $(SOPHYAINCP)anydataobj.h \ 2209 $(SOPHYAINCP)mutyv.h \ 2210 $(SOPHYAINCP)timestamp.h \ 2211 dlftypes.h piacmd.h \ 2212 $(SOPHYAINCP)commander.h \ 2146 2213 $(SOPHYAINCP)pdlmgr.h \ 2147 2214 $(SOPHYAINCP)dvlist.h \ … … 2153 2220 $(SOPHYAINCP)piperiodx.h \ 2154 2221 $(SOPHYAINCP)pitherm.h \ 2155 $(SOPHYAINCP)resusage.h servnobjm.h \ 2156 $(SOPHYAINCP)pdlmgr.h nomhistadapter.h \ 2157 nomgadapter.h $(SOPHYAINCP)pidrawer.h \ 2222 $(SOPHYAINCP)resusage.h \ 2223 servnobjm.h \ 2224 $(SOPHYAINCP)pdlmgr.h \ 2225 nomhistadapter.h nomgadapter.h \ 2226 $(SOPHYAINCP)pidrawer.h \ 2158 2227 $(SOPHYAINCP)parradapter.h \ 2159 2228 $(SOPHYAINCP)ntupintf.h \ … … 2185 2254 nomgfdadapter.h nomimagadapter.h \ 2186 2255 $(SOPHYAINCP)cimage.h \ 2187 $(SOPHYAINCP)fioarr.h nomtmatvecadapter.h \ 2256 $(SOPHYAINCP)fioarr.h \ 2257 nomtmatvecadapter.h \ 2188 2258 $(SOPHYAINCP)tmatrix.h \ 2189 2259 $(SOPHYAINCP)generaldata.h \ 2190 nomtarradapter.h $(SOPHYAINCP)tarray.h \ 2260 nomtarradapter.h \ 2261 $(SOPHYAINCP)tarray.h \ 2191 2262 $(SOPHYAINCP)datatable.h \ 2192 2263 $(SOPHYAINCP)basedtable.h \ … … 2195 2266 $(SOPHYAINCP)ppfswapper.h \ 2196 2267 $(SOPHYAINCP)ppftpointerio.h \ 2197 nomskymapadapter.h $(SOPHYAINCP)pixelmap.h \ 2268 nomskymapadapter.h \ 2269 $(SOPHYAINCP)pixelmap.h \ 2198 2270 $(SOPHYAINCP)spherepos.h \ 2199 2271 $(SOPHYAINCP)unitvector.h \ … … 2214 2286 $(SOPHYAINCP)gaussfilt.h \ 2215 2287 nomspecrespadapter.h \ 2216 $(SOPHYAINCP)specresp.h 2288 $(SOPHYAINCP)specresp.h \ 2289 piaversion.h 2217 2290 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ piinit.cc 2218 2291 2219 2292 $(SOPHYAOBJP)pintup3d.o: pintup3d.cc \ 2220 $(SOPHYAINCP)sopnamsp.h pintup3d.h \ 2293 $(SOPHYAINCP)sopnamsp.h \ 2294 pintup3d.h \ 2221 2295 $(SOPHYAINCP)ntupintf.h \ 2222 2296 $(SOPHYAINCP)machdefs.h \ … … 2248 2322 2249 2323 $(SOPHYAOBJP)pintuple.o: pintuple.cc \ 2250 $(SOPHYAINCP)sopnamsp.h pintuple.h \ 2324 $(SOPHYAINCP)sopnamsp.h \ 2325 pintuple.h \ 2251 2326 $(SOPHYAINCP)ntupintf.h \ 2252 2327 $(SOPHYAINCP)machdefs.h \ … … 2275 2350 2276 2351 $(SOPHYAOBJP)pipodrw.o: pipodrw.cc \ 2277 $(SOPHYAINCP)sopnamsp.h pipodrw.h \ 2352 $(SOPHYAINCP)sopnamsp.h \ 2353 pipodrw.h \ 2278 2354 $(SOPHYAINCP)machdefs.h \ 2279 2355 $(SOPHYAINCP)pidrawer.h \ … … 2340 2416 $(SOPHYAINCP)ctimer.h \ 2341 2417 $(SOPHYAINCP)nbmath.h \ 2342 $(SOPHYAINCP)smathconst.h pistdimgapp.h \ 2418 $(SOPHYAINCP)smathconst.h \ 2419 pistdimgapp.h \ 2343 2420 $(SOPHYAINCP)pisysdep.h \ 2344 2421 $(SOPHYAINCP)piapplx.h \ … … 2397 2474 $(SOPHYAINCP)pi3dwdg.h \ 2398 2475 $(SOPHYAINCP)pi3ddrw.h \ 2399 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 2400 $(SOPHYAINCP)anydataobj.h \ 2401 $(SOPHYAINCP)ppersist.h \ 2402 $(SOPHYAINCP)gnumd5.h \ 2403 $(SOPHYAINCP)ppfbinstream.h \ 2404 $(SOPHYAINCP)rawstream.h \ 2405 $(SOPHYAINCP)ppfnametag.h \ 2406 $(SOPHYAINCP)ppersist.h \ 2407 $(SOPHYAINCP)dvlist.h \ 2408 $(SOPHYAINCP)objfio.h \ 2409 $(SOPHYAINCP)anydataobj.h \ 2410 $(SOPHYAINCP)mutyv.h \ 2411 $(SOPHYAINCP)timestamp.h dlftypes.h \ 2412 piacmd.h $(SOPHYAINCP)commander.h \ 2476 $(SOPHYAINCP)pigraph3d.h \ 2477 nobjmgr.h \ 2478 $(SOPHYAINCP)anydataobj.h \ 2479 $(SOPHYAINCP)ppersist.h \ 2480 $(SOPHYAINCP)gnumd5.h \ 2481 $(SOPHYAINCP)ppfbinstream.h \ 2482 $(SOPHYAINCP)rawstream.h \ 2483 $(SOPHYAINCP)ppfnametag.h \ 2484 $(SOPHYAINCP)ppersist.h \ 2485 $(SOPHYAINCP)dvlist.h \ 2486 $(SOPHYAINCP)objfio.h \ 2487 $(SOPHYAINCP)anydataobj.h \ 2488 $(SOPHYAINCP)mutyv.h \ 2489 $(SOPHYAINCP)timestamp.h \ 2490 dlftypes.h piacmd.h \ 2491 $(SOPHYAINCP)commander.h \ 2413 2492 $(SOPHYAINCP)pdlmgr.h \ 2414 2493 $(SOPHYAINCP)dvlist.h \ … … 2420 2499 $(SOPHYAINCP)piperiodx.h \ 2421 2500 $(SOPHYAINCP)pitherm.h \ 2422 $(SOPHYAINCP)resusage.h servnobjm.h \ 2501 $(SOPHYAINCP)resusage.h \ 2502 servnobjm.h \ 2423 2503 $(SOPHYAINCP)pdlmgr.h 2424 2504 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ pisiadw.cc … … 2453 2533 $(SOPHYAINCP)fioarr.h \ 2454 2534 $(SOPHYAINCP)tvector.h \ 2455 $(SOPHYAINCP)tvector_tsnl.h pistdimgapp.h \ 2535 $(SOPHYAINCP)tvector_tsnl.h \ 2536 pistdimgapp.h \ 2456 2537 $(SOPHYAINCP)pisysdep.h \ 2457 2538 $(SOPHYAINCP)piapplx.h \ … … 2510 2591 $(SOPHYAINCP)pi3dwdg.h \ 2511 2592 $(SOPHYAINCP)pi3ddrw.h \ 2512 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 2513 $(SOPHYAINCP)anydataobj.h \ 2514 $(SOPHYAINCP)ppersist.h \ 2515 $(SOPHYAINCP)dvlist.h dlftypes.h piacmd.h \ 2593 $(SOPHYAINCP)pigraph3d.h \ 2594 nobjmgr.h \ 2595 $(SOPHYAINCP)anydataobj.h \ 2596 $(SOPHYAINCP)ppersist.h \ 2597 $(SOPHYAINCP)dvlist.h dlftypes.h \ 2598 piacmd.h \ 2516 2599 $(SOPHYAINCP)commander.h \ 2517 2600 $(SOPHYAINCP)pdlmgr.h \ … … 2523 2606 $(SOPHYAINCP)piperiodx.h \ 2524 2607 $(SOPHYAINCP)pitherm.h \ 2525 $(SOPHYAINCP)resusage.h servnobjm.h \ 2608 $(SOPHYAINCP)resusage.h \ 2609 servnobjm.h \ 2526 2610 $(SOPHYAINCP)pdlmgr.h \ 2527 2611 $(SOPHYAINCP)psfile.h \ … … 2531 2615 $(SOPHYAINCP)pidrwtools.h \ 2532 2616 $(SOPHYAINCP)piaxestools.h \ 2533 $(SOPHYAINCP)piscdrawwdg.h piinit.h \ 2617 $(SOPHYAINCP)piscdrawwdg.h \ 2618 piinit.h \ 2534 2619 $(SOPHYAINCP)sambainit.h \ 2535 2620 $(SOPHYAINCP)skymapinit.h \ … … 2537 2622 $(SOPHYAINCP)ntoolsinit.h \ 2538 2623 $(SOPHYAINCP)tarrinit.h \ 2539 $(SOPHYAINCP)piversion.h piaversion.h 2624 $(SOPHYAINCP)piversion.h \ 2625 piaversion.h 2540 2626 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ pistdimgapp.cc 2541 2627 2542 2628 $(SOPHYAOBJP)pitvmaad.o: pitvmaad.cc \ 2543 $(SOPHYAINCP)sopnamsp.h pitvmaad.h \ 2629 $(SOPHYAINCP)sopnamsp.h \ 2630 pitvmaad.h \ 2544 2631 $(SOPHYAINCP)machdefs.h \ 2545 2632 $(SOPHYAINCP)parradapter.h \ … … 2585 2672 $(SOPHYAINCP)anydataobj.h \ 2586 2673 $(SOPHYAINCP)mutyv.h \ 2587 $(SOPHYAINCP)timestamp.h dlftypes.h \ 2588 servnobjm.h $(SOPHYAINCP)pdlmgr.h \ 2589 $(SOPHYAINCP)zthread.h nomgadapter.h \ 2674 $(SOPHYAINCP)timestamp.h \ 2675 dlftypes.h servnobjm.h \ 2676 $(SOPHYAINCP)pdlmgr.h \ 2677 $(SOPHYAINCP)zthread.h \ 2678 nomgadapter.h \ 2590 2679 $(SOPHYAINCP)pidrawer.h \ 2591 2680 $(SOPHYAINCP)pibwdggen.h \ … … 2628 2717 $(SOPHYAINCP)utils.h \ 2629 2718 $(SOPHYAINCP)perrors.h \ 2630 $(SOPHYAINCP)fmath.h pistdimgapp.h \ 2719 $(SOPHYAINCP)fmath.h \ 2720 pistdimgapp.h \ 2631 2721 $(SOPHYAINCP)pisysdep.h \ 2632 2722 $(SOPHYAINCP)piapplx.h \ … … 2664 2754 $(SOPHYAINCP)pi3dwdg.h \ 2665 2755 $(SOPHYAINCP)pi3ddrw.h \ 2666 $(SOPHYAINCP)pigraph3d.h piacmd.h \ 2756 $(SOPHYAINCP)pigraph3d.h \ 2757 piacmd.h \ 2667 2758 $(SOPHYAINCP)commander.h \ 2668 2759 $(SOPHYAINCP)pdlmgr.h \ … … 2679 2770 $(SOPHYAINCP)tmatrix.h \ 2680 2771 $(SOPHYAINCP)tvector.h \ 2681 $(SOPHYAINCP)matharr.h pitvmaad.h\2682 $(SOPHYAINCP)ntuple.h \2772 $(SOPHYAINCP)matharr.h \ 2773 pitvmaad.h $(SOPHYAINCP)ntuple.h \ 2683 2774 $(SOPHYAINCP)cimage.h \ 2684 2775 $(SOPHYAINCP)fioarr.h \ … … 2691 2782 $(SOPHYAINCP)segdatablock.h \ 2692 2783 $(SOPHYAINCP)piyfxdrw.h \ 2693 $(SOPHYAINCP)pisurfdr.h pintuple.h\2694 pintup 3d.h $(SOPHYAINCP)pi3ddrw.h \2695 pipodrw.h2784 $(SOPHYAINCP)pisurfdr.h \ 2785 pintuple.h pintup3d.h \ 2786 $(SOPHYAINCP)pi3ddrw.h pipodrw.h 2696 2787 $(CXXCOMPILE) $(CXXTEMPFLG) -o $@ servnobjm.cc 2697 2788
Note:
See TracChangeset
for help on using the changeset viewer.