summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjoye <joye>2014-05-12 18:59:18 (GMT)
committerjoye <joye>2014-05-12 18:59:18 (GMT)
commitd86e229eed5d65b1c1c01ee599eb1c3bd0be87a8 (patch)
tree41d27b73ac46842a5f2260af399a152d73c26fbf /src
parenta41981c4ca3f6a14a9337164f7bf5af78e8b0e92 (diff)
downloadblt-d86e229eed5d65b1c1c01ee599eb1c3bd0be87a8.zip
blt-d86e229eed5d65b1c1c01ee599eb1c3bd0be87a8.tar.gz
blt-d86e229eed5d65b1c1c01ee599eb1c3bd0be87a8.tar.bz2
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/bltGrElemBar.C2
-rw-r--r--src/bltGraph.C4
-rw-r--r--src/bltGraphBar.C6
3 files changed, 3 insertions, 9 deletions
diff --git a/src/bltGrElemBar.C b/src/bltGrElemBar.C
index 36b78f9..00387bb 100644
--- a/src/bltGrElemBar.C
+++ b/src/bltGrElemBar.C
@@ -245,7 +245,7 @@ int BarElement::configure()
void BarElement::map()
{
- cerr << "BarElement::map()" << endl;
+ // cerr << "BarElement::map()" << endl;
BarGraph* barGraphPtr_ = (BarGraph*)graphPtr_;
BarElementOptions* ops = (BarElementOptions*)ops_;
BarGraphOptions* gops = (BarGraphOptions*)graphPtr_->ops_;
diff --git a/src/bltGraph.C b/src/bltGraph.C
index 72a7d34..3a3a740 100644
--- a/src/bltGraph.C
+++ b/src/bltGraph.C
@@ -218,7 +218,7 @@ void Graph::configure()
void Graph::map()
{
- cerr << "Graph::map()" << endl;
+ // cerr << "Graph::map()" << endl;
if (flags & RESET_AXES)
resetAxes();
@@ -239,7 +239,7 @@ void Graph::map()
void Graph::draw()
{
- cerr << "Graph::draw()" << endl;
+ // cerr << "Graph::draw()" << endl;
GraphOptions* ops = (GraphOptions*)ops_;
flags &= ~REDRAW_PENDING;
diff --git a/src/bltGraphBar.C b/src/bltGraphBar.C
index 47eab2f..b5c0145 100644
--- a/src/bltGraphBar.C
+++ b/src/bltGraphBar.C
@@ -211,7 +211,6 @@ BarGraph::BarGraph(ClientData clientData, Tcl_Interp* interp,
barGroups_ =NULL;
nBarGroups_ =0;
maxBarSetSize_ =0;
- cerr << sizeof(BarSetKey) << ' ' << sizeof(BarSetKey)/sizeof(int) << endl;
Tcl_InitHashTable(&setTable_, sizeof(BarSetKey)/sizeof(int));
ops->bottomMargin.site = MARGIN_BOTTOM;
@@ -346,7 +345,6 @@ void BarGraph::resetAxes()
void BarGraph::initBarSets()
{
- cerr << "BarGraph::initBarSets()" << endl;
BarGraphOptions* ops = (BarGraphOptions*)ops_;
// Free resources associated with a previous frequency table. This includes
@@ -453,12 +451,10 @@ void BarGraph::initBarSets()
maxBarSetSize_ = max;
nBarGroups_ = sum;
- cerr<< "max=" << max << " nBarGroups=" << sum << endl;
}
void BarGraph::destroyBarSets()
{
- cerr << "BarGraph::destroyBarSets()" << endl;
if (barGroups_) {
delete [] barGroups_;
barGroups_ = NULL;
@@ -479,7 +475,6 @@ void BarGraph::destroyBarSets()
void BarGraph::resetBarSets()
{
- cerr << "BarGraph::resetBarSets()" << endl;
BarGroup *gp, *gend;
for (gp = barGroups_, gend = gp + nBarGroups_; gp < gend; gp++) {
gp->lastY = 0.0;
@@ -489,7 +484,6 @@ void BarGraph::resetBarSets()
void BarGraph::computeBarStacks()
{
- cerr << "BarGraph::computsBarStacks()" << endl;
BarGraphOptions* ops = (BarGraphOptions*)ops_;
Blt_ChainLink link;