Changeset 3058 in Sophya for trunk/SophyaPI/PIext


Ignore:
Timestamp:
Aug 13, 2006, 3:15:57 PM (19 years ago)
Author:
cmv
Message:

pawexecutor: copie dans Histo des projections assiciees a un Histo2D cmv 13/8/2006

Location:
trunk/SophyaPI/PIext
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/pawexecut.cc

    r2817 r3058  
    218218kw = "h/plot/2d";
    219219usage = "Specific plot for 2D histogrammes";
    220 usage += "\n h/plot/2d nameh2d show        : infos on 2D histogramme";
     220usage += "\n h/plot/2d nameh2d show        : infos on 2D histogramme projections";
    221221usage += "\n h/plot/2d nameh2d h    [dopt] : plot 2D histogramme";
    222222usage += "\n h/plot/2d nameh2d px   [dopt] : plot X projection";
     
    227227usage += "\n h/plot/2d nameh2d sy n [dopt] : plot Y slice number n";
    228228usage += "\n                      n < 0 means Show Info";
     229piac->RegisterCommand(kw,usage,this,hgrp);
     230
     231kw = "h/2d/geth";
     232usage = "Get histo projections, bandes and slices";
     233usage += "\n h/2d/geth nameh2d         : infos on 2D histogramme projections";
     234usage += "\n h/2d/geth h nameh2d px    : copy X projection into histo h";
     235usage += "\n h/2d/geth h nameh2d py    : copy Y projection into histo h";
     236usage += "\n h/2d/geth h nameh2d bx n  : copy X band number n into histo h";
     237usage += "\n h/2d/geth h nameh2d by n  : copy Y band number n into histo h";
     238usage += "\n h/2d/geth h nameh2d sx n  : copy X slice number n into histo h";
     239usage += "\n h/2d/geth h nameh2d sy n  : copy Y slice number n into histo h";
     240usage += "\n  Related commands: h/plot/2d"; 
    229241piac->RegisterCommand(kw,usage,this,hgrp);
    230242
     
    346358} else if(kw == "h/plot/2d") {
    347359  h_plot_2d(tokens); return(0);
     360} else if(kw == "h/2d/geth") {
     361  h_2d_geth(tokens); return(0);
    348362} else if(kw == "h/put_vec") {
    349363  h_put_vec(tokens); return(0);
     
    18371851
    18381852/* methode */
     1853void 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 */
    18391915int_4 PAWExecutor::decodepawstring(string tokens,string& nameobj
    18401916                                ,string& xexp,string& yexp,string& zexp)
  • trunk/SophyaPI/PIext/pawexecut.h

    r2817 r3058  
    4141  void  h_oper(vector<string>& tokens);
    4242  void  h_plot_2d(vector<string>& tokens);
     43  void  h_2d_geth(vector<string>& tokens);
    4344  void  h_put_vec(vector<string>& tokens);
    4445  void  h_get_vec(vector<string>& tokens);
  • trunk/SophyaPI/PIext/smakefile

    r3007 r3058  
    2929  $(SOPHYAINCP)timestamp.h \
    3030  $(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 \
    3334  $(SOPHYAINCP)ctimer.h \
    34   $(SOPHYAINCP)strutilxx.h pistdimgapp.h \
     35  $(SOPHYAINCP)strutilxx.h \
     36  pistdimgapp.h \
    3537  $(SOPHYAINCP)pisysdep.h \
    3638  $(SOPHYAINCP)piapplx.h \
     
    8991  $(SOPHYAINCP)pi3dwdg.h \
    9092  $(SOPHYAINCP)pi3ddrw.h \
    91   $(SOPHYAINCP)pigraph3d.h nobjmgr.h \
     93  $(SOPHYAINCP)pigraph3d.h \
     94  nobjmgr.h \
    9295  $(SOPHYAINCP)anydataobj.h \
    9396  $(SOPHYAINCP)ppersist.h \
     
    98101  $(SOPHYAINCP)piperiodx.h \
    99102  $(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 \
    102106  $(SOPHYAINCP)parradapter.h \
    103107  $(SOPHYAINCP)ntupintf.h \
     
    131135 
    132136$(SOPHYAOBJP)contmodex.o: contmodex.cc \
    133   $(SOPHYAINCP)sopnamsp.h contmodex.h \
     137  $(SOPHYAINCP)sopnamsp.h \
     138  contmodex.h \
    134139  $(SOPHYAINCP)machdefs.h piacmd.h \
    135140  $(SOPHYAINCP)commander.h \
     
    148153  $(SOPHYAINCP)timestamp.h \
    149154  $(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 \
    152158  $(SOPHYAINCP)ppersist.h \
    153159  $(SOPHYAINCP)dvlist.h \
     
    224230  $(SOPHYAINCP)gp_graph3d.h \
    225231  $(SOPHYAINCP)gp_alloc.h \
    226   $(SOPHYAINCP)pidrawer.h nomgadapter.h \
     232  $(SOPHYAINCP)pidrawer.h \
     233  nomgadapter.h \
    227234  $(SOPHYAINCP)parradapter.h \
    228235  $(SOPHYAINCP)ntupintf.h \
     
    246253 
    247254$(SOPHYAOBJP)cxxexecutor.o: cxxexecutor.cc \
    248   $(SOPHYAINCP)sopnamsp.h cxxexecutor.h \
     255  $(SOPHYAINCP)sopnamsp.h \
     256  cxxexecutor.h \
    249257  $(SOPHYAINCP)machdefs.h piacmd.h \
    250258  $(SOPHYAINCP)commander.h \
     
    263271  $(SOPHYAINCP)timestamp.h \
    264272  $(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 \
    267276  $(SOPHYAINCP)ppersist.h \
    268277  $(SOPHYAINCP)dvlist.h \
    269278  $(SOPHYAINCP)strutilxx.h \
    270   $(SOPHYAINCP)cxxcmplnk.h nomgadapter.h \
     279  $(SOPHYAINCP)cxxcmplnk.h \
     280  nomgadapter.h \
    271281  $(SOPHYAINCP)pidrawer.h \
    272282  $(SOPHYAINCP)pibwdggen.h \
     
    308318  $(SOPHYAINCP)utils.h \
    309319  $(SOPHYAINCP)perrors.h \
    310   $(SOPHYAINCP)fmath.h pistdimgapp.h \
     320  $(SOPHYAINCP)fmath.h \
     321  pistdimgapp.h \
    311322  $(SOPHYAINCP)pisysdep.h \
    312323  $(SOPHYAINCP)piapplx.h \
     
    344355  $(SOPHYAINCP)pi3dwdg.h \
    345356  $(SOPHYAINCP)pi3ddrw.h \
    346   $(SOPHYAINCP)pigraph3d.h pisiadw.h \
    347   $(SOPHYAINCP)pilistx.h \
     357  $(SOPHYAINCP)pigraph3d.h \
     358  pisiadw.h $(SOPHYAINCP)pilistx.h \
    348359  $(SOPHYAINCP)pilistgen.h \
    349360  $(SOPHYAINCP)pistzwin.h \
     
    354365 
    355366$(SOPHYAOBJP)cxxexecwin.o: cxxexecwin.cc \
    356   $(SOPHYAINCP)sopnamsp.h cxxexecutor.h \
     367  $(SOPHYAINCP)sopnamsp.h \
     368  cxxexecutor.h \
    357369  $(SOPHYAINCP)machdefs.h piacmd.h \
    358370  $(SOPHYAINCP)commander.h \
     
    371383  $(SOPHYAINCP)timestamp.h \
    372384  $(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 \
    378393  $(SOPHYAINCP)piapplx.h \
    379394  $(SOPHYAINCP)piapplgen.h \
     
    431446  $(SOPHYAINCP)pi3dwdg.h \
    432447  $(SOPHYAINCP)pi3ddrw.h \
    433   $(SOPHYAINCP)pigraph3d.h pisiadw.h \
    434   $(SOPHYAINCP)pilistx.h \
     448  $(SOPHYAINCP)pigraph3d.h \
     449  pisiadw.h $(SOPHYAINCP)pilistx.h \
    435450  $(SOPHYAINCP)pilistgen.h \
    436451  $(SOPHYAINCP)pistzwin.h \
     
    441456 
    442457$(SOPHYAOBJP)flowmodex.o: flowmodex.cc \
    443   $(SOPHYAINCP)sopnamsp.h flowmodex.h \
     458  $(SOPHYAINCP)sopnamsp.h \
     459  flowmodex.h \
    444460  $(SOPHYAINCP)machdefs.h piacmd.h \
    445461  $(SOPHYAINCP)commander.h \
     
    458474  $(SOPHYAINCP)timestamp.h \
    459475  $(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 \
    462479  $(SOPHYAINCP)ppersist.h \
    463480  $(SOPHYAINCP)dvlist.h pi2dvec.h \
    464   pistdimgapp.h $(SOPHYAINCP)pisysdep.h \
     481  pistdimgapp.h \
     482  $(SOPHYAINCP)pisysdep.h \
    465483  $(SOPHYAINCP)piapplx.h \
    466484  $(SOPHYAINCP)piapplgen.h \
     
    518536  $(SOPHYAINCP)pi3dwdg.h \
    519537  $(SOPHYAINCP)pi3ddrw.h \
    520   $(SOPHYAINCP)pigraph3d.h pisiadw.h \
    521   $(SOPHYAINCP)pilistx.h \
     538  $(SOPHYAINCP)pigraph3d.h \
     539  pisiadw.h $(SOPHYAINCP)pilistx.h \
    522540  $(SOPHYAINCP)pilistgen.h \
    523541  $(SOPHYAINCP)pistzwin.h \
     
    529547  $(SOPHYAINCP)ntuple.h \
    530548  $(SOPHYAINCP)ntupintf.h \
    531   $(SOPHYAINCP)pidrawer.h nomgadapter.h \
     549  $(SOPHYAINCP)pidrawer.h \
     550  nomgadapter.h \
    532551  $(SOPHYAINCP)parradapter.h \
    533552  $(SOPHYAINCP)generalfit.h \
     
    567586  $(SOPHYAINCP)timestamp.h \
    568587  $(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 \
    572593  $(SOPHYAINCP)piapplx.h \
    573594  $(SOPHYAINCP)piapplgen.h \
     
    625646  $(SOPHYAINCP)pi3dwdg.h \
    626647  $(SOPHYAINCP)pi3ddrw.h \
    627   $(SOPHYAINCP)pigraph3d.h nobjmgr.h \
     648  $(SOPHYAINCP)pigraph3d.h \
     649  nobjmgr.h \
    628650  $(SOPHYAINCP)anydataobj.h \
    629651  $(SOPHYAINCP)ppersist.h \
     
    634656  $(SOPHYAINCP)piperiodx.h \
    635657  $(SOPHYAINCP)pitherm.h \
    636   $(SOPHYAINCP)resusage.h nomgadapter.h \
     658  $(SOPHYAINCP)resusage.h \
     659  nomgadapter.h \
    637660  $(SOPHYAINCP)pidrawer.h \
    638661  $(SOPHYAINCP)parradapter.h \
     
    663686  $(SOPHYAINCP)strutil.h \
    664687  $(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 \
    682708  $(SOPHYAINCP)pidrawer.h \
    683709  $(SOPHYAINCP)pibwdggen.h \
     
    720746  $(SOPHYAINCP)utils.h \
    721747  $(SOPHYAINCP)perrors.h \
    722   $(SOPHYAINCP)fmath.h pistdimgapp.h \
     748  $(SOPHYAINCP)fmath.h \
     749  pistdimgapp.h \
    723750  $(SOPHYAINCP)pisysdep.h \
    724751  $(SOPHYAINCP)piapplx.h \
     
    756783  $(SOPHYAINCP)pi3dwdg.h \
    757784  $(SOPHYAINCP)pi3ddrw.h \
    758   $(SOPHYAINCP)pigraph3d.h piacmd.h \
     785  $(SOPHYAINCP)pigraph3d.h \
     786  piacmd.h \
    759787  $(SOPHYAINCP)commander.h \
    760788  $(SOPHYAINCP)pdlmgr.h \
     
    766794  $(SOPHYAINCP)pitherm.h \
    767795  $(SOPHYAINCP)resusage.h \
    768   $(SOPHYAINCP)tvector.h pitvmaad.h \
     796  $(SOPHYAINCP)tvector.h \
     797  pitvmaad.h \
    769798  $(SOPHYAINCP)tmatrix.h \
    770799  $(SOPHYAINCP)piyfxdrw.h \
    771   $(SOPHYAINCP)pisurfdr.h pipodrw.h \
    772   $(SOPHYAINCP)histos2.h \
     800  $(SOPHYAINCP)pisurfdr.h \
     801  pipodrw.h $(SOPHYAINCP)histos2.h \
    773802  $(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
    776807        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  nobjmgr.cc
    777808 
    778809$(SOPHYAOBJP)nomgadapter.o: nomgadapter.cc \
    779810  $(SOPHYAINCP)sopnamsp.h \
    780   $(SOPHYAINCP)machdefs.h nomgadapter.h \
     811  $(SOPHYAINCP)machdefs.h \
     812  nomgadapter.h \
    781813  $(SOPHYAINCP)ppersist.h \
    782814  $(SOPHYAINCP)machdefs.h \
     
    837869$(SOPHYAOBJP)nomgfdadapter.o: nomgfdadapter.cc \
    838870  $(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 \
    841874  $(SOPHYAINCP)machdefs.h \
    842875  $(SOPHYAINCP)pexceptions.h \
     
    904937$(SOPHYAOBJP)nomhistadapter.o: nomhistadapter.cc \
    905938  $(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 \
    908942  $(SOPHYAINCP)machdefs.h \
    909943  $(SOPHYAINCP)pexceptions.h \
     
    9671001  $(SOPHYAINCP)xntuple.h \
    9681002  $(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 \
    9711006  $(SOPHYAINCP)pimenux.h \
    9721007  $(SOPHYAINCP)pimenugen.h \
     
    10091044  $(SOPHYAINCP)machdefs.h \
    10101045  $(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 \
    10131049  $(SOPHYAINCP)pexceptions.h \
    10141050  $(SOPHYAINCP)gnumd5.h \
     
    10641100  $(SOPHYAINCP)fmath.h \
    10651101  $(SOPHYAINCP)cimage.h \
    1066   $(SOPHYAINCP)fioarr.h pimgadapter.h \
     1102  $(SOPHYAINCP)fioarr.h \
     1103  pimgadapter.h \
    10671104  $(SOPHYAINCP)objfitter.h \
    10681105  $(SOPHYAINCP)cimage.h \
     
    10771114  $(SOPHYAINCP)machdefs.h \
    10781115  $(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 \
    10811119  $(SOPHYAINCP)pexceptions.h \
    10821120  $(SOPHYAINCP)gnumd5.h \
     
    11511189  $(SOPHYAINCP)fiospherehealpix.h \
    11521190  $(SOPHYAINCP)fiolocalmap.h \
    1153   $(SOPHYAINCP)fiosphereecp.h pitvmaad.h \
     1191  $(SOPHYAINCP)fiosphereecp.h \
     1192  pitvmaad.h \
    11541193  $(SOPHYAINCP)tvector.h \
    11551194  $(SOPHYAINCP)complexios.h
     
    12241263  $(SOPHYAINCP)machdefs.h \
    12251264  $(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 \
    12281268  $(SOPHYAINCP)pexceptions.h \
    12291269  $(SOPHYAINCP)gnumd5.h \
     
    12791319  $(SOPHYAINCP)fmath.h \
    12801320  $(SOPHYAINCP)tarray.h \
    1281   $(SOPHYAINCP)tvector.h pitvmaad.h \
     1321  $(SOPHYAINCP)tvector.h \
     1322  pitvmaad.h \
    12821323  $(SOPHYAINCP)tmatrix.h \
    12831324  $(SOPHYAINCP)piyfxdrw.h \
     
    13261367  $(SOPHYAINCP)generaldata.h \
    13271368  $(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 \
    13301372  $(SOPHYAINCP)anydataobj.h \
    13311373  $(SOPHYAINCP)pidrawer.h \
     
    13581400  $(SOPHYAINCP)piyfxdrw.h \
    13591401  $(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
    13631406        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  nomtmatvecadapter.cc
    13641407 
     
    14001443  $(SOPHYAINCP)datatable.h \
    14011444  $(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 \
    14051450  $(SOPHYAINCP)commander.h \
    14061451  $(SOPHYAINCP)pdlmgr.h \
    14071452  $(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 \
    14121460  $(SOPHYAINCP)pidrawer.h \
    14131461  $(SOPHYAINCP)pibwdggen.h \
     
    14361484  $(SOPHYAINCP)generalfit.h \
    14371485  $(SOPHYAINCP)generaldata.h \
    1438   $(SOPHYAINCP)poly.h pistdimgapp.h \
     1486  $(SOPHYAINCP)poly.h \
     1487  pistdimgapp.h \
    14391488  $(SOPHYAINCP)pisysdep.h \
    14401489  $(SOPHYAINCP)piapplx.h \
     
    14721521  $(SOPHYAINCP)pi3dwdg.h \
    14731522  $(SOPHYAINCP)pi3ddrw.h \
    1474   $(SOPHYAINCP)pigraph3d.h pisiadw.h \
    1475   $(SOPHYAINCP)pilistx.h \
     1523  $(SOPHYAINCP)pigraph3d.h \
     1524  pisiadw.h $(SOPHYAINCP)pilistx.h \
    14761525  $(SOPHYAINCP)pilistgen.h \
    14771526  $(SOPHYAINCP)pistzwin.h \
    14781527  $(SOPHYAINCP)piperiodx.h \
    14791528  $(SOPHYAINCP)pitherm.h \
    1480   $(SOPHYAINCP)resusage.h pihisto.h \
    1481   $(SOPHYAINCP)tmatrix.h \
     1529  $(SOPHYAINCP)resusage.h \
     1530  pihisto.h $(SOPHYAINCP)tmatrix.h \
    14821531  $(SOPHYAINCP)tvector.h
    14831532        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  pawexecut.cc
     
    15141563  $(SOPHYAINCP)ntupintf.h \
    15151564  $(SOPHYAINCP)nbtri.h pi2dvec.h \
    1516   pistdimgapp.h $(SOPHYAINCP)pisysdep.h \
     1565  pistdimgapp.h \
     1566  $(SOPHYAINCP)pisysdep.h \
    15171567  $(SOPHYAINCP)piapplx.h \
    15181568  $(SOPHYAINCP)piapplgen.h \
     
    15701620  $(SOPHYAINCP)pi3dwdg.h \
    15711621  $(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 \
    15761628  $(SOPHYAINCP)commander.h \
    15771629  $(SOPHYAINCP)pdlmgr.h \
     
    15881640        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  pi2dvec.cc
    15891641 
    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 \
    15921645  $(SOPHYAINCP)commander.h \
    15931646  $(SOPHYAINCP)machdefs.h \
     
    16051658  $(SOPHYAINCP)timestamp.h \
    16061659  $(SOPHYAINCP)ctimer.h \
    1607   $(SOPHYAINCP)zthread.h dlftypes.h \
    1608   $(SOPHYAINCP)pdlmgr.h \
     1660  $(SOPHYAINCP)zthread.h \
     1661  dlftypes.h $(SOPHYAINCP)pdlmgr.h \
    16091662  $(SOPHYAINCP)ctimer.h \
    16101663  $(SOPHYAINCP)strutil.h \
    16111664  $(SOPHYAINCP)strutilxx.h \
    1612   $(SOPHYAINCP)srandgen.h pistdimgapp.h \
     1665  $(SOPHYAINCP)srandgen.h \
     1666  pistdimgapp.h \
    16131667  $(SOPHYAINCP)pisysdep.h \
    16141668  $(SOPHYAINCP)piapplx.h \
     
    16671721  $(SOPHYAINCP)pi3dwdg.h \
    16681722  $(SOPHYAINCP)pi3ddrw.h \
    1669   $(SOPHYAINCP)pigraph3d.h nobjmgr.h \
     1723  $(SOPHYAINCP)pigraph3d.h \
     1724  nobjmgr.h \
    16701725  $(SOPHYAINCP)anydataobj.h \
    16711726  $(SOPHYAINCP)ppersist.h \
     
    16761731  $(SOPHYAINCP)piperiodx.h \
    16771732  $(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 \
    16801735  $(SOPHYAINCP)pidrawer.h \
    16811736  $(SOPHYAINCP)parradapter.h \
     
    16971752  $(SOPHYAINCP)perrors.h \
    16981753  $(SOPHYAINCP)fmath.h \
    1699   $(SOPHYAINCP)tvector.h pawexecut.h \
    1700   cxxexecutor.h cxxexecwin.h contmodex.h flowmodex.h
     1754  $(SOPHYAINCP)tvector.h \
     1755  pawexecut.h cxxexecutor.h cxxexecwin.h contmodex.h flowmodex.h
    17011756        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  piacmd.cc
    17021757 
     
    17481803  $(SOPHYAINCP)cimage.h \
    17491804  $(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 \
    17521809  $(SOPHYAINCP)ppersist.h \
    17531810  $(SOPHYAINCP)anydataobj.h \
     
    17761833  $(SOPHYAINCP)lut.h \
    17771834  $(SOPHYAINCP)ntupintf.h \
    1778   $(SOPHYAINCP)pdlmgr.h dlftypes.h piacmd.h \
     1835  $(SOPHYAINCP)pdlmgr.h dlftypes.h \
     1836  piacmd.h \
    17791837  $(SOPHYAINCP)commander.h \
    17801838  $(SOPHYAINCP)pdlmgr.h \
    17811839  $(SOPHYAINCP)ctimer.h \
    17821840  $(SOPHYAINCP)zthread.h nobjmgr.h \
    1783   $(SOPHYAINCP)dvlist.h pistdimgapp.h \
     1841  $(SOPHYAINCP)dvlist.h \
     1842  pistdimgapp.h \
    17841843  $(SOPHYAINCP)pisysdep.h \
    17851844  $(SOPHYAINCP)piapplx.h \
     
    18171876  $(SOPHYAINCP)pi3dwdg.h \
    18181877  $(SOPHYAINCP)pi3ddrw.h \
    1819   $(SOPHYAINCP)pigraph3d.h pisiadw.h \
    1820   $(SOPHYAINCP)pilistx.h \
     1878  $(SOPHYAINCP)pigraph3d.h \
     1879  pisiadw.h $(SOPHYAINCP)pilistx.h \
    18211880  $(SOPHYAINCP)pilistgen.h \
    18221881  $(SOPHYAINCP)pistzwin.h \
    18231882  $(SOPHYAINCP)piperiodx.h \
    18241883  $(SOPHYAINCP)pitherm.h \
    1825   $(SOPHYAINCP)resusage.h nomhistadapter.h \
     1884  $(SOPHYAINCP)resusage.h \
     1885  nomhistadapter.h \
    18261886  $(SOPHYAINCP)histerr.h \
    18271887  $(SOPHYAINCP)xntuple.h \
     
    18321892        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  piafitting.cc
    18331893 
    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 \
    18361897  $(SOPHYAINCP)objfio.h \
    18371898  $(SOPHYAINCP)machdefs.h \
     
    18831944        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  pigfd1.cc
    18841945 
    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 \
    18871949  $(SOPHYAINCP)objfio.h \
    18881950  $(SOPHYAINCP)machdefs.h \
     
    19712033  $(SOPHYAINCP)psfile.h \
    19722034  $(SOPHYAINCP)pigraphps.h \
    1973   $(SOPHYAINCP)sopnamsp.h pihisto2d.h \
     2035  $(SOPHYAINCP)sopnamsp.h \
     2036  pihisto2d.h \
    19742037  $(SOPHYAINCP)pimenux.h \
    19752038  $(SOPHYAINCP)pimenubarx.h \
     
    20142077 
    20152078$(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 \
    20182081  $(SOPHYAINCP)objfio.h \
    20192082  $(SOPHYAINCP)machdefs.h \
     
    20652128        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  pihisto.cc
    20662129 
    2067 $(SOPHYAOBJP)piinit.o: piinit.cc $(SOPHYAINCP)sopnamsp.h \
     2130$(SOPHYAOBJP)piinit.o: piinit.cc \
     2131  $(SOPHYAINCP)sopnamsp.h \
    20682132  $(SOPHYAINCP)machdefs.h piinit.h \
    20692133  $(SOPHYAINCP)sambainit.h \
     
    20722136  $(SOPHYAINCP)machdefs.h \
    20732137  $(SOPHYAINCP)ntoolsinit.h \
    2074   $(SOPHYAINCP)tarrinit.h pistdimgapp.h \
     2138  $(SOPHYAINCP)tarrinit.h \
     2139  pistdimgapp.h \
    20752140  $(SOPHYAINCP)pisysdep.h \
    20762141  $(SOPHYAINCP)piapplx.h \
     
    21292194  $(SOPHYAINCP)pi3dwdg.h \
    21302195  $(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 \
    21462213  $(SOPHYAINCP)pdlmgr.h \
    21472214  $(SOPHYAINCP)dvlist.h \
     
    21532220  $(SOPHYAINCP)piperiodx.h \
    21542221  $(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 \
    21582227  $(SOPHYAINCP)parradapter.h \
    21592228  $(SOPHYAINCP)ntupintf.h \
     
    21852254  nomgfdadapter.h nomimagadapter.h \
    21862255  $(SOPHYAINCP)cimage.h \
    2187   $(SOPHYAINCP)fioarr.h nomtmatvecadapter.h \
     2256  $(SOPHYAINCP)fioarr.h \
     2257  nomtmatvecadapter.h \
    21882258  $(SOPHYAINCP)tmatrix.h \
    21892259  $(SOPHYAINCP)generaldata.h \
    2190   nomtarradapter.h $(SOPHYAINCP)tarray.h \
     2260  nomtarradapter.h \
     2261  $(SOPHYAINCP)tarray.h \
    21912262  $(SOPHYAINCP)datatable.h \
    21922263  $(SOPHYAINCP)basedtable.h \
     
    21952266  $(SOPHYAINCP)ppfswapper.h \
    21962267  $(SOPHYAINCP)ppftpointerio.h \
    2197   nomskymapadapter.h $(SOPHYAINCP)pixelmap.h \
     2268  nomskymapadapter.h \
     2269  $(SOPHYAINCP)pixelmap.h \
    21982270  $(SOPHYAINCP)spherepos.h \
    21992271  $(SOPHYAINCP)unitvector.h \
     
    22142286  $(SOPHYAINCP)gaussfilt.h \
    22152287  nomspecrespadapter.h \
    2216   $(SOPHYAINCP)specresp.h
     2288  $(SOPHYAINCP)specresp.h \
     2289  piaversion.h
    22172290        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  piinit.cc
    22182291 
    22192292$(SOPHYAOBJP)pintup3d.o: pintup3d.cc \
    2220   $(SOPHYAINCP)sopnamsp.h pintup3d.h \
     2293  $(SOPHYAINCP)sopnamsp.h \
     2294  pintup3d.h \
    22212295  $(SOPHYAINCP)ntupintf.h \
    22222296  $(SOPHYAINCP)machdefs.h \
     
    22482322 
    22492323$(SOPHYAOBJP)pintuple.o: pintuple.cc \
    2250   $(SOPHYAINCP)sopnamsp.h pintuple.h \
     2324  $(SOPHYAINCP)sopnamsp.h \
     2325  pintuple.h \
    22512326  $(SOPHYAINCP)ntupintf.h \
    22522327  $(SOPHYAINCP)machdefs.h \
     
    22752350 
    22762351$(SOPHYAOBJP)pipodrw.o: pipodrw.cc \
    2277   $(SOPHYAINCP)sopnamsp.h pipodrw.h \
     2352  $(SOPHYAINCP)sopnamsp.h \
     2353  pipodrw.h \
    22782354  $(SOPHYAINCP)machdefs.h \
    22792355  $(SOPHYAINCP)pidrawer.h \
     
    23402416  $(SOPHYAINCP)ctimer.h \
    23412417  $(SOPHYAINCP)nbmath.h \
    2342   $(SOPHYAINCP)smathconst.h pistdimgapp.h \
     2418  $(SOPHYAINCP)smathconst.h \
     2419  pistdimgapp.h \
    23432420  $(SOPHYAINCP)pisysdep.h \
    23442421  $(SOPHYAINCP)piapplx.h \
     
    23972474  $(SOPHYAINCP)pi3dwdg.h \
    23982475  $(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 \
    24132492  $(SOPHYAINCP)pdlmgr.h \
    24142493  $(SOPHYAINCP)dvlist.h \
     
    24202499  $(SOPHYAINCP)piperiodx.h \
    24212500  $(SOPHYAINCP)pitherm.h \
    2422   $(SOPHYAINCP)resusage.h servnobjm.h \
     2501  $(SOPHYAINCP)resusage.h \
     2502  servnobjm.h \
    24232503  $(SOPHYAINCP)pdlmgr.h
    24242504        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  pisiadw.cc
     
    24532533  $(SOPHYAINCP)fioarr.h \
    24542534  $(SOPHYAINCP)tvector.h \
    2455   $(SOPHYAINCP)tvector_tsnl.h pistdimgapp.h \
     2535  $(SOPHYAINCP)tvector_tsnl.h \
     2536  pistdimgapp.h \
    24562537  $(SOPHYAINCP)pisysdep.h \
    24572538  $(SOPHYAINCP)piapplx.h \
     
    25102591  $(SOPHYAINCP)pi3dwdg.h \
    25112592  $(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 \
    25162599  $(SOPHYAINCP)commander.h \
    25172600  $(SOPHYAINCP)pdlmgr.h \
     
    25232606  $(SOPHYAINCP)piperiodx.h \
    25242607  $(SOPHYAINCP)pitherm.h \
    2525   $(SOPHYAINCP)resusage.h servnobjm.h \
     2608  $(SOPHYAINCP)resusage.h \
     2609  servnobjm.h \
    25262610  $(SOPHYAINCP)pdlmgr.h \
    25272611  $(SOPHYAINCP)psfile.h \
     
    25312615  $(SOPHYAINCP)pidrwtools.h \
    25322616  $(SOPHYAINCP)piaxestools.h \
    2533   $(SOPHYAINCP)piscdrawwdg.h piinit.h \
     2617  $(SOPHYAINCP)piscdrawwdg.h \
     2618  piinit.h \
    25342619  $(SOPHYAINCP)sambainit.h \
    25352620  $(SOPHYAINCP)skymapinit.h \
     
    25372622  $(SOPHYAINCP)ntoolsinit.h \
    25382623  $(SOPHYAINCP)tarrinit.h \
    2539   $(SOPHYAINCP)piversion.h piaversion.h
     2624  $(SOPHYAINCP)piversion.h \
     2625  piaversion.h
    25402626        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  pistdimgapp.cc
    25412627 
    25422628$(SOPHYAOBJP)pitvmaad.o: pitvmaad.cc \
    2543   $(SOPHYAINCP)sopnamsp.h pitvmaad.h \
     2629  $(SOPHYAINCP)sopnamsp.h \
     2630  pitvmaad.h \
    25442631  $(SOPHYAINCP)machdefs.h \
    25452632  $(SOPHYAINCP)parradapter.h \
     
    25852672  $(SOPHYAINCP)anydataobj.h \
    25862673  $(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 \
    25902679  $(SOPHYAINCP)pidrawer.h \
    25912680  $(SOPHYAINCP)pibwdggen.h \
     
    26282717  $(SOPHYAINCP)utils.h \
    26292718  $(SOPHYAINCP)perrors.h \
    2630   $(SOPHYAINCP)fmath.h pistdimgapp.h \
     2719  $(SOPHYAINCP)fmath.h \
     2720  pistdimgapp.h \
    26312721  $(SOPHYAINCP)pisysdep.h \
    26322722  $(SOPHYAINCP)piapplx.h \
     
    26642754  $(SOPHYAINCP)pi3dwdg.h \
    26652755  $(SOPHYAINCP)pi3ddrw.h \
    2666   $(SOPHYAINCP)pigraph3d.h piacmd.h \
     2756  $(SOPHYAINCP)pigraph3d.h \
     2757  piacmd.h \
    26672758  $(SOPHYAINCP)commander.h \
    26682759  $(SOPHYAINCP)pdlmgr.h \
     
    26792770  $(SOPHYAINCP)tmatrix.h \
    26802771  $(SOPHYAINCP)tvector.h \
    2681   $(SOPHYAINCP)matharr.h pitvmaad.h \
    2682   $(SOPHYAINCP)ntuple.h \
     2772  $(SOPHYAINCP)matharr.h \
     2773  pitvmaad.h $(SOPHYAINCP)ntuple.h \
    26832774  $(SOPHYAINCP)cimage.h \
    26842775  $(SOPHYAINCP)fioarr.h \
     
    26912782  $(SOPHYAINCP)segdatablock.h \
    26922783  $(SOPHYAINCP)piyfxdrw.h \
    2693   $(SOPHYAINCP)pisurfdr.h pintuple.h \
    2694   pintup3d.h $(SOPHYAINCP)pi3ddrw.h \
    2695   pipodrw.h
     2784  $(SOPHYAINCP)pisurfdr.h \
     2785  pintuple.h pintup3d.h \
     2786  $(SOPHYAINCP)pi3ddrw.h pipodrw.h
    26962787        $(CXXCOMPILE) $(CXXTEMPFLG) -o $@  servnobjm.cc
    26972788 
Note: See TracChangeset for help on using the changeset viewer.