#include <ostream>
#include "CalibTracker/SiStripRunSummary/interface/Flag.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &roOut, const Flag &roFLAG) |
Make flag displayable. |
std::ostream& operator<< | ( | std::ostream & | roOut, | |
const Flag & | roFLAG | |||
) |
Make flag displayable.
Helper function will define output format that will be used by all Child Flags.
roOut | Output stream where flag should be written | |
roFLAG | Flag to be written |
Definition at line 25 of file Flag.cc.
References Flag::getComment(), and Flag::getState().
00025 { 00026 roOut << static_cast<int>( roFLAG.getState()) << " : " 00027 << roFLAG.getComment(); 00028 00029 return roOut; 00030 }