Fork me on GitHub

Changeset d97b2af in git for modules


Ignore:
Timestamp:
Jun 21, 2016, 4:17:14 PM (8 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
04290b1
Parents:
9ad08ca
Message:

removed couts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/VertexFinderDA4D.cc

    r9ad08ca rd97b2af  
    560560  cout.precision(4);
    561561  for(vector<vertex_t>::const_iterator k=y.begin(); k!=y.end(); k++){
    562     cout  <<  setw(8) << fixed << k->z;
     562    //cout  <<  setw(8) << fixed << k->z;
    563563  }
    564564  cout << endl << "                                                               t= ";
    565565  for(vector<vertex_t>::const_iterator k=y.begin(); k!=y.end(); k++){
    566     cout  <<  setw(8) << fixed << k->t;
    567   }
    568   cout << endl << "T=" << setw(15) << 1./beta <<"                                             Tc= ";
     566    //cout  <<  setw(8) << fixed << k->t;
     567  }
     568  //cout << endl << "T=" << setw(15) << 1./beta <<"                                             Tc= ";
    569569  for(vector<vertex_t>::const_iterator k=y.begin(); k!=y.end(); k++){
    570     cout  <<  setw(8) << fixed << k->Tc ;
     570    //cout  <<  setw(8) << fixed << k->Tc ;
    571571  }
    572572
     
    574574  double sumpk=0;
    575575  for(vector<vertex_t>::const_iterator k=y.begin(); k!=y.end(); k++){
    576     cout <<  setw(8) <<  setprecision(3) <<  fixed << k->pk;
     576    //cout <<  setw(8) <<  setprecision(3) <<  fixed << k->pk;
    577577    sumpk+=k->pk;
    578578  }
     
    588588      double tz= tks[i].z;
    589589      double tt= tks[i].t;
    590       cout <<  setw (3)<< i << ")" <<  setw (8) << fixed << setprecision(4)<<  tz << " +/-" <<  setw (6)<< sqrt(tks[i].dz2)
    591            << setw(8) << fixed << setprecision(4) << tt << " +/-" << setw(6) << std::sqrt(tks[i].dt2)  ;
     590      //cout <<  setw (3)<< i << ")" <<  setw (8) << fixed << setprecision(4)<<  tz << " +/-" <<  setw (6)<< sqrt(tks[i].dz2)
     591      //     << setw(8) << fixed << setprecision(4) << tt << " +/-" << setw(6) << std::sqrt(tks[i].dt2)  ;
    592592
    593593      double sump=0.;
     
    597597          double p=k->pk * std::exp(-beta*Eik(tks[i],*k)) / tks[i].Z;
    598598          if( p > 0.0001){
    599             cout <<  setw (8) <<  setprecision(3) << p;
     599            //cout <<  setw (8) <<  setprecision(3) << p;
    600600          }else{
    601601            cout << "    .   ";
Note: See TracChangeset for help on using the changeset viewer.