]> git.treefish.org Git - phys/u1casc.git/commitdiff
Added eigenvector output.
authorAlexander Schmidt <alex@treefish.org>
Mon, 5 Jan 2015 15:41:35 +0000 (16:41 +0100)
committerAlexander Schmidt <alex@treefish.org>
Mon, 5 Jan 2015 15:41:35 +0000 (16:41 +0100)
u1casc-ordinary/obs_diagcorr.hpp

index 6666b6c5938c9f73a18a0a294db19083a66a3f13..a8d88b53d06ed989c02819344bce9131ec333538 100644 (file)
@@ -46,7 +46,7 @@ private:
 
   gsl_vector_complex **measurements_disco;
   
-  static void cdiag (gsl_vector *v, gsl_matrix_complex *m);
+  static void cdiag (gsl_vector *v, gsl_matrix_complex *evec, gsl_matrix_complex *m);
 };
 
 obs_diagcorr::obs_diagcorr(o815 *_O815) : o815::obs("diagcorr", 
@@ -95,9 +95,8 @@ void obs_diagcorr::_meas(bool loadedobs, const int& nthmeas) {
   }
 };
 
-void obs_diagcorr::cdiag (gsl_vector *v, gsl_matrix_complex *m)
+void obs_diagcorr::cdiag (gsl_vector *v, gsl_matrix_complex *evec, gsl_matrix_complex *m)
 {
-  gsl_matrix_complex *evec = gsl_matrix_complex_alloc(4,4);  
   gsl_eigen_hermv_workspace *wspace = gsl_eigen_hermv_alloc(100);
 
   gsl_eigen_hermv(m, v, evec, wspace);
@@ -110,12 +109,15 @@ void obs_diagcorr::cdiag (gsl_vector *v, gsl_matrix_complex *m)
 void obs_diagcorr::_finish() {
   gsl_matrix_complex *totalval = gsl_matrix_complex_alloc(4,4);
   gsl_matrix_complex *tmpmatrix = gsl_matrix_complex_alloc(4,4);
+  gsl_matrix_complex *tmpmatrix2 = gsl_matrix_complex_alloc(4,4);
   gsl_vector *tmpvec = gsl_vector_alloc(4);
   gsl_vector_complex *tmpvecc = gsl_vector_complex_alloc(4);
   gsl_vector *tmpvec2 = gsl_vector_alloc(4);
   gsl_vector *jackres = gsl_vector_alloc(4);
   gsl_vector *jackerrornorm = gsl_vector_alloc(4);
   gsl_vector_complex *totaldisco = gsl_vector_complex_alloc(4);
+  gsl_matrix_complex *evecres = gsl_matrix_complex_alloc(4,4);
+  gsl_matrix_complex *evecerrornorm = gsl_matrix_complex_alloc(4,4);
   
   gsl_vector_complex_set_zero(totaldisco);
   for (int imeas=0; imeas<O815->comargs.nmeas; imeas++)
@@ -124,6 +126,7 @@ void obs_diagcorr::_finish() {
   for (int itsep = 0; itsep < O815->comargs.lsize[1]/2; itsep++) {
     gsl_matrix_complex_set_zero(totalval);
     gsl_vector_set_zero(jackerrornorm);
+    gsl_matrix_complex_set_zero(evecerrornorm);
 
     for (int imeas=0; imeas<O815->comargs.nmeas; imeas++)
       gsl_matrix_complex_add( totalval, measurements[imeas][itsep] );
@@ -142,7 +145,7 @@ void obs_diagcorr::_finish() {
                                                 )
                                );
       }
-    cdiag(jackres, tmpmatrix);
+    cdiag(jackres, evecres, tmpmatrix);
 
     for (int imeas=0; imeas<O815->comargs.nmeas; imeas++) {
       gsl_matrix_complex_memcpy (tmpmatrix, totalval);
@@ -162,26 +165,42 @@ void obs_diagcorr::_finish() {
                                                   )
                                  );
        }      
-      cdiag(tmpvec, tmpmatrix);
+      cdiag(tmpvec, tmpmatrix2, tmpmatrix);
+      
       gsl_vector_sub(tmpvec, jackres);
       gsl_vector_memcpy(tmpvec2, tmpvec);
       gsl_vector_mul(tmpvec, tmpvec2);
       gsl_vector_add(jackerrornorm, tmpvec);
+
+      gsl_matrix_complex_sub(tmpmatrix2, evecres);
+      for (int i=0; i<4; i++)
+       for (int j=0; j<4; j++) {
+         gsl_complex tmperr =
+           gsl_complex_rect( pow(GSL_REAL( gsl_matrix_complex_get( tmpmatrix2, i, j ) ),2),
+                             pow(GSL_IMAG( gsl_matrix_complex_get( tmpmatrix2, i, j ) ),2));
+         gsl_matrix_complex_set(tmpmatrix, i, j, tmperr);
+       }
+      gsl_matrix_complex_add( evecerrornorm, tmpmatrix );
     } 
     gsl_vector_scale( jackerrornorm,
                      (double)(O815->comargs.nmeas-1)/O815->comargs.nmeas );
-
+    gsl_matrix_complex_scale( evecerrornorm, gsl_complex_rect( (double)(O815->comargs.nmeas-1)/O815->comargs.nmeas, 0.0 ) );
+    
     *out << O815->paraQ->getParaVals();
     *out << "\t" << itsep;
     for (int iev = 0; iev < 4; iev++) {
       *out << "\t" << gsl_vector_get(jackres,iev)
           << "\t" << sqrt(gsl_vector_get(jackerrornorm,iev));
+      for (int iinter=0; iinter<4; iinter++)
+       *out << "\t" << GSL_REAL(gsl_matrix_complex_get(evecres, iinter, iev))
+            << "\t" << sqrt( GSL_REAL(gsl_matrix_complex_get(evecerrornorm, iinter, iev)) );
     }
     *out << endl;
   }
 
   gsl_matrix_complex_free(totalval);
   gsl_matrix_complex_free(tmpmatrix);
+  gsl_matrix_complex_free(evecres);
   gsl_vector_free(tmpvec);
   gsl_vector_complex_free(tmpvecc);
   gsl_vector_free(tmpvec2);