Ignore:
Timestamp:
Jun 7, 2008, 1:21:33 PM (17 years ago)
Author:
Frederik Heber <heber@…>
Children:
32b6dc
Parents:
75793b2
Message:

these are all smaller fixes due to extensively enabled compiler warnings

e.g. local variable shadows definition of a global one

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/vector.cpp

    r75793b2 ra89a22  
    354354{
    355355  double projection;
    356   projection = ScalarProduct(n)/((vector *)n)->ScalarProduct(n);    // remove constancy from n (keep as logical one)
     356  projection = ScalarProduct(n)/n->ScalarProduct(n);    // remove constancy from n (keep as logical one)
    357357  // withdraw projected vector twice from original one
    358358  cout << Verbose(1) << "Vector: ";
     
    458458 * \return true - success, false - failure (null vector given)
    459459 */
    460 bool vector::GetOneNormalVector(const vector *vector)
     460bool vector::GetOneNormalVector(const vector *GivenVector)
    461461{
    462462  int Components[NDIM]; // contains indices of non-zero components
     
    466466
    467467  cout << Verbose(4);
    468   vector->Output((ofstream *)&cout);
     468  GivenVector->Output((ofstream *)&cout);
    469469  cout << endl;
    470470  for (j=NDIM;j--;)
     
    472472  // find two components != 0
    473473  for (j=0;j<NDIM;j++)
    474     if (fabs(vector->x[j]) > MYEPSILON)
     474    if (fabs(GivenVector->x[j]) > MYEPSILON)
    475475      Components[Last++] = j;
    476476  cout << Verbose(4) << Last << " Components != 0: (" << Components[0] << "," << Components[1] << "," << Components[2] << ")" << endl;
     
    479479    case 3:  // threecomponent system
    480480    case 2:  // two component system
    481       norm = sqrt(1./(vector->x[Components[1]]*vector->x[Components[1]]) + 1./(vector->x[Components[0]]*vector->x[Components[0]]));
     481      norm = sqrt(1./(GivenVector->x[Components[1]]*GivenVector->x[Components[1]]) + 1./(GivenVector->x[Components[0]]*GivenVector->x[Components[0]]));
    482482      x[Components[2]] = 0.;
    483483      // in skp both remaining parts shall become zero but with opposite sign and third is zero
    484       x[Components[1]] = -1./vector->x[Components[1]] / norm;
    485       x[Components[0]] = 1./vector->x[Components[0]] / norm;
     484      x[Components[1]] = -1./GivenVector->x[Components[1]] / norm;
     485      x[Components[0]] = 1./GivenVector->x[Components[0]] / norm;
    486486      return true;
    487487      break;
     
    519519     gsl_multimin_fminimizer_nmsimplex;
    520520   gsl_multimin_fminimizer *s = NULL;
    521    gsl_vector *ss, *x;
     521   gsl_vector *ss, *y;
    522522   gsl_multimin_function minex_func;
    523523 
     
    528528   /* Initial vertex size vector */
    529529   ss = gsl_vector_alloc (np);
    530    x = gsl_vector_alloc (np);
     530   y = gsl_vector_alloc (np);
    531531 
    532532   /* Set all step sizes to 1 */
     
    538538       
    539539         for (i=NDIM;i--;)
    540                 gsl_vector_set(x, i, (vectors[0]->x[i] - vectors[1]->x[i])/2.);
     540                gsl_vector_set(y, i, (vectors[0]->x[i] - vectors[1]->x[i])/2.);
    541541         
    542542   /* Initialize method and iterate */
     
    546546 
    547547   s = gsl_multimin_fminimizer_alloc (T, np);
    548    gsl_multimin_fminimizer_set (s, &minex_func, x, ss);
     548   gsl_multimin_fminimizer_set (s, &minex_func, y, ss);
    549549 
    550550   do
     
    575575  for (i=(size_t)np;i--;)
    576576    this->x[i] = gsl_vector_get(s->x, i);
    577    gsl_vector_free(x);
     577   gsl_vector_free(y);
    578578   gsl_vector_free(ss);
    579579   gsl_multimin_fminimizer_free (s);
Note: See TracChangeset for help on using the changeset viewer.