Changeset 719 in Sophya
- Timestamp:
- Feb 6, 2000, 4:06:55 PM (26 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomhistadapter.cc
r584 r719 318 318 } 319 319 320 #ifdef SANS_EVOLPLANCK321 320 //------------------------------------------------------------------------- 322 321 // Class Adaptateur d'objet (Pour NamedObjMgr) d'objet XNTuple … … 352 351 mNt->Write(pos,0,tag); 353 352 #else 354 string s = typeid(*mObj).name();355 cout << "NOMAdapter_XNTuple::SavePPF() - Error : Not supported for " << s << endl;353 ObjFileIO<XNTuple> fio(mNt); 354 fio.Write(pos, nom); 356 355 #endif 357 356 } … … 372 371 } 373 372 374 #endif // SANS_EVOLPLANCK 375 373 -
trunk/SophyaPI/PIext/nomhistadapter.h
r495 r719 13 13 #include "ntuple.h" 14 14 15 #ifdef SANS_EVOLPLANCK16 15 #include "xntuple.h" 17 #endif18 16 19 17 //------------------------------------------------------------------------- … … 118 116 }; 119 117 120 #ifdef SANS_EVOLPLANCK121 118 //------------------------------------------------------------------------- 122 119 // Class Adaptateur d'objet (Pour NamedObjMgr) d'objet XNTuple … … 141 138 }; 142 139 143 #endif // SANS_EVOLPLANCK144 140 145 141 -
trunk/SophyaPI/PIext/nomtmatvecadapter.cc
r585 r719 211 211 #pragma define_template NOMAdapter_TMatrix<r_4> 212 212 #pragma define_template NOMAdapter_TMatrix<r_8> 213 #pragma define_template NOMAdapter_TMatrix< complex< float> >214 #pragma define_template NOMAdapter_TMatrix< complex< double> >213 #pragma define_template NOMAdapter_TMatrix< complex<r_4> > 214 #pragma define_template NOMAdapter_TMatrix< complex<r_8> > 215 215 //#pragma define_template NTupInt_TMatrix<uint_2> 216 216 //#pragma define_template NTupInt_TMatrix<int_2> … … 218 218 #pragma define_template NTupInt_TMatrix<r_4> 219 219 #pragma define_template NTupInt_TMatrix<r_8> 220 #pragma define_template NTupInt_TMatrix< complex< float> >221 #pragma define_template NTupInt_TMatrix< complex< double> >220 #pragma define_template NTupInt_TMatrix< complex<r_4> > 221 #pragma define_template NTupInt_TMatrix< complex<r_8> > 222 222 #endif 223 223 … … 228 228 template class NOMAdapter_TMatrix<r_4>; 229 229 template class NOMAdapter_TMatrix<r_8>; 230 template class NOMAdapter_TMatrix< complex< float> >;231 template class NOMAdapter_TMatrix< complex< double> >;230 template class NOMAdapter_TMatrix< complex<r_4> >; 231 template class NOMAdapter_TMatrix< complex<r_8> >; 232 232 // template class NTupInt_TMatrix<uint_2>; 233 233 // template class NTupInt_TMatrix<int_2>; … … 235 235 template class NTupInt_TMatrix<r_4>; 236 236 template class NTupInt_TMatrix<r_8>; 237 template class NTupInt_TMatrix< complex< float> >;238 template class NTupInt_TMatrix< complex< double> >;237 template class NTupInt_TMatrix< complex<r_4> >; 238 template class NTupInt_TMatrix< complex<r_8> >; 239 239 #endif -
trunk/SophyaPI/PIext/piinit.cc
r670 r719 39 39 serv->RegisterClass(new Histo2D, new NOMAdapter_Histo2D ); 40 40 serv->RegisterClass(new NTuple, new NOMAdapter_NTuple ); 41 #ifdef SANS_EVOLPLANCK 41 42 42 serv->RegisterClass(new XNTuple, new NOMAdapter_XNTuple ); 43 43 char* varenv=NULL; 44 44 if ( (varenv=getenv("PEIDA_TMP")) == NULL ) varenv=getenv("TMPDIR") ; 45 45 if (varenv) XNTuple::SetSwapPath(varenv); 46 #endif47 46 48 47 serv->RegisterClass(new GeneralFitData, new NOMAdapter_GeneralFitData ); … … 58 57 serv->RegisterClass(new TVector<r_8>, new NOMAdapter_TMatrix<r_8> ); 59 58 serv->RegisterClass(new TMatrix<r_8>, new NOMAdapter_TMatrix<r_8> ); 60 serv->RegisterClass(new TVector<complex< float> >, new NOMAdapter_TMatrix<complex<float> > );61 serv->RegisterClass(new TMatrix<complex< float> >, new NOMAdapter_TMatrix<complex<float> > );62 serv->RegisterClass(new TVector<complex< double> >, new NOMAdapter_TMatrix<complex<double> > );63 serv->RegisterClass(new TMatrix<complex< double> >, new NOMAdapter_TMatrix<complex<double> > );59 serv->RegisterClass(new TVector<complex<r_4> >, new NOMAdapter_TMatrix<complex<r_4> > ); 60 serv->RegisterClass(new TMatrix<complex<r_4> >, new NOMAdapter_TMatrix<complex<r_4> > ); 61 serv->RegisterClass(new TVector<complex<r_8> >, new NOMAdapter_TMatrix<complex<r_8> > ); 62 serv->RegisterClass(new TMatrix<complex<r_8> >, new NOMAdapter_TMatrix<complex<r_8> > ); 64 63 #endif 65 64
Note:
See TracChangeset
for help on using the changeset viewer.