This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Compounds | |
class | Phi |
Utility class to implement the cyclic nature of the phi variable in the range -Pi <-> Pi. More... | |
Functions | |
MsgStream & | operator<< (MsgStream &, const Phi &) |
MsgStream & | operator<< (MsgStream &, const Phi *const) |
|
|
|
Definition at line 8 of file Phi.cxx. References Phi::lowerLimit(), Phi::range(), Phi::upperLimit(), and Phi::val().
00008 { 00009 s<<setiosflags(std::ios::fixed); 00010 s<<std::setprecision(3); 00011 s 00012 <<std::setw(8)<< phi.lowerLimit()<<" " 00013 <<std::setw(8)<< phi.upperLimit()<<" " 00014 <<std::setw(8)<< phi.range()<<" " 00015 <<std::setw(8)<< phi.val(); 00016 return s; 00017 } |