summaryrefslogtreecommitdiff
path: root/cesar/maximus/phy/src/PhySciMsgNoise.cpp
diff options
context:
space:
mode:
authorThierry Carré2012-10-16 12:45:48 +0200
committerThierry Carré2013-01-31 15:04:48 +0100
commit4452a8abe0d135b1f690b530a3bb4b1e495d7b65 (patch)
treeffa06423693d00cdaccd3d8a51d3c6c61ec2b2f3 /cesar/maximus/phy/src/PhySciMsgNoise.cpp
parent83441de4ab01355295cfe6a6e389ad5bc66fd361 (diff)
cesar/maximus: C++ maximus refactoring, closes #3336, closes #3098
Feedback on new performance on tests inside: test_general/station Ratio = Test duration before this commit divided by new duration. |--------------------------------------------|-------| | Unit test | Ratio | |--------------------------------------------|-------| | maximus/py/sc01_long_simu.py | 6.5 | | maximus/py/sc02_long_simu.py | 4.5 | | scenario/av/py/sc01_assoc_auth.py | 3.3 | | scenario/av/py/sc02_stas_communication.py | 4.5 | | scenario/av/py/sc03_two_avln_coexisting.py | 2.1 | | scenario/av/py/sc04_cc_whoru.py | 2.1 | | scenario/av/py/sc05_cc_leave.py | 2.3 | | scenario/av/py/sc06_discover_procedure.py | 2.3 | | scenario/av/py/sc07_bridge.py | 2.2 | | scenario/av/py/sc08_bentry_change.py | 2.1 | | scenario/av/py/sc09_simple_connect.py | 2.2 | | scenario/av/py/sc10_short_messages.py | 5.7 | | scenario/av/py/sc11_cm_nw_info.py | 4.7 | | scenario/av/py/sc12_change_nmk.py | 5.5 | | scenario/av/py/sc14_igmp.py | 4.0 | | scenario/av/py/sc15_hide.py | 6.0 | | compliance/py/sc01_dut_as_a_cco.py | 5.8 | | tonemap/py/sc01_bl_initial.py | 2.3 | | tonemap/py/sc02_vs_get_tonemap.py | 2.3 | |--------------------------------------------|-------| | Average speed improvement of Maximus is | 4.9 | |--------------------------------------------|-------| Many tickets have been opened to continue the refactoring. Titles begin by "[Maximus][Refactoring]" in pessac's trac. For this reason #3336 is close. #3098 is really fixed.
Diffstat (limited to 'cesar/maximus/phy/src/PhySciMsgNoise.cpp')
-rw-r--r--cesar/maximus/phy/src/PhySciMsgNoise.cpp86
1 files changed, 0 insertions, 86 deletions
diff --git a/cesar/maximus/phy/src/PhySciMsgNoise.cpp b/cesar/maximus/phy/src/PhySciMsgNoise.cpp
deleted file mode 100644
index eb57ccb2a1..0000000000
--- a/cesar/maximus/phy/src/PhySciMsgNoise.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-
-#include "PhySciMsgNoise.h"
-#include "IPhy.h"
-
-#include "Error.h"
-#include "Logger.h"
-
-// for 'getpid()'
-#include <sys/types.h>
-#include <unistd.h>
-
-using namespace std;
-
-
-// Constructors/Destructors
-//
-
-
-PhySciMsgNoise::PhySciMsgNoise ( IPhy * p_phy ) : PhySciMsg ( p_phy )
-{
- logFunction();
-
- initAttributes ();
-}
-
-
-void PhySciMsgNoise::initAttributes ( )
-{
- logFunction();
-
- // Set PHY SCI message type
- PhySciMsg::setSpecializedSciMsgType(PHY_TYPE_NOISE);
-}
-
-
-PhySciMsgNoise::~PhySciMsgNoise ( )
-{
- logFunction();
-}
-
-
-//
-// Methods
-//
-
-
-// Other methods
-//
-
-
-// public methods
-//
-
-
-bool PhySciMsgNoise::prepare ( )
-{
- logFunction();
-
- // Set flags
- return PhySciMsg::setFlags(PHY_FLAG_CRC_OK);
-}
-
-
-// private methods
-//
-
-
-// protected methods
-//
-
-
-// Accessor methods
-//
-
-
-// public attribute accessor methods
-//
-
-
-// private attribute accessor methods
-//
-
-
-// protected attribute accessor methods
-//
-