Main Page | Namespace List | Class Hierarchy | Compound List | File List | Namespace Members | Compound Members | File Members

plcompact.cxx File Reference

#include "plcompact.h"
#include "basepacking.h"
#include <stdio.h>
#include <math.h>
#include <iostream>
#include <algorithm>
#include <cfloat>

Include dependency graph for plcompact.cxx:

Include dependency graph

Go to the source code of this file.

Functions

void OutputShiftInfo (ostream &outs, const vector< ShiftBlock::ShiftInfo > &shiftinfo)


Function Documentation

void OutputShiftInfo ostream &  outs,
const vector< ShiftBlock::ShiftInfo > &  shiftinfo
 

Definition at line 415 of file plcompact.cxx.

References ShiftBlock::EAST, ShiftBlock::NORTH, ShiftBlock::SOUTH, and ShiftBlock::WEST.

00417 {
00418    outs << "NORTH: " << endl;
00419    outs << "shiftRangeMin: "
00420         << shiftinfo[ShiftBlock::NORTH].shiftRangeMin << endl;
00421    outs << "shiftRangeMax: "
00422         << shiftinfo[ShiftBlock::NORTH].shiftRangeMax << endl;
00423    outs << "overlapMin: "
00424         << shiftinfo[ShiftBlock::NORTH].overlapMin << endl;
00425    outs << "overlapMax: "
00426         << shiftinfo[ShiftBlock::NORTH].overlapMax << endl;
00427    outs << endl;
00428    
00429    outs << "EAST: " << endl;
00430    outs << "shiftRangeMin: "
00431         << shiftinfo[ShiftBlock::EAST].shiftRangeMin << endl;
00432    outs << "shiftRangeMax: "
00433         << shiftinfo[ShiftBlock::EAST].shiftRangeMax << endl;
00434    outs << "overlapMin: "
00435         << shiftinfo[ShiftBlock::EAST].overlapMin << endl;
00436    outs << "overlapMax: "
00437         << shiftinfo[ShiftBlock::EAST].overlapMax << endl;
00438    outs << endl;
00439    
00440    outs << "SOUTH: " << endl;
00441    outs << "shiftRangeMin: "
00442         << shiftinfo[ShiftBlock::SOUTH].shiftRangeMin << endl;
00443    outs << "shiftRangeMax: "
00444         << shiftinfo[ShiftBlock::SOUTH].shiftRangeMax << endl;
00445    outs << "overlapMin: "
00446         << shiftinfo[ShiftBlock::SOUTH].overlapMin << endl;
00447    outs << "overlapMax: "
00448         << shiftinfo[ShiftBlock::SOUTH].overlapMax << endl;
00449    outs << endl;
00450    
00451    outs << "WEST: " << endl;
00452    outs << "shiftRangeMin: "
00453         << shiftinfo[ShiftBlock::WEST].shiftRangeMin << endl;
00454    outs << "shiftRangeMax: "
00455         << shiftinfo[ShiftBlock::WEST].shiftRangeMax << endl;
00456    outs << "overlapMin: "
00457         << shiftinfo[ShiftBlock::WEST].overlapMin << endl;
00458    outs << "overlapMax: "
00459         << shiftinfo[ShiftBlock::WEST].overlapMax << endl;
00460    outs << endl;
00461    outs << "--------" << endl;
00462 }


Generated on Mon Apr 25 01:12:11 2005 for Parquete by doxygen 1.3.2