- Timestamp:
- Nov 3, 1999, 7:47:56 PM (26 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pawexecut.cc
r544 r545 23 23 #include "tmatrix.h" 24 24 #include "tvector.h" 25 26 25 #endif 27 26 … … 142 141 string ctyp = typeid(*mobj).name(); 143 142 143 #ifdef SANS_EVOLPLANCK 144 144 if(typeid(*mobj)==typeid(Vector)) {Vector* ob=(Vector*) mobj; ob->Zero();} 145 145 else if(typeid(*mobj)==typeid(Matrix)) {Matrix* ob=(Matrix*) mobj; ob->Zero();} 146 #else 147 if(typeid(*mobj)==typeid(Vector)) {Vector* ob=(Vector*) mobj; ob->Reset(0.);} 148 else if(typeid(*mobj)==typeid(Matrix)) {Matrix* ob=(Matrix*) mobj; ob->Reset(0.);} 149 #endif 146 150 else if(typeid(*mobj)==typeid(Histo)) {Histo* ob=(Histo*) mobj; ob->Zero();} 147 151 else if(typeid(*mobj)==typeid(HProf)) {HProf* ob=(HProf*) mobj; ob->Zero();} -
trunk/SophyaPI/PIext/piafitting.h
r495 r545 16 16 #include "dlftypes.h" 17 17 #include "piacmd.h" 18 #include "cvector.h"19 18 20 19 class PIStdImgApp; 21 20 class PIAFitterWind; 22 class Matrix;23 21 class RzImage; //CMV_A_FAIRE class RzImage; 24 22 25 23 #ifdef SANS_EVOLPLANCK 24 #include "cvector.h" 26 25 class GeneralFunction; class GeneralFunc; class GeneralFit; 27 26 class GeneralFitData; 28 27 class Histo; class Histo2D; 29 28 #else 29 #include "tvector.h" 30 30 namespace PlanckDPC { 31 31 class GeneralFunction; class GeneralFunc; class GeneralFit;
Note:
See TracChangeset
for help on using the changeset viewer.