From 5574e8af5fb286337a2a0bd72c391682b51968a4 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Thu, 25 Aug 2016 09:31:39 -0700 Subject: [PATCH] spectrum: Remove debugging statements --- src/spectrum/model/wifi-spectrum-value-helper.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/spectrum/model/wifi-spectrum-value-helper.cc b/src/spectrum/model/wifi-spectrum-value-helper.cc index 54f8d39d4..2585c0a26 100644 --- a/src/spectrum/model/wifi-spectrum-value-helper.cc +++ b/src/spectrum/model/wifi-spectrum-value-helper.cc @@ -213,7 +213,6 @@ WifiSpectrumValueHelper::CreateOfdmTxPowerSpectralDensity (uint32_t centerFreque // skip 38 subbands, then place power in 26 subbands, then // skip the center subband, then place power in 26 subbands, then skip // the final 38 subbands. - std::cout << c->GetSpectrumModel ()->GetNumBands () << std::endl; NS_ASSERT_MSG (c->GetSpectrumModel ()->GetNumBands () == 129, "Unexpected number of bands"); txPowerPerBand = txPowerW / 52; for (size_t i = 0; i < c->GetSpectrumModel ()->GetNumBands (); i++, vit++, bit++) @@ -236,7 +235,6 @@ WifiSpectrumValueHelper::CreateOfdmTxPowerSpectralDensity (uint32_t centerFreque // skip 34 subbands, then place power in 14 subbands, then // skip the center subband, then place power in 14 subbands, then skip // the final 34 subbands. - std::cout << c->GetSpectrumModel ()->GetNumBands () << std::endl; NS_ASSERT_MSG (c->GetSpectrumModel ()->GetNumBands () == 97, "Unexpected number of bands"); txPowerPerBand = txPowerW / 28; for (size_t i = 0; i < c->GetSpectrumModel ()->GetNumBands (); i++, vit++, bit++) @@ -259,7 +257,6 @@ WifiSpectrumValueHelper::CreateOfdmTxPowerSpectralDensity (uint32_t centerFreque // skip 34 subbands, then place power in 14 subbands, then // skip the center subband, then place power in 14 subbands, then skip // the final 34 subbands. - std::cout << c->GetSpectrumModel ()->GetNumBands () << std::endl; NS_ASSERT_MSG (c->GetSpectrumModel ()->GetNumBands () == 81, "Unexpected number of bands"); txPowerPerBand = txPowerW / 16; for (size_t i = 0; i < c->GetSpectrumModel ()->GetNumBands (); i++, vit++, bit++)