* Print the Standard Point Stats into Output file given the Control Point * * @author Sharmila Prasad (8/31/2010) * * @param pcPoint */
| 142 | * @param pcPoint |
| 143 | */ |
| 144 | void ControlNetFilter::PointStats(const ControlPoint &pcPoint) { |
| 145 | mOstm << pcPoint.GetId() << ", " << sPointType[(int)pcPoint.GetType()] |
| 146 | << ", " << sBoolean[(int)pcPoint.IsIgnored()] << ", " |
| 147 | << sBoolean[(int)pcPoint.IsEditLocked()] << ", " |
| 148 | << pcPoint.GetNumMeasures() << ", " |
| 149 | << pcPoint.GetNumMeasures() - pcPoint.GetNumValidMeasures() << ", " |
| 150 | << pcPoint.GetNumLockedMeasures() << ", "; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Print Cube's File and Serial Number into the Output File |
nothing calls this directly
no test coverage detected