Changeset 769 in Sophya
- Timestamp:
- Mar 2, 2000, 6:24:08 PM (26 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/basexecut.cc
r709 r769 19 19 #include "ntuple.h" 20 20 #include "generaldata.h" 21 22 #ifdef SANS_EVOLPLANCK 21 23 #include "cvector.h" 24 #else 25 #include "tvector.h" 26 #endif 22 27 23 28 -
trunk/SophyaPI/PIext/piafitting.cc
r544 r769 30 30 #include "tmatrix.h" 31 31 #include "tvector.h" 32 #include "objfitter.h" 32 33 #endif 33 34 … … 927 928 //#################### 928 929 if(mV) { 929 if(mOpt.okres) {Vector* ob = new Vector(mV->FitResidus(*mFit)); if(ob) omg.AddObj(ob,nomres);} 930 if(mOpt.okfun) {Vector* ob = new Vector(mV->FitFunction(*mFit)); if(ob) omg.AddObj(ob,nomfun);} 930 if(mOpt.okres) { 931 Vector* ob = new Vector(ObjectFitter::FitResidus(*mV, *mFit),true); 932 if(ob) omg.AddObj(ob,nomres); 933 } 934 if(mOpt.okfun) { 935 Vector* ob = new Vector(ObjectFitter::FitFunction(*mV, *mFit),true); 936 if(ob) omg.AddObj(ob,nomfun); 937 } 931 938 } else if(mH) { 932 939 if(mOpt.okres) {Histo* ob = new Histo(mH->FitResidus(*mFit)); if(ob) omg.AddObj(ob,nomres);} 933 940 if(mOpt.okfun) {Histo* ob = new Histo(mH->FitFunction(*mFit)); if(ob) omg.AddObj(ob,nomfun);} 934 941 } else if(mM) { 935 if(mOpt.okres) {Matrix* ob = new Matrix(mM->FitResidus(*mFit)); if(ob) omg.AddObj(ob,nomres);} 936 if(mOpt.okfun) {Matrix* ob = new Matrix(mM->FitFunction(*mFit)); if(ob) omg.AddObj(ob,nomfun);} 942 if(mOpt.okres) { 943 Matrix* ob = new Matrix(ObjectFitter::FitResidus(*mM, *mFit), true); 944 if(ob) omg.AddObj(ob,nomres); 945 } 946 if(mOpt.okfun) { 947 Matrix* ob = new Matrix(ObjectFitter::FitFunction(*mM, *mFit), true); 948 if(ob) omg.AddObj(ob,nomfun); 949 } 937 950 } else if(mH2) { 938 951 if(mOpt.okres) -
trunk/SophyaPI/PIext/piinit.cc
r719 r769 28 28 29 29 PIAppInitiator::PIAppInitiator(PIStdImgApp * app) 30 #ifdef SANS_EVOLPLANCK 30 31 : PeidaOutilsInitiator() 32 #else 33 : SambaInitiator() 34 #endif 31 35 { 32 36 FgInit++; -
trunk/SophyaPI/PIext/piinit.h
r295 r769 2 2 #define PIINIT_H_SEEN 3 3 4 #ifdef SANS_EVOLPLANCK 4 5 #include "outilsinit.h" 6 #else 7 #include "sambainit.h" 8 #endif 9 5 10 #include "pistdimgapp.h" 6 11 7 // Classe d initialisation pour le module PI de PEIDA12 // Classe d initialisation pour le module PIext de PEIDA 8 13 9 class PIAppInitiator : public PeidaOutilsInitiator {14 class PIAppInitiator : public SambaInitiator { 10 15 private: 11 16 static int FgInit;
Note:
See TracChangeset
for help on using the changeset viewer.