FACT++  1.0
ostream& operator<< ( std::ostream &  out,
TPointStar set 
)

Definition at line 127 of file TPointStar.cc.

References TPointStar::fMag, Tools::Form(), TPointStar::fRawAz, TPointStar::fRawEl, TPointStar::fStarAz, and TPointStar::fStarEl.

128 {
129  out << Form("%8.3f", set.fStarAz*TMath::RadToDeg()) << " ";
130  out << Form("%7.3f", set.fStarEl*TMath::RadToDeg()) << " ";
131  out << Form("%8.3f", set.fRawAz*TMath::RadToDeg()) << " ";
132  out << Form("%7.3f", set.fRawEl*TMath::RadToDeg()) << " ";
133  out << Form("%6.3f", set.fMag);
134 
135  return out;
136 }
std::string Form(const char *fmt,...)
Definition: tools.cc:45

+ Here is the call graph for this function: