Changeset 178 in Sophya for trunk/SophyaPI/PIext
- Timestamp:
- Dec 23, 1998, 4:37:24 PM (27 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nobjmgr.cc
r165 r178 976 976 977 977 // Creation NTuple 978 c har* ntn[4] = {"expx","expy","expex","expey",};978 const char* ntn[4] = {"expx","expy","expex","expey",}; 979 979 NTuple* nt = NULL; 980 980 bool haserr = false; … … 1016 1016 if (!myImgApp) return; 1017 1017 1018 c har* ntn[3] = {"expx","expy","expz"};1018 const char* ntn[3] = {"expx","expy","expz"}; 1019 1019 NTuple* nt = new NTuple(3,ntn); // Creation NTuple 1020 1020 … … 1063 1063 if ( (oh != NULL) && (oh->ClassId() == ClassId_Histo1D) ) h1 = (Histo*)oh; // Pas de remise a zero ! h1->Zero(); 1064 1064 else { 1065 c har* ntn[2]= {"hxval", "hwt"};1065 const char* ntn[2]= {"hxval", "hwt"}; 1066 1066 nt = new NTuple(2,ntn); // Creation NTuple 1067 1067 } … … 1112 1112 if ( (oh != NULL) && (oh->ClassId() == ClassId_Histo2D) ) h2 = (Histo2D*)oh; // Pas de remise a zero ! h2->Zero(); 1113 1113 else { 1114 c har* ntn[3]= {"hxval", "hyval", "hwt"};1114 const char* ntn[3]= {"hxval", "hyval", "hwt"}; 1115 1115 nt = new NTuple(3,ntn); // Creation NTuple 1116 1116 } … … 1173 1173 if( (oh!=NULL) && (oh->ClassId()== ClassId_HProf) ) hprof = (HProf*)oh; 1174 1174 else { 1175 c har* ntn[3]= {"hxval", "hyval", "hwt"};1175 const char* ntn[3]= {"hxval", "hyval", "hwt"}; 1176 1176 nt = new NTuple(3,ntn); // Creation NTuple 1177 1177 } … … 1218 1218 if (nomvec.length() < 1) nomvec = "VecFill"; 1219 1219 1220 c har* ntn[2]= {"vecval", "vecwt"};1220 const char* ntn[2]= {"vecval", "vecwt"}; 1221 1221 nt = new NTuple(1,ntn); // Creation NTuple 1222 1222 … … 1270 1270 } 1271 1271 if (nt == NULL) { 1272 c har* ntn[4]= {"x", "y","z","t"};1272 const char* ntn[4]= {"x", "y","z","t"}; 1273 1273 nt = new NTuple(4,ntn); // Creation NTuple 1274 1274 fgnnt = true; … … 1357 1357 1358 1358 // Creation NTuple Buffer 1359 c har* ntn[4]= {"x","y","f","e"};1359 const char* ntn[4]= {"x","y","f","e"}; 1360 1360 NTuple*nt = new NTuple(4,ntn); 1361 1361 … … 2031 2031 if (fft.NData() < 1) return; 2032 2032 2033 c har* ntn[3] = {"refc", "imfc", "pfc"};2033 const char* ntn[3] = {"refc", "imfc", "pfc"}; 2034 2034 NTuple* nt = new NTuple(3,ntn); // Creation NTuple 2035 2035 Vector* vf = new Vector(fft.NData()/2); -
trunk/SophyaPI/PIext/piacmd.cc
r174 r178 969 969 r_4 xnt[4]; 970 970 NTuple *ntfl=NULL, *ntex=NULL; 971 {c har* name[4]={"npx","flux","fond","mag"}; ntfl = new NTuple(4,name);}972 {c har* name[3]={"k","a","f0"}; ntex = new NTuple(3,name);}971 {const char* name[4]={"npx","flux","fond","mag"}; ntfl = new NTuple(4,name);} 972 {const char* name[3]={"k","a","f0"}; ntex = new NTuple(3,name);} 973 973 974 974 // Calcul du fond sur les pixels du bord du pave
Note:
See TracChangeset
for help on using the changeset viewer.