Go to the source code of this file.
◆ operator<<()
      
        
          | std::ostream& operator<<  | 
          ( | 
          std::ostream &  | 
          out,  | 
        
        
           | 
           | 
          const JFIT::JFit &  | 
          fit  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Write fit results to output. 
- Parameters
 - 
  
    | out | output stream  | 
    | fit | fit results  | 
  
   
- Returns
 - output stream 
 
Definition at line 12 of file JEvt.cc.
   21   for (JHistory::const_reverse_iterator i = history.rbegin(); i != history.rend(); ++i) {
 
   22     out << 
' ' << i->type;
 
   27   out << 
"x    " << 
FIXED(7,2) << fit.
getX()  << endl;
 
   28   out << 
"y    " << 
FIXED(7,2) << fit.
getY()  << endl;
 
   29   out << 
"z    " << 
FIXED(7,2) << fit.
getZ()  << endl;
 
   30   out << 
"dx   " << 
FIXED(7,3) << fit.
getDX() << endl;
 
   31   out << 
"dy   " << 
FIXED(7,3) << fit.
getDY() << endl;
 
   32   out << 
"dz   " << 
FIXED(7,3) << fit.
getDZ() << endl;
 
   34   out << 
"Q    " << 
FIXED(12,5) << fit.
getQ()   << endl;
 
   35   out << 
"NDF  " << setw(5)     << fit.
getNDF() << endl;
 
   37   out << 
"status " << fit.
getStatus() << endl;
 
   39   for (
int i = 0; i != fit.
getN(); ++i) {
 
   40     out << 
"W[" << i << 
"] = " << 
FIXED(10,5) << fit.
getW(i) << endl;
 
 
 
 
 
const JHistory & getHistory() const
Get history.