From: adrian Date: Mon, 5 Dec 2011 20:42:40 +0000 (+0200) Subject: rename function X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e597d6314eecbdb1de46b8c0de54c1d2d73c29c2;p=flightgear.git rename function --- diff --git a/src/Radio/radio.cxx b/src/Radio/radio.cxx index dec08ea0f..fd6520a88 100644 --- a/src/Radio/radio.cxx +++ b/src/Radio/radio.cxx @@ -376,14 +376,14 @@ double FGRadioTransmission::ITM_calculate_attenuation(SGGeod pos, double freq, i eps_dielect, sgm_conductivity, eno, frq_mhz, radio_climate, pol, conf, rel, dbloss, strmode, p_mode, horizons, errnum); if( _root_node->getBoolValue( "use-clutter-attenuation", false ) ) - clutterLoss(frq_mhz, itm_elev, materials, receiver_height, transmitter_height, p_mode, horizons, clutter_loss); + calculate_clutter_loss(frq_mhz, itm_elev, materials, receiver_height, transmitter_height, p_mode, horizons, clutter_loss); } else { point_to_point(itm_elev, transmitter_height, receiver_height, eps_dielect, sgm_conductivity, eno, frq_mhz, radio_climate, pol, conf, rel, dbloss, strmode, p_mode, horizons, errnum); if( _root_node->getBoolValue( "use-clutter-attenuation", false ) ) - clutterLoss(frq_mhz, itm_elev, materials, transmitter_height, receiver_height, p_mode, horizons, clutter_loss); + calculate_clutter_loss(frq_mhz, itm_elev, materials, transmitter_height, receiver_height, p_mode, horizons, clutter_loss); } double pol_loss = 0.0; @@ -440,7 +440,7 @@ double FGRadioTransmission::ITM_calculate_attenuation(SGGeod pos, double freq, i * We are only worried about clutter loss, terrain influence * on the first Fresnel zone is calculated in the ITM functions ***/ -void FGRadioTransmission::clutterLoss(double freq, double itm_elev[], deque materials, +void FGRadioTransmission::calculate_clutter_loss(double freq, double itm_elev[], deque &materials, double transmitter_height, double receiver_height, int p_mode, double horizons[], double &clutter_loss) { diff --git a/src/Radio/radio.hxx b/src/Radio/radio.hxx index 7758c96dc..81a6764a9 100644 --- a/src/Radio/radio.hxx +++ b/src/Radio/radio.hxx @@ -57,7 +57,7 @@ private: double polarization_loss(); double ITM_calculate_attenuation(SGGeod tx_pos, double freq, int ground_to_air); double LOS_calculate_attenuation(SGGeod tx_pos, double freq, int ground_to_air); - void clutterLoss(double freq, double itm_elev[], std::deque materials, + void calculate_clutter_loss(double freq, double itm_elev[], std::deque &materials, double transmitter_height, double receiver_height, int p_mode, double horizons[], double &clutter_loss); void get_material_properties(string mat_name, double &height, double &density);