Skip to content

Commit

Permalink
Turn off debug text in RPC_XML.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-alexandrov committed Jul 28, 2020
1 parent 150551f commit b844a35
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/asp/Camera/RPC_XML.cc
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ void asp::ImageXML::parse( xercesc::DOMElement* node ) {
tdi = 0;
try {
if (band_id == "P") {
std::cout << "--try 2" << std::endl;
DOMElement* band = get_node<DOMElement>(node, "BAND_P");
parse_band_tdi(band, tdi);
} else if (band_id == "Multi") {
Expand Down Expand Up @@ -500,10 +499,8 @@ void asp::RPCXML::parse_bbox( xercesc::DOMElement* root_node ) {
DOMElement* imd_node = get_node<DOMElement>( root_node, "IMD" );
DOMElement* bbox_node;
try {
std::cout << "---try 1" << std::endl;
bbox_node = get_node<DOMElement>( imd_node, "BAND_P");
} catch (...) { // Try one more channel if we can't find BAND_P
std::cout << "--now in catch" << std::endl;
bbox_node = get_node<DOMElement>( imd_node, "BAND_R");
}
// Start by initializing the box with the first point
Expand Down

0 comments on commit b844a35

Please sign in to comment.